reed kotler
2013-May-17 10:04 UTC
[LLVMdev] subtle issue with soft-float and new attribute scheme (possibly an issue with other attributes)
I can't say this is a bug it is changed behavior from before the new attribute scheme. This issue may appear with other attributes. (there are other attributes that clang will now place on each function) If you run clang as a single pass to create a .ll and don't say -msoft-float, it puts the attribute use-soft-float=false on every function. (It used to be that in that case -msoft-float had no effect because those attributes where not preserved in the IL. ) Then if you run llc and say -soft-float, what happens is that the code generator will compile everything as soft-float, but the value of the following will be false in XXXISelLowering getTargetMachine().Options.UseSoftFloat When the constructor for XXXISelLowering is called, TM.Options.UseSoftFloat will be true. What is interesting is that code for "make check" won't have any of the new attributes there so it will work as before. I was seeing this behavior and could not figure out how my tests could possibly pass if getTargetMachine().Options.UseSoftFloat was returning the wrong result.
Reed Kotler
2013-May-17 13:57 UTC
[LLVMdev] subtle issue with soft-float and new attribute scheme (possibly an issue with other attributes)
Just to clarify... The target independent part of the code generator knows from the command line to use soft float when it legalizes. However, any other code (target independent or dependent) which later tries to find out if soft float is in effect is going to get the wrong answer. On 05/17/2013 03:04 AM, reed kotler wrote:> I can't say this is a bug it is changed behavior from before the new > attribute scheme. > > This issue may appear with other attributes. (there are other attributes > that clang will now place > on each function) > > If you run clang as a single pass to create a .ll and don't say > -msoft-float, it puts the attribute use-soft-float=false on every > function. (It used to be that in that case -msoft-float had no effect > because those > attributes where not preserved in the IL. ) > > Then if you run llc and say -soft-float, what happens is that the code > generator will compile everything as soft-float, but the value of the > following will be false in XXXISelLowering > getTargetMachine().Options.UseSoftFloat > > When the constructor for XXXISelLowering is called, > TM.Options.UseSoftFloat will be true. > > What is interesting is that code for "make check" won't have any of the > new attributes there so > it will work as before. > > I was seeing this behavior and could not figure out how my tests could > possibly pass if getTargetMachine().Options.UseSoftFloat was returning > the wrong result.
Rafael EspĂndola
2013-May-18 03:08 UTC
[LLVMdev] subtle issue with soft-float and new attribute scheme (possibly an issue with other attributes)
My understanding is that with the new attribute system we should deprecate and eventually remove the codegen command line options. On 17 May 2013 06:04, reed kotler <rkotler at mips.com> wrote:> I can't say this is a bug it is changed behavior from before the new > attribute scheme. > > This issue may appear with other attributes. (there are other attributes > that clang will now place > on each function) > > If you run clang as a single pass to create a .ll and don't say > -msoft-float, it puts the attribute use-soft-float=false on every function. > (It used to be that in that case -msoft-float had no effect because those > attributes where not preserved in the IL. ) > > Then if you run llc and say -soft-float, what happens is that the code > generator will compile everything as soft-float, but the value of the > following will be false in XXXISelLowering > getTargetMachine().Options.UseSoftFloat > > When the constructor for XXXISelLowering is called, TM.Options.UseSoftFloat > will be true. > > What is interesting is that code for "make check" won't have any of the new > attributes there so > it will work as before. > > I was seeing this behavior and could not figure out how my tests could > possibly pass if getTargetMachine().Options.UseSoftFloat was returning the > wrong result. > > > > > > > _______________________________________________ > LLVM Developers mailing list > LLVMdev at cs.uiuc.edu http://llvm.cs.uiuc.edu > http://lists.cs.uiuc.edu/mailman/listinfo/llvmdev
reed kotler
2013-May-18 04:15 UTC
[LLVMdev] subtle issue with soft-float and new attribute scheme (possibly an issue with other attributes)
On 05/17/2013 08:08 PM, Rafael EspĂndola wrote:> My understanding is that with the new attribute system we should > deprecate and eventually remove the codegen command line options.How is that possible?> On 17 May 2013 06:04, reed kotler <rkotler at mips.com> wrote: >> I can't say this is a bug it is changed behavior from before the new >> attribute scheme. >> >> This issue may appear with other attributes. (there are other attributes >> that clang will now place >> on each function) >> >> If you run clang as a single pass to create a .ll and don't say >> -msoft-float, it puts the attribute use-soft-float=false on every function. >> (It used to be that in that case -msoft-float had no effect because those >> attributes where not preserved in the IL. ) >> >> Then if you run llc and say -soft-float, what happens is that the code >> generator will compile everything as soft-float, but the value of the >> following will be false in XXXISelLowering >> getTargetMachine().Options.UseSoftFloat >> >> When the constructor for XXXISelLowering is called, TM.Options.UseSoftFloat >> will be true. >> >> What is interesting is that code for "make check" won't have any of the new >> attributes there so >> it will work as before. >> >> I was seeing this behavior and could not figure out how my tests could >> possibly pass if getTargetMachine().Options.UseSoftFloat was returning the >> wrong result. >> >> >> >> >> >> >> _______________________________________________ >> LLVM Developers mailing list >> LLVMdev at cs.uiuc.edu http://llvm.cs.uiuc.edu >> http://lists.cs.uiuc.edu/mailman/listinfo/llvmdev
Seemingly Similar Threads
- [LLVMdev] subtle issue with soft-float and new attribute scheme (possibly an issue with other attributes)
- [LLVMdev] subtle issue with soft-float and new attribute scheme (possibly an issue with other attributes)
- [LLVMdev] Support for Soft-float
- [LLVMdev] Clang/LLVM 3.3 unwanted attributes being added: NoFramePointerElim
- [LLVMdev] llc -soft-float does not work