2006-09-28 00:31:55 +00:00
|
|
|
//===-- ManagedStatic.cpp - Static Global wrapper -------------------------===//
|
|
|
|
//
|
2019-01-19 08:50:56 +00:00
|
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
2006-09-28 00:31:55 +00:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file implements the ManagedStatic class and llvm_shutdown().
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "llvm/Support/ManagedStatic.h"
|
2009-05-20 00:39:20 +00:00
|
|
|
#include "llvm/Config/config.h"
|
2016-06-02 18:22:12 +00:00
|
|
|
#include "llvm/Support/Threading.h"
|
2006-09-28 00:31:55 +00:00
|
|
|
#include <cassert>
|
2019-08-07 10:57:25 +00:00
|
|
|
#include <mutex>
|
2006-09-28 00:31:55 +00:00
|
|
|
using namespace llvm;
|
|
|
|
|
2014-04-07 04:17:22 +00:00
|
|
|
static const ManagedStaticBase *StaticList = nullptr;
|
2019-08-19 19:49:57 +00:00
|
|
|
static std::recursive_mutex *ManagedStaticMutex = nullptr;
|
2017-02-05 21:13:06 +00:00
|
|
|
static llvm::once_flag mutex_init_flag;
|
2006-09-28 00:31:55 +00:00
|
|
|
|
2016-06-02 18:22:12 +00:00
|
|
|
static void initializeMutex() {
|
2019-08-19 19:49:57 +00:00
|
|
|
ManagedStaticMutex = new std::recursive_mutex();
|
2016-06-02 18:22:12 +00:00
|
|
|
}
|
|
|
|
|
2019-08-19 19:49:57 +00:00
|
|
|
static std::recursive_mutex *getManagedStaticMutex() {
|
2016-06-04 19:57:55 +00:00
|
|
|
llvm::call_once(mutex_init_flag, initializeMutex);
|
2014-06-21 00:24:51 +00:00
|
|
|
return ManagedStaticMutex;
|
2014-06-19 16:17:42 +00:00
|
|
|
}
|
|
|
|
|
2009-05-20 00:39:20 +00:00
|
|
|
void ManagedStaticBase::RegisterManagedStatic(void *(*Creator)(),
|
2006-09-28 00:31:55 +00:00
|
|
|
void (*Deleter)(void*)) const {
|
2014-04-17 20:30:35 +00:00
|
|
|
assert(Creator);
|
2009-06-16 17:33:51 +00:00
|
|
|
if (llvm_is_multithreaded()) {
|
2019-08-19 19:49:57 +00:00
|
|
|
std::lock_guard<std::recursive_mutex> Lock(*getManagedStaticMutex());
|
2009-05-20 00:39:20 +00:00
|
|
|
|
2016-06-29 15:04:07 +00:00
|
|
|
if (!Ptr.load(std::memory_order_relaxed)) {
|
|
|
|
void *Tmp = Creator();
|
2009-05-20 00:39:20 +00:00
|
|
|
|
2016-06-29 15:04:07 +00:00
|
|
|
Ptr.store(Tmp, std::memory_order_release);
|
2009-05-20 00:39:20 +00:00
|
|
|
DeleterFn = Deleter;
|
2018-07-30 19:41:25 +00:00
|
|
|
|
2009-05-20 00:39:20 +00:00
|
|
|
// Add to list of managed statics.
|
|
|
|
Next = StaticList;
|
|
|
|
StaticList = this;
|
|
|
|
}
|
|
|
|
} else {
|
2014-04-15 06:32:26 +00:00
|
|
|
assert(!Ptr && !DeleterFn && !Next &&
|
2009-05-30 01:09:53 +00:00
|
|
|
"Partially initialized ManagedStatic!?");
|
2014-04-17 20:30:35 +00:00
|
|
|
Ptr = Creator();
|
2009-05-20 00:39:20 +00:00
|
|
|
DeleterFn = Deleter;
|
2018-07-30 19:41:25 +00:00
|
|
|
|
2009-05-20 00:39:20 +00:00
|
|
|
// Add to list of managed statics.
|
|
|
|
Next = StaticList;
|
|
|
|
StaticList = this;
|
|
|
|
}
|
2006-09-28 00:31:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void ManagedStaticBase::destroy() const {
|
2007-02-20 06:18:57 +00:00
|
|
|
assert(DeleterFn && "ManagedStatic not initialized correctly!");
|
2006-09-28 00:31:55 +00:00
|
|
|
assert(StaticList == this &&
|
|
|
|
"Not destroyed in reverse order of construction?");
|
|
|
|
// Unlink from list.
|
|
|
|
StaticList = Next;
|
2014-04-07 04:17:22 +00:00
|
|
|
Next = nullptr;
|
2006-09-28 00:31:55 +00:00
|
|
|
|
|
|
|
// Destroy memory.
|
|
|
|
DeleterFn(Ptr);
|
2018-07-30 19:41:25 +00:00
|
|
|
|
2006-09-28 00:31:55 +00:00
|
|
|
// Cleanup.
|
2014-04-07 04:17:22 +00:00
|
|
|
Ptr = nullptr;
|
|
|
|
DeleterFn = nullptr;
|
2006-09-28 00:31:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/// llvm_shutdown - Deallocate and destroy all ManagedStatic variables.
|
2006-09-29 18:43:14 +00:00
|
|
|
void llvm::llvm_shutdown() {
|
2019-08-19 19:49:57 +00:00
|
|
|
std::lock_guard<std::recursive_mutex> Lock(*getManagedStaticMutex());
|
2014-06-19 16:17:42 +00:00
|
|
|
|
2014-10-14 15:58:16 +00:00
|
|
|
while (StaticList)
|
|
|
|
StaticList->destroy();
|
2006-09-28 00:31:55 +00:00
|
|
|
}
|