aboutsummaryrefslogtreecommitdiff
path: root/lib/CodeGen/SelectionDAG/ScheduleDAG.cpp
AgeCommit message (Expand)Author
2008-11-19Experimental post-pass scheduling support. Post-pass schedulingDan Gohman
2008-11-19Move the code for printing a graph node label for an SUnit intoDan Gohman
2008-11-19Convert SUnit's dump method into a print method and implementDan Gohman
2008-11-19Fix debug printing of flagged SDNodes in SUnits so that theyDan Gohman
2008-11-18Change SUnit's dump method to take a ScheduleDAG* instead ofDan Gohman
2008-11-14Add support for building a ScheduleDAG from MachineInstrs. This is currentlyDan Gohman
2008-11-13Remove the FlaggedNodes member from SUnit. Instead of requiring each SUnitDan Gohman
2008-11-13Make the Node member of SUnit private, and add accessors.Dan Gohman
2008-11-13Change ScheduleDAG's DAG member from a reference to a pointer, to prepareDan Gohman
2008-11-11Avoid relying on the SelectionDAG for initializing the MachineFunction andDan Gohman
2008-10-25SDNodes may have at most one Flag result. Update this commentDan Gohman
2008-09-03Separate MachineInstr-emitting routines from actual schedulingDan Gohman
2008-08-28erect abstraction boundaries for accessing SDValue members, rename Val -> Nod...Gabor Greif
2008-08-27Optimize ScheduleDAG's ComputeDepths and ComputeHeights to not needDan Gohman
2008-08-26disallow direct access to SDValue::ResNo, provide a getter insteadGabor Greif
2008-07-27Rename SDOperand to SDValue.Dan Gohman
2008-07-27Tidy SDNode::use_iterator, and complete the transition to have itDan Gohman
2008-07-17Add a new function, ReplaceAllUsesOfValuesWith, which handles bulkDan Gohman
2008-07-14Reapply 53476 and 53480, with a fix so that it properly updatesDan Gohman
2008-07-12Back out 53476 and 53480 for now. Somehow they cause llc to miscompile 179.art.Evan Cheng
2008-07-11Fix an obsolete top-level comment.Dan Gohman
2008-07-11Factor out debugging code into the common base class.Dan Gohman
2008-07-07Pool-allocation for MachineInstrs, MachineBasicBlocks, andDan Gohman
2008-07-07Make DenseMap's insert return a pair, to more closely resemble std::map.Dan Gohman
2008-07-02Replace a few uses of SelectionDAG::getTargetNode withDan Gohman
2008-07-02- Use a faster priority comparison function if -fast.Evan Cheng
2008-07-01Split ISD::LABEL into ISD::DBG_LABEL and ISD::EH_LABEL, eliminatingDan Gohman
2008-06-21Remove a redundant return.Dan Gohman
2008-06-21Remove ScheduleDAG's SUnitMap altogether. Instead, use SDNode's NodeIdDan Gohman
2008-06-21Add a priority queue class, which is a wrapper around std::priority_queueDan Gohman
2008-06-21Change ScheduleDAG's SUnitMap from DenseMap<SDNode*, vector<SUnit*> >Dan Gohman
2008-06-20Clean up some uses of std::distance, now that we have allnodes_size.Dan Gohman
2008-06-06Wrap MVT::ValueType in a struct to get type safetyDuncan Sands
2008-05-14Use a better idiom to silence compiler warnings.Evan Cheng
2008-05-14Really silence compiler warnings.Evan Cheng
2008-05-14Silence some compiler warnings.Evan Cheng
2008-04-20Switch to using Simplified ConstantFP::get API.Chris Lattner
2008-04-16Ongoing work on improving the instruction selection infrastructure:Roman Levenstein
2008-04-15Treat EntryToken nodes as "passive" so that they aren't added to theDan Gohman
2008-04-07Rename MemOperand to MachineMemOperand. This was suggested byDan Gohman
2008-04-07Re-commit of the r48822, where the infinite looping problem discoveredRoman Levenstein
2008-04-03Start of a series of patches related to implicit_def.Evan Cheng
2008-04-03Backing out 48222 temporarily.Evan Cheng
2008-03-26Use a linked data structure for the uses lists of an SDNode, just like Roman Levenstein
2008-03-25A quick nm audit turned up several fixed tables and objects that wereDan Gohman
2008-03-16Make insert_subreg a two-address instruction, vastly simplifying LowerSubregs...Christopher Lamb
2008-03-15Replace all target specific implicit def instructions with a target independe...Evan Cheng
2008-03-14Livein copy scheduling fixes: do not coalesce physical register copies, corre...Evan Cheng
2008-03-12Experimental scheduler change to schedule / coalesce the copies added for fun...Evan Cheng
2008-03-11Recommitting parts of r48130. These do not appear to cause the observed failu...Christopher Lamb