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
/
SelectionDAG
/
ScheduleDAGFast.cpp
Age
Commit message (
Expand
)
Author
2009-02-10
Factor out more code for computing register live-range informationfor
Dan Gohman
2009-02-06
Move ScheduleDAGSDNodes.h to be a private header. Front-ends
Dan Gohman
2009-01-15
Move a few containers out of ScheduleDAGInstrs::BuildSchedGraph
Dan Gohman
2009-01-12
Fix PR3241: Currently EmitCopyFromReg emits a copy from the physical register...
Evan Cheng
2008-12-23
Rename BuildSchedUnits to BuildSchedGraph, and refactor the
Dan Gohman
2008-12-16
Fix some register-alias-related bugs in the post-RA scheduler liveness
Dan Gohman
2008-12-16
Make addPred and removePred return void, since the return value is not
Dan Gohman
2008-12-09
Rewrite the SDep class, and simplify some of the related code.
Dan Gohman
2008-11-24
Check in the rest of this change. The isAntiDep flag needs to be passed
Dan Gohman
2008-11-21
Add a flag to SDep for tracking which edges are anti-dependence edges.
Dan Gohman
2008-11-21
Rename SDep's isSpecial to isArtificial, to make this field a little
Dan Gohman
2008-11-21
Change these schedulers to not emit no-ops. It turns out that
Dan Gohman
2008-11-19
Simplify this code a little. In the fast scheduler, CreateNewSUnit
Dan Gohman
2008-11-19
Experimental post-pass scheduling support. Post-pass scheduling
Dan Gohman
2008-11-18
Tidy up ScheduleNodeBottomUp methods, and make them more
Dan Gohman
2008-11-18
Change SUnit's dump method to take a ScheduleDAG* instead of
Dan Gohman
2008-11-18
Avoid using a loop in ReleasePred and ReleaseSucc methods to compute the
Dan Gohman
2008-11-17
Don't bother doing latency calculations in the "fast" scheduler.
Dan Gohman
2008-11-13
Remove the FlaggedNodes member from SUnit. Instead of requiring each SUnit
Dan Gohman
2008-11-13
Make the Node member of SUnit private, and add accessors.
Dan Gohman
2008-11-13
Change ScheduleDAG's DAG member from a reference to a pointer, to prepare
Dan Gohman
2008-11-11
Change the scheduler accessor methods to accept an explicit TargetMachine
Dan Gohman
2008-10-14
Fix command-line option printing to print two spaces where needed,
Dan Gohman
2008-09-23
Replace the LiveRegs SmallSet with a simple counter that keeps
Dan Gohman
2008-09-18
Add a new "fast" scheduler. This is currently basically just a
Dan Gohman