diff options
author | Dan Gohman <gohman@apple.com> | 2009-05-02 05:36:01 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2009-05-02 05:36:01 +0000 |
commit | 6409e7d4e97c6eabbd28fecaadaf598b4fd9e9b3 (patch) | |
tree | 5da47f67b40800f373194d5834eccfe08a54de71 /llvm/lib/Transforms | |
parent | 71235ecb7fa323b597051c1f097d9b6515a41c37 (diff) | |
download | bcm5719-llvm-6409e7d4e97c6eabbd28fecaadaf598b4fd9e9b3.tar.gz bcm5719-llvm-6409e7d4e97c6eabbd28fecaadaf598b4fd9e9b3.zip |
Don't split critical edges during the AddUsersIfInteresting phase
of LSR. This makes the AddUsersIfInteresting phase of LSR a pure
analysis instead of a phase that potentially does CFG modifications.
The conditions where this code would actually perform a split are
rare, and in the cases where it actually would do a split the split
is usually undone by CodeGenPrepare, and in cases where splits
actually survive into codegen, they appear to hurt more often than
they help.
llvm-svn: 70625
Diffstat (limited to 'llvm/lib/Transforms')
-rw-r--r-- | llvm/lib/Transforms/Scalar/LoopStrengthReduce.cpp | 15 |
1 files changed, 1 insertions, 14 deletions
diff --git a/llvm/lib/Transforms/Scalar/LoopStrengthReduce.cpp b/llvm/lib/Transforms/Scalar/LoopStrengthReduce.cpp index 29acfe8506e..e5502002713 100644 --- a/llvm/lib/Transforms/Scalar/LoopStrengthReduce.cpp +++ b/llvm/lib/Transforms/Scalar/LoopStrengthReduce.cpp @@ -406,20 +406,7 @@ static bool IVUseShouldUsePostIncValue(Instruction *User, Instruction *IV, } // Okay, all uses of IV by PN are in predecessor blocks that really are - // dominated by the latch block. Split the critical edges and use the - // post-incremented value. - for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i) - if (PN->getIncomingValue(i) == IV) { - SplitCriticalEdge(PN->getIncomingBlock(i), PN->getParent(), P, false); - // Splitting the critical edge can reduce the number of entries in this - // PHI. - e = PN->getNumIncomingValues(); - if (--NumUses == 0) break; - } - - // PHI node might have become a constant value after SplitCriticalEdge. - DeadInsts.push_back(User); - + // dominated by the latch block. Use the post-incremented value. return true; } |