aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Target/X86/X86FloatingPoint.cpp
Commit message (Expand)AuthorAgeFilesLines
* Consistent diagnostic capitalization and redundant context elimination.Jakob Stoklund Olesen2011-07-021-8/+5
* Include a source location when complaining about bad inline assembly.Jakob Stoklund Olesen2011-07-021-10/+12
* Tweak error messages to match GCC. Should fix gcc.target/i386/pr30848.cJakob Stoklund Olesen2011-06-301-3/+3
* Clean up the handling of the x87 fp stack to make it more robust.Jakob Stoklund Olesen2011-06-281-153/+332
* Grow the X86FloatingPoint register map to hold 16 registers.Jakob Stoklund Olesen2011-06-271-5/+15
* Fix a ton of comment typos found by codespell. Patch byChris Lattner2011-04-151-1/+1
* Use the EdgeBundles analysis in X86FloatingPoint instead of recomputing CFGJakob Stoklund Olesen2011-01-041-87/+14
* Turn the EdgeBundles class into a stand-alone machine CFG analysis pass.Jakob Stoklund Olesen2011-01-041-0/+3
* Switch attribute macros to use 'LLVM_' as a prefix. We retain the old namesChandler Carruth2010-10-231-1/+2
* Remove some variables that are never really usedDuncan Sands2010-10-211-1/+0
* Turn some fp stackifier assertion into errors to avoid silently generating ba...Evan Cheng2010-10-121-7/+14
* Marked with ATTRIBUTE_USED so that clang doesn't complain.Bill Wendling2010-08-181-1/+1
* Partially revert r111155. It looks like MSVC is calling an operator<() thatJakob Stoklund Olesen2010-08-161-0/+3
* Remove unused functions.Jakob Stoklund Olesen2010-08-161-8/+0
* Reapply r110396, with fixes to appease the Linux buildbot gods.Owen Anderson2010-08-061-1/+1
* Revert r110396 to fix buildbots.Owen Anderson2010-08-061-1/+1
* Don't use PassInfo* as a type identifier for passes. Instead, use the addres...Owen Anderson2010-08-051-1/+1
* doxygenify some comments.Chris Lattner2010-07-171-19/+19
* Keep valgrind quiet.Jakob Stoklund Olesen2010-07-161-1/+6
* Search for a free FP register instead of just assuming FP7 is not in use.Jakob Stoklund Olesen2010-07-161-6/+12
* Allow x87 FP registers to be alive globally in a function.Jakob Stoklund Olesen2010-07-161-36/+383
* Don't emit st(0)/st(1) copies as FpMOV instructions. Use FpSET_ST? instead.Jakob Stoklund Olesen2010-07-101-40/+28
* add some long-overdue enums to refer to the parts of the 5-operandChris Lattner2010-07-081-1/+1
* Teach the x86 floating point stackifier to handle COPY instructions.Jakob Stoklund Olesen2010-07-081-1/+36
* Use pre-increment instead of post-increment when the result is not used.Dan Gohman2010-06-221-3/+3
* Reapply r105521, this time appending "LLU" to 64 bitBruno Cardoso Lopes2010-06-081-1/+1
* revert r105521, which is breaking the buildbots with stuff like this:Chris Lattner2010-06-051-1/+1
* Initial AVX support for some instructions. No patterns matchedBruno Cardoso Lopes2010-06-051-1/+1
* Teach X86FloatingPoint that a register can be killed multiple times by the sameJakob Stoklund Olesen2010-04-281-6/+7
* move target-independent opcodes out of TargetInstrInfoChris Lattner2010-02-091-2/+2
* Change errs() to dbgs().David Greene2010-01-051-8/+8
* improve portability to avoid conflicting with std::next in c++'0x.Chris Lattner2009-12-031-1/+1
* Remove includes of Support/Compiler.h that are no longer needed after theNick Lewycky2009-10-251-1/+0
* Remove VISIBILITY_HIDDEN from class/struct found inside anonymous namespaces.Nick Lewycky2009-10-251-1/+1
* fix PR4767, a crash because fp stackifier visited blocks inChris Lattner2009-09-081-0/+8
* eliminate uses of cerr()Chris Lattner2009-08-231-3/+3
* remove various std::ostream version of printing methods fromChris Lattner2009-08-231-3/+3
* - s/DOUT/DEBUG(errs()/gBill Wendling2009-08-031-10/+11
* X86 floating-point passes don't modify the CFG.Dan Gohman2009-08-011-0/+1
* llvm_unreachable->llvm_unreachable(0), LLVM_UNREACHABLE->llvm_unreachable.Torok Edwin2009-07-141-2/+2
* assert(0) -> LLVM_UNREACHABLE.Torok Edwin2009-07-111-2/+3
* Fix PR4485.Rafael Espindola2009-06-301-3/+6
* Fix PR4484.Rafael Espindola2009-06-301-3/+5
* FIX PR 4459.Rafael Espindola2009-06-291-1/+1
* Fix PR4185.Rafael Espindola2009-06-211-2/+7
* Have only one definition of X86AddrNumOperands.Rafael Espindola2009-03-281-1/+0
* Make code a bit less brittle by no hardcoding the numberRafael Espindola2009-03-281-1/+2
* Model inline asm constraint which ties an input to an output register as mach...Evan Cheng2009-03-231-2/+30
* Remove non-DebugLoc versions of BuildMI from X86.Dale Johannesen2009-02-131-6/+15
* Implement FpSET_ST1_*.Evan Cheng2009-02-091-1/+15