aboutsummaryrefslogtreecommitdiffstats
path: root/lib/VMCore/Pass.cpp
diff options
context:
space:
mode:
authorOwen Anderson <resistor@mac.com>2009-06-17 21:16:20 +0000
committerOwen Anderson <resistor@mac.com>2009-06-17 21:16:20 +0000
commitf2986e6ca9be11f794d3d77325945a437ba133a1 (patch)
tree2589344eadc0dbf866d1c562fa2f72a88677d598 /lib/VMCore/Pass.cpp
parent24e0411184741640d26c3ac60bcd605c647f83dd (diff)
downloadexternal_llvm-f2986e6ca9be11f794d3d77325945a437ba133a1.zip
external_llvm-f2986e6ca9be11f794d3d77325945a437ba133a1.tar.gz
external_llvm-f2986e6ca9be11f794d3d77325945a437ba133a1.tar.bz2
We need to use double-checked locking for lazy initialization in this case when running multithreaded.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@73636 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/VMCore/Pass.cpp')
-rw-r--r--lib/VMCore/Pass.cpp16
1 files changed, 15 insertions, 1 deletions
diff --git a/lib/VMCore/Pass.cpp b/lib/VMCore/Pass.cpp
index 6db5d7e..bacabc9 100644
--- a/lib/VMCore/Pass.cpp
+++ b/lib/VMCore/Pass.cpp
@@ -19,6 +19,8 @@
#include "llvm/ModuleProvider.h"
#include "llvm/ADT/STLExtras.h"
#include "llvm/Support/ManagedStatic.h"
+#include "llvm/Support/Threading.h"
+#include "llvm/System/Atomic.h"
#include <algorithm>
#include <map>
#include <set>
@@ -192,8 +194,20 @@ static std::vector<PassRegistrationListener*> *Listeners = 0;
// ressurection after llvm_shutdown is run.
static PassRegistrar *getPassRegistrar() {
static PassRegistrar *PassRegistrarObj = 0;
+
+ // Use double-checked locking to safely initialize the registrar when
+ // we're running in multithreaded mode.
if (!PassRegistrarObj)
- PassRegistrarObj = new PassRegistrar();
+ if (llvm_is_multithreaded()) {
+ llvm_acquire_global_lock();
+ if (!PassRegistrarObj) {
+ PassRegistrar* tmp = new PassRegistrar();
+ sys::MemoryFence();
+ PassRegistrarObj = tmp;
+ }
+ llvm_release_global_lock();
+ } else
+ PassRegistrarObj = new PassRegistrar();
return PassRegistrarObj;
}