llvm-6502/test/Transforms/SimplifyCFG
Matthijs Kooijman 5e179a23e3 Restucture a part of the SimplifyCFG pass and include a testcase.
The SimplifyCFG pass looks at basic blocks that contain only phi nodes,
followed by an unconditional branch. In a lot of cases, such a block (BB) can
be merged into their successor (Succ).

This merging is performed by TryToSimplifyUncondBranchFromEmptyBlock. It does
this by taking all phi nodes in the succesor block Succ and expanding them to
include the predecessors of BB. Furthermore, any phi nodes in BB are moved to
Succ and expanded to include the predecessors of Succ as well.

Before attempting this merge, CanPropagatePredecessorsForPHIs checks to see if
all phi nodes can be properly merged. All functional changes are made to
this function, only comments were updated in
TryToSimplifyUncondBranchFromEmptyBlock.

In the original code, CanPropagatePredecessorsForPHIs looks quite convoluted
and more like stack of checks added to handle different kinds of situations
than a comprehensive check. In particular the first check in the function did
some value checking for the case that BB and Succ have a common predecessor,
while the last check in the function simply rejected all cases where BB and
Succ have a common predecessor. The first check was still useful in the case
that BB did not contain any phi nodes at all, though, so it was not completely
useless.

Now, CanPropagatePredecessorsForPHIs is restructured to to look a lot more
similar to the code that actually performs the merge. Both functions now look
at the same phi nodes in about the same order.  Any conflicts (phi nodes with
different values for the same source) that could arise from merging or moving
phi nodes are detected. If no conflicts are found, the merge can happen.

Apart from only restructuring the checks, two main changes in functionality
happened.

Firstly, the old code rejected blocks with common predecessors in most cases.
The new code performs some extra checks so common predecessors can be handled
in a lot of cases. Wherever common predecessors still pose problems, the
blocks are left untouched.

Secondly, the old code rejected the merge when values (phi nodes) from BB were
used in any other place than Succ. However, it does not seem that there is any
situation that would require this check. Even more, this can be proven.

Consider that BB is a block containing of a single phi node "%a" and a branch
to Succ. Now, since the definition of %a will dominate all of its uses, BB
will dominate all blocks that use %a. Furthermore, since the branch from BB to
Succ is unconditional, Succ will also dominate all uses of %a.

Now, assume that one predecessor of Succ is not dominated by BB (and thus not
dominated by Succ). Since at least one use of %a (but in reality all of them)
is reachable from Succ, you could end up at a use of %a without passing
through it's definition in BB (by coming from X through Succ). This is a
contradiction, meaning that our original assumption is wrong. Thus, all
predecessors of Succ must also be dominated by BB (and thus also by Succ).

This means that moving the phi node %a from BB to Succ does not pose any
problems when the two blocks are merged, and any use checks are not needed.



