diff options
author | Benjamin Kramer <benny.kra@googlemail.com> | 2014-03-03 17:53:30 +0000 |
---|---|---|
committer | Benjamin Kramer <benny.kra@googlemail.com> | 2014-03-03 17:53:30 +0000 |
commit | 0b6eb591a4d6a7ce35d1a06ecf37637920715fce (patch) | |
tree | 4ca441c8c925d46885ce6282846f21b239553190 /llvm/lib/Support/ManagedStatic.cpp | |
parent | 994863768773ccdb76606b5fc4dabb6745f5da23 (diff) | |
download | bcm5719-llvm-0b6eb591a4d6a7ce35d1a06ecf37637920715fce.tar.gz bcm5719-llvm-0b6eb591a4d6a7ce35d1a06ecf37637920715fce.zip |
[C++11] Replace LLVM atomics with std::atomic.
With C++11 we finally have a standardized way to specify atomic operations. Use
them to replace the existing custom implemention. Sadly the translation is not
entirely trivial as std::atomic allows more fine-grained control over the
atomicity. I tried to preserve the old semantics as well as possible.
Differential Revision: http://llvm-reviews.chandlerc.com/D2915
llvm-svn: 202730
Diffstat (limited to 'llvm/lib/Support/ManagedStatic.cpp')
-rw-r--r-- | llvm/lib/Support/ManagedStatic.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/llvm/lib/Support/ManagedStatic.cpp b/llvm/lib/Support/ManagedStatic.cpp index 098cccb68df..c19f8cb4859 100644 --- a/llvm/lib/Support/ManagedStatic.cpp +++ b/llvm/lib/Support/ManagedStatic.cpp @@ -13,7 +13,6 @@ #include "llvm/Support/ManagedStatic.h" #include "llvm/Config/config.h" -#include "llvm/Support/Atomic.h" #include <cassert> using namespace llvm; @@ -28,7 +27,7 @@ void ManagedStaticBase::RegisterManagedStatic(void *(*Creator)(), void* tmp = Creator ? Creator() : 0; TsanHappensBefore(this); - sys::MemoryFence(); + std::atomic_thread_fence(std::memory_order_seq_cst); // This write is racy against the first read in the ManagedStatic // accessors. The race is benign because it does a second read after a |