OLD | NEW |
1 // Copyright 2010 the V8 project authors. All rights reserved. | 1 // Copyright 2010 the V8 project authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 // The routines exported by this module are subtle. If you use them, even if | 5 // The routines exported by this module are subtle. If you use them, even if |
6 // you get the code right, it will depend on careful reasoning about atomicity | 6 // you get the code right, it will depend on careful reasoning about atomicity |
7 // and memory ordering; it will be less readable, and harder to maintain. If | 7 // and memory ordering; it will be less readable, and harder to maintain. If |
8 // you plan to use these routines, you should have a good reason, such as solid | 8 // you plan to use these routines, you should have a good reason, such as solid |
9 // evidence that performance would otherwise suffer, or there being no | 9 // evidence that performance would otherwise suffer, or there being no |
10 // alternative. You should assume only properties explicitly guaranteed by the | 10 // alternative. You should assume only properties explicitly guaranteed by the |
11 // specifications in this file. You are almost certainly _not_ writing code | 11 // specifications in this file. You are almost certainly _not_ writing code |
12 // just for the x86; if you assume x86 semantics, x86 hardware bugs and | 12 // just for the x86; if you assume x86 semantics, x86 hardware bugs and |
13 // implementations on other archtectures will cause your code to break. If you | 13 // implementations on other archtectures will cause your code to break. If you |
14 // do not know what you are doing, avoid these routines, and use a Mutex. | 14 // do not know what you are doing, avoid these routines, and use a Mutex. |
15 // | 15 // |
16 // It is incorrect to make direct assignments to/from an atomic variable. | 16 // It is incorrect to make direct assignments to/from an atomic variable. |
17 // You should use one of the Load or Store routines. The NoBarrier | 17 // You should use one of the Load or Store routines. The NoBarrier |
18 // versions are provided when no barriers are needed: | 18 // versions are provided when no barriers are needed: |
19 // NoBarrier_Store() | 19 // NoBarrier_Store() |
20 // NoBarrier_Load() | 20 // NoBarrier_Load() |
21 // Although there are currently no compiler enforcement, you are encouraged | 21 // Although there are currently no compiler enforcement, you are encouraged |
22 // to use these. | 22 // to use these. |
23 // | 23 // |
24 | 24 |
25 #ifndef V8_BASE_ATOMICOPS_H_ | 25 #ifndef V8_BASE_ATOMICOPS_H_ |
26 #define V8_BASE_ATOMICOPS_H_ | 26 #define V8_BASE_ATOMICOPS_H_ |
27 | 27 |
28 #include <stdint.h> | 28 #include <stdint.h> |
29 | |
30 // Small C++ header which defines implementation specific macros used to | |
31 // identify the STL implementation. | |
32 // - libc++: captures __config for _LIBCPP_VERSION | |
33 // - libstdc++: captures bits/c++config.h for __GLIBCXX__ | |
34 #include <cstddef> | |
35 | |
36 #include "src/base/base-export.h" | |
37 #include "src/base/build_config.h" | 29 #include "src/base/build_config.h" |
38 | 30 |
39 #if defined(V8_OS_WIN) && defined(V8_HOST_ARCH_64_BIT) | 31 #if defined(_WIN32) && defined(V8_HOST_ARCH_64_BIT) |
40 // windows.h #defines this (only on x64). This causes problems because the | 32 // windows.h #defines this (only on x64). This causes problems because the |
41 // public API also uses MemoryBarrier at the public name for this fence. So, on | 33 // public API also uses MemoryBarrier at the public name for this fence. So, on |
42 // X64, undef it, and call its documented | 34 // X64, undef it, and call its documented |
43 // (http://msdn.microsoft.com/en-us/library/windows/desktop/ms684208.aspx) | 35 // (http://msdn.microsoft.com/en-us/library/windows/desktop/ms684208.aspx) |
44 // implementation directly. | 36 // implementation directly. |
45 #undef MemoryBarrier | 37 #undef MemoryBarrier |
46 #endif | 38 #endif |
47 | 39 |
48 namespace v8 { | 40 namespace v8 { |
49 namespace base { | 41 namespace base { |
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
101 Atomic32 Acquire_CompareAndSwap(volatile Atomic32* ptr, | 93 Atomic32 Acquire_CompareAndSwap(volatile Atomic32* ptr, |
102 Atomic32 old_value, | 94 Atomic32 old_value, |
103 Atomic32 new_value); | 95 Atomic32 new_value); |
104 Atomic32 Release_CompareAndSwap(volatile Atomic32* ptr, | 96 Atomic32 Release_CompareAndSwap(volatile Atomic32* ptr, |
105 Atomic32 old_value, | 97 Atomic32 old_value, |
106 Atomic32 new_value); | 98 Atomic32 new_value); |
107 | 99 |
108 void MemoryBarrier(); | 100 void MemoryBarrier(); |
109 void NoBarrier_Store(volatile Atomic8* ptr, Atomic8 value); | 101 void NoBarrier_Store(volatile Atomic8* ptr, Atomic8 value); |
110 void NoBarrier_Store(volatile Atomic32* ptr, Atomic32 value); | 102 void NoBarrier_Store(volatile Atomic32* ptr, Atomic32 value); |
| 103 void Acquire_Store(volatile Atomic32* ptr, Atomic32 value); |
111 void Release_Store(volatile Atomic32* ptr, Atomic32 value); | 104 void Release_Store(volatile Atomic32* ptr, Atomic32 value); |
112 | 105 |
113 Atomic8 NoBarrier_Load(volatile const Atomic8* ptr); | 106 Atomic8 NoBarrier_Load(volatile const Atomic8* ptr); |
114 Atomic32 NoBarrier_Load(volatile const Atomic32* ptr); | 107 Atomic32 NoBarrier_Load(volatile const Atomic32* ptr); |
115 Atomic32 Acquire_Load(volatile const Atomic32* ptr); | 108 Atomic32 Acquire_Load(volatile const Atomic32* ptr); |
| 109 Atomic32 Release_Load(volatile const Atomic32* ptr); |
116 | 110 |
117 // 64-bit atomic operations (only available on 64-bit processors). | 111 // 64-bit atomic operations (only available on 64-bit processors). |
118 #ifdef V8_HOST_ARCH_64_BIT | 112 #ifdef V8_HOST_ARCH_64_BIT |
119 Atomic64 NoBarrier_CompareAndSwap(volatile Atomic64* ptr, | 113 Atomic64 NoBarrier_CompareAndSwap(volatile Atomic64* ptr, |
120 Atomic64 old_value, | 114 Atomic64 old_value, |
121 Atomic64 new_value); | 115 Atomic64 new_value); |
122 Atomic64 NoBarrier_AtomicExchange(volatile Atomic64* ptr, Atomic64 new_value); | 116 Atomic64 NoBarrier_AtomicExchange(volatile Atomic64* ptr, Atomic64 new_value); |
123 Atomic64 NoBarrier_AtomicIncrement(volatile Atomic64* ptr, Atomic64 increment); | 117 Atomic64 NoBarrier_AtomicIncrement(volatile Atomic64* ptr, Atomic64 increment); |
124 Atomic64 Barrier_AtomicIncrement(volatile Atomic64* ptr, Atomic64 increment); | 118 Atomic64 Barrier_AtomicIncrement(volatile Atomic64* ptr, Atomic64 increment); |
125 | 119 |
126 Atomic64 Acquire_CompareAndSwap(volatile Atomic64* ptr, | 120 Atomic64 Acquire_CompareAndSwap(volatile Atomic64* ptr, |
127 Atomic64 old_value, | 121 Atomic64 old_value, |
128 Atomic64 new_value); | 122 Atomic64 new_value); |
129 Atomic64 Release_CompareAndSwap(volatile Atomic64* ptr, | 123 Atomic64 Release_CompareAndSwap(volatile Atomic64* ptr, |
130 Atomic64 old_value, | 124 Atomic64 old_value, |
131 Atomic64 new_value); | 125 Atomic64 new_value); |
132 void NoBarrier_Store(volatile Atomic64* ptr, Atomic64 value); | 126 void NoBarrier_Store(volatile Atomic64* ptr, Atomic64 value); |
| 127 void Acquire_Store(volatile Atomic64* ptr, Atomic64 value); |
133 void Release_Store(volatile Atomic64* ptr, Atomic64 value); | 128 void Release_Store(volatile Atomic64* ptr, Atomic64 value); |
134 Atomic64 NoBarrier_Load(volatile const Atomic64* ptr); | 129 Atomic64 NoBarrier_Load(volatile const Atomic64* ptr); |
135 Atomic64 Acquire_Load(volatile const Atomic64* ptr); | 130 Atomic64 Acquire_Load(volatile const Atomic64* ptr); |
| 131 Atomic64 Release_Load(volatile const Atomic64* ptr); |
136 #endif // V8_HOST_ARCH_64_BIT | 132 #endif // V8_HOST_ARCH_64_BIT |
137 | 133 |
138 } // namespace base | 134 } // namespace base |
139 } // namespace v8 | 135 } // namespace v8 |
140 | 136 |
141 #if defined(V8_OS_WIN) | 137 // Include our platform specific implementation. |
142 // TODO(hpayer): The MSVC header includes windows.h, which other files end up | 138 #if defined(THREAD_SANITIZER) |
143 // relying on. Fix this as part of crbug.com/559247. | 139 #include "src/base/atomicops_internals_tsan.h" |
| 140 #elif defined(_MSC_VER) && (V8_HOST_ARCH_IA32 || V8_HOST_ARCH_X64) |
144 #include "src/base/atomicops_internals_x86_msvc.h" | 141 #include "src/base/atomicops_internals_x86_msvc.h" |
| 142 #elif defined(__APPLE__) |
| 143 #include "src/base/atomicops_internals_mac.h" |
| 144 #elif defined(__GNUC__) && V8_HOST_ARCH_ARM64 |
| 145 #include "src/base/atomicops_internals_arm64_gcc.h" |
| 146 #elif defined(__GNUC__) && V8_HOST_ARCH_ARM |
| 147 #include "src/base/atomicops_internals_arm_gcc.h" |
| 148 #elif defined(__GNUC__) && V8_HOST_ARCH_PPC |
| 149 #include "src/base/atomicops_internals_ppc_gcc.h" |
| 150 #elif defined(__GNUC__) && (V8_HOST_ARCH_IA32 || V8_HOST_ARCH_X64) |
| 151 #include "src/base/atomicops_internals_x86_gcc.h" |
| 152 #elif defined(__GNUC__) && V8_HOST_ARCH_MIPS |
| 153 #include "src/base/atomicops_internals_mips_gcc.h" |
| 154 #elif defined(__GNUC__) && V8_HOST_ARCH_MIPS64 |
| 155 #include "src/base/atomicops_internals_mips64_gcc.h" |
| 156 #elif defined(__GNUC__) && V8_HOST_ARCH_S390 |
| 157 #include "src/base/atomicops_internals_s390_gcc.h" |
145 #else | 158 #else |
146 #include "src/base/atomicops_internals_portable.h" | 159 #error "Atomic operations are not supported on your platform" |
147 #endif | 160 #endif |
148 | 161 |
149 // On some platforms we need additional declarations to make | 162 // On some platforms we need additional declarations to make |
150 // AtomicWord compatible with our other Atomic* types. | 163 // AtomicWord compatible with our other Atomic* types. |
151 #if defined(V8_OS_MACOSX) || defined(V8_OS_OPENBSD) || defined(V8_OS_AIX) | 164 #if defined(__APPLE__) || defined(__OpenBSD__) || defined(V8_OS_AIX) |
152 #include "src/base/atomicops_internals_atomicword_compat.h" | 165 #include "src/base/atomicops_internals_atomicword_compat.h" |
153 #endif | 166 #endif |
154 | 167 |
155 #endif // V8_BASE_ATOMICOPS_H_ | 168 #endif // V8_BASE_ATOMICOPS_H_ |
OLD | NEW |