index
:
llvm
master
release_1
release_16
release_20
release_21
release_22
release_23
release_24
release_25
release_26
release_27
release_28
release_29
release_30
release_31
release_32
release_33
stable
svn-tags/RELEASE_1
svn-tags/RELEASE_20
svn-tags/RELEASE_21
svn-tags/RELEASE_22
svn-tags/RELEASE_23
svn-tags/RELEASE_24
svn-tags/RELEASE_25
svn-tags/RELEASE_26
svn-tags/RELEASE_27
svn-tags/RELEASE_28
svn-tags/RELEASE_29
svn-tags/RELEASE_30
svn-tags/RELEASE_31
svn-tags/RELEASE_32
testing
http://llvm.org
git repository hosting
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
lib
/
CodeGen
/
ScheduleDAG.cpp
Age
Commit message (
Expand
)
Author
2009-02-11
When scheduling a block in parts, keep track of the overall
Dan Gohman
2009-02-11
Use iterators to iterate through the Preds array instead of
Dan Gohman
2009-02-10
Factor out more code for computing register live-range informationfor
Dan Gohman
2009-01-16
Instead of adding dependence edges between terminator instructions
Dan Gohman
2009-01-15
Generalize the HazardRecognizer interface so that it can be used
Dan Gohman
2009-01-15
Move a few containers out of ScheduleDAGInstrs::BuildSchedGraph
Dan Gohman
2009-01-13
Avoid referring to edge D after the Succs or Preds arrays have
Dan Gohman
2009-01-05
Don't call setDepthDirty/setHeightDirty when adding an edge
Dan Gohman
2008-12-23
Minor code simplifications.
Dan Gohman
2008-12-22
Optimize setDepthDirty and setHeightDirty a little, as they showed
Dan Gohman
2008-12-20
Use SmallVector's pop_back_val.
Dan Gohman
2008-12-20
Use the correct Preds and Succs lists in setHeightDirty()
Dan Gohman
2008-12-17
Use getDepth() and getHeight() instead of accessing the
Dan Gohman
2008-12-16
Fix some register-alias-related bugs in the post-RA scheduler liveness
Dan Gohman
2008-12-16
Move addPred and removePred out-of-line.
Dan Gohman
2008-12-09
Rewrite the SDep class, and simplify some of the related code.
Dan Gohman
2008-12-09
Whitespace cleanups.
Dan Gohman
2008-11-25
Initial support for anti-dependence breaking. Currently this code does not
Dan Gohman
2008-11-21
Rename SDep's isSpecial to isArtificial, to make this field a little
Dan Gohman
2008-11-20
Add #include <climits> to get the definition of INT_MAX.
Dan Gohman
2008-11-20
Factor out the code for verifying the work of the scheduler,
Dan Gohman
2008-11-19
Experimental post-pass scheduling support. Post-pass scheduling
Dan Gohman