aboutsummaryrefslogtreecommitdiffstats
path: root/lib/CodeGen/ScheduleDAG.cpp
Commit message (Expand)AuthorAgeFilesLines
* Remove unused member variable.Zhongxing Xu2010-05-171-1/+0
* Delete an unused member variable.Dan Gohman2010-04-131-1/+0
* Change errs() to dbgs().David Greene2010-01-051-40/+40
* Remove some old experimental code that is no longer needed. Remove additional...David Goodwin2009-11-201-14/+6
* Rename registers to break output dependencies in addition to anti-dependencies.David Goodwin2009-11-121-2/+8
* Do a scheduling pass ignoring anti-dependencies to identify candidate registe...David Goodwin2009-11-031-7/+9
* Fix integer overflow in instruction scheduling. This can happen if we haveReid Kleckner2009-09-301-4/+16
* Convert DOUT to DEBUG(errs()...).Bill Wendling2009-08-221-3/+5
* Add some debug output.David Goodwin2009-08-111-0/+2
* Move to raw_ostream.Daniel Dunbar2009-07-241-36/+37
* When scheduling a block in parts, keep track of the overallDan Gohman2009-02-111-11/+6
* Use iterators to iterate through the Preds array instead ofDan Gohman2009-02-111-2/+3
* Factor out more code for computing register live-range informationforDan Gohman2009-02-101-1/+4
* Instead of adding dependence edges between terminator instructionsDan Gohman2009-01-161-1/+8
* Generalize the HazardRecognizer interface so that it can be usedDan Gohman2009-01-151-0/+3
* Move a few containers out of ScheduleDAGInstrs::BuildSchedGraphDan Gohman2009-01-151-9/+13
* Avoid referring to edge D after the Succs or Preds arrays haveDan Gohman2009-01-131-3/+3
* Don't call setDepthDirty/setHeightDirty when adding an edgeDan Gohman2009-01-051-4/+8
* Minor code simplifications.Dan Gohman2008-12-231-6/+6
* Optimize setDepthDirty and setHeightDirty a little, as they showedDan Gohman2008-12-221-10/+16
* Use SmallVector's pop_back_val.Dan Gohman2008-12-201-4/+2
* Use the correct Preds and Succs lists in setHeightDirty()Dan Gohman2008-12-201-4/+4
* Use getDepth() and getHeight() instead of accessing theDan Gohman2008-12-171-2/+2
* Fix some register-alias-related bugs in the post-RA scheduler livenessDan Gohman2008-12-161-114/+127
* Move addPred and removePred out-of-line.Dan Gohman2008-12-161-0/+61
* Rewrite the SDep class, and simplify some of the related code.Dan Gohman2008-12-091-21/+30
* Whitespace cleanups.Dan Gohman2008-12-091-12/+14
* Initial support for anti-dependence breaking. Currently this code does notDan Gohman2008-11-251-0/+201
* Rename SDep's isSpecial to isArtificial, to make this field a littleDan Gohman2008-11-211-2/+2
* Add #include <climits> to get the definition of INT_MAX.Dan Gohman2008-11-201-0/+1
* Factor out the code for verifying the work of the scheduler,Dan Gohman2008-11-201-0/+54
* Experimental post-pass scheduling support. Post-pass schedulingDan Gohman2008-11-191-0/+210