Displaying 3 results from an estimated 3 matches for "9f1542d0".
2008 Jul 18
2
[LLVMdev] Changing target features from C++
Hi all,
How do I properly/conveniently change ISA features of the code to be
generated? For instance I have a Core 2 Duo with SSSE3 but I'd also like to
test whether everything would JIT compile correctly on something with just
SSE2 (a Pentium 4) or even older. In other words, how do I prevent LLVM from
using certain target features?
Thanks,
Nicolas Capens
-------------- next part
2008 Jul 18
0
[LLVMdev] Changing target features from C++
On Jul 18, 2008, at 8:42 AM, Nicolas Capens wrote:
> Hi all,
>
> How do I properly/conveniently change ISA features of the code to be
> generated? For instance I have a Core 2 Duo with SSSE3 but I’d also
> like to test whether everything would JIT compile correctly on
> something with just SSE2 (a Pentium 4) or even older. In other
> words, how do I prevent LLVM from
2008 Jul 20
3
[LLVMdev] Changing target features from C++
...es?
The JIT defaults to using whatever it can. You can hack
X86Subtarget::AutoDetectSubtargetFeatures() to disable specific features.
-Chris
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20080720/9f1542d0/attachment.html>