| Commit message (Expand) | Author | Age | Files | Lines |
* | Start eliminating temporary vectors used to create DAG nodes. Instead, pass | Chris Lattner | 2006-08-08 | 4 | -274/+176 |
* | Eliminate some malloc traffic by allocating vectors on the stack. Change some | Chris Lattner | 2006-08-08 | 2 | -82/+67 |
* | Revamp the "CSEMap" datastructure used in the SelectionDAG class. This | Chris Lattner | 2006-08-07 | 2 | -312/+517 |
* | Clear TopOrder before assigning topological order. Some clean ups. | Evan Cheng | 2006-08-07 | 1 | -1/+3 |
* | Reverse the FlaggedNodes after scanning up for flagged preds or else the orde... | Evan Cheng | 2006-08-07 | 1 | -5/+10 |
* | Make SelectionDAG::RemoveDeadNodes iterative instead of recursive, which | Chris Lattner | 2006-08-04 | 2 | -51/+33 |
* | Copy the liveins for the first block. PR859 | Jim Laskey | 2006-08-03 | 1 | -0/+14 |
* | Work around a GCC 3.3.5 bug noticed by a user. | Chris Lattner | 2006-08-03 | 1 | -1/+1 |
* | Work around a bug in gcc 3.3.5, reported by a user | Chris Lattner | 2006-08-03 | 1 | -1/+1 |
* | - Change AssignTopologicalOrder to return vector of SDNode* by reference. | Evan Cheng | 2006-08-02 | 1 | -16/+22 |
* | Final polish on machine pass registries. | Jim Laskey | 2006-08-02 | 9 | -37/+69 |
* | Now that the ISel is available, it's possible to create a default instruction | Jim Laskey | 2006-08-01 | 1 | -17/+22 |
* | 1. Change use of "Cache" to "Default". | Jim Laskey | 2006-08-01 | 6 | -15/+31 |
* | Forgot the added files for plugable machine passes. | Jim Laskey | 2006-08-01 | 1 | -0/+31 |
* | Introducing plugable register allocators and instruction schedulers. | Jim Laskey | 2006-08-01 | 8 | -140/+119 |
* | Added AssignTopologicalOrder() to assign each node an unique id based on thei... | Evan Cheng | 2006-08-01 | 1 | -2/+38 |
* | PIC jump table entries are always 32-bit even in 64-bit mode. | Evan Cheng | 2006-08-01 | 1 | -4/+11 |
* | Instead of blindly looking past constantexpr casts, actually constant | Chris Lattner | 2006-07-29 | 1 | -14/+20 |
* | Remove InFlightSet hack. No longer needed. | Evan Cheng | 2006-07-28 | 1 | -14/+0 |
* | Print empty inline asms as a blank line instead of: | Chris Lattner | 2006-07-28 | 1 | -1/+8 |
* | Working toward registration of register allocators. | Jim Laskey | 2006-07-27 | 1 | -11/+47 |
* | Code cleanups, per review | Nate Begeman | 2006-07-27 | 2 | -5/+7 |
* | AssignNodeIds should return unsigned. | Evan Cheng | 2006-07-27 | 1 | -2/+2 |
* | AssignNodeIds assign each node in the DAG an unique id. | Evan Cheng | 2006-07-27 | 1 | -0/+12 |
* | Support jump tables when in PIC relocation model | Nate Begeman | 2006-07-27 | 2 | -20/+28 |
* | Fix a case where LegalizeAllNodesNotLeadingTo could take exponential time. | Chris Lattner | 2006-07-26 | 1 | -6/+21 |
* | For PR780: | Reid Spencer | 2006-07-26 | 1 | -0/+1 |
* | Initialize some variables the compiler warns about. | Reid Spencer | 2006-07-25 | 1 | -2/+2 |
* | Eliminate data relocations by using NULL instead of global empty list. | Jim Laskey | 2006-07-21 | 5 | -32/+48 |
* | Use an enumeration to eliminate data relocations. | Jim Laskey | 2006-07-21 | 2 | -7/+24 |
* | If a shuffle is a splat, check if the argument is a build_vector with all ele... | Evan Cheng | 2006-07-21 | 1 | -8/+90 |
* | Build more debugger/selectiondag libraries as archives instead of .o files. | Chris Lattner | 2006-07-21 | 1 | -0/+1 |
* | If a shuffle is unary, i.e. one of the vector argument is not needed, turn the | Evan Cheng | 2006-07-20 | 1 | -10/+56 |
* | Mems can be in the output list also. This is the second half of a fix for | Chris Lattner | 2006-07-20 | 1 | -1/+2 |
* | 80 cols | Andrew Lenharth | 2006-07-20 | 2 | -3/+4 |
* | Reduce number of exported symbols | Andrew Lenharth | 2006-07-20 | 10 | -30/+31 |
* | Fix linking on Alpha | Andrew Lenharth | 2006-07-20 | 1 | -0/+1 |
* | Add an out-of-line virtual method for the sdnode class to give it a home. | Chris Lattner | 2006-07-19 | 1 | -0/+4 |
* | On 64-bit targets like ppc64, we should use .quad to output pointer directives, | Chris Lattner | 2006-07-15 | 1 | -1/+9 |
* | Add an out-of-line virtual function to home class. | Chris Lattner | 2006-07-14 | 1 | -0/+2 |
* | Fixed a bug handling void function types. | Jim Laskey | 2006-07-13 | 2 | -12/+21 |
* | It was pointed out that DEBUG() is only available with -debug. | Jim Laskey | 2006-07-11 | 1 | -1/+3 |
* | Ensure that dump calls that are associated with asserts are removed from | Jim Laskey | 2006-07-11 | 2 | -2/+14 |
* | 1. Support for c++ mangled names. | Jim Laskey | 2006-07-11 | 2 | -1/+14 |
* | Fix CodeGen/Alpha/2006-07-03-ASMFormalLowering.ll and PR818. | Chris Lattner | 2006-07-11 | 1 | -12/+29 |
* | Fix a typo that causes 2006-07-07-ComputeMaskedBits.ll to fail. | Evan Cheng | 2006-07-07 | 1 | -1/+1 |
* | Ugly hack! Add helper functions InsertInFlightSetEntry and | Evan Cheng | 2006-06-29 | 1 | -0/+14 |
* | Add support to print 4-, 8-, and 16- byte constant literals in special | Evan Cheng | 2006-06-29 | 1 | -10/+48 |
* | Use hidden visibility to make symbols in an anonymous namespace get | Chris Lattner | 2006-06-28 | 5 | -6/+12 |
* | Shave another 27K off libllvmgcc.dylib with visibility hidden | Chris Lattner | 2006-06-28 | 9 | -13/+25 |