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-03-04 02:02:34 +08:00
|
|
|
#include "llvm/Support/Atomic.h"
|
2015-08-19 06:31:24 +08:00
|
|
|
#include "llvm/Support/Compiler.h"
|
2014-06-21 08:24:51 +08:00
|
|
|
#include "llvm/Support/Mutex.h"
|
|
|
|
#include "llvm/Support/MutexGuard.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;
|
2006-09-28 08:31:55 +08:00
|
|
|
|
2014-11-05 12:44:31 +08:00
|
|
|
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.
|
2014-11-05 12:44:31 +08:00
|
|
|
static sys::Mutex ManagedStaticMutex;
|
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()) {
|
2014-11-05 12:44:31 +08:00
|
|
|
MutexGuard Lock(getManagedStaticMutex());
|
2009-05-20 08:39:20 +08:00
|
|
|
|
2014-04-09 12:20:00 +08:00
|
|
|
if (!Ptr) {
|
2014-04-18 04:30:35 +08:00
|
|
|
void* tmp = Creator();
|
2009-05-20 08:39:20 +08:00
|
|
|
|
2011-11-15 04:50:16 +08:00
|
|
|
TsanHappensBefore(this);
|
2014-03-04 02:02:34 +08:00
|
|
|
sys::MemoryFence();
|
2011-11-15 04:50:16 +08: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 08:39:20 +08:00
|
|
|
Ptr = tmp;
|
2011-11-15 04:50:16 +08:00
|
|
|
TsanIgnoreWritesEnd();
|
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() {
|
2014-11-05 12:44:31 +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
|
|
|
}
|