diff options
author | Chris Bieneman <beanz@apple.com> | 2014-10-13 22:37:25 +0000 |
---|---|---|
committer | Chris Bieneman <beanz@apple.com> | 2014-10-13 22:37:25 +0000 |
commit | b75d8f300cbfba07aad4442a8ef600194e5a8a42 (patch) | |
tree | e6cdfb42daa86dec381a0ba8bae9aa526c64155c /llvm/lib | |
parent | 3e8b6ac54c4868b545b304c95789c01b90945213 (diff) | |
download | bcm5719-llvm-b75d8f300cbfba07aad4442a8ef600194e5a8a42.tar.gz bcm5719-llvm-b75d8f300cbfba07aad4442a8ef600194e5a8a42.zip |
Removing the static destructor from ManagedStatic.cpp by controlling the allocation and de-allocation of the mutex.
This patch adds a new llvm_call_once function which is used by the ManagedStatic implementation to safely initialize a global to avoid static construction and destruction.
llvm-svn: 219638
Diffstat (limited to 'llvm/lib')
-rw-r--r-- | llvm/lib/Support/ManagedStatic.cpp | 23 |
1 files changed, 17 insertions, 6 deletions
diff --git a/llvm/lib/Support/ManagedStatic.cpp b/llvm/lib/Support/ManagedStatic.cpp index b8fb2841e52..fbcce598b21 100644 --- a/llvm/lib/Support/ManagedStatic.cpp +++ b/llvm/lib/Support/ManagedStatic.cpp @@ -16,16 +16,22 @@ #include "llvm/Support/Atomic.h" #include "llvm/Support/Mutex.h" #include "llvm/Support/MutexGuard.h" +#include "llvm/Support/Threading.h" #include <cassert> using namespace llvm; static const ManagedStaticBase *StaticList = nullptr; +static sys::Mutex *ManagedStaticMutex = nullptr; -static sys::Mutex& getManagedStaticMutex() { +static void initializeMutex() { + ManagedStaticMutex = new sys::Mutex(); +} + +static sys::Mutex* getManagedStaticMutex() { // We need to use a function local static here, since this can get called // during a static constructor and we need to guarantee that it's initialized // correctly. - static sys::Mutex ManagedStaticMutex; + llvm_call_once<initializeMutex>(); return ManagedStaticMutex; } @@ -33,7 +39,7 @@ void ManagedStaticBase::RegisterManagedStatic(void *(*Creator)(), void (*Deleter)(void*)) const { assert(Creator); if (llvm_is_multithreaded()) { - MutexGuard Lock(getManagedStaticMutex()); + MutexGuard Lock(*getManagedStaticMutex()); if (!Ptr) { void* tmp = Creator(); @@ -83,8 +89,13 @@ void ManagedStaticBase::destroy() const { /// llvm_shutdown - Deallocate and destroy all ManagedStatic variables. void llvm::llvm_shutdown() { - MutexGuard Lock(getManagedStaticMutex()); + { + MutexGuard Lock(*getManagedStaticMutex()); + + while (StaticList) + StaticList->destroy(); + } - while (StaticList) - StaticList->destroy(); + delete ManagedStaticMutex; + ManagedStaticMutex = nullptr; } |