git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@51478 91177308-0d34-0410-b5e6-96231b3b80d8
2008-05-23 09:09:41 +00:00
..
2002-05-05-EmptyBlockMerge.ll Remove llvm-upgrade and update tests. 2008-03-10 07:21:50 +00:00
2002-05-21-PHIElimination.ll Remove llvm-upgrade and update tests. 2008-03-10 07:21:50 +00:00
2002-06-24-PHINode.ll Remove llvm-upgrade and update tests. 2008-03-10 07:21:50 +00:00
2002-09-24-PHIAssertion.ll Remove llvm-upgrade and update tests. 2008-03-10 07:21:50 +00:00
2003-03-07-DominateProblem.ll Remove llvm-upgrade and update tests. 2008-03-10 07:21:50 +00:00
2003-08-05-InvokeCrash.ll Remove llvm-upgrade and update tests. 2008-03-10 07:21:50 +00:00
2003-08-05-MishandleInvoke.ll Remove llvm-upgrade and update tests. 2008-03-10 07:21:50 +00:00
2003-08-17-BranchFold.ll Update old-style syntax in some "not grep" tests. 2008-05-01 23:50:07 +00:00
2003-08-17-BranchFoldOrdering.ll Update old-style syntax in some "not grep" tests. 2008-05-01 23:50:07 +00:00
2003-08-17-FoldSwitch.ll Remove llvm-upgrade and update tests. 2008-03-10 07:21:50 +00:00
2004-12-10-SimplifyCFGCrash.ll Remove llvm-upgrade and update tests. 2008-03-10 07:21:50 +00:00
2005-06-16-PHICrash.ll Remove llvm-upgrade and update tests. 2008-03-10 07:21:50 +00:00
2005-08-01-PHIUpdateFail.ll Remove llvm-upgrade and update tests. 2008-03-10 07:21:50 +00:00
2005-08-03-PHIFactorCrash.ll Remove llvm-upgrade and update tests. 2008-03-10 07:21:50 +00:00
2005-10-02-InvokeSimplify.ll Remove llvm-upgrade and update tests. 2008-03-10 07:21:50 +00:00
2005-12-03-IncorrectPHIFold.ll Remove llvm-upgrade and update tests. 2008-03-10 07:21:50 +00:00
2006-02-17-InfiniteUnroll.ll Remove llvm-upgrade and update tests. 2008-03-10 07:21:50 +00:00
2006-06-12-InfLoop.ll Remove llvm-upgrade and update tests. 2008-03-10 07:21:50 +00:00
2006-08-03-Crash.ll Remove llvm-upgrade and update tests. 2008-03-10 07:21:50 +00:00
2006-10-19-UncondDiv.ll Remove llvm-upgrade and update tests. 2008-03-10 07:21:50 +00:00
2006-10-29-InvokeCrash.ll Remove llvm-upgrade and update tests. 2008-03-10 07:21:50 +00:00
2006-12-08-Ptr-ICmp-Branch.ll Remove llvm-upgrade and update tests. 2008-03-10 07:21:50 +00:00
2007-11-22-InvokeNoUnwind.ll Add some convenience methods for querying attributes, and 2007-11-28 17:07:01 +00:00
2007-12-21-Crash.ll Test -simplifycfg only. 2007-12-28 22:59:48 +00:00
2008-01-02-hoist-fp-add.ll don't hoist FP additions into unconditional adds + selects. This 2008-01-03 07:25:26 +00:00
2008-04-23-MergeMultipleResultRet.ll Split some code out of the main SimplifyCFG loop into its own function. 2008-04-24 00:01:19 +00:00
2008-04-27-MultipleReturnCrash.ll Fix PR2256, yet another miscompilation in simplifycfg of i 2008-04-28 00:19:07 +00:00
2008-05-16-PHIBlockMerge.ll Restucture a part of the SimplifyCFG pass and include a testcase. 2008-05-23 09:09:41 +00:00
basictest.ll Upgrade tests to not use llvm-upgrade. 2008-03-18 03:45:45 +00:00
branch-cond-merge.ll Upgrade tests to not use llvm-upgrade. 2008-03-18 03:45:45 +00:00
branch-cond-prop.ll Upgrade tests to not use llvm-upgrade. 2008-03-18 03:45:45 +00:00
branch-fold-test.ll Upgrade tests to not use llvm-upgrade. 2008-03-18 03:45:45 +00:00
branch-fold.ll Upgrade tests to not use llvm-upgrade. 2008-03-18 03:45:45 +00:00
branch-phi-thread.ll Update old-style syntax in some "not grep" tests. 2008-05-01 23:50:07 +00:00
BrUnwind.ll Upgrade tests to not use llvm-upgrade. 2008-03-18 03:45:45 +00:00
DeadSetCC.ll Upgrade tests to not use llvm-upgrade. 2008-03-18 03:45:45 +00:00
dg.exp sabre brings to my attention that the 'tr' suffix is also obsolete 2008-05-20 21:00:03 +00:00
EqualPHIEdgeBlockMerge.ll Upgrade tests to not use llvm-upgrade. 2008-03-18 03:45:45 +00:00
hoist-common-code.ll Upgrade tests to not use llvm-upgrade. 2008-03-18 03:45:45 +00:00
HoistCode.ll Upgrade tests to not use llvm-upgrade. 2008-03-18 03:45:45 +00:00
InvokeEliminate.ll Upgrade tests to not use llvm-upgrade. 2008-03-18 03:45:45 +00:00
iterative-simplify.ll Implement PR1786 by iterating between dead cycle elimination 2007-11-13 07:32:38 +00:00
noreturn-call.ll Implement PR1796 and Transforms/SimplifyCFG/noreturn-call.ll 2007-11-14 06:19:25 +00:00
PhiBlockMerge2.ll Make this test more challenging to help it avoid being 2008-03-11 21:47:57 +00:00
PhiBlockMerge.ll Upgrade tests to not use llvm-upgrade. 2008-03-18 03:45:45 +00:00
PhiEliminate2.ll Upgrade tests to not use llvm-upgrade. 2008-03-18 03:45:45 +00:00
PhiEliminate.ll Upgrade tests to not use llvm-upgrade. 2008-03-18 03:45:45 +00:00
PhiNoEliminate.ll Upgrade tests to not use llvm-upgrade. 2008-03-18 03:45:45 +00:00
return-merge.ll Upgrade tests to not use llvm-upgrade. 2008-03-18 03:45:45 +00:00
switch_create.ll Upgrade tests to not use llvm-upgrade. 2008-03-18 03:45:45 +00:00
switch_formation.ll Upgrade tests to not use llvm-upgrade. 2008-03-18 03:45:45 +00:00
switch_switch_fold.ll Upgrade tests to not use llvm-upgrade. 2008-03-18 03:45:45 +00:00
switch_thread.ll Update old-style syntax in some "not grep" tests. 2008-05-01 23:50:07 +00:00
switch-simplify-crash.ll Upgrade tests to not use llvm-upgrade. 2008-03-18 03:45:45 +00:00
two-entry-phi-return.ll Check to see if a two-entry PHI block can be simplified 2008-03-11 21:53:06 +00:00
UncondBranchToReturn.ll Upgrade tests to not use llvm-upgrade. 2008-03-18 03:45:45 +00:00
UnreachableEliminate.ll Upgrade tests to not use llvm-upgrade. 2008-03-18 03:45:45 +00:00