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
/
AggressiveAntiDepBreaker.cpp
Age
Commit message (
Expand
)
Author
2010-09-02
Anti-dependency breaking needs to be careful not to use reserved regs
Jim Grosbach
2010-07-15
Use std::vector instead of TargetRegisterInfo::FirstVirtualRegister. This time
Bill Wendling
2010-07-15
Reserve a goodly amount of room for the vectors.
Bill Wendling
2010-07-15
Use std::vector instead of TargetRegisterInfo::FirstVirtualRegister.
Bill Wendling
2010-07-15
revert bill's patches in an attempt to fix the buildbot.
Chris Lattner
2010-07-15
Fix headers.
Bill Wendling
2010-07-15
Use std::vector instead of a hard-coded array. The length of that array could
Bill Wendling
2010-07-12
Convert the last use of getPhysicalRegisterRegClass and remove it.
Rafael Espindola
2010-06-16
Make post-ra scheduling, anti-dep breaking, and register scavenger (conservat...
Evan Cheng
2010-06-02
Not all entries in the range will have an SUnit. Check for that when looking
Jim Grosbach
2010-06-01
Update debug information when breaking anti-dependencies. rdar://7759363
Jim Grosbach
2010-04-19
Make BreakAntiDependencies' SUnits argument const, and make the Begin
Dan Gohman
2010-04-09
Tidy whitespace.
Bob Wilson
2010-02-09
move target-independent opcodes out of TargetInstrInfo
Chris Lattner
2010-01-06
80 column and whitespace cleanup
Jim Grosbach
2009-12-24
Change errs() to dbgs().
David Greene
2009-12-09
<rdar://problem/7453528>. Track only physical registers that are valid for th...
David Goodwin
2009-11-24
<rdar://problem/6721894>. Allow multiple registers to be renamed together (su...
David Goodwin
2009-11-20
Restructure code to allow renaming of multiple-register groups for anti-dep b...
David Goodwin
2009-11-20
Remove some old experimental code that is no longer needed. Remove additional...
David Goodwin
2009-11-19
Fix a couple of problems with maintaining liveness information for antidep br...
David Goodwin
2009-11-13
Allow target to specify regclass for which antideps will only be broken along...
David Goodwin
2009-11-12
Rename registers to break output dependencies in addition to anti-dependencies.
David Goodwin
2009-11-10
Allow targets to specify register classes whose member registers should not b...
David Goodwin
2009-11-05
Fix bug in aggressive antidep breaking; liveness was not updated correctly fo...
David Goodwin
2009-11-05
Replace std::map.at() with std::map[].
David Goodwin
2009-11-05
Break anti-dependencies using free registers in a round-robin manner to avoid...
David Goodwin
2009-11-03
Do a scheduling pass ignoring anti-dependencies to identify candidate registe...
David Goodwin
2009-10-29
Between scheduling regions, correctly maintain anti-dep breaking state so tha...
David Goodwin
2009-10-29
Fix a couple of bugs in aggressive anti-dep breaking.
David Goodwin
2009-10-26
Allow the aggressive anti-dep breaker to process the same region multiple tim...
David Goodwin
2009-10-26
Add aggressive anti-dependence breaker. Currently it is not the default for a...
David Goodwin