aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/CodeGen/ScheduleDAG.cpp
AgeCommit message (Expand)AuthorFilesLines
2014-08-04Remove the TargetMachine forwards for TargetSubtargetInfo basedEric Christopher1-5/+4
2014-04-22[Modules] Remove potential ODR violations by sinking the DEBUG_TYPEChandler Carruth1-1/+2
2014-04-14[C++11] More 'nullptr' conversion. In some cases just using a boolean check i...Craig Topper1-1/+1
2014-03-02[C++11] Replace llvm::next and llvm::prior with std::next and std::prev.Benjamin Kramer1-2/+2
2014-01-24Fix known typosAlp Toker1-1/+1
2013-07-03Use SmallVectorImpl instead of SmallVector for iterators and references to av...Craig Topper1-5/+5
2013-03-01Scheduler diagnostics. Print the register name.Andrew Trick1-0/+2
2013-03-01Instructions schedulers should report correct height/depth.Andrew Trick1-2/+2
2013-02-16Replace loop with std::find.Benjamin Kramer1-10/+4
2013-01-24MIsched: Added biasCriticalPath.Andrew Trick1-0/+15
2012-12-03Use the new script to sort the includes of every file under lib.Chandler Carruth1-3/+3
2012-11-13misched: Don't consider artificial edges weak edges.Andrew Trick1-8/+4
2012-11-12misched: Infrastructure for weak DAG edges.Andrew Trick1-20/+58
2012-09-11Release build: guard dump functions withManman Ren1-1/+1
2012-09-06Release build: guard dump functions with "ifndef NDEBUG"Manman Ren1-0/+2
2012-06-13sched: Avoid trivially redundant DAG edges. Take the one with higher latency.Andrew Trick1-3/+20
2012-03-07misched preparation: clarify ScheduleDAG and ScheduleDAGInstrs roles.Andrew Trick1-15/+7
2012-03-07misched preparation: modularize schedule printing.Andrew Trick1-17/+0
2012-03-07misched preparation: modularize schedule verification.Andrew Trick1-9/+4
2012-02-17Don't print out pointer values in SUnit::dump().Jakob Stoklund Olesen1-5/+3
2012-01-14misched: Initial code for building an MI level scheduling DAGAndrew Trick1-1/+1
2011-12-20Unweaken vtables as per http://llvm.org/docs/CodingStandards.html#ll_virtual_...David Blaikie1-0/+2
2011-08-19Make a bunch of symbols private.Benjamin Kramer1-1/+1
2011-08-12Silence a bunch (but not all) "variable written but not read" warningsDuncan Sands1-0/+1
2011-06-28- Rename TargetInstrDesc, TargetOperandInfo to MCInstrDesc and MCOperandInfo andEvan Cheng1-1/+1
2011-06-15Added -stress-sched flag in the Asserts build.Andrew Trick1-0/+12
2011-04-15Fix a ton of comment typos found by codespell. Patch byChris Lattner1-2/+2
2011-02-04Introducing a new method of tracking register pressure. We can'tAndrew Trick1-2/+4
2010-12-24Fix a few cases where the scheduler is not checking for phys reg copies. The ...Andrew Trick1-1/+1
2010-12-24Various bits of framework needed for precise machine-level selectionAndrew Trick1-0/+7
2010-12-20reduce indentation, no functionality change.Chris Lattner1-1/+1
2010-06-30Remove trailing whitespace, no functionality changes.John Mosby1-19/+18
2010-05-17Remove unused member variable.Zhongxing Xu1-1/+0
2010-04-13Delete an unused member variable.Dan Gohman1-1/+0
2010-01-05Change errs() to dbgs().David Greene1-40/+40
2009-11-20Remove some old experimental code that is no longer needed. Remove additional...David Goodwin1-14/+6
2009-11-12Rename registers to break output dependencies in addition to anti-dependencies.David Goodwin1-2/+8
2009-11-03Do a scheduling pass ignoring anti-dependencies to identify candidate registe...David Goodwin1-7/+9
2009-09-30Fix integer overflow in instruction scheduling. This can happen if we haveReid Kleckner1-4/+16
2009-08-22Convert DOUT to DEBUG(errs()...).Bill Wendling1-3/+5
2009-08-11Add some debug output.David Goodwin1-0/+2
2009-07-24Move to raw_ostream.Daniel Dunbar1-36/+37
2009-02-11When scheduling a block in parts, keep track of the overallDan Gohman1-11/+6
2009-02-11Use iterators to iterate through the Preds array instead ofDan Gohman1-2/+3
2009-02-10Factor out more code for computing register live-range informationforDan Gohman1-1/+4
2009-01-16Instead of adding dependence edges between terminator instructionsDan Gohman1-1/+8
2009-01-15Generalize the HazardRecognizer interface so that it can be usedDan Gohman1-0/+3
2009-01-15Move a few containers out of ScheduleDAGInstrs::BuildSchedGraphDan Gohman1-9/+13
2009-01-13Avoid referring to edge D after the Succs or Preds arrays haveDan Gohman1-3/+3
2009-01-05Don't call setDepthDirty/setHeightDirty when adding an edgeDan Gohman1-4/+8