Displaying 3 results from an estimated 3 matches for "interpolate_pixel".
2007 Mar 18
2
[LLVMdev] A few inline assembly questions
...tions. llvm-gcc doesn't seem to
support mmx intrinsics which makes Qt compiled with llvm-gcc quite a bit
slower when it comes to graphics. test2.cpp shows in essence what we're doing
in Qt. we basically have a very simple class that defines simple static
methods like negate/add/byte_mul/interpolate_pixel. now the question is if
there is any way of getting code like this to utilize vector instructions
with llvm-gcc. i wouldn't mind having llvm specific path there as long as it
works.
Zack
-------------- next part --------------
A non-text attachment was scrubbed...
Name: test2.cpp
Type: tex...
2007 Mar 19
0
[LLVMdev] A few inline assembly questions
...ply. Bill Wendling is the one working on this, I
forwarded your testcase to him so that he can focus on those operations
first.
> test2.cpp shows in essence what we're doing
> in Qt. we basically have a very simple class that defines simple static
> methods like negate/add/byte_mul/interpolate_pixel. now the question is if
> there is any way of getting code like this to utilize vector instructions
> with llvm-gcc. i wouldn't mind having llvm specific path there as long as it
> works.
Absolutely. Until now, there hasn't been anything pushing for MMX
intrinsic support (most c...
2007 Mar 19
1
[LLVMdev] A few inline assembly questions
...my schedule's slightly more open this week, so I
should be able to add the missing operators easily.
>> test2.cpp shows in essence what we're doing
>> in Qt. we basically have a very simple class that defines simple
>> static
>> methods like negate/add/byte_mul/interpolate_pixel. now the
>> question is if
>> there is any way of getting code like this to utilize vector
>> instructions
>> with llvm-gcc. i wouldn't mind having llvm specific path there as
>> long as it
>> works.
>
> Absolutely. Until now, there hasn't be...