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
/
Transforms
/
Utils
/
SSAUpdater.cpp
Age
Commit message (
Expand
)
Author
2010-04-03
Revert all my SSAUpdater patches. The PHI placement algorithm is not correct
Bob Wilson
2010-04-03
Add a DEBUG_TYPE for the SSAUpdater.
Bob Wilson
2010-04-02
Recommit 100158 now that the buildbots are happy again.
Bob Wilson
2010-04-02
Revert 100158 in case it is causing some of the buildbot problems.
Bob Wilson
2010-04-02
Check for terminating conditions before adding PHIs to the worklists.
Bob Wilson
2010-04-01
Remove trailing whitespace.
Bob Wilson
2010-04-01
Rewrite another SSAUpdater function to avoid recursion.
Bob Wilson
2010-04-01
Change another SSAUpdater function to avoid recursion.
Bob Wilson
2010-04-01
Simplify the code to check for existing PHIs, now that it is only used in
Bob Wilson
2010-04-01
The SSAUpdater should avoid recursive traversals of the CFG, since that may
Bob Wilson
2010-03-31
Rewrite part of the SSAUpdater to be more careful about inserting redundant
Bob Wilson
2010-01-27
Avoid creating redundant PHIs in SSAUpdater::GetValueInMiddleOfBlock.
Bob Wilson
2010-01-05
Change errs() to dbgs().
David Greene
2009-12-21
improve indentation avoid a pointless conversion from weakvh to trackingvh,
Chris Lattner
2009-12-21
fix PR5837 by having SSAUpdate reuse phi nodes for the
Chris Lattner
2009-12-04
add an assert to make it really clear what this is doing. Return singularval as
Chris Lattner
2009-10-20
alternate fix for PR5258 which avoids worklist problems, with reduced testcase.
Chris Lattner
2009-10-20
Fix PR5258, jump-threading creating invalid PHIs.
Torok Edwin
2009-10-16
Strip trailing white space.
Duncan Sands
2009-10-10
add a simple helper method.
Chris Lattner
2009-10-10
add ability for clients of SSAUpdater to find out about the
Chris Lattner
2009-10-10
add the ability to get a rewritten value from the middle of a block,
Chris Lattner
2009-10-10
rename GetValueInBlock -> GetValueAtEndOfBlock to better reflect
Chris Lattner
2009-10-10
use a typedef instead of spelling out an insane type. Yay for auto someday.
Chris Lattner
2009-10-10
Implement an efficient and fully general SSA update mechanism that
Chris Lattner