summaryrefslogtreecommitdiffstats
path: root/llvm/lib/VMCore/Dominators.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2009-09-21 22:39:35 +0000
committerChris Lattner <sabre@nondot.org>2009-09-21 22:39:35 +0000
commitcf295039e4d6282325d25e8c76e707b7c5cf504e (patch)
tree746b96860d4c8081d0e6cb79da11dc64c988fab9 /llvm/lib/VMCore/Dominators.cpp
parent22151ce5e91a0b40f31bb1bb6e82aec514ef063d (diff)
downloadbcm5719-llvm-cf295039e4d6282325d25e8c76e707b7c5cf504e.tar.gz
bcm5719-llvm-cf295039e4d6282325d25e8c76e707b7c5cf504e.zip
Fix PR5023: The instruction form of DominatorTree::dominates did not
take into consideration that the result of an invoke is only valid in the normal dest, not the unwind dest. This caused 'PHINode::hasConstantValue' to return true in an invalid situation, causing mem2reg to delete a phi that was actually needed. This caused a crash building 483.xalancbmk. llvm-svn: 82491
Diffstat (limited to 'llvm/lib/VMCore/Dominators.cpp')
-rw-r--r--llvm/lib/VMCore/Dominators.cpp8
1 files changed, 7 insertions, 1 deletions
diff --git a/llvm/lib/VMCore/Dominators.cpp b/llvm/lib/VMCore/Dominators.cpp
index 6d0e23d6427..1f172145c3b 100644
--- a/llvm/lib/VMCore/Dominators.cpp
+++ b/llvm/lib/VMCore/Dominators.cpp
@@ -52,10 +52,16 @@ void DominatorTree::print(raw_ostream &OS, const Module *) const {
DT->print(OS);
}
-// dominates - Return true if A dominates B. This performs the
+// dominates - Return true if A dominates a use in B. This performs the
// special checks necessary if A and B are in the same basic block.
bool DominatorTree::dominates(const Instruction *A, const Instruction *B) const{
const BasicBlock *BBA = A->getParent(), *BBB = B->getParent();
+
+ // If A is an invoke instruction, its value is only available in this normal
+ // successor block.
+ if (const InvokeInst *II = dyn_cast<InvokeInst>(A))
+ BBA = II->getNormalDest();
+
if (BBA != BBB) return dominates(BBA, BBB);
// It is not possible to determine dominance between two PHI nodes
OpenPOWER on IntegriCloud