aboutsummaryrefslogtreecommitdiff
path: root/lib/CodeGen/SelectionDAG/SelectionDAG.cpp
AgeCommit message (Expand)Author
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
2005-05-09memoize all nodes, even null Value* nodes. Do not add two token chain outputsChris Lattner
2005-05-09Print SrcValue nodes correctlyChris Lattner
2005-05-03Implement count leading zeros (ctlz), count trailing zeros (cttz), and countAndrew Lenharth
2005-04-28Add FSQRT, FSIN, FCOS nodes, patch contributed by Morten OfstadChris Lattner
2005-04-27Implement Value* tracking for loads and stores in the selection DAG. This en...Andrew Lenharth
2005-04-26Fold (X > -1) | (Y > -1) --> (X&Y > -1)Chris Lattner
2005-04-25implement some more logical compares with constants, so that:Chris Lattner
2005-04-25Codegen x < 0 | y < 0 as (x|y) < 0. This allows us to compile this to:Chris Lattner
2005-04-22Convert tabs to spacesMisha Brukman
2005-04-21Remove trailing whitespaceMisha Brukman
2005-04-21Improve and elimination. On PPC, for:Chris Lattner
2005-04-21Fold (x & 8) != 0 and (x & 8) == 8 into (x & 8) >> 3.Chris Lattner
2005-04-18Fold setcc of MVT::i1 operands into logical operationsChris Lattner
2005-04-18Another minor simplification: handle setcc (zero_extend x), c -> setcc(x, c')Chris Lattner
2005-04-18Another simple xformChris Lattner
2005-04-18Fold:Chris Lattner
2005-04-18Make the AND elimination operation recursive and significantly more powerful,Chris Lattner
2005-04-14Add a couple missing transforms in getSetCC that were triggering assertionsNate Begeman
2005-04-13Disbale the broken fold of shift + sz[ext] for nowNate Begeman
2005-04-13fix an infinite loopChris Lattner
2005-04-13fix some serious miscompiles on ia64, alpha, and ppcChris Lattner
2005-04-13avoid work when possible, perhaps fix the problem nate and andrew are seeingChris Lattner
2005-04-13add back the optimization that Nate added for shl X, (zext_inreg y)Chris Lattner