aboutsummaryrefslogtreecommitdiffstats
path: root/lib
Commit message (Expand)AuthorAgeFilesLines
* 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
* Let each target decide byval alignment. For X86, it's 4-byte unless the aggre...Evan Cheng2008-01-232-0/+46
* The last pieces needed for loading arbitraryDuncan Sands2008-01-238-78/+190
* Honor explicit section information on Darwin.Dale Johannesen2008-01-233-3/+13
* Fix an iterator invalidation issue.Owen Anderson2008-01-221-2/+8
* SSE varargs arguments are passed in memory.Evan Cheng2008-01-221-2/+2
* Simplify SelectionDAG::getNode so that a big switch stmt is not #ifndef Chris Lattner2008-01-221-119/+88
* The final piece needed for storing arbitrary precisionDuncan Sands2008-01-221-29/+90
* Enable the fix I just checked in, silly me.Nick Lewycky2008-01-221-1/+0
* Multiply can be evaluated in a different type, so long as the target type hasNick Lewycky2008-01-221-0/+10
* Trivial patch to fix two warnings, please pull into llvm 2.2Chris Lattner2008-01-221-0/+3
* Clarify a deviation from the original algorithm.Owen Anderson2008-01-211-1/+4
* Improve a few comments.Owen Anderson2008-01-211-1/+6
* It turns out that in C++ it is legal to declare functionsDuncan Sands2008-01-211-6/+1
* Check that sret is only used on pointers to typesDuncan Sands2008-01-211-2/+2
* Be consistent with other attribute methods, andDuncan Sands2008-01-211-1/+7
* Move DAG-changing code out of #ifndef NDEBUG.Dale Johannesen2008-01-211-1/+3
* Make sure the caller doesn't use freed memory.Duncan Sands2008-01-201-1/+3
* Honour ByVal parameter attribute for name decorationAnton Korobeynikov2008-01-201-3/+12
* Remove Darwin'ismAnton Korobeynikov2008-01-201-4/+1
* Enable PIC codegen on x86-64/linuxAnton Korobeynikov2008-01-201-1/+1
* Initializing an unsigned with ~0UL causes the compilerDuncan Sands2008-01-201-9/+9
* Do not generate a FP_ROUND of f64 to f64.Dale Johannesen2008-01-201-3/+4