Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 /* | 1 /* |
| 2 * Copyright (C) 2007, 2008, 2010 Apple Inc. All rights reserved. | 2 * Copyright (C) 2007, 2008, 2010 Apple Inc. All rights reserved. |
| 3 * Copyright (C) 2007 Justin Haygood (jhaygood@reaktix.com) | 3 * Copyright (C) 2007 Justin Haygood (jhaygood@reaktix.com) |
| 4 * | 4 * |
| 5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
| 6 * modification, are permitted provided that the following conditions | 6 * modification, are permitted provided that the following conditions |
| 7 * are met: | 7 * are met: |
| 8 * | 8 * |
| 9 * 1. Redistributions of source code must retain the above copyright | 9 * 1. Redistributions of source code must retain the above copyright |
| 10 * notice, this list of conditions and the following disclaimer. | 10 * notice, this list of conditions and the following disclaimer. |
| (...skipping 12 matching lines...) Expand all Loading... | |
| 23 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; | 23 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; |
| 24 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND | 24 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND |
| 25 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 25 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 26 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF | 26 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
| 27 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 27 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 28 */ | 28 */ |
| 29 | 29 |
| 30 #ifndef Threading_h | 30 #ifndef Threading_h |
| 31 #define Threading_h | 31 #define Threading_h |
| 32 | 32 |
| 33 #include "wtf/Atomics.h" | |
| 34 #include "wtf/TypeTraits.h" | |
| 33 #include "wtf/WTFExport.h" | 35 #include "wtf/WTFExport.h" |
| 34 #include <stdint.h> | 36 #include <stdint.h> |
| 35 | 37 |
| 36 // For portability, we do not use thread-safe statics natively supported by some compilers (e.g. gcc). | 38 // For portability, we do not make use of C++11 thread-safe statics, as supporte d |
| 37 #define AtomicallyInitializedStatic(T, name) \ | 39 // by some toolchains. Make use of double-checked locking to reduce overhead. |
| 38 WTF::lockAtomicallyInitializedStaticMutex(); \ | 40 #define AtomicallyInitializedStaticReference(T, name, initializer) \ |
|
Noel Gordon
2015/01/24 01:20:06
To "reduce overhead" relative to what?
sof
2015/01/24 06:20:06
To what's on the left here in the diff? :) Doesn't
Noel Gordon
2015/01/24 12:08:24
Think _we_ understand the motivation :) but other
sof
2015/01/24 12:40:05
Sounds sensible; doesn't the description here expl
| |
| 39 static T name; \ | 41 /* Init to nullptr is thread-safe on all implementations. */ \ |
| 40 WTF::unlockAtomicallyInitializedStaticMutex(); | 42 static void* name##Pointer = nullptr; \ |
| 43 if (!WTF::acquireLoad(&name##Pointer)) { \ | |
|
Noel Gordon
2015/01/24 01:20:06
Blink prefers the early return. Any reason not to
sof
2015/01/24 06:20:06
You have to bind the reference, and at the scope t
Noel Gordon
2015/01/24 12:08:24
Yes I see your point, @51 it seems, so ok.
| |
| 44 WTF::lockAtomicallyInitializedStaticMutex(); \ | |
| 45 if (!WTF::acquireLoad(&name##Pointer)) { \ | |
| 46 WTF::RemoveConst<T>::Type* initializerResult = initializer; \ | |
| 47 WTF::releaseStore(&name##Pointer, initializerResult); \ | |
| 48 } \ | |
| 49 WTF::unlockAtomicallyInitializedStaticMutex(); \ | |
| 50 } \ | |
| 51 T& name = *static_cast<T*>(name##Pointer) | |
| 41 | 52 |
| 42 namespace WTF { | 53 namespace WTF { |
| 43 | 54 |
| 44 #if OS(WIN) | 55 #if OS(WIN) |
| 45 typedef uint32_t ThreadIdentifier; | 56 typedef uint32_t ThreadIdentifier; |
| 46 #else | 57 #else |
| 47 typedef intptr_t ThreadIdentifier; | 58 typedef intptr_t ThreadIdentifier; |
| 48 #endif | 59 #endif |
| 49 | 60 |
| 50 WTF_EXPORT ThreadIdentifier currentThread(); | 61 WTF_EXPORT ThreadIdentifier currentThread(); |
| 51 | 62 |
| 52 WTF_EXPORT void lockAtomicallyInitializedStaticMutex(); | 63 WTF_EXPORT void lockAtomicallyInitializedStaticMutex(); |
| 53 WTF_EXPORT void unlockAtomicallyInitializedStaticMutex(); | 64 WTF_EXPORT void unlockAtomicallyInitializedStaticMutex(); |
| 54 | 65 |
| 55 } // namespace WTF | 66 } // namespace WTF |
| 56 | 67 |
| 57 using WTF::ThreadIdentifier; | 68 using WTF::ThreadIdentifier; |
| 58 using WTF::currentThread; | 69 using WTF::currentThread; |
| 59 | 70 |
| 60 #endif // Threading_h | 71 #endif // Threading_h |
| OLD | NEW |