forked from OSchip/llvm-project
Fix the MinGW builder. Apparently std::call_once and
std::recursive_mutex are not available on MinGW and breaks the builder. Revert to using a function local static and sys::Mutex just to get the tree green until we figure out a better solution. llvm-svn: 211424
This commit is contained in:
parent
b4076b290e
commit
d119fa028a
|
@ -14,33 +14,26 @@
|
||||||
#include "llvm/Support/ManagedStatic.h"
|
#include "llvm/Support/ManagedStatic.h"
|
||||||
#include "llvm/Config/config.h"
|
#include "llvm/Config/config.h"
|
||||||
#include "llvm/Support/Atomic.h"
|
#include "llvm/Support/Atomic.h"
|
||||||
|
#include "llvm/Support/Mutex.h"
|
||||||
|
#include "llvm/Support/MutexGuard.h"
|
||||||
#include <cassert>
|
#include <cassert>
|
||||||
#include <mutex>
|
|
||||||
using namespace llvm;
|
using namespace llvm;
|
||||||
|
|
||||||
static const ManagedStaticBase *StaticList = nullptr;
|
static const ManagedStaticBase *StaticList = nullptr;
|
||||||
|
|
||||||
// ManagedStatics can get created during execution of static constructors. As a
|
static sys::Mutex& getManagedStaticMutex() {
|
||||||
// result, we cannot use a global static std::mutex object for the lock since it
|
// We need to use a function local static here, since this can get called
|
||||||
// may not have been constructed. Instead, we do a call-once initialization of
|
// during a static constructor and we need to guarantee that it's initialized
|
||||||
// a pointer to a mutex.
|
// correctly.
|
||||||
static std::once_flag MutexInitializationFlag;
|
static sys::Mutex ManagedStaticMutex;
|
||||||
static std::recursive_mutex* ManagedStaticMutex = nullptr;
|
return ManagedStaticMutex;
|
||||||
|
|
||||||
// Not all supported platforms (in particular VS2012) have thread-safe function
|
|
||||||
// static initialization, so roll our own.
|
|
||||||
static std::recursive_mutex& GetManagedStaticMutex() {
|
|
||||||
std::call_once(MutexInitializationFlag,
|
|
||||||
[]() { ManagedStaticMutex = new std::recursive_mutex(); } );
|
|
||||||
|
|
||||||
return *ManagedStaticMutex;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void ManagedStaticBase::RegisterManagedStatic(void *(*Creator)(),
|
void ManagedStaticBase::RegisterManagedStatic(void *(*Creator)(),
|
||||||
void (*Deleter)(void*)) const {
|
void (*Deleter)(void*)) const {
|
||||||
assert(Creator);
|
assert(Creator);
|
||||||
if (llvm_is_multithreaded()) {
|
if (llvm_is_multithreaded()) {
|
||||||
std::lock_guard<std::recursive_mutex> Lock(GetManagedStaticMutex());
|
MutexGuard Lock(getManagedStaticMutex());
|
||||||
|
|
||||||
if (!Ptr) {
|
if (!Ptr) {
|
||||||
void* tmp = Creator();
|
void* tmp = Creator();
|
||||||
|
@ -90,7 +83,7 @@ void ManagedStaticBase::destroy() const {
|
||||||
|
|
||||||
/// llvm_shutdown - Deallocate and destroy all ManagedStatic variables.
|
/// llvm_shutdown - Deallocate and destroy all ManagedStatic variables.
|
||||||
void llvm::llvm_shutdown() {
|
void llvm::llvm_shutdown() {
|
||||||
std::lock_guard<std::recursive_mutex> Lock(GetManagedStaticMutex());
|
MutexGuard Lock(getManagedStaticMutex());
|
||||||
|
|
||||||
while (StaticList)
|
while (StaticList)
|
||||||
StaticList->destroy();
|
StaticList->destroy();
|
||||||
|
|
Loading…
Reference in New Issue