convert cycle checker to smallptrset, add comments and make it
[oota-llvm.git] / lib / CodeGen / SelectionDAG / SelectionDAG.cpp
2010-02-24 Chris Lattnerconvert cycle checker to smallptrset, add comments...
2010-02-24 Chris Lattnerrevert david's patch which does not even build.
2010-02-24 David GreeneUse a SmallPtrSet as suggested by Chris.
2010-02-24 Dan GohmanWhen forming SSE min and max nodes for UGE and ULE...
2010-02-24 Chris Lattneradd node #'s to debug dumps.
2010-02-23 Chris Lattnermake selectnodeto set the nodeid to -1. This makes...
2010-02-23 Chris LattnerPrint node ID's in dumps and views if set.
2010-02-23 David GreeneSpeed up cycle checking significantly by caching results.
2010-02-17 David GreeneMake the non-temporal bit "significant" in MemSDNodes...
2010-02-16 Duncan SandsThere are two ways of checking for a given type, for...
2010-02-15 Evan ChengFix a memory leak. Patch by Nicolas Geoffray.
2010-02-15 David GreeneAdd non-temporal flags and remove an assumption of...
2010-02-09 David GreeneOnly dump output in debug mode.
2010-02-09 Chris Lattnermove target-independent opcodes out of TargetInstrInfo
2010-02-01 Mon P WangImprove EXTRACT_VECTOR_ELT patch based on comments...
2010-02-01 Mon P WangFixed a couple of optimization with EXTRACT_VECTOR_ELT...
2010-01-29 Duncan SandsChange the SREM case to match the logic in the IR versi...
2010-01-28 Bill WendlingAssign the ordering of SDNodes in a much less intrusive...
2010-01-23 Bill WendlingRemove the '-disable-scheduling' flag and replace it...
2010-01-20 David GreeneWhen XDEBUG is enabled, check for SelectionDAG cycles...
2010-01-20 David GreeneAdd some asserts to check SelectionDAG problems earlier.
2010-01-19 David GreeneAdd some new debugging APIs to print out "raw" Selectio...
2010-01-15 David GreeneAdd some debug routines to SelectionDAG to dump full...
2010-01-09 Dan GohmanRevert an earlier change to SIGN_EXTEND_INREG for vecto...
2010-01-06 Evan ChengTeach dag combine to fold the following transformation...
2010-01-05 David GreeneChange errs() to dbgs().
2009-12-22 Bill WendlingAdd more plumbing. This time in the LowerArguments...
2009-12-21 Bill Wendling- Add a bit more plumbing assigning an order to SDNodes.
2009-12-21 Bill WendlingPlace SDNodeOrdering.h in the directory it's used.
2009-12-19 Anton KorobeynikovUse 4-arg getVTList) variant instead of generic one...
2009-12-18 Bill WendlingChanges from review:
2009-12-16 Daniel DunbarReapply r91392, it was only unmasking the bug, and...
2009-12-16 Daniel DunbarRevert "Initial work on disabling the scheduler. This...
2009-12-15 Bill WendlingInitial work on disabling the scheduler. This is a...
2009-12-14 Dan GohmanFix integer cast code to handle vector types.
2009-12-13 Anton KorobeynikovFix weird typo which leads to unallocated memory access...
2009-12-11 Dan GohmanImplement vector widening, splitting, and scalarizing...
2009-12-09 Evan ChengTeach InferPtrAlignment to infer GV+cst alignment and...
2009-12-09 Evan ChengMove isConsecutiveLoad to SelectionDAG. It's not target...
2009-12-09 Evan ChengInfer alignment for non-fixed stack object.
2009-12-09 Evan ChengAdd const qualifier.
2009-12-09 Evan ChengRefactor InferAlignment out of DAGCombine.
2009-11-30 Mon P WangAdded support to allow clients to custom widen. For...
2009-11-23 Dan GohmanRemove ISD::DEBUG_LOC and ISD::DBG_LABEL, which are...
2009-11-21 Devang PatelWe are not using DBG_STOPPOINT anymore.
2009-11-20 Dan GohmanTarget-independent support for TargetFlags on BlockAddr...
2009-11-13 Dale JohannesenAdjust isConstantSplat to allow for big-endian targets.
2009-11-12 David GreeneAdd a bool flag to StackObjects telling whether they...
2009-11-07 Mon P WangFix memoizing of CvtRndSatSDNode
2009-11-05 Dan GohmanAvoid printing a redundant space in SDNode->dump().
2009-10-31 Dan GohmanMake -print-machineinstrs more readable.
2009-10-30 Dan GohmanInitial target-independent CodeGen support for BlockAdd...
2009-10-29 Dan GohmanRemove some unnecessary spaces in debug output.
2009-10-28 Dan GohmanRewrite SelectionDAG::isPredecessorOf to be iterative...
2009-10-22 Anton KorobeynikovFix null pointer dereference.
2009-10-18 Evan Cheng-Revert parts of 84326 and 84411. Distinquishing betwee...
2009-10-18 Evan ChengOnly fixed stack objects and spill slots should be...
2009-10-17 Evan ChengRevert 84315 for now. Re-thinking the patch.
2009-10-17 Evan ChengRename getFixedStack to getStackObject. The stack objec...
2009-10-15 Jakob Stoklund OlesenReport errors correctly for unselected target intrinsics.
2009-10-13 Duncan SandsIntroduce new convenience methods for sign extending or
2009-10-10 Dan GohmanMake getMachineNode return a MachineSDNode* instead...
2009-10-08 Bob WilsonAdd a SelectionDAG getTargetInsertSubreg convenience...
2009-09-25 Dan GohmanImprove MachineMemOperand handling.
2009-09-25 Dan GohmanRename getTargetNode to getMachineNode, for consistency...
2009-09-25 Dan GohmanAdd a version of dumpr() that has a SelectionDAG* argument.
2009-09-23 Dan GohmanUse getStoreSize() instead of getStoreSizeInBits()/8.
2009-09-23 Dan GohmanRename several variables from EVT to more descriptive...
2009-09-23 Dan GohmanGive MachineMemOperand an operator<<, factoring out...
2009-09-21 Dan GohmanChange MachineMemOperand's alignment value to be the...
2009-09-20 Chris Lattnertidy up
2009-09-15 Nate BegemanDo not add the SVOffset to the Node CSE ID. The same...
2009-09-15 Nate BegemanBetter solution for tracking both the original alignmen...
2009-09-15 Nate BegemanRemove incorrect CSE code from r81813.
2009-09-15 Nate BegemanAdd an "original alignment" field to load and store...
2009-09-03 Dan GohmanRecognize more opportunities to use SSE min and max...
2009-08-28 Devang PatelReapply 79977.
2009-08-26 Devang PatelRevert 79977. It causes llvm-gcc bootstrap failures...
2009-08-25 Owen AndersonGet rid of this horrible "benign race" by exploiting...
2009-08-25 Devang PatelUpdate DebugInfo interface to use metadata, instead...
2009-08-23 Chris LattnerChange Pass::print to take a raw ostream instead of...
2009-08-22 Devang PatelRecord variable debug info at ISel time directly.
2009-08-22 Owen AndersonReapply r79708 with the appropriate fix for the case...
2009-08-22 Chris Lattnerrevert r79708 + r79711
2009-08-22 Eric ChristopherActually remove unused static. Previous commit removed...
2009-08-22 Eric ChristopherRemove unused static.
2009-08-22 Owen AndersonEase contention on this lock by noticing that all write...
2009-08-19 Dan GohmanAdd an x86 peep that narrows TEST instructions to forms...
2009-08-15 Evan ChengNeeds to check whether unaligned load / store of i64...
2009-08-15 Benjamin KramerUnbreak build. Evan, please make sure my changes are...
2009-08-14 Anton KorobeynikovAllow targets to specify their choice of calling conven...
2009-08-13 Owen AndersonPush LLVMContexts through the IntegerType APIs.
2009-08-12 Owen AndersonAdd contexts to some of the MVT APIs. No functionality...
2009-08-11 Owen AndersonFix warnings.
2009-08-11 Owen AndersonSplit EVT into MVT and EVT, the former representing...
2009-08-11 Dan GohmanTidy #includes.
2009-08-11 Jim GrosbachSjLj based exception handling unwinding support. This...
2009-08-10 Owen AndersonRename MVT to EVT, in preparation for splitting SimpleV...
2009-08-10 Owen AndersonStart moving TargetLowering away from using full MVTs...
2009-08-05 Dan GohmanMajor calling convention code refactoring.
next