aboutsummaryrefslogtreecommitdiff
path: root/lib/CodeGen/ScheduleDAG.cpp
AgeCommit message (Expand)Author
2009-02-11When scheduling a block in parts, keep track of the overallDan Gohman
2009-02-11Use iterators to iterate through the Preds array instead ofDan Gohman
2009-02-10Factor out more code for computing register live-range informationforDan Gohman
2009-01-16Instead of adding dependence edges between terminator instructionsDan Gohman
2009-01-15Generalize the HazardRecognizer interface so that it can be usedDan Gohman
2009-01-15Move a few containers out of ScheduleDAGInstrs::BuildSchedGraphDan Gohman
2009-01-13Avoid referring to edge D after the Succs or Preds arrays haveDan Gohman
2009-01-05Don't call setDepthDirty/setHeightDirty when adding an edgeDan Gohman
2008-12-23Minor code simplifications.Dan Gohman
2008-12-22Optimize setDepthDirty and setHeightDirty a little, as they showedDan Gohman
2008-12-20Use SmallVector's pop_back_val.Dan Gohman
2008-12-20Use the correct Preds and Succs lists in setHeightDirty()Dan Gohman
2008-12-17Use getDepth() and getHeight() instead of accessing theDan Gohman
2008-12-16Fix some register-alias-related bugs in the post-RA scheduler livenessDan Gohman
2008-12-16Move addPred and removePred out-of-line.Dan Gohman
2008-12-09Rewrite the SDep class, and simplify some of the related code.Dan Gohman
2008-12-09Whitespace cleanups.Dan Gohman
2008-11-25Initial support for anti-dependence breaking. Currently this code does notDan Gohman
2008-11-21Rename SDep's isSpecial to isArtificial, to make this field a littleDan Gohman
2008-11-20Add #include <climits> to get the definition of INT_MAX.Dan Gohman
2008-11-20Factor out the code for verifying the work of the scheduler,Dan Gohman
2008-11-19Experimental post-pass scheduling support. Post-pass schedulingDan Gohman