mirror of
https://github.com/RPCSX/llvm.git
synced 2025-01-05 19:29:01 +00:00
Use double-checked locking for this lazy initialization.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@73653 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
b983d67465
commit
a23d2c1262
@ -453,8 +453,27 @@ void DerivedType::dropAllTypeUses() {
|
|||||||
if (NumContainedTys != 0) {
|
if (NumContainedTys != 0) {
|
||||||
// The type must stay abstract. To do this, we insert a pointer to a type
|
// The type must stay abstract. To do this, we insert a pointer to a type
|
||||||
// that will never get resolved, thus will always be abstract.
|
// that will never get resolved, thus will always be abstract.
|
||||||
static Type *AlwaysOpaqueTy = OpaqueType::get();
|
static Type *AlwaysOpaqueTy = 0;
|
||||||
static PATypeHolder Holder(AlwaysOpaqueTy);
|
static PATypeHolder* Holder = 0;
|
||||||
|
if (!AlwaysOpaqueTy) {
|
||||||
|
if (llvm_is_multithreaded()) {
|
||||||
|
llvm_acquire_global_lock();
|
||||||
|
|
||||||
|
if (!AlwaysOpaqueTy) {
|
||||||
|
Type *tmp = OpaqueType::get();
|
||||||
|
PATypeHolder* tmp2 = new PATypeHolder(AlwaysOpaqueTy);
|
||||||
|
sys::MemoryFence();
|
||||||
|
AlwaysOpaqueTy = tmp;
|
||||||
|
Holder = tmp2;
|
||||||
|
}
|
||||||
|
|
||||||
|
llvm_release_global_lock();
|
||||||
|
} else {
|
||||||
|
AlwaysOpaqueTy = OpaqueType::get();
|
||||||
|
Holder = new PATypeHolder(AlwaysOpaqueTy);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
ContainedTys[0] = AlwaysOpaqueTy;
|
ContainedTys[0] = AlwaysOpaqueTy;
|
||||||
|
|
||||||
// Change the rest of the types to be Int32Ty's. It doesn't matter what we
|
// Change the rest of the types to be Int32Ty's. It doesn't matter what we
|
||||||
|
Loading…
Reference in New Issue
Block a user