aboutsummaryrefslogtreecommitdiff
path: root/lib/CodeGen/SelectionDAG/SelectionDAG.cpp
AgeCommit message (Expand)Author
2005-08-19Fix VC++ precedence warning.Jeff Cohen
2005-08-18Add support for target DAG nodes that take 4 operands, such as PowerPC'sNate Begeman
2005-08-18Fix printing of VTSDNodesChris Lattner
2005-08-17Move the code dependency for MathExtras.h from SelectionDAGNodes.h.Jim Laskey
2005-08-17Culling out use of unions for converting FP to bits and vice versa.Jim Laskey
2005-08-17Fix a bug in RemoveDeadNodes where it would crash when its "optional"Chris Lattner
2005-08-17add a new TargetConstant nodeChris Lattner
2005-08-16Eliminate the RegSDNode class, which 3 nodes (CopyFromReg/CopyToReg/ImplicitDef)Chris Lattner
2005-08-16Implement BR_CC and BRTWOWAY_CC. This allows the removal of a rather nastyNate Begeman
2005-08-16Allow passing a dag into dump and getOperationName. If one is availableChris Lattner
2005-08-16Add some methods for dag->dag isel.Chris Lattner
2005-08-13Remove an unncessary argument to SimplifySelectCC and add an additionalNate Begeman
2005-08-13Fix the fabs regression on x86 by abstracting the select_cc optimizationNate Begeman
2005-08-12implement a couple of simple shift foldings.Chris Lattner
2005-08-11Add a select_cc optimization for recognizing abs(int). This speeds up anNate Begeman
2005-08-11Some SELECT_CC cleanups:Nate Begeman
2005-08-10Add new node, SELECT_CC. This node is for targets that don't nativelyNate Begeman
2005-08-10Fix an oversight that may be causing PR617.Chris Lattner
2005-08-09Fix spelling, fix some broken canonicalizations by my last patchChris Lattner
2005-08-09add cc nodes to the AllNodes list so they show up in Graphviz outputChris Lattner
2005-08-09Eliminate the SetCCSDNode in favor of a CondCodeSDNode class. This pulls theChris Lattner
2005-08-07add a small simplification that can be exposed after promotion/expansionChris Lattner
2005-08-05Fix a use-of-dangling-pointer bug, from the introduction of SrcValue's.Chris Lattner
2005-08-02Update to use the new MathExtras.h support for log2 computation.Chris Lattner
2005-07-27Eliminate all remaining tabs and trailing spaces.Jeff Cohen
2005-07-10Change *EXTLOAD to use an VTSDNode operand instead of being an MVTSDNode.Chris Lattner
2005-07-10Change TRUNCSTORE to use a VTSDNode operand instead of being an MVTSTDNodeChris Lattner
2005-07-10Introduce a new VTSDNode class with the ultimate goal of eliminating theChris Lattner
2005-06-29restore old srcValueNode behavior and try to to work around itAndrew Lenharth
2005-06-29tracking the instructions causing loads and stores provides more information ...Andrew Lenharth
2005-06-16Fix bug 537 test 2, which checks to make sure that we fold A+(B-A) -> B forNate Begeman
2005-05-15Add some simplifications for MULH[SU]. This allows us to compile this:Chris Lattner
2005-05-14remove special case hacks for readport/readio from the binary operatorChris Lattner
2005-05-14Implement fixme's by memoizing nodes.Chris Lattner
2005-05-14Turn this into a wrapper for a simpler version of getNode.Chris Lattner
2005-05-14Eliminate special purpose hacks for dynamic_stack_alloc.Chris Lattner
2005-05-14Use the general mechanism for creating multi-value nodes instead of usingChris Lattner
2005-05-14Wrap long line, actually add node to the graph.Chris Lattner
2005-05-14add a getNode() version that allows construction of any node type.Chris Lattner
2005-05-13Handle TAILCALL nodeChris Lattner
2005-05-12fix a bad typeoChris Lattner
2005-05-12rename the ADJCALLSTACKDOWN/ADJCALLSTACKUP nodes to be CALLSEQ_START/BEGIN.Chris Lattner
2005-05-12handle a common case generated by the uint64 -> FP code path betterChris Lattner
2005-05-12Make legalize a bit more efficient, and canonicalize sub X, C -> add X, -CChris Lattner
2005-05-11Do not memoize ADJCALLSTACKDOWN nodes, provide a method to hack on them.Chris Lattner
2005-05-11Print bit count nodes correctlyChris Lattner
2005-05-10Silence some VC++ warningsJeff Cohen
2005-05-09Add support for READPORT, WRITEPORT, READIO, WRITEIOChris Lattner
2005-05-09Fold shifts into subsequent SHL's. These shifts often arise due to addrsesChris Lattner
2005-05-09Don't use the load/store instruction as the source pointer, use the pointerChris Lattner