search for: addlegalfpimmediate

Displaying 3 results from an estimated 3 matches for "addlegalfpimmediate".

2010 Jan 08
1
[LLVMdev] Removing the constant pool
Is that really sufficient? See X86ISelLowering.cpp, look for addLegalFPImmediate. Usually targets have to tell legalizer what fp immediates are legl. Evan On Jan 5, 2010, at 8:38 AM, Anton Korobeynikov wrote: > Hello > >> I was wondering if it is possible to stop floating-point constants being converted to use the constant pool? As for our back-end we would like...
2010 Jan 05
2
[LLVMdev] Removing the constant pool
Hi all, I was wondering if it is possible to stop floating-point constants being converted to use the constant pool? As for our back-end we would like to be able to treat floating point constants the same way integer constants are treated instead of having to go via the constant pool. Thanks for your help, Rob - This message is subject to Imagination Technologies' e-mail terms:
2010 Jan 05
0
[LLVMdev] Removing the constant pool
Hello > I was wondering if it is possible to stop floating-point constants being converted to use the constant pool? As for our back-end we would like to be able to treat floating point constants the same way integer constants are treated instead of having to go via the constant pool. Yes, surely. Just make ISD::ConstantFP for given type legal and handle it during isel. -- With best regards,