| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | Do this more neatly. | Duncan Sands | 2008-01-25 | 1 | -2/+1 |
* | fix long lines. | Chris Lattner | 2008-01-25 | 1 | -2/+3 |
* | JITEmitter.cpp was trying to sync the icache for function stubs, but | Chris Lattner | 2008-01-25 | 2 | -10/+19 |
* | DeadStoreElimination can treat byval parameters as if there were alloca's for... | Owen Anderson | 2008-01-25 | 1 | -5/+6 |
* | Add skeletal code to increase the alignment of loads and stores when | Chris Lattner | 2008-01-25 | 1 | -0/+38 |
* | move MachineFrameInfo::CreateFixedObject out of line, give MachineFrameInfo | Chris Lattner | 2008-01-25 | 1 | -1/+14 |
* | include alignment and volatility information in -view-*-dags output | Chris Lattner | 2008-01-25 | 1 | -3/+10 |
* | optimize fxor like for | Chris Lattner | 2008-01-25 | 1 | -3/+6 |
* | Add target-specific dag combines for FAND(x,0) and FOR(x,0). This allows | Chris Lattner | 2008-01-25 | 1 | -4/+30 |
* | Provide correct DWARF register numbering for debug information emission on x8... | Anton Korobeynikov | 2008-01-25 | 3 | -9/+9 |
* | Don't dump the function! | Chris Lattner | 2008-01-24 | 1 | -2/+0 |
* | getUnderlyingObject can return null, handle this. | Chris Lattner | 2008-01-24 | 1 | -2/+3 |
* | Teach basicaa that 'byval' arguments define a new memory location that | Chris Lattner | 2008-01-24 | 1 | -34/+34 |
* | Add hasByValAttr() and hasNoAliasAttr() methods to the Argument class. | Chris Lattner | 2008-01-24 | 1 | -0/+31 |
* | clarify a comment, thanks Duncan. | Chris Lattner | 2008-01-24 | 1 | -2/+3 |
* | Significantly simplify and improve handling of FP function results on x86-32. | Chris Lattner | 2008-01-24 | 3 | -127/+128 |
* | Fix this buggy transformation. Two observations: | Chris Lattner | 2008-01-24 | 1 | -17/+8 |
* | The dag combiner is missing revisiting nodes that it really should, and thus ... | Chris Lattner | 2008-01-24 | 1 | -0/+5 |
* | fold fp_round(fp_round(x)) -> fp_round(x). | Chris Lattner | 2008-01-24 | 1 | -0/+9 |
* | Fix potential buffer overflow | Anton Korobeynikov | 2008-01-24 | 1 | -1/+1 |
* | Move some functionality for adding flags to MachineInstr's into methods on Ma... | Owen Anderson | 2008-01-24 | 3 | -107/+105 |
* | Forgot these. | Evan Cheng | 2008-01-24 | 2 | -4/+8 |
* | Let each target decide byval alignment. For X86, it's 4-byte unless the aggre... | Evan Cheng | 2008-01-23 | 2 | -0/+46 |
* | The last pieces needed for loading arbitrary | Duncan Sands | 2008-01-23 | 8 | -78/+190 |
* | Honor explicit section information on Darwin. | Dale Johannesen | 2008-01-23 | 3 | -3/+13 |
* | Fix an iterator invalidation issue. | Owen Anderson | 2008-01-22 | 1 | -2/+8 |
* | SSE varargs arguments are passed in memory. | Evan Cheng | 2008-01-22 | 1 | -2/+2 |
* | Simplify SelectionDAG::getNode so that a big switch stmt is not #ifndef | Chris Lattner | 2008-01-22 | 1 | -119/+88 |
* | The final piece needed for storing arbitrary precision | Duncan Sands | 2008-01-22 | 1 | -29/+90 |
* | Enable the fix I just checked in, silly me. | Nick Lewycky | 2008-01-22 | 1 | -1/+0 |
* | Multiply can be evaluated in a different type, so long as the target type has | Nick Lewycky | 2008-01-22 | 1 | -0/+10 |
* | Trivial patch to fix two warnings, please pull into llvm 2.2 | Chris Lattner | 2008-01-22 | 1 | -0/+3 |
* | Clarify a deviation from the original algorithm. | Owen Anderson | 2008-01-21 | 1 | -1/+4 |
* | Improve a few comments. | Owen Anderson | 2008-01-21 | 1 | -1/+6 |
* | It turns out that in C++ it is legal to declare functions | Duncan Sands | 2008-01-21 | 1 | -6/+1 |
* | Check that sret is only used on pointers to types | Duncan Sands | 2008-01-21 | 1 | -2/+2 |
* | Be consistent with other attribute methods, and | Duncan Sands | 2008-01-21 | 1 | -1/+7 |
* | Move DAG-changing code out of #ifndef NDEBUG. | Dale Johannesen | 2008-01-21 | 1 | -1/+3 |
* | Make sure the caller doesn't use freed memory. | Duncan Sands | 2008-01-20 | 1 | -1/+3 |
* | Honour ByVal parameter attribute for name decoration | Anton Korobeynikov | 2008-01-20 | 1 | -3/+12 |
* | Remove Darwin'ism | Anton Korobeynikov | 2008-01-20 | 1 | -4/+1 |
* | Enable PIC codegen on x86-64/linux | Anton Korobeynikov | 2008-01-20 | 1 | -1/+1 |
* | Initializing an unsigned with ~0UL causes the compiler | Duncan Sands | 2008-01-20 | 1 | -9/+9 |
* | Do not generate a FP_ROUND of f64 to f64. | Dale Johannesen | 2008-01-20 | 1 | -3/+4 |
* | Need to handle any 'nest' parameter before integer | Duncan Sands | 2008-01-19 | 1 | -8/+8 |
* | Added FoldingSet style 'profiling' support for APSInt. | Ted Kremenek | 2008-01-19 | 1 | -0/+23 |
* | Added FoldingSet style 'profiling' support for APInt. | Ted Kremenek | 2008-01-19 | 1 | -1/+13 |
* | Made 'FoldingSetNodeID' a proper class instead of a nested class in | Ted Kremenek | 2008-01-19 | 1 | -19/+19 |
* | Implement flt_rounds for PowerPC. | Dale Johannesen | 2008-01-18 | 1 | -0/+64 |
* | remove extraneous &'s. | Chris Lattner | 2008-01-18 | 1 | -2/+2 |