diff options
author | Chris Lattner <sabre@nondot.org> | 2004-10-17 21:22:38 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2004-10-17 21:22:38 +0000 |
commit | c30bda7540de573c887e00bb76ac78d85f56acd4 (patch) | |
tree | 7e13ebecba61f21d58e3bef7e82fa99f2e695d15 /lib/Transforms/Utils/LoopSimplify.cpp | |
parent | 665825e58e5db038d5f3360b07282e21748a7189 (diff) |
hasConstantValue will soon return instructions that don't dominate the PHI node,
so prepare for this.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@17095 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Transforms/Utils/LoopSimplify.cpp')
-rw-r--r-- | lib/Transforms/Utils/LoopSimplify.cpp | 37 |
1 files changed, 21 insertions, 16 deletions
diff --git a/lib/Transforms/Utils/LoopSimplify.cpp b/lib/Transforms/Utils/LoopSimplify.cpp index aa3a86573a..c7b92bbdda 100644 --- a/lib/Transforms/Utils/LoopSimplify.cpp +++ b/lib/Transforms/Utils/LoopSimplify.cpp @@ -250,8 +250,11 @@ BasicBlock *LoopSimplify::SplitBlockPredecessors(BasicBlock *BB, // Can we eliminate this phi node now? if (Value *V = hasConstantValue(PN)) { - PN->replaceAllUsesWith(V); - BB->getInstList().erase(PN); + if (!isa<Instruction>(V) || + getAnalysis<DominatorSet>().dominates(cast<Instruction>(V), PN)) { + PN->replaceAllUsesWith(V); + BB->getInstList().erase(PN); + } } } @@ -426,22 +429,24 @@ static void AddBlockAndPredsToSet(BasicBlock *BB, BasicBlock *StopBlock, /// FindPHIToPartitionLoops - The first part of loop-nestification is to find a /// PHI node that tells us how to partition the loops. -static PHINode *FindPHIToPartitionLoops(Loop *L) { +static PHINode *FindPHIToPartitionLoops(Loop *L, DominatorSet &DS) { for (BasicBlock::iterator I = L->getHeader()->begin(); isa<PHINode>(I); ) { PHINode *PN = cast<PHINode>(I); ++I; - if (Value *V = hasConstantValue(PN)) { - // This is a degenerate PHI already, don't modify it! - PN->replaceAllUsesWith(V); - PN->getParent()->getInstList().erase(PN); - } else { - // Scan this PHI node looking for a use of the PHI node by itself. - for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i) - if (PN->getIncomingValue(i) == PN && - L->contains(PN->getIncomingBlock(i))) - // We found something tasty to remove. - return PN; - } + if (Value *V = hasConstantValue(PN)) + if (!isa<Instruction>(V) || DS.dominates(cast<Instruction>(V), PN)) { + // This is a degenerate PHI already, don't modify it! + PN->replaceAllUsesWith(V); + PN->getParent()->getInstList().erase(PN); + continue; + } + + // Scan this PHI node looking for a use of the PHI node by itself. + for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i) + if (PN->getIncomingValue(i) == PN && + L->contains(PN->getIncomingBlock(i))) + // We found something tasty to remove. + return PN; } return 0; } @@ -464,7 +469,7 @@ static PHINode *FindPHIToPartitionLoops(Loop *L) { /// created. /// Loop *LoopSimplify::SeparateNestedLoop(Loop *L) { - PHINode *PN = FindPHIToPartitionLoops(L); + PHINode *PN = FindPHIToPartitionLoops(L, getAnalysis<DominatorSet>()); if (PN == 0) return 0; // No known way to partition. // Pull out all predecessors that have varying values in the loop. This |