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