Age | Commit message (Expand) | Author |
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 | 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-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 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-04 | Make SelectionDAG::RemoveDeadNodes iterative instead of recursive, which | Chris Lattner |
2006-08-02 | - Change AssignTopologicalOrder to return vector of SDNode* by reference. | Evan Cheng |
2006-08-01 | Added AssignTopologicalOrder() to assign each node an unique id based on thei... | Evan Cheng |
2006-07-28 | Remove InFlightSet hack. No longer needed. | Evan Cheng |
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-19 | Add an out-of-line virtual method for the sdnode class to give it a home. | Chris Lattner |
2006-06-29 | Ugly hack! Add helper functions InsertInFlightSetEntry and | Evan Cheng |
2006-06-28 | Fix CodeGen/Generic/2006-06-28-SimplifySetCCCrash.ll | Chris Lattner |
2006-05-16 | Add a new ISD::CALL node, make the default impl of TargetLowering::LowerCallTo | Chris Lattner |
2006-05-12 | remove dead vars | Chris Lattner |
2006-05-12 | Compile: | Chris Lattner |
2006-05-08 | Fold shifts with undef operands. | Chris Lattner |
2006-05-06 | constant fold sign_extend_inreg | Chris Lattner |
2006-04-27 | Fix Regression/CodeGen/Generic/2006-04-26-SetCCAnd.ll and | Chris Lattner |
2006-04-22 | JumpTable support! What this represents is working asm and jit support for | Nate Begeman |
2006-04-20 | Implement folding of a bunch of binops with undef | Chris Lattner |
2006-04-15 | Make these predicates return true for bit_convert(buildvector)'s as well as | Chris Lattner |
2006-04-12 | Implement support for the formal_arguments node. To get this, targets should... | Chris Lattner |
2006-04-12 | Don't memoize vloads in the load map! Don't memoize them anywhere here, let | Chris Lattner |
2006-04-08 | Add code generator support for VSELECT | Chris Lattner |
2006-04-04 | Constant fold bitconvert(undef) | Chris Lattner |
2006-04-02 | These entries already exist | Chris Lattner |
2006-04-02 | Add some missing node names | Chris Lattner |
2006-03-31 | Significantly improve handling of vectors that are live across basic blocks, | Chris Lattner |
2006-03-28 | new node | Chris Lattner |
2006-03-28 | Add an assertion | Chris Lattner |
2006-03-28 | Tblgen doesn't like multiple SDNode<> definitions that map to the sameenum va... | Chris Lattner |
2006-03-27 | Unbreak the build on non-apple compilers :-( | Chris Lattner |
2006-03-27 | Try again | Evan Cheng |
2006-03-27 | Incorrect check for FP all one's | Evan Cheng |
2006-03-27 | Change isBuildVectorAllOnesInteger to isBuildVectorAllOnes. Also check for | Evan Cheng |
2006-03-27 | Instead of printing "INTRINSIC" on intrinsic node, print the intrinsic name. | Chris Lattner |
2006-03-26 | Add ISD::isBuildVectorAllZeros predicate | Evan Cheng |