Remove the TargetMachine forwards for TargetSubtargetInfo based
[oota-llvm.git] / lib / CodeGen / ScheduleDAG.cpp
2014-08-04 Eric ChristopherRemove the TargetMachine forwards for TargetSubtargetIn...
2014-04-22 Chandler Carruth[Modules] Remove potential ODR violations by sinking...
2014-04-14 Craig Topper[C++11] More 'nullptr' conversion. In some cases just...
2014-03-02 Benjamin Kramer[C++11] Replace llvm::next and llvm::prior with std...
2014-01-24 Alp TokerFix known typos
2013-07-03 Craig TopperUse SmallVectorImpl instead of SmallVector for iterator...
2013-03-01 Andrew TrickScheduler diagnostics. Print the register name.
2013-03-01 Andrew TrickInstructions schedulers should report correct height...
2013-02-16 Benjamin KramerReplace loop with std::find.
2013-01-24 Andrew TrickMIsched: Added biasCriticalPath.
2012-12-03 Chandler CarruthUse the new script to sort the includes of every file...
2012-11-13 Andrew Trickmisched: Don't consider artificial edges weak edges.
2012-11-12 Andrew Trickmisched: Infrastructure for weak DAG edges.
2012-09-11 Manman RenRelease build: guard dump functions with
2012-09-06 Manman RenRelease build: guard dump functions with "ifndef NDEBUG"
2012-06-13 Andrew Tricksched: Avoid trivially redundant DAG edges. Take the...
2012-03-07 Andrew Trickmisched preparation: clarify ScheduleDAG and ScheduleDA...
2012-03-07 Andrew Trickmisched preparation: modularize schedule printing.
2012-03-07 Andrew Trickmisched preparation: modularize schedule verification.
2012-02-17 Jakob Stoklund OlesenDon't print out pointer values in SUnit::dump().
2012-01-14 Andrew Trickmisched: Initial code for building an MI level scheduli...
2011-12-20 David BlaikieUnweaken vtables as per llvm.org/docs/CodingStandards...
2011-08-19 Benjamin KramerMake a bunch of symbols private.
2011-08-12 Duncan SandsSilence a bunch (but not all) "variable written but...
2011-06-28 Evan Cheng- Rename TargetInstrDesc, TargetOperandInfo to MCInstrD...
2011-06-15 Andrew TrickAdded -stress-sched flag in the Asserts build.
2011-04-15 Chris LattnerFix a ton of comment typos found by codespell. Patch by
2011-02-04 Andrew TrickIntroducing a new method of tracking register pressure...
2010-12-24 Andrew TrickFix a few cases where the scheduler is not checking...
2010-12-24 Andrew TrickVarious bits of framework needed for precise machine...
2010-12-20 Chris Lattnerreduce indentation, no functionality change.
2010-06-30 John MosbyRemove trailing whitespace, no functionality changes.
2010-05-17 Zhongxing XuRemove unused member variable.
2010-04-13 Dan GohmanDelete an unused member variable.
2010-01-05 David GreeneChange errs() to dbgs().
2009-11-20 David GoodwinRemove some old experimental code that is no longer...
2009-11-12 David GoodwinRename registers to break output dependencies in additi...
2009-11-03 David GoodwinDo a scheduling pass ignoring anti-dependencies to...
2009-09-30 Reid KlecknerFix integer overflow in instruction scheduling. This...
2009-08-22 Bill WendlingConvert DOUT to DEBUG(errs()...).
2009-08-11 David GoodwinAdd some debug output.
2009-07-24 Daniel DunbarMove to raw_ostream.
2009-02-11 Dan GohmanWhen scheduling a block in parts, keep track of the...
2009-02-11 Dan GohmanUse iterators to iterate through the Preds array instead of
2009-02-10 Dan GohmanFactor out more code for computing register live-range...
2009-01-16 Dan GohmanInstead of adding dependence edges between terminator...
2009-01-15 Dan GohmanGeneralize the HazardRecognizer interface so that it...
2009-01-15 Dan GohmanMove a few containers out of ScheduleDAGInstrs::BuildSc...
2009-01-13 Dan GohmanAvoid referring to edge D after the Succs or Preds...
2009-01-05 Dan GohmanDon't call setDepthDirty/setHeightDirty when adding...
2008-12-23 Dan GohmanMinor code simplifications.
2008-12-22 Dan GohmanOptimize setDepthDirty and setHeightDirty a little...
2008-12-20 Dan GohmanUse SmallVector's pop_back_val.
2008-12-20 Dan GohmanUse the correct Preds and Succs lists in setHeightDirty()
2008-12-17 Dan GohmanUse getDepth() and getHeight() instead of accessing the
2008-12-16 Dan GohmanFix some register-alias-related bugs in the post-RA...
2008-12-16 Dan GohmanMove addPred and removePred out-of-line.
2008-12-09 Dan GohmanRewrite the SDep class, and simplify some of the relate...
2008-12-09 Dan GohmanWhitespace cleanups.
2008-11-25 Dan GohmanInitial support for anti-dependence breaking. Currently...
2008-11-21 Dan GohmanRename SDep's isSpecial to isArtificial, to make this...
2008-11-20 Dan GohmanAdd #include <climits> to get the definition of INT_MAX.
2008-11-20 Dan GohmanFactor out the code for verifying the work of the sched...
2008-11-19 Dan GohmanExperimental post-pass scheduling support. Post-pass...