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
/
StrongPHIElimination.cpp
Age
Commit message (
Expand
)
Author
2008-01-10
Add more comments explaining the basics of how the decision of when to rename...
Owen Anderson
2008-01-10
Get rid of the isKillInst predicate. LiveVariables already provides this inf...
Owen Anderson
2008-01-10
Copies need to be inserted before the first terminator, not at the end of the...
Owen Anderson
2008-01-09
Clean up StrongPHIElimination a bit, and add some more comments to the intern...
Owen Anderson
2008-01-09
StrongPHIElim: Now with even fewer trivial bugs!
Owen Anderson
2008-01-09
Fix an infinite recursion bug in InsertCopies.
Owen Anderson
2008-01-09
Fix some simple bugs. StrongPHIElimination now does not crash on 164.gzip.
Owen Anderson
2008-01-08
Rename registers that do not need copies.
Owen Anderson
2008-01-08
Actually insert copies now!
Owen Anderson
2008-01-07
Oops, missed one.
Owen Anderson
2008-01-07
Make some predicates static.
Owen Anderson
2007-12-31
Rename SSARegMap -> MachineRegisterInfo in keeping with the idea
Chris Lattner
2007-12-30
Add new shorter predicates for testing machine operands for various types:
Chris Lattner
2007-12-29
Remove attribution from file headers, per discussion on llvmdev.
Chris Lattner
2007-12-24
Flesh out the Briggs implementation a little bit more, fix a few FIXMEs.
Owen Anderson
2007-12-23
Sketch out an implementation of Briggs' copy placement algorithm.
Owen Anderson
2007-12-22
Note what still needs doing.
Owen Anderson
2007-12-22
Remove critical edge breaking. It won't be necessary as long as we are very ...
Owen Anderson
2007-12-16
Break local interferences in StrongPHIElimination. One step closer...
Owen Anderson
2007-12-16
A few more comments.
Owen Anderson
2007-12-13
Add register pairs to the list to check for local interferences.
Owen Anderson
2007-12-13
Remove ugly and horrible code. It's not necessary for correctness, and can b...
Owen Anderson
2007-12-12
Forgot to remove a register from the PHI-union after I'd determined that it
Owen Anderson
2007-12-11
More progress on StrongPHIElimination. Now we actually USE the DomForest!
Owen Anderson
2007-12-10
A little more progress on StrongPHIElimination, now that I have a better sens...
Owen Anderson
2007-11-13
Run computeDomForest() on the set of registers that need to be tested for
Owen Anderson
2007-11-13
Preserve LiveVariables when doing critical edge splitting.
Owen Anderson
2007-11-12
Break critical edges coming into blocks with PHI nodes.
Owen Anderson
2007-11-12
As Chris and Evan pointed out, BreakCriticalMachineEdges doesn't really need
Owen Anderson
2007-11-08
Take another stab at getting isLiveIn() and isLiveOut() right.
Owen Anderson
2007-11-07
Add some more of StrongPHIElim.
Owen Anderson
2007-11-06
Add a few comments.
Owen Anderson
2007-11-06
DomForest is a forest of registers, not instructions.
Owen Anderson
2007-11-06
StrongPHIElimination requires LiveVariables.
Owen Anderson
2007-11-04
Another step of stronger PHI elimination down.
Owen Anderson
2007-10-31
Add a newline at the end of the file.
Duncan Sands
2007-10-31
Add the skeleton of a better PHI elimination pass.
Owen Anderson