| Age | Commit message (Expand) | Author |
| 2006-08-21 | Fix PR861 | Chris Lattner |
| 2006-08-17 | switch the SUnit pred/succ sets from being std::sets to being smallvectors. | Chris Lattner |
| 2006-08-16 | minor changes. | Chris Lattner |
| 2006-08-16 | Use the appropriate typedef | Chris Lattner |
| 2006-08-15 | Start using SDVTList more consistently | Chris Lattner |
| 2006-08-15 | add a new SDVTList type and new SelectionDAG::getVTList methods to streamline | Chris Lattner |
| 2006-08-14 | eliminate use of getNode that takes vector of valuetypes. | Chris Lattner |
| 2006-08-14 | Add a new getNode() method that takes a pointer to an already-intern'd list | Chris Lattner |
| 2006-08-14 | remove SelectionDAG::InsertISelMapEntry, it is dead | Chris Lattner |
| 2006-08-14 | Add code to resize the CSEMap hash table. This doesn't speedup codegen of | Chris Lattner |
| 2006-08-14 | Add the actual constant to the hash for ConstantPool nodes. Thanks to | Chris Lattner |
| 2006-08-12 | Switch to using SuperFastHash instead of adding all elements together. This | Chris Lattner |
| 2006-08-11 | Switch NodeID to track 32-bit chunks instead of 8-bit chunks, for a 2.5% | Chris Lattner |
| 2006-08-11 | Remove 8 more std::map's. | Chris Lattner |
| 2006-08-11 | Move the BBNodes, GlobalValues, TargetGlobalValues, Constants, TargetConstants, | Chris Lattner |
| 2006-08-11 | eliminate the NullaryOps map, use CSEMap instead. | Chris Lattner |
| 2006-08-11 | change internal impl of dag combiner so that calls to CombineTo never have to | Chris Lattner |
| 2006-08-11 | Change one ReplaceAllUsesWith method to take an array of operands to replace | Chris Lattner |
| 2006-08-08 | Start eliminating temporary vectors used to create DAG nodes. Instead, pass | Chris Lattner |
| 2006-08-08 | Eliminate some malloc traffic by allocating vectors on the stack. Change some | Chris Lattner |
| 2006-08-07 | Revamp the "CSEMap" datastructure used in the SelectionDAG class. This | Chris Lattner |
| 2006-08-07 | Clear TopOrder before assigning topological order. Some clean ups. | Evan Cheng |
| 2006-08-07 | Reverse the FlaggedNodes after scanning up for flagged preds or else the orde... | Evan Cheng |
| 2006-08-04 | Make SelectionDAG::RemoveDeadNodes iterative instead of recursive, which | Chris Lattner |
| 2006-08-03 | Copy the liveins for the first block. PR859 | Jim Laskey |
| 2006-08-03 | Work around a GCC 3.3.5 bug noticed by a user. | Chris Lattner |
| 2006-08-02 | - Change AssignTopologicalOrder to return vector of SDNode* by reference. | Evan Cheng |
| 2006-08-02 | Final polish on machine pass registries. | Jim Laskey |
| 2006-08-01 | Now that the ISel is available, it's possible to create a default instruction | Jim Laskey |
| 2006-08-01 | 1. Change use of "Cache" to "Default". | Jim Laskey |
| 2006-08-01 | Introducing plugable register allocators and instruction schedulers. | Jim Laskey |
| 2006-08-01 | Added AssignTopologicalOrder() to assign each node an unique id based on thei... | Evan Cheng |
| 2006-08-01 | PIC jump table entries are always 32-bit even in 64-bit mode. | Evan Cheng |
| 2006-07-28 | Remove InFlightSet hack. No longer needed. | Evan Cheng |
| 2006-07-27 | Code cleanups, per review | Nate Begeman |
| 2006-07-27 | AssignNodeIds should return unsigned. | Evan Cheng |
| 2006-07-27 | AssignNodeIds assign each node in the DAG an unique id. | Evan Cheng |
| 2006-07-27 | Support jump tables when in PIC relocation model | Nate Begeman |
| 2006-07-26 | Fix a case where LegalizeAllNodesNotLeadingTo could take exponential time. | Chris Lattner |
| 2006-07-26 | For PR780: | Reid Spencer |
| 2006-07-25 | Initialize some variables the compiler warns about. | Reid Spencer |
| 2006-07-21 | Use an enumeration to eliminate data relocations. | Jim Laskey |
| 2006-07-21 | If a shuffle is a splat, check if the argument is a build_vector with all ele... | Evan Cheng |
| 2006-07-21 | Build more debugger/selectiondag libraries as archives instead of .o files. | Chris Lattner |
| 2006-07-20 | If a shuffle is unary, i.e. one of the vector argument is not needed, turn the | Evan Cheng |
| 2006-07-20 | Mems can be in the output list also. This is the second half of a fix for | Chris Lattner |
| 2006-07-20 | 80 cols | Andrew Lenharth |
| 2006-07-20 | Reduce number of exported symbols | Andrew Lenharth |
| 2006-07-19 | Add an out-of-line virtual method for the sdnode class to give it a home. | Chris Lattner |
| 2006-07-11 | It was pointed out that DEBUG() is only available with -debug. | Jim Laskey |