diff options
| author | Zachary Turner <zturner@google.com> | 2014-06-12 00:16:36 +0000 |
|---|---|---|
| committer | Zachary Turner <zturner@google.com> | 2014-06-12 00:16:36 +0000 |
| commit | 39c422da57c58900eb4346cd3f69bea3e20b3ce9 (patch) | |
| tree | 909b1360d9ae4c35767886397b3dcaf7555e2f50 /llvm/lib/IR/Pass.cpp | |
| parent | 29d0e6b601169e99062e608dcd1dcfaf2c80a09a (diff) | |
| download | bcm5719-llvm-39c422da57c58900eb4346cd3f69bea3e20b3ce9.tar.gz bcm5719-llvm-39c422da57c58900eb4346cd3f69bea3e20b3ce9.zip | |
Do not register and de-register PassRegistrationListeners during
construction and destruction.
PassRegistrationListener is intended for use as a generic listener.
In some cases, PassRegistrationListener-derived classes were being
created, and automatically registered and de-registered in static
constructors and destructors. Since ManagedStatics are destroyed
prior to program shutdown, this leads to errors where an attempt is
made to access a ManagedStatic that has already been destroyed.
Reviewed by: rnk, dblaikie
Differential Revision: http://reviews.llvm.org/D4106
llvm-svn: 210724
Diffstat (limited to 'llvm/lib/IR/Pass.cpp')
| -rw-r--r-- | llvm/lib/IR/Pass.cpp | 22 |
1 files changed, 10 insertions, 12 deletions
diff --git a/llvm/lib/IR/Pass.cpp b/llvm/lib/IR/Pass.cpp index bb55d2af7cf..916d79b4cbb 100644 --- a/llvm/lib/IR/Pass.cpp +++ b/llvm/lib/IR/Pass.cpp @@ -224,17 +224,6 @@ RegisterAGBase::RegisterAGBase(const char *Name, const void *InterfaceID, // PassRegistrationListener implementation // -// PassRegistrationListener ctor - Add the current object to the list of -// PassRegistrationListeners... -PassRegistrationListener::PassRegistrationListener() { - PassRegistry::getPassRegistry()->addRegistrationListener(this); -} - -// dtor - Remove object from list of listeners... -PassRegistrationListener::~PassRegistrationListener() { - PassRegistry::getPassRegistry()->removeRegistrationListener(this); -} - // enumeratePasses - Iterate over the registered passes, calling the // passEnumerate callback on each PassInfo object. // @@ -242,7 +231,16 @@ void PassRegistrationListener::enumeratePasses() { PassRegistry::getPassRegistry()->enumerateWith(this); } -PassNameParser::~PassNameParser() {} +PassNameParser::PassNameParser() + : Opt(nullptr) { + PassRegistry::getPassRegistry()->addRegistrationListener(this); +} + +PassNameParser::~PassNameParser() { + // This only gets called during static destruction, in which case the + // PassRegistry will have already been destroyed by llvm_shutdown(). So + // attempting to remove the registration listener is an error. +} //===----------------------------------------------------------------------===// // AnalysisUsage Class Implementation |

