summaryrefslogtreecommitdiffstats
path: root/llvm/lib/VMCore/PassManager.cpp
diff options
context:
space:
mode:
authorZhou Sheng <zhousheng00@gmail.com>2012-11-26 05:45:53 +0000
committerZhou Sheng <zhousheng00@gmail.com>2012-11-26 05:45:53 +0000
commitc1cf629e41313a5193e0cccee1c39c7c0e1207f7 (patch)
tree8983290de8bf4d85b00c4c4794e1bb146548de40 /llvm/lib/VMCore/PassManager.cpp
parent604937d1cc05a349e49a885cde9bb093ba8de937 (diff)
downloadbcm5719-llvm-c1cf629e41313a5193e0cccee1c39c7c0e1207f7.tar.gz
bcm5719-llvm-c1cf629e41313a5193e0cccee1c39c7c0e1207f7.zip
Fix a PassManager pointer use-after-free bug.
The bug can be triggered when we require LoopInfo analysis ahead of DominatorTree construction in a Module Pass. The cause is that the LoopInfo analysis itself also invokes DominatorTree construction, therefore, when PassManager schedules LoopInfo, it will add DominatorTree first. Then after that, when the PassManger turns to schedule DominatorTree invoked by the above ModulePass, it finds there is already a DominatorTree, so it delete the redundant one. However, somehow it still try to access that pass pointer after free as code pasted below, which results in segment fault. llvm-svn: 168581
Diffstat (limited to 'llvm/lib/VMCore/PassManager.cpp')
-rw-r--r--llvm/lib/VMCore/PassManager.cpp12
1 files changed, 12 insertions, 0 deletions
diff --git a/llvm/lib/VMCore/PassManager.cpp b/llvm/lib/VMCore/PassManager.cpp
index 8362034fcf2..3a8a9e25e3c 100644
--- a/llvm/lib/VMCore/PassManager.cpp
+++ b/llvm/lib/VMCore/PassManager.cpp
@@ -1654,6 +1654,18 @@ void MPPassManager::addLowerLevelRequiredPass(Pass *P, Pass *RequiredPass) {
OnTheFlyManagers[P] = FPP;
}
+
+ // If RequiredPass is an analysis pass and it is available then do not
+ // generate the analysis again. Stale analysis info should not be
+ // available at this point.
+ const PassInfo *PI =
+ PassRegistry::getPassRegistry()->getPassInfo(RequiredPass->getPassID());
+ if (PI && PI->isAnalysis() &&
+ FPP->getTopLevelManager()->findAnalysisPass(RequiredPass->getPassID())) {
+ delete RequiredPass;
+ return;
+ }
+
FPP->add(RequiredPass);
// Register P as the last user of RequiredPass.
OpenPOWER on IntegriCloud