add stacksave/stackrestore nodes
[oota-llvm.git] / lib / CodeGen / SelectionDAG / SelectionDAG.cpp
2006-01-13 Chris Lattneradd stacksave/stackrestore nodes
2006-01-11 Evan Chengignore register #0
2006-01-11 Nate BegemanAdd bswap, rotl, and rotr nodes
2006-01-09 Evan ChengNew getNode() variants.
2006-01-05 Jim LaskeyAdded initial support for DEBUG_LABEL allowing debug...
2005-12-30 Nate BegemanMake sure to pass the offset into the new node, so...
2005-12-23 Chris LattnerFold bitconv(bitconv(x)) -> x. We now compile this:
2005-12-23 Chris Lattnerconstant fold bits_convert in getNode and in the dag...
2005-12-23 Chris Lattneradd very simple support for the BIT_CONVERT node
2005-12-22 Chris Lattnerremove dead code
2005-12-20 Evan ChengAdded a hook to print out names of target specific...
2005-12-19 Evan ChengPrint out opcode number if it's an unknown target node.
2005-12-19 Chris LattnerFix a case where the DAG Combiner would accidentally...
2005-12-16 Jim LaskeyAdded source file/line correspondence for dwarf (PowerP...
2005-12-10 Evan ChengAdded new getNode and getTargetNode variants for X86...
2005-12-06 Nate BegemanTeach the SelectionDAG ISel how to turn ConstantPacked...
2005-12-01 Chris LattnerDon't remove two operand, two result nodes from the...
2005-12-01 Chris LattnerThis is a bugfix for SelectNodeTo. In certain situatio...
2005-11-30 Chris LattnerMake SelectNodeTo return N
2005-11-30 Chris LattnerCALLSEQ_START/END nodes don't get memoized, do not...
2005-11-30 Evan ChengFixed a bug introduced by my last commit: TargetGlobalV...
2005-11-30 Evan ChengAdded an index field to GlobalAddressSDNode so it can...
2005-11-29 Chris LattnerAdd support for a new STRING and LOCATION node for...
2005-11-22 Nate BegemanCheck in code to scalarize arbitrarily wide packed...
2005-11-19 Chris LattnerAdd some method variants, patch by Evan Cheng
2005-11-19 Nate BegemanTeach LLVM how to scalarize packed types. Currently...
2005-11-11 Andrew Lenharthcontinued readcyclecounter support
2005-11-09 Chris LattnerSwitch the allnodes list from a vector of pointers...
2005-11-08 Chris LattnerChange the ValueList array for each node to be shared...
2005-11-08 Chris LattnerSwitch the operandlist/valuelist from being vectors...
2005-11-08 Chris LattnerClean up RemoveDeadNodes significantly, by eliminating...
2005-10-23 Andrew Lenharthadd TargetExternalSymbol
2005-10-13 Nate BegemanMove some Legalize functionality over to the DAGCombine...
2005-10-10 Chris LattnerThis function is now dead
2005-10-10 Chris LattnerEnable Nate's excellent DAG combiner work by default...
2005-10-09 Chris Lattner(X & Y) & C == 0 if either X&C or Y&C are zero
2005-10-07 Chris Lattnerremove debugging code
2005-10-07 Chris Lattnerimplement CodeGen/PowerPC/div-2.ll:test2-4 by propagati...
2005-10-07 Chris Lattnerfix indentation
2005-10-07 Chris LattnerTurn sdivs into udivs when we can prove the sign bits...
2005-10-05 Nate BegemanLet the combiner handle more cases
2005-10-05 Chris Lattnerimplement visitBR_CC so that PowerPC/inverted-bool...
2005-10-05 Chris Lattnerfix some pastos
2005-10-05 Chris LattnerAdd a new HandleNode class, which is used to handle...
2005-09-28 Chris LattnerAdd FP versions of the binary operators, keeping the...
2005-09-23 Chris LattnerTurn (X^C1) == C2 into X == C1^C2 iff X&~C1 = 0 (and...
2005-09-09 Chris LattnerFix a problem duraid encountered on itanium where this...
2005-09-09 Chris LattnerFix a crash viewing dags that have target nodes in...
2005-09-09 Nate BegemanLast round of 2-node folds from SD.cpp. Will move...
2005-09-08 Nate BegemanMove yet more folds over to the dag combiner from sd.cpp
2005-09-07 Nate BegemanAnother round of dag combiner changes. This fixes...
2005-09-07 Chris LattnerFix a bug nate ran into with replacealluseswith. In...
2005-09-03 Chris LattnerFix a checking failure in gs
2005-09-02 Chris LattnerMake sure to auto-cse nullary ops
2005-09-02 Chris LattnerFix some buggy logic where we would try to remove nodes...
2005-09-02 Chris LattnerAdd support for ANY_EXTEND and add a few minor folds...
2005-09-01 Nate BegemanFix some code in the current node combining code, spott...
2005-08-31 Jeff CohenFix VC++ precedence warnings
2005-08-31 Nate BegemanSigh, not my day. Fix typo.
2005-08-31 Nate BegemanFix a mistake in my previous patch pointed out by sabre...
2005-08-31 Nate BegemanRemove some unnecessary casts, and add the AssertZext...
2005-08-30 Chris LattnerAllow physregs to occur in the dag with multiple types...
2005-08-30 Nate BegemanRemove a bogus piece of my AssertSext/AssertZext patch...
2005-08-30 Nate BegemanAdd support for AssertSext and AssertZext, folding...
2005-08-29 Chris LattnerAdd a new API for Nate
2005-08-28 Chris LattnerFix a bug in ReplaceAllUsesWith
2005-08-26 Chris LattnerChecking types here is not safe, because multiple types...
2005-08-26 Chris LattnerRevampt ReplaceAllUsesWith to be more efficient and...
2005-08-26 Chris LattnerChange ConstantPoolSDNode to actually hold the Constant...
2005-08-26 Chris LattnerFix a huge annoyance: SelectNodeTo took types before...
2005-08-26 Chris LattnerFix a nasty bug from a previous patch of mine
2005-08-25 Nate BegemanNew fold for SELECT_CC
2005-08-25 Chris LattnerDon't auto-cse nodes that return flags
2005-08-25 Chris Lattnersimplify the code a bit using isOperationLegal
2005-08-25 Chris LattnerADd support for TargetConstantPool nodes
2005-08-25 Chris Lattneradd a new TargetFrameIndex node
2005-08-24 Chris Lattneradd a method
2005-08-24 Chris LattnerAdd ReplaceAllUsesWith that can take a vector of replac...
2005-08-24 Chris Lattnerteach selection dag mask tracking about the fact that...
2005-08-24 Nate BegemanTeach SelectionDAG how to simplify a few more setcc...
2005-08-24 Nate BegemanFix optimization of select_cc seteq X, 0, 1, 0 -> srl...
2005-08-23 Nate BegemanTeach the SelectionDAG how to transform select_cc eq...
2005-08-21 Chris Lattneradd anew method
2005-08-21 Chris Lattneradd a method
2005-08-21 Chris Lattneradd a method
2005-08-19 Chris LattnerAdd support for TargetGlobalAddress nodes
2005-08-19 Chris LattnerFix a bug in previous commit
2005-08-19 Chris LattnerPrint physreg register nodes with target names (e.g...
2005-08-19 Jeff CohenFix VC++ precedence warning.
2005-08-18 Nate BegemanAdd support for target DAG nodes that take 4 operands...
2005-08-18 Chris LattnerFix printing of VTSDNodes
2005-08-17 Jim LaskeyMove the code dependency for MathExtras.h from Selectio...
2005-08-17 Jim LaskeyCulling out use of unions for converting FP to bits...
2005-08-17 Chris LattnerFix a bug in RemoveDeadNodes where it would crash when...
2005-08-17 Chris Lattneradd a new TargetConstant node
2005-08-16 Chris LattnerEliminate the RegSDNode class, which 3 nodes (CopyFromR...
2005-08-16 Nate BegemanImplement BR_CC and BRTWOWAY_CC. This allows the remov...
2005-08-16 Chris LattnerAllow passing a dag into dump and getOperationName...
2005-08-16 Chris LattnerAdd some methods for dag->dag isel.
2005-08-13 Nate BegemanRemove an unncessary argument to SimplifySelectCC and...
next