http://llvm.org/bugs/show_bug.cgi?id=1237
[oota-llvm.git] / lib / CodeGen / SelectionDAG / SelectionDAG.cpp
2007-02-25 Chris Lattnerfold trivial token factor nodes. This allows us to...
2007-02-21 Jim LaskeySelection and lowering for exception handling.
2007-02-04 Chris LattnerIntroduce new UnarySDNode/BinarySDNode/TernarySDNode...
2007-02-04 Chris Lattnereliminate the SDNode::setValueTypes method.
2007-02-04 Chris Lattnereliminate a bunch of duplicate ctors and helper functions.
2007-02-04 Chris Lattnermove MorphNode to out of line and merge setNodeOperands...
2007-02-04 Chris Lattnersimplify MorphNodeTo to take a VTList operand.
2007-02-04 Chris Lattnereliminate some extraneous methods in SDNode
2007-02-04 Chris LattnerGive each selectiondag node class a home for it's vtabl...
2007-02-04 Chris LattnerEliminate some std::sets. This speeds up isel of kimwi...
2007-02-04 Chris LattnerSwitch SelectionDAG::ReplaceAllUsesOfValueWith to use...
2007-02-01 Chris LattnerFit in 80 columns
2007-01-29 Nate BegemanFinish off bug 680, allowing targets to custom lower...
2007-01-26 Jim LaskeyMake LABEL a builtin opcode.
2006-12-07 Bill WendlingRemoved more <iostream> includes
2006-12-07 Bill WendlingRemoving even more <iostream> includes.
2006-12-02 Jeff CohenUnbreak VC++ build.
2006-11-16 Evan ChengFix an incorrectly inverted condition.
2006-11-11 Reid SpencerMake an assert comment match the tested assertion.
2006-11-09 Evan ChengRename ISD::MemOpAddrMode to ISD::MemIndexedMode
2006-11-08 Jim LaskeyRemove redundant <cmath>.
2006-11-05 Jeff CohenUnbreak VC++ build.
2006-11-05 Evan ChengAdded getIndexedStore.
2006-11-03 Evan ChengFix comments.
2006-11-03 Evan ChengAdded isPredecessor.
2006-11-03 Chris Lattnersilence warning
2006-11-02 Reid SpencerFor PR786:
2006-11-01 Evan ChengPrint jumptable index.
2006-10-30 Evan ChengAdded a new SDNode type: BR_JT for jumptable branch.
2006-10-29 Evan ChengVLOAD is not the LoadSDNode opcode.
2006-10-29 Nick LewyckyRemove spurious case. EXTLOAD is not one of the node...
2006-10-28 Jim LaskeyLoad and stores have not been uniqued properly.
2006-10-28 Chris LattnerFix a serious bug that caused any x86 vector stuff...
2006-10-27 Jim LaskeyClean up.
2006-10-27 Jim LaskeySwitch over from SelectionNodeCSEMap to FoldingSet.
2006-10-26 Evan ChenggetPreIndexedLoad -> getIndexedLoad.
2006-10-17 Chris LattnerTrivial patch to speed up legalizing common i64 constants.
2006-10-17 Evan ChengReflect MemOpAddrMode change; added a helper to create...
2006-10-17 Jim LaskeyMake it simplier to dump DAGs while in DAGCombiner...
2006-10-14 Chris LattnerWhen SimplifySetCC was moved to the DAGCombiner, it...
2006-10-13 Chris LattnerFix a bug where we incorrectly turned '(X & 0) == 0...
2006-10-13 Evan ChengMerge ISD::TRUNCSTORE to ISD::STORE. Switch to using...
2006-10-12 Evan ChengAdd RemoveDeadNode to remove a dead node and its (poten...
2006-10-11 Evan ChengNaming consistency.
2006-10-11 Andrew LenharthJimptables working again on alpha.
2006-10-11 Evan ChengFindModifiedNodeSlot needs to add LoadSDNode ivars...
2006-10-10 Evan ChengSDNode::dump should also print out extension type and VT.
2006-10-09 Evan ChengReflects ISD::LOAD / ISD::LOADX / LoadSDNode changes.
2006-10-05 Evan ChengAdd getStore() helper function to create ISD::STORE...
2006-10-04 Evan ChengCombine ISD::EXTLOAD, ISD::SEXTLOAD, ISD::ZEXTLOAD...
2006-09-26 Andrew LenharthComments on JumpTableness
2006-09-19 Chris LattnerFold extract_element(cst) to cst
2006-09-19 Chris LattnerMinor speedup for legalize by avoiding some malloc...
2006-09-12 Evan ChengAdded support for machine specific constantpool values...
2006-09-09 Chris LattnerImplement the fpowi now by lowering to a libcall
2006-08-29 Evan ChengMove isCommutativeBinOp from SelectionDAG.cpp and DAGCo...
2006-08-27 Evan ChengEliminate SelectNodeTo() and getTargetNode() variants...
2006-08-26 Evan ChengSelectNodeTo now returns a SDNode*.
2006-08-16 Chris Lattnerminor changes.
2006-08-16 Chris LattnerUse the appropriate typedef
2006-08-15 Chris LattnerStart using SDVTList more consistently
2006-08-15 Chris Lattneradd a new SDVTList type and new SelectionDAG::getVTList...
2006-08-14 Chris LattnerAdd a new getNode() method that takes a pointer to...
2006-08-14 Chris Lattnerremove SelectionDAG::InsertISelMapEntry, it is dead
2006-08-14 Chris LattnerAdd code to resize the CSEMap hash table. This doesn...
2006-08-14 Chris LattnerAdd the actual constant to the hash for ConstantPool...
2006-08-11 Chris LattnerRemove 8 more std::map's.
2006-08-11 Chris LattnerMove the BBNodes, GlobalValues, TargetGlobalValues...
2006-08-11 Chris Lattnereliminate the NullaryOps map, use CSEMap instead.
2006-08-11 Chris LattnerChange one ReplaceAllUsesWith method to take an array...
2006-08-08 Chris LattnerStart eliminating temporary vectors used to create...
2006-08-08 Chris LattnerEliminate some malloc traffic by allocating vectors...
2006-08-07 Chris LattnerRevamp the "CSEMap" datastructure used in the Selection...
2006-08-07 Evan ChengClear TopOrder before assigning topological order....
2006-08-04 Chris LattnerMake SelectionDAG::RemoveDeadNodes iterative instead...
2006-08-02 Evan Cheng- Change AssignTopologicalOrder to return vector of...
2006-08-01 Evan ChengAdded AssignTopologicalOrder() to assign each node...
2006-07-28 Evan ChengRemove InFlightSet hack. No longer needed.
2006-07-27 Evan ChengAssignNodeIds should return unsigned.
2006-07-27 Evan ChengAssignNodeIds assign each node in the DAG an unique id.
2006-07-19 Chris LattnerAdd an out-of-line virtual method for the sdnode class...
2006-06-29 Evan ChengUgly hack! Add helper functions InsertInFlightSetEntry and
2006-06-28 Chris LattnerFix CodeGen/Generic/2006-06-28-SimplifySetCCCrash.ll
2006-05-16 Chris LattnerAdd a new ISD::CALL node, make the default impl of...
2006-05-12 Chris Lattnerremove dead vars
2006-05-12 Chris LattnerCompile:
2006-05-08 Chris LattnerFold shifts with undef operands.
2006-05-06 Chris Lattnerconstant fold sign_extend_inreg
2006-04-27 Chris LattnerFix Regression/CodeGen/Generic/2006-04-26-SetCCAnd...
2006-04-22 Nate BegemanJumpTable support! What this represents is working...
2006-04-20 Chris LattnerImplement folding of a bunch of binops with undef
2006-04-15 Chris LattnerMake these predicates return true for bit_convert(build...
2006-04-12 Chris LattnerImplement support for the formal_arguments node. To...
2006-04-12 Chris LattnerDon't memoize vloads in the load map! Don't memoize...
2006-04-08 Chris LattnerAdd code generator support for VSELECT
2006-04-04 Chris LattnerConstant fold bitconvert(undef)
2006-04-02 Chris LattnerThese entries already exist
2006-04-02 Chris LattnerAdd some missing node names
2006-03-31 Chris LattnerSignificantly improve handling of vectors that are...
2006-03-28 Chris Lattnernew node
next