diff options
| author | Owen Anderson <resistor@mac.com> | 2008-07-01 00:40:58 +0000 |
|---|---|---|
| committer | Owen Anderson <resistor@mac.com> | 2008-07-01 00:40:58 +0000 |
| commit | 2a3a1127e2d802ba33f97a83fa7451d97ebdca30 (patch) | |
| tree | a3b2a0fe53826c589307c99c40b6ed402a4eca32 /llvm/lib/Analysis | |
| parent | 49cce257ae835e5ab08bad8065c8543795cbbbde (diff) | |
| download | bcm5719-llvm-2a3a1127e2d802ba33f97a83fa7451d97ebdca30.tar.gz bcm5719-llvm-2a3a1127e2d802ba33f97a83fa7451d97ebdca30.zip | |
Properly handle cases where a predecessor of the block being queried on is unreachable.
This fixes PR2503, though we should also fix other passes not to emit this kind of code.
llvm-svn: 52946
Diffstat (limited to 'llvm/lib/Analysis')
| -rw-r--r-- | llvm/lib/Analysis/MemoryDependenceAnalysis.cpp | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/llvm/lib/Analysis/MemoryDependenceAnalysis.cpp b/llvm/lib/Analysis/MemoryDependenceAnalysis.cpp index 2012ab473c9..1cd16bb06de 100644 --- a/llvm/lib/Analysis/MemoryDependenceAnalysis.cpp +++ b/llvm/lib/Analysis/MemoryDependenceAnalysis.cpp @@ -19,6 +19,7 @@ #include "llvm/Instructions.h" #include "llvm/Function.h" #include "llvm/Analysis/AliasAnalysis.h" +#include "llvm/Analysis/Dominators.h" #include "llvm/Support/CFG.h" #include "llvm/Support/CommandLine.h" #include "llvm/Target/TargetData.h" @@ -82,6 +83,7 @@ void MemoryDependenceAnalysis::getAnalysisUsage(AnalysisUsage &AU) const { AU.setPreservesAll(); AU.addRequiredTransitive<AliasAnalysis>(); AU.addRequiredTransitive<TargetData>(); + AU.addRequiredTransitive<DominatorTree>(); } /// getCallSiteDependency - Private helper for finding the local dependencies @@ -222,6 +224,17 @@ void MemoryDependenceAnalysis::nonLocalHelper(Instruction* query, continue; } + // Don't recur upwards if the current block is unreachable. + // Instead, mark it as having no dependency on this path, + // which will block optzns from occuring. For this reason, + // eliminating unreachable blocks before running a memdep + // based optimization is recommended. + DominatorTree& DT = getAnalysis<DominatorTree>(); + if (!DT.isReachableFromEntry(BB)) { + resp.insert(std::make_pair(BB, None)); + continue; + } + // If we didn't find anything, recurse on the precessors of this block // Only do this for blocks with a small number of predecessors. bool predOnStack = false; |

