2006-09-28 08:31:55 +08:00
|
|
|
//===-- ManagedStatic.cpp - Static Global wrapper -------------------------===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2007-12-30 04:36:04 +08:00
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
2006-09-28 08:31:55 +08:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file implements the ManagedStatic class and llvm_shutdown().
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "llvm/Support/ManagedStatic.h"
|
2009-05-20 08:39:20 +08:00
|
|
|
#include "llvm/Config/config.h"
|
2014-06-21 08:24:51 +08:00
|
|
|
#include "llvm/Support/Mutex.h"
|
|
|
|
#include "llvm/Support/MutexGuard.h"
|
2016-06-03 02:22:12 +08:00
|
|
|
#include "llvm/Support/Threading.h"
|
2006-09-28 08:31:55 +08:00
|
|
|
#include <cassert>
|
|
|
|
using namespace llvm;
|
|
|
|
|
2014-04-07 12:17:22 +08:00
|
|
|
static const ManagedStaticBase *StaticList = nullptr;
|
2016-06-03 02:22:12 +08:00
|
|
|
static sys::Mutex *ManagedStaticMutex = nullptr;
|
|
|
|
LLVM_DEFINE_ONCE_FLAG(mutex_init_flag);
|
2006-09-28 08:31:55 +08:00
|
|
|
|
2016-06-03 02:22:12 +08:00
|
|
|
static void initializeMutex() {
|
|
|
|
ManagedStaticMutex = new sys::Mutex();
|
|
|
|
}
|
|
|
|
|
|
|
|
static sys::Mutex* getManagedStaticMutex() {
|
2014-06-21 08:24:51 +08:00
|
|
|
// 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.
|
2016-06-05 03:57:55 +08:00
|
|
|
llvm::call_once(mutex_init_flag, initializeMutex);
|
2014-06-21 08:24:51 +08:00
|
|
|
return ManagedStaticMutex;
|
2014-06-20 00:17:42 +08:00
|
|
|
}
|
|
|
|
|
2009-05-20 08:39:20 +08:00
|
|
|
void ManagedStaticBase::RegisterManagedStatic(void *(*Creator)(),
|
2006-09-28 08:31:55 +08:00
|
|
|
void (*Deleter)(void*)) const {
|
2014-04-18 04:30:35 +08:00
|
|
|
assert(Creator);
|
2009-06-17 01:33:51 +08:00
|
|
|
if (llvm_is_multithreaded()) {
|
2016-06-03 02:22:12 +08:00
|
|
|
MutexGuard Lock(*getManagedStaticMutex());
|
2009-05-20 08:39:20 +08:00
|
|
|
|
2016-06-29 23:04:07 +08:00
|
|
|
if (!Ptr.load(std::memory_order_relaxed)) {
|
|
|
|
void *Tmp = Creator();
|
2009-05-20 08:39:20 +08:00
|
|
|
|
2016-06-29 23:04:07 +08:00
|
|
|
Ptr.store(Tmp, std::memory_order_release);
|
2009-05-20 08:39:20 +08:00
|
|
|
DeleterFn = Deleter;
|
|
|
|
|
|
|
|
// Add to list of managed statics.
|
|
|
|
Next = StaticList;
|
|
|
|
StaticList = this;
|
|
|
|
}
|
|
|
|
} else {
|
2014-04-15 14:32:26 +08:00
|
|
|
assert(!Ptr && !DeleterFn && !Next &&
|
2009-05-30 09:09:53 +08:00
|
|
|
"Partially initialized ManagedStatic!?");
|
2014-04-18 04:30:35 +08:00
|
|
|
Ptr = Creator();
|
2009-05-20 08:39:20 +08:00
|
|
|
DeleterFn = Deleter;
|
2006-09-28 08:31:55 +08:00
|
|
|
|
2009-05-20 08:39:20 +08:00
|
|
|
// Add to list of managed statics.
|
|
|
|
Next = StaticList;
|
|
|
|
StaticList = this;
|
|
|
|
}
|
2006-09-28 08:31:55 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void ManagedStaticBase::destroy() const {
|
2007-02-20 14:18:57 +08:00
|
|
|
assert(DeleterFn && "ManagedStatic not initialized correctly!");
|
2006-09-28 08:31:55 +08:00
|
|
|
assert(StaticList == this &&
|
|
|
|
"Not destroyed in reverse order of construction?");
|
|
|
|
// Unlink from list.
|
|
|
|
StaticList = Next;
|
2014-04-07 12:17:22 +08:00
|
|
|
Next = nullptr;
|
2006-09-28 08:31:55 +08:00
|
|
|
|
|
|
|
// Destroy memory.
|
|
|
|
DeleterFn(Ptr);
|
|
|
|
|
|
|
|
// Cleanup.
|
2014-04-07 12:17:22 +08:00
|
|
|
Ptr = nullptr;
|
|
|
|
DeleterFn = nullptr;
|
2006-09-28 08:31:55 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/// llvm_shutdown - Deallocate and destroy all ManagedStatic variables.
|
2006-09-30 02:43:14 +08:00
|
|
|
void llvm::llvm_shutdown() {
|
2016-06-03 02:22:12 +08:00
|
|
|
MutexGuard Lock(*getManagedStaticMutex());
|
2014-06-20 00:17:42 +08:00
|
|
|
|
2014-10-14 23:58:16 +08:00
|
|
|
while (StaticList)
|
|
|
|
StaticList->destroy();
|
2006-09-28 08:31:55 +08:00
|
|
|
}
|