2006-09-28 02:31:55 +02:00
|
|
|
//===-- ManagedStatic.cpp - Static Global wrapper -------------------------===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2007-12-29 21:36:04 +01:00
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
2006-09-28 02:31:55 +02:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file implements the ManagedStatic class and llvm_shutdown().
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "llvm/Support/ManagedStatic.h"
|
2009-05-20 02:39:20 +02:00
|
|
|
#include "llvm/Config/config.h"
|
2010-11-29 19:16:10 +01:00
|
|
|
#include "llvm/Support/Atomic.h"
|
2006-09-28 02:31:55 +02:00
|
|
|
#include <cassert>
|
|
|
|
using namespace llvm;
|
|
|
|
|
|
|
|
static const ManagedStaticBase *StaticList = 0;
|
|
|
|
|
2009-05-20 02:39:20 +02:00
|
|
|
void ManagedStaticBase::RegisterManagedStatic(void *(*Creator)(),
|
2006-09-28 02:31:55 +02:00
|
|
|
void (*Deleter)(void*)) const {
|
2009-06-16 19:33:51 +02:00
|
|
|
if (llvm_is_multithreaded()) {
|
|
|
|
llvm_acquire_global_lock();
|
2009-05-20 02:39:20 +02:00
|
|
|
|
|
|
|
if (Ptr == 0) {
|
|
|
|
void* tmp = Creator ? Creator() : 0;
|
|
|
|
|
2011-11-14 21:50:16 +01:00
|
|
|
TsanHappensBefore(this);
|
2009-05-20 02:39:20 +02:00
|
|
|
sys::MemoryFence();
|
2011-11-14 21:50:16 +01:00
|
|
|
|
|
|
|
// This write is racy against the first read in the ManagedStatic
|
|
|
|
// accessors. The race is benign because it does a second read after a
|
|
|
|
// memory fence, at which point it isn't possible to get a partial value.
|
|
|
|
TsanIgnoreWritesBegin();
|
2009-05-20 02:39:20 +02:00
|
|
|
Ptr = tmp;
|
2011-11-14 21:50:16 +01:00
|
|
|
TsanIgnoreWritesEnd();
|
2009-05-20 02:39:20 +02:00
|
|
|
DeleterFn = Deleter;
|
|
|
|
|
|
|
|
// Add to list of managed statics.
|
|
|
|
Next = StaticList;
|
|
|
|
StaticList = this;
|
|
|
|
}
|
|
|
|
|
2009-06-16 19:33:51 +02:00
|
|
|
llvm_release_global_lock();
|
2009-05-20 02:39:20 +02:00
|
|
|
} else {
|
|
|
|
assert(Ptr == 0 && DeleterFn == 0 && Next == 0 &&
|
2009-05-30 03:09:53 +02:00
|
|
|
"Partially initialized ManagedStatic!?");
|
2009-05-20 02:39:20 +02:00
|
|
|
Ptr = Creator ? Creator() : 0;
|
|
|
|
DeleterFn = Deleter;
|
2006-09-28 02:31:55 +02:00
|
|
|
|
2009-05-20 02:39:20 +02:00
|
|
|
// Add to list of managed statics.
|
|
|
|
Next = StaticList;
|
|
|
|
StaticList = this;
|
|
|
|
}
|
2006-09-28 02:31:55 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void ManagedStaticBase::destroy() const {
|
2007-02-20 07:18:57 +01:00
|
|
|
assert(DeleterFn && "ManagedStatic not initialized correctly!");
|
2006-09-28 02:31:55 +02:00
|
|
|
assert(StaticList == this &&
|
|
|
|
"Not destroyed in reverse order of construction?");
|
|
|
|
// Unlink from list.
|
|
|
|
StaticList = Next;
|
|
|
|
Next = 0;
|
|
|
|
|
|
|
|
// Destroy memory.
|
|
|
|
DeleterFn(Ptr);
|
|
|
|
|
|
|
|
// Cleanup.
|
|
|
|
Ptr = 0;
|
|
|
|
DeleterFn = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// llvm_shutdown - Deallocate and destroy all ManagedStatic variables.
|
2006-09-29 20:43:14 +02:00
|
|
|
void llvm::llvm_shutdown() {
|
2006-09-28 02:31:55 +02:00
|
|
|
while (StaticList)
|
|
|
|
StaticList->destroy();
|
2009-05-20 02:39:20 +02:00
|
|
|
|
2009-06-16 19:33:51 +02:00
|
|
|
if (llvm_is_multithreaded()) llvm_stop_multithreaded();
|
2006-09-28 02:31:55 +02:00
|
|
|
}
|