aboutsummaryrefslogtreecommitdiff
path: root/lib/CodeGen/ScheduleDAG.cpp
AgeCommit message (Expand)Author
2013-03-01Scheduler diagnostics. Print the register name.Andrew Trick
2013-03-01Instructions schedulers should report correct height/depth.Andrew Trick
2013-02-16Replace loop with std::find.Benjamin Kramer
2013-01-24MIsched: Added biasCriticalPath.Andrew Trick
2012-12-03Use the new script to sort the includes of every file under lib.Chandler Carruth
2012-11-13misched: Don't consider artificial edges weak edges.Andrew Trick
2012-11-12misched: Infrastructure for weak DAG edges.Andrew Trick
2012-09-11Release build: guard dump functions withManman Ren
2012-09-06Release build: guard dump functions with "ifndef NDEBUG"Manman Ren
2012-06-13sched: Avoid trivially redundant DAG edges. Take the one with higher latency.Andrew Trick
2012-03-07misched preparation: clarify ScheduleDAG and ScheduleDAGInstrs roles.Andrew Trick
2012-03-07misched preparation: modularize schedule printing.Andrew Trick
2012-03-07misched preparation: modularize schedule verification.Andrew Trick
2012-02-17Don't print out pointer values in SUnit::dump().Jakob Stoklund Olesen
2012-01-14misched: Initial code for building an MI level scheduling DAGAndrew Trick
2011-12-20Unweaken vtables as per http://llvm.org/docs/CodingStandards.html#ll_virtual_...David Blaikie
2011-08-19Make a bunch of symbols private.Benjamin Kramer
2011-08-12Silence a bunch (but not all) "variable written but not read" warningsDuncan Sands
2011-06-28- Rename TargetInstrDesc, TargetOperandInfo to MCInstrDesc and MCOperandInfo andEvan Cheng
2011-06-15Added -stress-sched flag in the Asserts build.Andrew Trick
2011-04-15Fix a ton of comment typos found by codespell. Patch byChris Lattner
2011-02-04Introducing a new method of tracking register pressure. We can'tAndrew Trick
2010-12-24Fix a few cases where the scheduler is not checking for phys reg copies. The ...Andrew Trick
2010-12-24Various bits of framework needed for precise machine-level selectionAndrew Trick
2010-12-20reduce indentation, no functionality change.Chris Lattner
2010-06-30Remove trailing whitespace, no functionality changes.John Mosby
2010-05-17Remove unused member variable.Zhongxing Xu
2010-04-13Delete an unused member variable.Dan Gohman
2010-01-05Change errs() to dbgs().David Greene
2009-11-20Remove some old experimental code that is no longer needed. Remove additional...David Goodwin
2009-11-12Rename registers to break output dependencies in addition to anti-dependencies.David Goodwin
2009-11-03Do a scheduling pass ignoring anti-dependencies to identify candidate registe...David Goodwin
2009-09-30Fix integer overflow in instruction scheduling. This can happen if we haveReid Kleckner
2009-08-22Convert DOUT to DEBUG(errs()...).Bill Wendling
2009-08-11Add some debug output.David Goodwin
2009-07-24Move to raw_ostream.Daniel Dunbar
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