Fix a PassManager pointer use-after-free bug.
authorZhou Sheng <zhousheng00@gmail.com>
Mon, 26 Nov 2012 05:45:53 +0000 (05:45 +0000)
committerZhou Sheng <zhousheng00@gmail.com>
Mon, 26 Nov 2012 05:45:53 +0000 (05:45 +0000)
commit9853db7072b26c57ab20bc17bbc00e7384abbf06
tree03dec50291813fbd733c47b7ddcec28d9fdb1e1a
parent38c4441797a9c90dee830d9b90491742ff83d42c
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.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@168581 91177308-0d34-0410-b5e6-96231b3b80d8
lib/VMCore/PassManager.cpp