aboutsummaryrefslogtreecommitdiffstats
path: root/lib
Commit message (Expand)AuthorAgeFilesLines
* Simplify the code and fix a typo.Lauro Ramos Venancio2008-01-281-7/+4
* Fix fpcmp infinite loop when comparing "29-266" with "29-268".Lauro Ramos Venancio2008-01-281-5/+21
* If the function has no machine instructions, then emit a "nop" so thatBill Wendling2008-01-281-0/+10
* Transform calls to memcpy into llvm.memcpy calls, patch by Eli Friedman.Chris Lattner2008-01-281-0/+30
* Handle some more combinations of extend and icmp. Fixes PR1940.Nick Lewycky2008-01-282-8/+25
* Fix PR1932 by disabling an xform invalid for fdiv.Chris Lattner2008-01-281-9/+10
* Fix PR1938 by forcing the code that uses an undefined value to branch oneChris Lattner2008-01-281-4/+19
* Fix PowerPC/./2007-10-18-PtrArithmetic.llChris Lattner2008-01-271-7/+14
* fix a crash on CodeGen/X86/vector-rem.llChris Lattner2008-01-271-4/+6
* Reg alloc doesn't really need LiveVariables.Owen Anderson2008-01-271-9/+2
* Be more careful modifying the use_list while also iterating through it.Nick Lewycky2008-01-271-1/+2
* Revert r46393: readonly/readnone functions are noDuncan Sands2008-01-271-9/+6
* Implement some dag combines that allow doing fneg/fabs/fcopysign in integerChris Lattner2008-01-271-2/+79
* add a noteChris Lattner2008-01-271-0/+39
* Use fldz and fld1 for long double constants instead of a constant pool load.Chris Lattner2008-01-271-1/+14
* The CorrelatedExpressionElimination pass is known to be buggy. Remove it.Bill Wendling2008-01-271-1486/+0
* For long double constants, print an approximation of their value to the .s fi...Chris Lattner2008-01-271-2/+6
* Fold fptrunc(add (fpextend x), (fpextend y)) -> add(x,y), as GCC does.Chris Lattner2008-01-271-3/+75
* Add some notes.Chris Lattner2008-01-261-0/+18
* Remove some code for inferring alignment info from the x86 backend Chris Lattner2008-01-261-10/+1
* Infer alignment of loads and increase their alignment when we can tell they are Chris Lattner2008-01-261-4/+33
* If there's no instructions being emitted on X86 for a function, emit aBill Wendling2008-01-262-8/+14
* If there are no machine instructions emitted for a function, then insertBill Wendling2008-01-262-16/+16
* Create an explicit copy for byval parameters evenDuncan Sands2008-01-261-6/+9
* If we have a function like this:Bill Wendling2008-01-261-1/+14
* Fix some bugs in SimplifyNodeWithTwoResults where it would call deletenode to Chris Lattner2008-01-261-41/+31
* don't bother making x&-1 only to simplify it in dag combine. This commonly o...Chris Lattner2008-01-261-0/+2
* reduce indentationChris Lattner2008-01-251-42/+44
* Do this more neatly.Duncan Sands2008-01-251-2/+1
* fix long lines.Chris Lattner2008-01-251-2/+3
* JITEmitter.cpp was trying to sync the icache for function stubs, butChris Lattner2008-01-252-10/+19
* DeadStoreElimination can treat byval parameters as if there were alloca's for...Owen Anderson2008-01-251-5/+6
* Add skeletal code to increase the alignment of loads and stores whenChris Lattner2008-01-251-0/+38
* move MachineFrameInfo::CreateFixedObject out of line, give MachineFrameInfoChris Lattner2008-01-251-1/+14
* include alignment and volatility information in -view-*-dags outputChris Lattner2008-01-251-3/+10
* optimize fxor like forChris Lattner2008-01-251-3/+6
* Add target-specific dag combines for FAND(x,0) and FOR(x,0). This allowsChris Lattner2008-01-251-4/+30
* Provide correct DWARF register numbering for debug information emission on x8...Anton Korobeynikov2008-01-253-9/+9
* Don't dump the function!Chris Lattner2008-01-241-2/+0
* getUnderlyingObject can return null, handle this.Chris Lattner2008-01-241-2/+3
* Teach basicaa that 'byval' arguments define a new memory location thatChris Lattner2008-01-241-34/+34
* Add hasByValAttr() and hasNoAliasAttr() methods to the Argument class.Chris Lattner2008-01-241-0/+31
* clarify a comment, thanks Duncan.Chris Lattner2008-01-241-2/+3
* Significantly simplify and improve handling of FP function results on x86-32.Chris Lattner2008-01-243-127/+128
* Fix this buggy transformation. Two observations:Chris Lattner2008-01-241-17/+8
* The dag combiner is missing revisiting nodes that it really should, and thus ...Chris Lattner2008-01-241-0/+5
* fold fp_round(fp_round(x)) -> fp_round(x).Chris Lattner2008-01-241-0/+9
* Fix potential buffer overflowAnton Korobeynikov2008-01-241-1/+1
* Move some functionality for adding flags to MachineInstr's into methods on Ma...Owen Anderson2008-01-243-107/+105
* Forgot these.Evan Cheng2008-01-242-4/+8