summaryrefslogtreecommitdiff
path: root/lib/Transforms
diff options
context:
space:
mode:
authorChandler Carruth <chandlerc@gmail.com>2013-07-24 12:12:17 +0000
committerChandler Carruth <chandlerc@gmail.com>2013-07-24 12:12:17 +0000
commitb7f27824fb63210a67040affd43a82890b6784fb (patch)
treed32f32020ab2789240e3e626b238ba325ddf510d /lib/Transforms
parente3809eed34f000581a464689596eefde2a6d1f24 (diff)
downloadllvm-b7f27824fb63210a67040affd43a82890b6784fb.tar.gz
llvm-b7f27824fb63210a67040affd43a82890b6784fb.tar.bz2
llvm-b7f27824fb63210a67040affd43a82890b6784fb.tar.xz
Fix a problem I introduced in r187029 where we would over-eagerly
schedule an alloca for another iteration in SROA. This only showed up with a mixture of promotable and unpromotable selects and phis. Added a test case for this. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@187031 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Transforms')
-rw-r--r--lib/Transforms/Scalar/SROA.cpp12
1 files changed, 9 insertions, 3 deletions
diff --git a/lib/Transforms/Scalar/SROA.cpp b/lib/Transforms/Scalar/SROA.cpp
index 860c90f356..9ec39d2528 100644
--- a/lib/Transforms/Scalar/SROA.cpp
+++ b/lib/Transforms/Scalar/SROA.cpp
@@ -2576,7 +2576,6 @@ private:
// occurs.
if (isSafePHIToSpeculate(PN, &DL)) {
Pass.SpeculatablePHIs.insert(&PN);
- Pass.Worklist.insert(&NewAI);
IsUsedByRewrittenSpeculatableInstructions = true;
return true;
}
@@ -2606,7 +2605,6 @@ private:
// speculation occurs.
if (isSafeSelectToSpeculate(SI, &DL)) {
Pass.SpeculatableSelects.insert(&SI);
- Pass.Worklist.insert(&NewAI);
IsUsedByRewrittenSpeculatableInstructions = true;
return true;
}
@@ -3090,10 +3088,18 @@ bool SROA::rewritePartition(AllocaInst &AI, AllocaSlices &S,
if (Promotable && !Rewriter.isUsedByRewrittenSpeculatableInstructions()) {
DEBUG(dbgs() << " and queuing for promotion\n");
PromotableAllocas.push_back(NewAI);
- } else if (NewAI != &AI) {
+ } else if (NewAI != &AI ||
+ (Promotable &&
+ Rewriter.isUsedByRewrittenSpeculatableInstructions())) {
// If we can't promote the alloca, iterate on it to check for new
// refinements exposed by splitting the current alloca. Don't iterate on an
// alloca which didn't actually change and didn't get promoted.
+ //
+ // Alternatively, if we could promote the alloca but have speculatable
+ // instructions then we will speculate them after finishing our processing
+ // of the original alloca. Mark the new one for re-visiting in the next
+ // iteration so the speculated operations can be rewritten.
+ //
// FIXME: We should actually track whether the rewriter changed anything.
Worklist.insert(NewAI);
}