Displaying 5 results from an estimated 5 matches for "pictionari".
Did you mean:
pictionary
2011 Oct 18
0
[LLVMdev] Matching addsub
On Oct 17, 2011, at 3:40 PM, Hal Finkel wrote:
> How should I go about matching floating-point addsub-like vector
> instructions? My first inclination is to write something which matches
> build_vector 1.0, -1.0, and then use that in combination with a match on
> fadd, but that does not seem to work. I think this is because
> BUILD_VECTOR cannot ever be "Legal", and so it
2011 Oct 18
2
[LLVMdev] Matching addsub
On Mon, 2011-10-17 at 17:33 -0700, Dan Gohman wrote:
> On Oct 17, 2011, at 3:40 PM, Hal Finkel wrote:
>
> > How should I go about matching floating-point addsub-like vector
> > instructions? My first inclination is to write something which matches
> > build_vector 1.0, -1.0, and then use that in combination with a match on
> > fadd, but that does not seem to work. I
2011 Oct 18
0
[LLVMdev] Matching addsub
On Oct 17, 2011, at 6:40 PM, Hal Finkel wrote:
> On Mon, 2011-10-17 at 17:33 -0700, Dan Gohman wrote:
>> On Oct 17, 2011, at 3:40 PM, Hal Finkel wrote:
>>
>>> How should I go about matching floating-point addsub-like vector
>>> instructions? My first inclination is to write something which matches
>>> build_vector 1.0, -1.0, and then use that in
2011 Oct 17
4
[LLVMdev] Matching addsub
How should I go about matching floating-point addsub-like vector
instructions? My first inclination is to write something which matches
build_vector 1.0, -1.0, and then use that in combination with a match on
fadd, but that does not seem to work. I think this is because
BUILD_VECTOR cannot ever be "Legal", and so it is always turned into a
constant load before instruction selection.
2011 Oct 18
1
[LLVMdev] Matching addsub
On Tue, 2011-10-18 at 10:51 -0700, Dan Gohman wrote:
> On Oct 17, 2011, at 6:40 PM, Hal Finkel wrote:
>
> > On Mon, 2011-10-17 at 17:33 -0700, Dan Gohman wrote:
> >> On Oct 17, 2011, at 3:40 PM, Hal Finkel wrote:
> >>
> >>> How should I go about matching floating-point addsub-like vector
> >>> instructions? My first inclination is to write