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