| Commit message (Expand) | Author | Age | Files | Lines | 
| ... |  | 
| *  | Define CallSDNode, an SDNode subclass for use with ISD::CALL. | Dan Gohman | 2008-09-13 | 1 | -8/+31 | 
| *  | Change ConstantSDNode and ConstantFPSDNode to use ConstantInt* and | Dan Gohman | 2008-09-12 | 1 | -7/+15 | 
| *  | Rename ConstantSDNode::getValue to getZExtValue, for consistency | Dan Gohman | 2008-09-12 | 1 | -28/+31 | 
| *  | Make safer variant of alias resolution routine to be default | Anton Korobeynikov | 2008-09-09 | 1 | -1/+1 | 
| *  | Fix the string for ISD::UDIVREM. | Dan Gohman | 2008-09-08 | 1 | -1/+1 | 
| *  | Clean up uses of TargetLowering::getTargetMachine. | Dan Gohman | 2008-09-04 | 1 | -1/+1 | 
| *  | typo | Gabor Greif | 2008-08-30 | 1 | -1/+1 | 
| *  | erect abstraction boundaries for accessing SDValue members, rename Val -> Nod... | Gabor Greif | 2008-08-28 | 1 | -90/+90 | 
| *  | Split the ATOMIC NodeType's to include the size, e.g. | Dale Johannesen | 2008-08-28 | 1 | -32/+144 | 
| *  | Reorganize the lifetimes of the major objects SelectionDAGISel | Dan Gohman | 2008-08-27 | 1 | -5/+9 | 
| *  | disallow direct access to SDValue::ResNo, provide a getter instead | Gabor Greif | 2008-08-26 | 1 | -10/+10 | 
| *  | Optimize SelectionDAG's topological sort to use one pass instead | Dan Gohman | 2008-08-26 | 1 | -12/+7 | 
| *  | Actually recycle SDNode allocations. SelectionDAG is using | Dan Gohman | 2008-08-26 | 1 | -2/+6 | 
| *  | make sure to flush the stream after dumping, to make sure it goes out immedia... | Chris Lattner | 2008-08-24 | 1 | -0/+1 | 
| *  | Switch the asmprinter (.ll) and all the stuff it requires over to | Chris Lattner | 2008-08-23 | 1 | -75/+73 | 
| *  | Move the point at which FastISel taps into the SelectionDAGISel | Dan Gohman | 2008-08-23 | 1 | -15/+35 | 
| *  | Move SelectionDAG's constructor out of line. | Dan Gohman | 2008-08-23 | 1 | -0/+7 | 
| *  | Add libm-oriented ISD opcodes for rounding operations. | Dan Gohman | 2008-08-21 | 1 | -0/+5 | 
| *  | Elements in DeadNodeSet are checked for use_empty() before they | Dan Gohman | 2008-08-21 | 1 | -1/+0 | 
| *  | Change the FoldingSetNodeID usage for objects which carry | Dan Gohman | 2008-08-20 | 1 | -36/+26 | 
| *  | don't use the result of WriteTypeSymbolic or WriteAsOperand. | Chris Lattner | 2008-08-19 | 1 | -5/+6 | 
| *  | Rework the routines that convert AP[S]Int into a string.  Now, instead of | Chris Lattner | 2008-08-17 | 1 | -1/+1 | 
| *  | Improve support for vector casts in LLVM IR and CodeGen. | Dan Gohman | 2008-08-14 | 1 | -2/+26 | 
| *  | Fix a bogus srem rule - a negative value srem'd by a power-of-2 | Dan Gohman | 2008-08-13 | 1 | -5/+3 | 
| *  | Allow SelectionDAG to create EXTRACT_VECTOR_ELT nodes with | Dan Gohman | 2008-08-13 | 1 | -11/+9 | 
| *  | Fold the useful features of alist and alist_node into ilist, and | Dan Gohman | 2008-07-28 | 1 | -52/+46 | 
| *  | Rename SDOperand to SDValue. | Dan Gohman | 2008-07-27 | 1 | -375/+369 | 
| *  | Tidy SDNode::use_iterator, and complete the transition to have it | Dan Gohman | 2008-07-27 | 1 | -15/+8 | 
| *  | Rename isOnlyUseOf to isOnlyUserOf. | Dan Gohman | 2008-07-27 | 1 | -2/+2 | 
| *  | Fix grammaros in comments. | Dan Gohman | 2008-07-21 | 1 | -2/+2 | 
| *  | Add VerifyNode, a place to put sanity checks on | Duncan Sands | 2008-07-21 | 1 | -2/+38 | 
| *  | Add a new function, ReplaceAllUsesOfValuesWith, which handles bulk | Dan Gohman | 2008-07-17 | 1 | -191/+331 | 
| *  | SelectionDAG::AssignNodeIds is unused. | Dan Gohman | 2008-07-15 | 1 | -11/+0 | 
| *  | Don't sort SDNodes by their addresses in SelectionDAG::dump. Instead, | Dan Gohman | 2008-07-15 | 1 | -9/+5 | 
| *  | Include a frame index in the "fixed stack" pseudo source value | Dan Gohman | 2008-07-11 | 1 | -2/+2 | 
| *  | Don't barf when dumping a constant that contains | Duncan Sands | 2008-07-10 | 1 | -1/+1 | 
| *  | Simplify hasNUsesOfValue and hasAnyUsesOfValue even more. This | Dan Gohman | 2008-07-09 | 1 | -14/+2 | 
| *  | hasAnyUseOfValue can check SDUse nodes of its users directly instead | Dan Gohman | 2008-07-09 | 1 | -13/+3 | 
| *  | Move MemoryVT out of LSBaseNode into MemSDNode, allowing the | Dan Gohman | 2008-07-09 | 1 | -28/+16 | 
| *  | Move the IsVolatile and SVOffset fields into the MemSDNode base | Dan Gohman | 2008-07-09 | 1 | -0/+11 | 
| *  | Missed alignment argument on stores lowered from memcpy. | Evan Cheng | 2008-07-09 | 1 | -1/+1 | 
| *  | const-ify SelectionDAG::getNodeValueTypes. | Dan Gohman | 2008-07-09 | 1 | -2/+2 | 
| *  | Factor out the code for computing an alignment value, and make it | Dan Gohman | 2008-07-08 | 1 | -38/+32 | 
| *  | Do not CSE DEBUG_LOC, DBG_LABEL, DBG_STOPPOINT, DECLARE, and EH_LABEL SDNode'... | Evan Cheng | 2008-07-08 | 1 | -19/+38 | 
| *  | Pool-allocation for SDNodes. The pool is allocated once for each function, | Dan Gohman | 2008-07-07 | 1 | -62/+107 | 
| *  | Fix SDNode::MorphNodeTo (a function used by by SelectNodeTo) to | Dan Gohman | 2008-07-07 | 1 | -43/+50 | 
| *  | Remove most of the uses of SDOperandPtr, usually replacing it with a | Dan Gohman | 2008-07-07 | 1 | -38/+69 | 
| *  | Fixed generating incorrect aligned stores that I backout of r53031 | Mon P Wang | 2008-07-05 | 1 | -3/+4 | 
| *  | Backed out 53031. | Evan Cheng | 2008-07-03 | 1 | -4/+3 | 
| *  | Avoid unnecessarily copying APInt objects. | Dan Gohman | 2008-07-03 | 1 | -3/+3 |