blob: f6ab1cbaf49fbbc8c3c3ea278f34249aea2f1cc8 [file] [log] [blame]
Howard Hinnant8f73c632010-09-27 21:17:38 +00001// -*- C++ -*-
2//===--------------------------- atomic -----------------------------------===//
3//
4// The LLVM Compiler Infrastructure
5//
6// This file is distributed under the University of Illinois Open Source
7// License. See LICENSE.TXT for details.
8//
9//===----------------------------------------------------------------------===//
10
11#ifndef _LIBCPP_ATOMIC
12#define _LIBCPP_ATOMIC
13
14/*
15 atomic synopsis
16
17namespace std
18{
19
20// order and consistency
21
22typedef enum memory_order
23{
Howard Hinnantd1176e22010-09-28 17:13:38 +000024 memory_order_relaxed,
25 memory_order_consume, // load-consume
26 memory_order_acquire, // load-acquire
27 memory_order_release, // store-release
28 memory_order_acq_rel, // store-release load-acquire
29 memory_order_seq_cst // store-release load-acquire
Howard Hinnant8f73c632010-09-27 21:17:38 +000030} memory_order;
31
Howard Hinnant300c67a2012-04-11 20:14:21 +000032template <class T> T kill_dependency(T y) noexcept;
Howard Hinnant8f73c632010-09-27 21:17:38 +000033
34// lock-free property
35
Howard Hinnant7b9d6a82013-01-21 20:39:41 +000036#define ATOMIC_BOOL_LOCK_FREE unspecified
Howard Hinnant8f73c632010-09-27 21:17:38 +000037#define ATOMIC_CHAR_LOCK_FREE unspecified
38#define ATOMIC_CHAR16_T_LOCK_FREE unspecified
39#define ATOMIC_CHAR32_T_LOCK_FREE unspecified
40#define ATOMIC_WCHAR_T_LOCK_FREE unspecified
41#define ATOMIC_SHORT_LOCK_FREE unspecified
42#define ATOMIC_INT_LOCK_FREE unspecified
43#define ATOMIC_LONG_LOCK_FREE unspecified
44#define ATOMIC_LLONG_LOCK_FREE unspecified
Howard Hinnant7b9d6a82013-01-21 20:39:41 +000045#define ATOMIC_POINTER_LOCK_FREE unspecified
Howard Hinnant8f73c632010-09-27 21:17:38 +000046
Howard Hinnant8f73c632010-09-27 21:17:38 +000047// flag type and operations
48
49typedef struct atomic_flag
50{
Howard Hinnant300c67a2012-04-11 20:14:21 +000051 bool test_and_set(memory_order m = memory_order_seq_cst) volatile noexcept;
52 bool test_and_set(memory_order m = memory_order_seq_cst) noexcept;
53 void clear(memory_order m = memory_order_seq_cst) volatile noexcept;
54 void clear(memory_order m = memory_order_seq_cst) noexcept;
55 atomic_flag() noexcept = default;
Howard Hinnant8f73c632010-09-27 21:17:38 +000056 atomic_flag(const atomic_flag&) = delete;
57 atomic_flag& operator=(const atomic_flag&) = delete;
58 atomic_flag& operator=(const atomic_flag&) volatile = delete;
59} atomic_flag;
60
Howard Hinnant4777bf22010-12-06 23:10:08 +000061bool
Howard Hinnant300c67a2012-04-11 20:14:21 +000062 atomic_flag_test_and_set(volatile atomic_flag* obj) noexcept;
Howard Hinnant4777bf22010-12-06 23:10:08 +000063
64bool
Howard Hinnant300c67a2012-04-11 20:14:21 +000065 atomic_flag_test_and_set(atomic_flag* obj) noexcept;
Howard Hinnant4777bf22010-12-06 23:10:08 +000066
67bool
68 atomic_flag_test_and_set_explicit(volatile atomic_flag* obj,
Howard Hinnant300c67a2012-04-11 20:14:21 +000069 memory_order m) noexcept;
Howard Hinnant4777bf22010-12-06 23:10:08 +000070
71bool
Howard Hinnant300c67a2012-04-11 20:14:21 +000072 atomic_flag_test_and_set_explicit(atomic_flag* obj, memory_order m) noexcept;
Howard Hinnant4777bf22010-12-06 23:10:08 +000073
74void
Howard Hinnant300c67a2012-04-11 20:14:21 +000075 atomic_flag_clear(volatile atomic_flag* obj) noexcept;
Howard Hinnant4777bf22010-12-06 23:10:08 +000076
77void
Howard Hinnant300c67a2012-04-11 20:14:21 +000078 atomic_flag_clear(atomic_flag* obj) noexcept;
Howard Hinnant4777bf22010-12-06 23:10:08 +000079
80void
Howard Hinnant300c67a2012-04-11 20:14:21 +000081 atomic_flag_clear_explicit(volatile atomic_flag* obj, memory_order m) noexcept;
Howard Hinnant4777bf22010-12-06 23:10:08 +000082
83void
Howard Hinnant300c67a2012-04-11 20:14:21 +000084 atomic_flag_clear_explicit(atomic_flag* obj, memory_order m) noexcept;
Howard Hinnant8f73c632010-09-27 21:17:38 +000085
86#define ATOMIC_FLAG_INIT see below
Howard Hinnante7385012010-10-19 16:51:18 +000087#define ATOMIC_VAR_INIT(value) see below
Howard Hinnant8f73c632010-09-27 21:17:38 +000088
Howard Hinnant8f73c632010-09-27 21:17:38 +000089template <class T>
90struct atomic
91{
Howard Hinnant300c67a2012-04-11 20:14:21 +000092 bool is_lock_free() const volatile noexcept;
93 bool is_lock_free() const noexcept;
94 void store(T desr, memory_order m = memory_order_seq_cst) volatile noexcept;
95 void store(T desr, memory_order m = memory_order_seq_cst) noexcept;
96 T load(memory_order m = memory_order_seq_cst) const volatile noexcept;
97 T load(memory_order m = memory_order_seq_cst) const noexcept;
98 operator T() const volatile noexcept;
99 operator T() const noexcept;
100 T exchange(T desr, memory_order m = memory_order_seq_cst) volatile noexcept;
101 T exchange(T desr, memory_order m = memory_order_seq_cst) noexcept;
Howard Hinnant4777bf22010-12-06 23:10:08 +0000102 bool compare_exchange_weak(T& expc, T desr,
Howard Hinnant300c67a2012-04-11 20:14:21 +0000103 memory_order s, memory_order f) volatile noexcept;
104 bool compare_exchange_weak(T& expc, T desr, memory_order s, memory_order f) noexcept;
Howard Hinnant4777bf22010-12-06 23:10:08 +0000105 bool compare_exchange_strong(T& expc, T desr,
Howard Hinnant300c67a2012-04-11 20:14:21 +0000106 memory_order s, memory_order f) volatile noexcept;
Howard Hinnant4777bf22010-12-06 23:10:08 +0000107 bool compare_exchange_strong(T& expc, T desr,
Howard Hinnant300c67a2012-04-11 20:14:21 +0000108 memory_order s, memory_order f) noexcept;
Howard Hinnant4777bf22010-12-06 23:10:08 +0000109 bool compare_exchange_weak(T& expc, T desr,
Howard Hinnant300c67a2012-04-11 20:14:21 +0000110 memory_order m = memory_order_seq_cst) volatile noexcept;
Howard Hinnant4777bf22010-12-06 23:10:08 +0000111 bool compare_exchange_weak(T& expc, T desr,
Howard Hinnant300c67a2012-04-11 20:14:21 +0000112 memory_order m = memory_order_seq_cst) noexcept;
Howard Hinnant4777bf22010-12-06 23:10:08 +0000113 bool compare_exchange_strong(T& expc, T desr,
Howard Hinnant300c67a2012-04-11 20:14:21 +0000114 memory_order m = memory_order_seq_cst) volatile noexcept;
Howard Hinnant4777bf22010-12-06 23:10:08 +0000115 bool compare_exchange_strong(T& expc, T desr,
Howard Hinnant300c67a2012-04-11 20:14:21 +0000116 memory_order m = memory_order_seq_cst) noexcept;
Howard Hinnant8f73c632010-09-27 21:17:38 +0000117
Howard Hinnant300c67a2012-04-11 20:14:21 +0000118 atomic() noexcept = default;
119 constexpr atomic(T desr) noexcept;
Howard Hinnant8f73c632010-09-27 21:17:38 +0000120 atomic(const atomic&) = delete;
121 atomic& operator=(const atomic&) = delete;
122 atomic& operator=(const atomic&) volatile = delete;
Howard Hinnant300c67a2012-04-11 20:14:21 +0000123 T operator=(T) volatile noexcept;
124 T operator=(T) noexcept;
Howard Hinnant8f73c632010-09-27 21:17:38 +0000125};
126
127template <>
Howard Hinnant4777bf22010-12-06 23:10:08 +0000128struct atomic<integral>
Howard Hinnant8f73c632010-09-27 21:17:38 +0000129{
Howard Hinnant300c67a2012-04-11 20:14:21 +0000130 bool is_lock_free() const volatile noexcept;
131 bool is_lock_free() const noexcept;
132 void store(integral desr, memory_order m = memory_order_seq_cst) volatile noexcept;
133 void store(integral desr, memory_order m = memory_order_seq_cst) noexcept;
134 integral load(memory_order m = memory_order_seq_cst) const volatile noexcept;
135 integral load(memory_order m = memory_order_seq_cst) const noexcept;
136 operator integral() const volatile noexcept;
137 operator integral() const noexcept;
Howard Hinnant4777bf22010-12-06 23:10:08 +0000138 integral exchange(integral desr,
Howard Hinnant300c67a2012-04-11 20:14:21 +0000139 memory_order m = memory_order_seq_cst) volatile noexcept;
140 integral exchange(integral desr, memory_order m = memory_order_seq_cst) noexcept;
Howard Hinnant4777bf22010-12-06 23:10:08 +0000141 bool compare_exchange_weak(integral& expc, integral desr,
Howard Hinnant300c67a2012-04-11 20:14:21 +0000142 memory_order s, memory_order f) volatile noexcept;
Howard Hinnant4777bf22010-12-06 23:10:08 +0000143 bool compare_exchange_weak(integral& expc, integral desr,
Howard Hinnant300c67a2012-04-11 20:14:21 +0000144 memory_order s, memory_order f) noexcept;
Howard Hinnant4777bf22010-12-06 23:10:08 +0000145 bool compare_exchange_strong(integral& expc, integral desr,
Howard Hinnant300c67a2012-04-11 20:14:21 +0000146 memory_order s, memory_order f) volatile noexcept;
Howard Hinnant4777bf22010-12-06 23:10:08 +0000147 bool compare_exchange_strong(integral& expc, integral desr,
Howard Hinnant300c67a2012-04-11 20:14:21 +0000148 memory_order s, memory_order f) noexcept;
Howard Hinnant4777bf22010-12-06 23:10:08 +0000149 bool compare_exchange_weak(integral& expc, integral desr,
Howard Hinnant300c67a2012-04-11 20:14:21 +0000150 memory_order m = memory_order_seq_cst) volatile noexcept;
Howard Hinnant4777bf22010-12-06 23:10:08 +0000151 bool compare_exchange_weak(integral& expc, integral desr,
Howard Hinnant300c67a2012-04-11 20:14:21 +0000152 memory_order m = memory_order_seq_cst) noexcept;
Howard Hinnant4777bf22010-12-06 23:10:08 +0000153 bool compare_exchange_strong(integral& expc, integral desr,
Howard Hinnant300c67a2012-04-11 20:14:21 +0000154 memory_order m = memory_order_seq_cst) volatile noexcept;
Howard Hinnant4777bf22010-12-06 23:10:08 +0000155 bool compare_exchange_strong(integral& expc, integral desr,
Howard Hinnant300c67a2012-04-11 20:14:21 +0000156 memory_order m = memory_order_seq_cst) noexcept;
Howard Hinnant8f73c632010-09-27 21:17:38 +0000157
Howard Hinnant4777bf22010-12-06 23:10:08 +0000158 integral
Howard Hinnant300c67a2012-04-11 20:14:21 +0000159 fetch_add(integral op, memory_order m = memory_order_seq_cst) volatile noexcept;
160 integral fetch_add(integral op, memory_order m = memory_order_seq_cst) noexcept;
Howard Hinnant4777bf22010-12-06 23:10:08 +0000161 integral
Howard Hinnant300c67a2012-04-11 20:14:21 +0000162 fetch_sub(integral op, memory_order m = memory_order_seq_cst) volatile noexcept;
163 integral fetch_sub(integral op, memory_order m = memory_order_seq_cst) noexcept;
Howard Hinnant4777bf22010-12-06 23:10:08 +0000164 integral
Howard Hinnant300c67a2012-04-11 20:14:21 +0000165 fetch_and(integral op, memory_order m = memory_order_seq_cst) volatile noexcept;
166 integral fetch_and(integral op, memory_order m = memory_order_seq_cst) noexcept;
Howard Hinnant4777bf22010-12-06 23:10:08 +0000167 integral
Howard Hinnant300c67a2012-04-11 20:14:21 +0000168 fetch_or(integral op, memory_order m = memory_order_seq_cst) volatile noexcept;
169 integral fetch_or(integral op, memory_order m = memory_order_seq_cst) noexcept;
Howard Hinnant4777bf22010-12-06 23:10:08 +0000170 integral
Howard Hinnant300c67a2012-04-11 20:14:21 +0000171 fetch_xor(integral op, memory_order m = memory_order_seq_cst) volatile noexcept;
172 integral fetch_xor(integral op, memory_order m = memory_order_seq_cst) noexcept;
Howard Hinnant8f73c632010-09-27 21:17:38 +0000173
Howard Hinnant300c67a2012-04-11 20:14:21 +0000174 atomic() noexcept = default;
175 constexpr atomic(integral desr) noexcept;
Howard Hinnant8f73c632010-09-27 21:17:38 +0000176 atomic(const atomic&) = delete;
177 atomic& operator=(const atomic&) = delete;
178 atomic& operator=(const atomic&) volatile = delete;
Howard Hinnant300c67a2012-04-11 20:14:21 +0000179 integral operator=(integral desr) volatile noexcept;
180 integral operator=(integral desr) noexcept;
Howard Hinnant8f73c632010-09-27 21:17:38 +0000181
Howard Hinnant300c67a2012-04-11 20:14:21 +0000182 integral operator++(int) volatile noexcept;
183 integral operator++(int) noexcept;
184 integral operator--(int) volatile noexcept;
185 integral operator--(int) noexcept;
186 integral operator++() volatile noexcept;
187 integral operator++() noexcept;
188 integral operator--() volatile noexcept;
189 integral operator--() noexcept;
190 integral operator+=(integral op) volatile noexcept;
191 integral operator+=(integral op) noexcept;
192 integral operator-=(integral op) volatile noexcept;
193 integral operator-=(integral op) noexcept;
194 integral operator&=(integral op) volatile noexcept;
195 integral operator&=(integral op) noexcept;
196 integral operator|=(integral op) volatile noexcept;
197 integral operator|=(integral op) noexcept;
198 integral operator^=(integral op) volatile noexcept;
199 integral operator^=(integral op) noexcept;
Howard Hinnant8f73c632010-09-27 21:17:38 +0000200};
201
202template <class T>
203struct atomic<T*>
Howard Hinnant8f73c632010-09-27 21:17:38 +0000204{
Howard Hinnant300c67a2012-04-11 20:14:21 +0000205 bool is_lock_free() const volatile noexcept;
206 bool is_lock_free() const noexcept;
207 void store(T* desr, memory_order m = memory_order_seq_cst) volatile noexcept;
208 void store(T* desr, memory_order m = memory_order_seq_cst) noexcept;
209 T* load(memory_order m = memory_order_seq_cst) const volatile noexcept;
210 T* load(memory_order m = memory_order_seq_cst) const noexcept;
211 operator T*() const volatile noexcept;
212 operator T*() const noexcept;
213 T* exchange(T* desr, memory_order m = memory_order_seq_cst) volatile noexcept;
214 T* exchange(T* desr, memory_order m = memory_order_seq_cst) noexcept;
Howard Hinnant4777bf22010-12-06 23:10:08 +0000215 bool compare_exchange_weak(T*& expc, T* desr,
Howard Hinnant300c67a2012-04-11 20:14:21 +0000216 memory_order s, memory_order f) volatile noexcept;
Howard Hinnant4777bf22010-12-06 23:10:08 +0000217 bool compare_exchange_weak(T*& expc, T* desr,
Howard Hinnant300c67a2012-04-11 20:14:21 +0000218 memory_order s, memory_order f) noexcept;
Howard Hinnant4777bf22010-12-06 23:10:08 +0000219 bool compare_exchange_strong(T*& expc, T* desr,
Howard Hinnant300c67a2012-04-11 20:14:21 +0000220 memory_order s, memory_order f) volatile noexcept;
Howard Hinnant4777bf22010-12-06 23:10:08 +0000221 bool compare_exchange_strong(T*& expc, T* desr,
Howard Hinnant300c67a2012-04-11 20:14:21 +0000222 memory_order s, memory_order f) noexcept;
Howard Hinnant4777bf22010-12-06 23:10:08 +0000223 bool compare_exchange_weak(T*& expc, T* desr,
Howard Hinnant300c67a2012-04-11 20:14:21 +0000224 memory_order m = memory_order_seq_cst) volatile noexcept;
Howard Hinnant4777bf22010-12-06 23:10:08 +0000225 bool compare_exchange_weak(T*& expc, T* desr,
Howard Hinnant300c67a2012-04-11 20:14:21 +0000226 memory_order m = memory_order_seq_cst) noexcept;
Howard Hinnant4777bf22010-12-06 23:10:08 +0000227 bool compare_exchange_strong(T*& expc, T* desr,
Howard Hinnant300c67a2012-04-11 20:14:21 +0000228 memory_order m = memory_order_seq_cst) volatile noexcept;
Howard Hinnant4777bf22010-12-06 23:10:08 +0000229 bool compare_exchange_strong(T*& expc, T* desr,
Howard Hinnant300c67a2012-04-11 20:14:21 +0000230 memory_order m = memory_order_seq_cst) noexcept;
231 T* fetch_add(ptrdiff_t op, memory_order m = memory_order_seq_cst) volatile noexcept;
232 T* fetch_add(ptrdiff_t op, memory_order m = memory_order_seq_cst) noexcept;
233 T* fetch_sub(ptrdiff_t op, memory_order m = memory_order_seq_cst) volatile noexcept;
234 T* fetch_sub(ptrdiff_t op, memory_order m = memory_order_seq_cst) noexcept;
Howard Hinnant4777bf22010-12-06 23:10:08 +0000235
Howard Hinnant300c67a2012-04-11 20:14:21 +0000236 atomic() noexcept = default;
237 constexpr atomic(T* desr) noexcept;
Howard Hinnant8f73c632010-09-27 21:17:38 +0000238 atomic(const atomic&) = delete;
239 atomic& operator=(const atomic&) = delete;
240 atomic& operator=(const atomic&) volatile = delete;
Howard Hinnant4777bf22010-12-06 23:10:08 +0000241
Howard Hinnant300c67a2012-04-11 20:14:21 +0000242 T* operator=(T*) volatile noexcept;
243 T* operator=(T*) noexcept;
244 T* operator++(int) volatile noexcept;
245 T* operator++(int) noexcept;
246 T* operator--(int) volatile noexcept;
247 T* operator--(int) noexcept;
248 T* operator++() volatile noexcept;
249 T* operator++() noexcept;
250 T* operator--() volatile noexcept;
251 T* operator--() noexcept;
252 T* operator+=(ptrdiff_t op) volatile noexcept;
253 T* operator+=(ptrdiff_t op) noexcept;
254 T* operator-=(ptrdiff_t op) volatile noexcept;
255 T* operator-=(ptrdiff_t op) noexcept;
Howard Hinnant8f73c632010-09-27 21:17:38 +0000256};
257
Howard Hinnant4777bf22010-12-06 23:10:08 +0000258
259template <class T>
260 bool
Howard Hinnant300c67a2012-04-11 20:14:21 +0000261 atomic_is_lock_free(const volatile atomic<T>* obj) noexcept;
Howard Hinnant4777bf22010-12-06 23:10:08 +0000262
263template <class T>
264 bool
Howard Hinnant300c67a2012-04-11 20:14:21 +0000265 atomic_is_lock_free(const atomic<T>* obj) noexcept;
Howard Hinnant4777bf22010-12-06 23:10:08 +0000266
267template <class T>
268 void
Howard Hinnant300c67a2012-04-11 20:14:21 +0000269 atomic_init(volatile atomic<T>* obj, T desr) noexcept;
Howard Hinnant4777bf22010-12-06 23:10:08 +0000270
271template <class T>
272 void
Howard Hinnant300c67a2012-04-11 20:14:21 +0000273 atomic_init(atomic<T>* obj, T desr) noexcept;
Howard Hinnant4777bf22010-12-06 23:10:08 +0000274
275template <class T>
276 void
Howard Hinnant300c67a2012-04-11 20:14:21 +0000277 atomic_store(volatile atomic<T>* obj, T desr) noexcept;
Howard Hinnant4777bf22010-12-06 23:10:08 +0000278
279template <class T>
280 void
Howard Hinnant300c67a2012-04-11 20:14:21 +0000281 atomic_store(atomic<T>* obj, T desr) noexcept;
Howard Hinnant4777bf22010-12-06 23:10:08 +0000282
283template <class T>
284 void
Howard Hinnant300c67a2012-04-11 20:14:21 +0000285 atomic_store_explicit(volatile atomic<T>* obj, T desr, memory_order m) noexcept;
Howard Hinnant4777bf22010-12-06 23:10:08 +0000286
287template <class T>
288 void
Howard Hinnant300c67a2012-04-11 20:14:21 +0000289 atomic_store_explicit(atomic<T>* obj, T desr, memory_order m) noexcept;
Howard Hinnant4777bf22010-12-06 23:10:08 +0000290
291template <class T>
292 T
Howard Hinnant300c67a2012-04-11 20:14:21 +0000293 atomic_load(const volatile atomic<T>* obj) noexcept;
Howard Hinnant4777bf22010-12-06 23:10:08 +0000294
295template <class T>
296 T
Howard Hinnant300c67a2012-04-11 20:14:21 +0000297 atomic_load(const atomic<T>* obj) noexcept;
Howard Hinnant4777bf22010-12-06 23:10:08 +0000298
299template <class T>
300 T
Howard Hinnant300c67a2012-04-11 20:14:21 +0000301 atomic_load_explicit(const volatile atomic<T>* obj, memory_order m) noexcept;
Howard Hinnant4777bf22010-12-06 23:10:08 +0000302
303template <class T>
304 T
Howard Hinnant300c67a2012-04-11 20:14:21 +0000305 atomic_load_explicit(const atomic<T>* obj, memory_order m) noexcept;
Howard Hinnant4777bf22010-12-06 23:10:08 +0000306
307template <class T>
308 T
Howard Hinnant300c67a2012-04-11 20:14:21 +0000309 atomic_exchange(volatile atomic<T>* obj, T desr) noexcept;
Howard Hinnant4777bf22010-12-06 23:10:08 +0000310
311template <class T>
312 T
Howard Hinnant300c67a2012-04-11 20:14:21 +0000313 atomic_exchange(atomic<T>* obj, T desr) noexcept;
Howard Hinnant4777bf22010-12-06 23:10:08 +0000314
315template <class T>
316 T
Howard Hinnant300c67a2012-04-11 20:14:21 +0000317 atomic_exchange_explicit(volatile atomic<T>* obj, T desr, memory_order m) noexcept;
Howard Hinnant4777bf22010-12-06 23:10:08 +0000318
319template <class T>
320 T
Howard Hinnant300c67a2012-04-11 20:14:21 +0000321 atomic_exchange_explicit(atomic<T>* obj, T desr, memory_order m) noexcept;
Howard Hinnant4777bf22010-12-06 23:10:08 +0000322
323template <class T>
324 bool
Howard Hinnant300c67a2012-04-11 20:14:21 +0000325 atomic_compare_exchange_weak(volatile atomic<T>* obj, T* expc, T desr) noexcept;
Howard Hinnant4777bf22010-12-06 23:10:08 +0000326
327template <class T>
328 bool
Howard Hinnant300c67a2012-04-11 20:14:21 +0000329 atomic_compare_exchange_weak(atomic<T>* obj, T* expc, T desr) noexcept;
Howard Hinnant4777bf22010-12-06 23:10:08 +0000330
331template <class T>
332 bool
Howard Hinnant300c67a2012-04-11 20:14:21 +0000333 atomic_compare_exchange_strong(volatile atomic<T>* obj, T* expc, T desr) noexcept;
Howard Hinnant4777bf22010-12-06 23:10:08 +0000334
335template <class T>
336 bool
Howard Hinnant300c67a2012-04-11 20:14:21 +0000337 atomic_compare_exchange_strong(atomic<T>* obj, T* expc, T desr) noexcept;
Howard Hinnant4777bf22010-12-06 23:10:08 +0000338
339template <class T>
340 bool
341 atomic_compare_exchange_weak_explicit(volatile atomic<T>* obj, T* expc,
342 T desr,
Howard Hinnant300c67a2012-04-11 20:14:21 +0000343 memory_order s, memory_order f) noexcept;
Howard Hinnant4777bf22010-12-06 23:10:08 +0000344
345template <class T>
346 bool
347 atomic_compare_exchange_weak_explicit(atomic<T>* obj, T* expc, T desr,
Howard Hinnant300c67a2012-04-11 20:14:21 +0000348 memory_order s, memory_order f) noexcept;
Howard Hinnant4777bf22010-12-06 23:10:08 +0000349
350template <class T>
351 bool
352 atomic_compare_exchange_strong_explicit(volatile atomic<T>* obj,
353 T* expc, T desr,
Howard Hinnant300c67a2012-04-11 20:14:21 +0000354 memory_order s, memory_order f) noexcept;
Howard Hinnant4777bf22010-12-06 23:10:08 +0000355
356template <class T>
357 bool
358 atomic_compare_exchange_strong_explicit(atomic<T>* obj, T* expc,
359 T desr,
Howard Hinnant300c67a2012-04-11 20:14:21 +0000360 memory_order s, memory_order f) noexcept;
Howard Hinnant4777bf22010-12-06 23:10:08 +0000361
362template <class Integral>
363 Integral
Howard Hinnant300c67a2012-04-11 20:14:21 +0000364 atomic_fetch_add(volatile atomic<Integral>* obj, Integral op) noexcept;
Howard Hinnant4777bf22010-12-06 23:10:08 +0000365
366template <class Integral>
367 Integral
Howard Hinnant300c67a2012-04-11 20:14:21 +0000368 atomic_fetch_add(atomic<Integral>* obj, Integral op) noexcept;
Howard Hinnant4777bf22010-12-06 23:10:08 +0000369
370template <class Integral>
371 Integral
372 atomic_fetch_add_explicit(volatile atomic<Integral>* obj, Integral op,
Howard Hinnant300c67a2012-04-11 20:14:21 +0000373 memory_order m) noexcept;
Howard Hinnant4777bf22010-12-06 23:10:08 +0000374template <class Integral>
375 Integral
376 atomic_fetch_add_explicit(atomic<Integral>* obj, Integral op,
Howard Hinnant300c67a2012-04-11 20:14:21 +0000377 memory_order m) noexcept;
Howard Hinnant4777bf22010-12-06 23:10:08 +0000378template <class Integral>
379 Integral
Howard Hinnant300c67a2012-04-11 20:14:21 +0000380 atomic_fetch_sub(volatile atomic<Integral>* obj, Integral op) noexcept;
Howard Hinnant4777bf22010-12-06 23:10:08 +0000381
382template <class Integral>
383 Integral
Howard Hinnant300c67a2012-04-11 20:14:21 +0000384 atomic_fetch_sub(atomic<Integral>* obj, Integral op) noexcept;
Howard Hinnant4777bf22010-12-06 23:10:08 +0000385
386template <class Integral>
387 Integral
388 atomic_fetch_sub_explicit(volatile atomic<Integral>* obj, Integral op,
Howard Hinnant300c67a2012-04-11 20:14:21 +0000389 memory_order m) noexcept;
Howard Hinnant4777bf22010-12-06 23:10:08 +0000390template <class Integral>
391 Integral
392 atomic_fetch_sub_explicit(atomic<Integral>* obj, Integral op,
Howard Hinnant300c67a2012-04-11 20:14:21 +0000393 memory_order m) noexcept;
Howard Hinnant4777bf22010-12-06 23:10:08 +0000394template <class Integral>
395 Integral
Howard Hinnant300c67a2012-04-11 20:14:21 +0000396 atomic_fetch_and(volatile atomic<Integral>* obj, Integral op) noexcept;
Howard Hinnant4777bf22010-12-06 23:10:08 +0000397
398template <class Integral>
399 Integral
Howard Hinnant300c67a2012-04-11 20:14:21 +0000400 atomic_fetch_and(atomic<Integral>* obj, Integral op) noexcept;
Howard Hinnant4777bf22010-12-06 23:10:08 +0000401
402template <class Integral>
403 Integral
404 atomic_fetch_and_explicit(volatile atomic<Integral>* obj, Integral op,
Howard Hinnant300c67a2012-04-11 20:14:21 +0000405 memory_order m) noexcept;
Howard Hinnant4777bf22010-12-06 23:10:08 +0000406template <class Integral>
407 Integral
408 atomic_fetch_and_explicit(atomic<Integral>* obj, Integral op,
Howard Hinnant300c67a2012-04-11 20:14:21 +0000409 memory_order m) noexcept;
Howard Hinnant4777bf22010-12-06 23:10:08 +0000410template <class Integral>
411 Integral
Howard Hinnant300c67a2012-04-11 20:14:21 +0000412 atomic_fetch_or(volatile atomic<Integral>* obj, Integral op) noexcept;
Howard Hinnant4777bf22010-12-06 23:10:08 +0000413
414template <class Integral>
415 Integral
Howard Hinnant300c67a2012-04-11 20:14:21 +0000416 atomic_fetch_or(atomic<Integral>* obj, Integral op) noexcept;
Howard Hinnant4777bf22010-12-06 23:10:08 +0000417
418template <class Integral>
419 Integral
420 atomic_fetch_or_explicit(volatile atomic<Integral>* obj, Integral op,
Howard Hinnant300c67a2012-04-11 20:14:21 +0000421 memory_order m) noexcept;
Howard Hinnant4777bf22010-12-06 23:10:08 +0000422template <class Integral>
423 Integral
424 atomic_fetch_or_explicit(atomic<Integral>* obj, Integral op,
Howard Hinnant300c67a2012-04-11 20:14:21 +0000425 memory_order m) noexcept;
Howard Hinnant4777bf22010-12-06 23:10:08 +0000426template <class Integral>
427 Integral
Howard Hinnant300c67a2012-04-11 20:14:21 +0000428 atomic_fetch_xor(volatile atomic<Integral>* obj, Integral op) noexcept;
Howard Hinnant4777bf22010-12-06 23:10:08 +0000429
430template <class Integral>
431 Integral
Howard Hinnant300c67a2012-04-11 20:14:21 +0000432 atomic_fetch_xor(atomic<Integral>* obj, Integral op) noexcept;
Howard Hinnant4777bf22010-12-06 23:10:08 +0000433
434template <class Integral>
435 Integral
436 atomic_fetch_xor_explicit(volatile atomic<Integral>* obj, Integral op,
Howard Hinnant300c67a2012-04-11 20:14:21 +0000437 memory_order m) noexcept;
Howard Hinnant4777bf22010-12-06 23:10:08 +0000438template <class Integral>
439 Integral
440 atomic_fetch_xor_explicit(atomic<Integral>* obj, Integral op,
Howard Hinnant300c67a2012-04-11 20:14:21 +0000441 memory_order m) noexcept;
Howard Hinnant4777bf22010-12-06 23:10:08 +0000442
443template <class T>
444 T*
Howard Hinnant300c67a2012-04-11 20:14:21 +0000445 atomic_fetch_add(volatile atomic<T*>* obj, ptrdiff_t op) noexcept;
Howard Hinnant4777bf22010-12-06 23:10:08 +0000446
447template <class T>
448 T*
Howard Hinnant300c67a2012-04-11 20:14:21 +0000449 atomic_fetch_add(atomic<T*>* obj, ptrdiff_t op) noexcept;
Howard Hinnant4777bf22010-12-06 23:10:08 +0000450
451template <class T>
452 T*
453 atomic_fetch_add_explicit(volatile atomic<T*>* obj, ptrdiff_t op,
Howard Hinnant300c67a2012-04-11 20:14:21 +0000454 memory_order m) noexcept;
Howard Hinnant4777bf22010-12-06 23:10:08 +0000455template <class T>
456 T*
Howard Hinnant300c67a2012-04-11 20:14:21 +0000457 atomic_fetch_add_explicit(atomic<T*>* obj, ptrdiff_t op, memory_order m) noexcept;
Howard Hinnant4777bf22010-12-06 23:10:08 +0000458
459template <class T>
460 T*
Howard Hinnant300c67a2012-04-11 20:14:21 +0000461 atomic_fetch_sub(volatile atomic<T*>* obj, ptrdiff_t op) noexcept;
Howard Hinnant4777bf22010-12-06 23:10:08 +0000462
463template <class T>
464 T*
Howard Hinnant300c67a2012-04-11 20:14:21 +0000465 atomic_fetch_sub(atomic<T*>* obj, ptrdiff_t op) noexcept;
Howard Hinnant4777bf22010-12-06 23:10:08 +0000466
467template <class T>
468 T*
469 atomic_fetch_sub_explicit(volatile atomic<T*>* obj, ptrdiff_t op,
Howard Hinnant300c67a2012-04-11 20:14:21 +0000470 memory_order m) noexcept;
Howard Hinnant4777bf22010-12-06 23:10:08 +0000471template <class T>
472 T*
Howard Hinnant300c67a2012-04-11 20:14:21 +0000473 atomic_fetch_sub_explicit(atomic<T*>* obj, ptrdiff_t op, memory_order m) noexcept;
Howard Hinnant4777bf22010-12-06 23:10:08 +0000474
475// Atomics for standard typedef types
476
Howard Hinnant6ae47052013-01-04 18:58:50 +0000477typedef atomic<bool> atomic_bool;
Howard Hinnant4777bf22010-12-06 23:10:08 +0000478typedef atomic<char> atomic_char;
479typedef atomic<signed char> atomic_schar;
480typedef atomic<unsigned char> atomic_uchar;
481typedef atomic<short> atomic_short;
482typedef atomic<unsigned short> atomic_ushort;
483typedef atomic<int> atomic_int;
484typedef atomic<unsigned int> atomic_uint;
485typedef atomic<long> atomic_long;
486typedef atomic<unsigned long> atomic_ulong;
487typedef atomic<long long> atomic_llong;
488typedef atomic<unsigned long long> atomic_ullong;
489typedef atomic<char16_t> atomic_char16_t;
490typedef atomic<char32_t> atomic_char32_t;
491typedef atomic<wchar_t> atomic_wchar_t;
492
493typedef atomic<int_least8_t> atomic_int_least8_t;
494typedef atomic<uint_least8_t> atomic_uint_least8_t;
495typedef atomic<int_least16_t> atomic_int_least16_t;
496typedef atomic<uint_least16_t> atomic_uint_least16_t;
497typedef atomic<int_least32_t> atomic_int_least32_t;
498typedef atomic<uint_least32_t> atomic_uint_least32_t;
499typedef atomic<int_least64_t> atomic_int_least64_t;
500typedef atomic<uint_least64_t> atomic_uint_least64_t;
501
502typedef atomic<int_fast8_t> atomic_int_fast8_t;
503typedef atomic<uint_fast8_t> atomic_uint_fast8_t;
504typedef atomic<int_fast16_t> atomic_int_fast16_t;
505typedef atomic<uint_fast16_t> atomic_uint_fast16_t;
506typedef atomic<int_fast32_t> atomic_int_fast32_t;
507typedef atomic<uint_fast32_t> atomic_uint_fast32_t;
508typedef atomic<int_fast64_t> atomic_int_fast64_t;
509typedef atomic<uint_fast64_t> atomic_uint_fast64_t;
510
511typedef atomic<intptr_t> atomic_intptr_t;
512typedef atomic<uintptr_t> atomic_uintptr_t;
513typedef atomic<size_t> atomic_size_t;
514typedef atomic<ptrdiff_t> atomic_ptrdiff_t;
515typedef atomic<intmax_t> atomic_intmax_t;
516typedef atomic<uintmax_t> atomic_uintmax_t;
517
Howard Hinnant8f73c632010-09-27 21:17:38 +0000518// fences
519
Howard Hinnant300c67a2012-04-11 20:14:21 +0000520void atomic_thread_fence(memory_order m) noexcept;
521void atomic_signal_fence(memory_order m) noexcept;
Howard Hinnant8f73c632010-09-27 21:17:38 +0000522
523} // std
524
525*/
526
527#include <__config>
Howard Hinnant4777bf22010-12-06 23:10:08 +0000528#include <cstddef>
529#include <cstdint>
530#include <type_traits>
Howard Hinnant8f73c632010-09-27 21:17:38 +0000531
Howard Hinnant08e17472011-10-17 20:05:10 +0000532#if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
Howard Hinnant8f73c632010-09-27 21:17:38 +0000533#pragma GCC system_header
Howard Hinnant08e17472011-10-17 20:05:10 +0000534#endif
Howard Hinnant8f73c632010-09-27 21:17:38 +0000535
536_LIBCPP_BEGIN_NAMESPACE_STD
537
Howard Hinnant154002b2011-03-31 16:39:39 +0000538#if !__has_feature(cxx_atomic)
539#error <atomic> is not implemented
540#else
541
Howard Hinnantd1176e22010-09-28 17:13:38 +0000542typedef enum memory_order
543{
544 memory_order_relaxed, memory_order_consume, memory_order_acquire,
545 memory_order_release, memory_order_acq_rel, memory_order_seq_cst
546} memory_order;
547
548template <class _Tp>
549inline _LIBCPP_INLINE_VISIBILITY
550_Tp
Howard Hinnant300c67a2012-04-11 20:14:21 +0000551kill_dependency(_Tp __y) _NOEXCEPT
Howard Hinnantd1176e22010-09-28 17:13:38 +0000552{
553 return __y;
554}
Howard Hinnant8f73c632010-09-27 21:17:38 +0000555
Howard Hinnant91e2f262010-12-07 20:46:14 +0000556// general atomic<T>
557
558template <class _Tp, bool = is_integral<_Tp>::value && !is_same<_Tp, bool>::value>
559struct __atomic_base // false
560{
Howard Hinnant7eb9f1e2012-09-16 20:33:09 +0000561 mutable _Atomic(_Tp) __a_;
Howard Hinnant91e2f262010-12-07 20:46:14 +0000562
563 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant300c67a2012-04-11 20:14:21 +0000564 bool is_lock_free() const volatile _NOEXCEPT
Richard Smith6186c7f2012-04-11 18:55:46 +0000565 {return __c11_atomic_is_lock_free(sizeof(_Tp));}
Howard Hinnant91e2f262010-12-07 20:46:14 +0000566 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant300c67a2012-04-11 20:14:21 +0000567 bool is_lock_free() const _NOEXCEPT
Richard Smith6186c7f2012-04-11 18:55:46 +0000568 {return __c11_atomic_is_lock_free(sizeof(_Tp));}
Howard Hinnant91e2f262010-12-07 20:46:14 +0000569 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant300c67a2012-04-11 20:14:21 +0000570 void store(_Tp __d, memory_order __m = memory_order_seq_cst) volatile _NOEXCEPT
Richard Smith6186c7f2012-04-11 18:55:46 +0000571 {__c11_atomic_store(&__a_, __d, __m);}
Howard Hinnant91e2f262010-12-07 20:46:14 +0000572 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant300c67a2012-04-11 20:14:21 +0000573 void store(_Tp __d, memory_order __m = memory_order_seq_cst) _NOEXCEPT
Richard Smith6186c7f2012-04-11 18:55:46 +0000574 {__c11_atomic_store(&__a_, __d, __m);}
Howard Hinnant91e2f262010-12-07 20:46:14 +0000575 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant300c67a2012-04-11 20:14:21 +0000576 _Tp load(memory_order __m = memory_order_seq_cst) const volatile _NOEXCEPT
Richard Smith6186c7f2012-04-11 18:55:46 +0000577 {return __c11_atomic_load(&__a_, __m);}
Howard Hinnant91e2f262010-12-07 20:46:14 +0000578 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant300c67a2012-04-11 20:14:21 +0000579 _Tp load(memory_order __m = memory_order_seq_cst) const _NOEXCEPT
Richard Smith6186c7f2012-04-11 18:55:46 +0000580 {return __c11_atomic_load(&__a_, __m);}
Howard Hinnant91e2f262010-12-07 20:46:14 +0000581 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant300c67a2012-04-11 20:14:21 +0000582 operator _Tp() const volatile _NOEXCEPT {return load();}
Howard Hinnant91e2f262010-12-07 20:46:14 +0000583 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant300c67a2012-04-11 20:14:21 +0000584 operator _Tp() const _NOEXCEPT {return load();}
Howard Hinnant91e2f262010-12-07 20:46:14 +0000585 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant300c67a2012-04-11 20:14:21 +0000586 _Tp exchange(_Tp __d, memory_order __m = memory_order_seq_cst) volatile _NOEXCEPT
Richard Smith6186c7f2012-04-11 18:55:46 +0000587 {return __c11_atomic_exchange(&__a_, __d, __m);}
Howard Hinnant91e2f262010-12-07 20:46:14 +0000588 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant300c67a2012-04-11 20:14:21 +0000589 _Tp exchange(_Tp __d, memory_order __m = memory_order_seq_cst) _NOEXCEPT
Richard Smith6186c7f2012-04-11 18:55:46 +0000590 {return __c11_atomic_exchange(&__a_, __d, __m);}
Howard Hinnant91e2f262010-12-07 20:46:14 +0000591 _LIBCPP_INLINE_VISIBILITY
592 bool compare_exchange_weak(_Tp& __e, _Tp __d,
Howard Hinnant300c67a2012-04-11 20:14:21 +0000593 memory_order __s, memory_order __f) volatile _NOEXCEPT
Richard Smith6186c7f2012-04-11 18:55:46 +0000594 {return __c11_atomic_compare_exchange_weak(&__a_, &__e, __d, __s, __f);}
Howard Hinnant91e2f262010-12-07 20:46:14 +0000595 _LIBCPP_INLINE_VISIBILITY
596 bool compare_exchange_weak(_Tp& __e, _Tp __d,
Howard Hinnant300c67a2012-04-11 20:14:21 +0000597 memory_order __s, memory_order __f) _NOEXCEPT
Richard Smith6186c7f2012-04-11 18:55:46 +0000598 {return __c11_atomic_compare_exchange_weak(&__a_, &__e, __d, __s, __f);}
Howard Hinnant91e2f262010-12-07 20:46:14 +0000599 _LIBCPP_INLINE_VISIBILITY
600 bool compare_exchange_strong(_Tp& __e, _Tp __d,
Howard Hinnant300c67a2012-04-11 20:14:21 +0000601 memory_order __s, memory_order __f) volatile _NOEXCEPT
Richard Smith6186c7f2012-04-11 18:55:46 +0000602 {return __c11_atomic_compare_exchange_strong(&__a_, &__e, __d, __s, __f);}
Howard Hinnant91e2f262010-12-07 20:46:14 +0000603 _LIBCPP_INLINE_VISIBILITY
604 bool compare_exchange_strong(_Tp& __e, _Tp __d,
Howard Hinnant300c67a2012-04-11 20:14:21 +0000605 memory_order __s, memory_order __f) _NOEXCEPT
Richard Smith6186c7f2012-04-11 18:55:46 +0000606 {return __c11_atomic_compare_exchange_strong(&__a_, &__e, __d, __s, __f);}
Howard Hinnant91e2f262010-12-07 20:46:14 +0000607 _LIBCPP_INLINE_VISIBILITY
608 bool compare_exchange_weak(_Tp& __e, _Tp __d,
Howard Hinnant300c67a2012-04-11 20:14:21 +0000609 memory_order __m = memory_order_seq_cst) volatile _NOEXCEPT
Richard Smith6186c7f2012-04-11 18:55:46 +0000610 {return __c11_atomic_compare_exchange_weak(&__a_, &__e, __d, __m, __m);}
Howard Hinnant91e2f262010-12-07 20:46:14 +0000611 _LIBCPP_INLINE_VISIBILITY
612 bool compare_exchange_weak(_Tp& __e, _Tp __d,
Howard Hinnant300c67a2012-04-11 20:14:21 +0000613 memory_order __m = memory_order_seq_cst) _NOEXCEPT
Richard Smith6186c7f2012-04-11 18:55:46 +0000614 {return __c11_atomic_compare_exchange_weak(&__a_, &__e, __d, __m, __m);}
Howard Hinnant91e2f262010-12-07 20:46:14 +0000615 _LIBCPP_INLINE_VISIBILITY
616 bool compare_exchange_strong(_Tp& __e, _Tp __d,
Howard Hinnant300c67a2012-04-11 20:14:21 +0000617 memory_order __m = memory_order_seq_cst) volatile _NOEXCEPT
Richard Smith6186c7f2012-04-11 18:55:46 +0000618 {return __c11_atomic_compare_exchange_strong(&__a_, &__e, __d, __m, __m);}
Howard Hinnant91e2f262010-12-07 20:46:14 +0000619 _LIBCPP_INLINE_VISIBILITY
620 bool compare_exchange_strong(_Tp& __e, _Tp __d,
Howard Hinnant300c67a2012-04-11 20:14:21 +0000621 memory_order __m = memory_order_seq_cst) _NOEXCEPT
Richard Smith6186c7f2012-04-11 18:55:46 +0000622 {return __c11_atomic_compare_exchange_strong(&__a_, &__e, __d, __m, __m);}
Howard Hinnant91e2f262010-12-07 20:46:14 +0000623
624 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant74f4da72013-05-02 20:18:43 +0000625#ifndef _LIBCPP_HAS_NO_DEFAULTED_FUNCTIONS
626 __atomic_base() _NOEXCEPT = default;
627#else
628 __atomic_base() _NOEXCEPT : __a_() {}
629#endif // _LIBCPP_HAS_NO_DEFAULTED_FUNCTIONS
630
Howard Hinnant91e2f262010-12-07 20:46:14 +0000631 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant300c67a2012-04-11 20:14:21 +0000632 _LIBCPP_CONSTEXPR __atomic_base(_Tp __d) _NOEXCEPT : __a_(__d) {}
Howard Hinnant770d1c42010-12-08 17:20:28 +0000633#ifndef _LIBCPP_HAS_NO_DELETED_FUNCTIONS
Howard Hinnant91e2f262010-12-07 20:46:14 +0000634 __atomic_base(const __atomic_base&) = delete;
635 __atomic_base& operator=(const __atomic_base&) = delete;
636 __atomic_base& operator=(const __atomic_base&) volatile = delete;
Howard Hinnant770d1c42010-12-08 17:20:28 +0000637#else // _LIBCPP_HAS_NO_DELETED_FUNCTIONS
638private:
639 __atomic_base(const __atomic_base&);
640 __atomic_base& operator=(const __atomic_base&);
641 __atomic_base& operator=(const __atomic_base&) volatile;
642#endif // _LIBCPP_HAS_NO_DELETED_FUNCTIONS
Howard Hinnant91e2f262010-12-07 20:46:14 +0000643};
644
645// atomic<Integral>
646
647template <class _Tp>
648struct __atomic_base<_Tp, true>
649 : public __atomic_base<_Tp, false>
650{
651 typedef __atomic_base<_Tp, false> __base;
652 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant74f4da72013-05-02 20:18:43 +0000653 __atomic_base() _NOEXCEPT _LIBCPP_DEFAULT
Howard Hinnant91e2f262010-12-07 20:46:14 +0000654 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant300c67a2012-04-11 20:14:21 +0000655 _LIBCPP_CONSTEXPR __atomic_base(_Tp __d) _NOEXCEPT : __base(__d) {}
Howard Hinnant91e2f262010-12-07 20:46:14 +0000656
657 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant300c67a2012-04-11 20:14:21 +0000658 _Tp fetch_add(_Tp __op, memory_order __m = memory_order_seq_cst) volatile _NOEXCEPT
Richard Smith6186c7f2012-04-11 18:55:46 +0000659 {return __c11_atomic_fetch_add(&this->__a_, __op, __m);}
Howard Hinnant91e2f262010-12-07 20:46:14 +0000660 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant300c67a2012-04-11 20:14:21 +0000661 _Tp fetch_add(_Tp __op, memory_order __m = memory_order_seq_cst) _NOEXCEPT
Richard Smith6186c7f2012-04-11 18:55:46 +0000662 {return __c11_atomic_fetch_add(&this->__a_, __op, __m);}
Howard Hinnant91e2f262010-12-07 20:46:14 +0000663 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant300c67a2012-04-11 20:14:21 +0000664 _Tp fetch_sub(_Tp __op, memory_order __m = memory_order_seq_cst) volatile _NOEXCEPT
Richard Smith6186c7f2012-04-11 18:55:46 +0000665 {return __c11_atomic_fetch_sub(&this->__a_, __op, __m);}
Howard Hinnant91e2f262010-12-07 20:46:14 +0000666 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant300c67a2012-04-11 20:14:21 +0000667 _Tp fetch_sub(_Tp __op, memory_order __m = memory_order_seq_cst) _NOEXCEPT
Richard Smith6186c7f2012-04-11 18:55:46 +0000668 {return __c11_atomic_fetch_sub(&this->__a_, __op, __m);}
Howard Hinnant91e2f262010-12-07 20:46:14 +0000669 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant300c67a2012-04-11 20:14:21 +0000670 _Tp fetch_and(_Tp __op, memory_order __m = memory_order_seq_cst) volatile _NOEXCEPT
Richard Smith6186c7f2012-04-11 18:55:46 +0000671 {return __c11_atomic_fetch_and(&this->__a_, __op, __m);}
Howard Hinnant91e2f262010-12-07 20:46:14 +0000672 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant300c67a2012-04-11 20:14:21 +0000673 _Tp fetch_and(_Tp __op, memory_order __m = memory_order_seq_cst) _NOEXCEPT
Richard Smith6186c7f2012-04-11 18:55:46 +0000674 {return __c11_atomic_fetch_and(&this->__a_, __op, __m);}
Howard Hinnant91e2f262010-12-07 20:46:14 +0000675 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant300c67a2012-04-11 20:14:21 +0000676 _Tp fetch_or(_Tp __op, memory_order __m = memory_order_seq_cst) volatile _NOEXCEPT
Richard Smith6186c7f2012-04-11 18:55:46 +0000677 {return __c11_atomic_fetch_or(&this->__a_, __op, __m);}
Howard Hinnant91e2f262010-12-07 20:46:14 +0000678 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant300c67a2012-04-11 20:14:21 +0000679 _Tp fetch_or(_Tp __op, memory_order __m = memory_order_seq_cst) _NOEXCEPT
Richard Smith6186c7f2012-04-11 18:55:46 +0000680 {return __c11_atomic_fetch_or(&this->__a_, __op, __m);}
Howard Hinnant91e2f262010-12-07 20:46:14 +0000681 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant300c67a2012-04-11 20:14:21 +0000682 _Tp fetch_xor(_Tp __op, memory_order __m = memory_order_seq_cst) volatile _NOEXCEPT
Richard Smith6186c7f2012-04-11 18:55:46 +0000683 {return __c11_atomic_fetch_xor(&this->__a_, __op, __m);}
Howard Hinnant91e2f262010-12-07 20:46:14 +0000684 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant300c67a2012-04-11 20:14:21 +0000685 _Tp fetch_xor(_Tp __op, memory_order __m = memory_order_seq_cst) _NOEXCEPT
Richard Smith6186c7f2012-04-11 18:55:46 +0000686 {return __c11_atomic_fetch_xor(&this->__a_, __op, __m);}
Howard Hinnant91e2f262010-12-07 20:46:14 +0000687
688 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant300c67a2012-04-11 20:14:21 +0000689 _Tp operator++(int) volatile _NOEXCEPT {return fetch_add(_Tp(1));}
Howard Hinnant91e2f262010-12-07 20:46:14 +0000690 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant300c67a2012-04-11 20:14:21 +0000691 _Tp operator++(int) _NOEXCEPT {return fetch_add(_Tp(1));}
Howard Hinnant91e2f262010-12-07 20:46:14 +0000692 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant300c67a2012-04-11 20:14:21 +0000693 _Tp operator--(int) volatile _NOEXCEPT {return fetch_sub(_Tp(1));}
Howard Hinnant91e2f262010-12-07 20:46:14 +0000694 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant300c67a2012-04-11 20:14:21 +0000695 _Tp operator--(int) _NOEXCEPT {return fetch_sub(_Tp(1));}
Howard Hinnant91e2f262010-12-07 20:46:14 +0000696 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant300c67a2012-04-11 20:14:21 +0000697 _Tp operator++() volatile _NOEXCEPT {return fetch_add(_Tp(1)) + _Tp(1);}
Howard Hinnant91e2f262010-12-07 20:46:14 +0000698 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant300c67a2012-04-11 20:14:21 +0000699 _Tp operator++() _NOEXCEPT {return fetch_add(_Tp(1)) + _Tp(1);}
Howard Hinnant91e2f262010-12-07 20:46:14 +0000700 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant300c67a2012-04-11 20:14:21 +0000701 _Tp operator--() volatile _NOEXCEPT {return fetch_sub(_Tp(1)) - _Tp(1);}
Howard Hinnant91e2f262010-12-07 20:46:14 +0000702 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant300c67a2012-04-11 20:14:21 +0000703 _Tp operator--() _NOEXCEPT {return fetch_sub(_Tp(1)) - _Tp(1);}
Howard Hinnant91e2f262010-12-07 20:46:14 +0000704 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant300c67a2012-04-11 20:14:21 +0000705 _Tp operator+=(_Tp __op) volatile _NOEXCEPT {return fetch_add(__op) + __op;}
Howard Hinnant91e2f262010-12-07 20:46:14 +0000706 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant300c67a2012-04-11 20:14:21 +0000707 _Tp operator+=(_Tp __op) _NOEXCEPT {return fetch_add(__op) + __op;}
Howard Hinnant91e2f262010-12-07 20:46:14 +0000708 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant300c67a2012-04-11 20:14:21 +0000709 _Tp operator-=(_Tp __op) volatile _NOEXCEPT {return fetch_sub(__op) - __op;}
Howard Hinnant91e2f262010-12-07 20:46:14 +0000710 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant300c67a2012-04-11 20:14:21 +0000711 _Tp operator-=(_Tp __op) _NOEXCEPT {return fetch_sub(__op) - __op;}
Howard Hinnant91e2f262010-12-07 20:46:14 +0000712 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant300c67a2012-04-11 20:14:21 +0000713 _Tp operator&=(_Tp __op) volatile _NOEXCEPT {return fetch_and(__op) & __op;}
Howard Hinnant91e2f262010-12-07 20:46:14 +0000714 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant300c67a2012-04-11 20:14:21 +0000715 _Tp operator&=(_Tp __op) _NOEXCEPT {return fetch_and(__op) & __op;}
Howard Hinnant91e2f262010-12-07 20:46:14 +0000716 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant300c67a2012-04-11 20:14:21 +0000717 _Tp operator|=(_Tp __op) volatile _NOEXCEPT {return fetch_or(__op) | __op;}
Howard Hinnant91e2f262010-12-07 20:46:14 +0000718 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant300c67a2012-04-11 20:14:21 +0000719 _Tp operator|=(_Tp __op) _NOEXCEPT {return fetch_or(__op) | __op;}
Howard Hinnant91e2f262010-12-07 20:46:14 +0000720 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant300c67a2012-04-11 20:14:21 +0000721 _Tp operator^=(_Tp __op) volatile _NOEXCEPT {return fetch_xor(__op) ^ __op;}
Howard Hinnant91e2f262010-12-07 20:46:14 +0000722 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant300c67a2012-04-11 20:14:21 +0000723 _Tp operator^=(_Tp __op) _NOEXCEPT {return fetch_xor(__op) ^ __op;}
Howard Hinnant91e2f262010-12-07 20:46:14 +0000724};
725
726// atomic<T>
727
728template <class _Tp>
729struct atomic
730 : public __atomic_base<_Tp>
731{
732 typedef __atomic_base<_Tp> __base;
733 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant74f4da72013-05-02 20:18:43 +0000734 atomic() _NOEXCEPT _LIBCPP_DEFAULT
Howard Hinnant91e2f262010-12-07 20:46:14 +0000735 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant300c67a2012-04-11 20:14:21 +0000736 _LIBCPP_CONSTEXPR atomic(_Tp __d) _NOEXCEPT : __base(__d) {}
Howard Hinnantd2f6afb2010-12-07 23:24:41 +0000737
738 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant300c67a2012-04-11 20:14:21 +0000739 _Tp operator=(_Tp __d) volatile _NOEXCEPT
Howard Hinnantd2f6afb2010-12-07 23:24:41 +0000740 {__base::store(__d); return __d;}
741 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant300c67a2012-04-11 20:14:21 +0000742 _Tp operator=(_Tp __d) _NOEXCEPT
Howard Hinnantd2f6afb2010-12-07 23:24:41 +0000743 {__base::store(__d); return __d;}
Howard Hinnant91e2f262010-12-07 20:46:14 +0000744};
745
746// atomic<T*>
747
748template <class _Tp>
749struct atomic<_Tp*>
750 : public __atomic_base<_Tp*>
751{
Howard Hinnantd2f6afb2010-12-07 23:24:41 +0000752 typedef __atomic_base<_Tp*> __base;
Howard Hinnant91e2f262010-12-07 20:46:14 +0000753 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant74f4da72013-05-02 20:18:43 +0000754 atomic() _NOEXCEPT _LIBCPP_DEFAULT
Howard Hinnant91e2f262010-12-07 20:46:14 +0000755 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant300c67a2012-04-11 20:14:21 +0000756 _LIBCPP_CONSTEXPR atomic(_Tp* __d) _NOEXCEPT : __base(__d) {}
Howard Hinnant91e2f262010-12-07 20:46:14 +0000757
758 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant300c67a2012-04-11 20:14:21 +0000759 _Tp* operator=(_Tp* __d) volatile _NOEXCEPT
Howard Hinnantd2f6afb2010-12-07 23:24:41 +0000760 {__base::store(__d); return __d;}
761 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant300c67a2012-04-11 20:14:21 +0000762 _Tp* operator=(_Tp* __d) _NOEXCEPT
Howard Hinnantd2f6afb2010-12-07 23:24:41 +0000763 {__base::store(__d); return __d;}
764
765 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant91e2f262010-12-07 20:46:14 +0000766 _Tp* fetch_add(ptrdiff_t __op, memory_order __m = memory_order_seq_cst)
Howard Hinnant300c67a2012-04-11 20:14:21 +0000767 volatile _NOEXCEPT
Richard Smith6186c7f2012-04-11 18:55:46 +0000768 {return __c11_atomic_fetch_add(&this->__a_, __op, __m);}
Howard Hinnant91e2f262010-12-07 20:46:14 +0000769 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant300c67a2012-04-11 20:14:21 +0000770 _Tp* fetch_add(ptrdiff_t __op, memory_order __m = memory_order_seq_cst) _NOEXCEPT
Richard Smith6186c7f2012-04-11 18:55:46 +0000771 {return __c11_atomic_fetch_add(&this->__a_, __op, __m);}
Howard Hinnant91e2f262010-12-07 20:46:14 +0000772 _LIBCPP_INLINE_VISIBILITY
773 _Tp* fetch_sub(ptrdiff_t __op, memory_order __m = memory_order_seq_cst)
Howard Hinnant300c67a2012-04-11 20:14:21 +0000774 volatile _NOEXCEPT
Richard Smith6186c7f2012-04-11 18:55:46 +0000775 {return __c11_atomic_fetch_sub(&this->__a_, __op, __m);}
Howard Hinnant91e2f262010-12-07 20:46:14 +0000776 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant300c67a2012-04-11 20:14:21 +0000777 _Tp* fetch_sub(ptrdiff_t __op, memory_order __m = memory_order_seq_cst) _NOEXCEPT
Richard Smith6186c7f2012-04-11 18:55:46 +0000778 {return __c11_atomic_fetch_sub(&this->__a_, __op, __m);}
Howard Hinnant91e2f262010-12-07 20:46:14 +0000779
780 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant300c67a2012-04-11 20:14:21 +0000781 _Tp* operator++(int) volatile _NOEXCEPT {return fetch_add(1);}
Howard Hinnant91e2f262010-12-07 20:46:14 +0000782 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant300c67a2012-04-11 20:14:21 +0000783 _Tp* operator++(int) _NOEXCEPT {return fetch_add(1);}
Howard Hinnant91e2f262010-12-07 20:46:14 +0000784 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant300c67a2012-04-11 20:14:21 +0000785 _Tp* operator--(int) volatile _NOEXCEPT {return fetch_sub(1);}
Howard Hinnant91e2f262010-12-07 20:46:14 +0000786 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant300c67a2012-04-11 20:14:21 +0000787 _Tp* operator--(int) _NOEXCEPT {return fetch_sub(1);}
Howard Hinnant91e2f262010-12-07 20:46:14 +0000788 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant300c67a2012-04-11 20:14:21 +0000789 _Tp* operator++() volatile _NOEXCEPT {return fetch_add(1) + 1;}
Howard Hinnant91e2f262010-12-07 20:46:14 +0000790 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant300c67a2012-04-11 20:14:21 +0000791 _Tp* operator++() _NOEXCEPT {return fetch_add(1) + 1;}
Howard Hinnant91e2f262010-12-07 20:46:14 +0000792 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant300c67a2012-04-11 20:14:21 +0000793 _Tp* operator--() volatile _NOEXCEPT {return fetch_sub(1) - 1;}
Howard Hinnant91e2f262010-12-07 20:46:14 +0000794 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant300c67a2012-04-11 20:14:21 +0000795 _Tp* operator--() _NOEXCEPT {return fetch_sub(1) - 1;}
Howard Hinnant91e2f262010-12-07 20:46:14 +0000796 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant300c67a2012-04-11 20:14:21 +0000797 _Tp* operator+=(ptrdiff_t __op) volatile _NOEXCEPT {return fetch_add(__op) + __op;}
Howard Hinnant91e2f262010-12-07 20:46:14 +0000798 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant300c67a2012-04-11 20:14:21 +0000799 _Tp* operator+=(ptrdiff_t __op) _NOEXCEPT {return fetch_add(__op) + __op;}
Howard Hinnant91e2f262010-12-07 20:46:14 +0000800 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant300c67a2012-04-11 20:14:21 +0000801 _Tp* operator-=(ptrdiff_t __op) volatile _NOEXCEPT {return fetch_sub(__op) - __op;}
Howard Hinnant91e2f262010-12-07 20:46:14 +0000802 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant300c67a2012-04-11 20:14:21 +0000803 _Tp* operator-=(ptrdiff_t __op) _NOEXCEPT {return fetch_sub(__op) - __op;}
Howard Hinnant91e2f262010-12-07 20:46:14 +0000804};
Howard Hinnant4777bf22010-12-06 23:10:08 +0000805
806// atomic_is_lock_free
807
808template <class _Tp>
809inline _LIBCPP_INLINE_VISIBILITY
810bool
Howard Hinnant300c67a2012-04-11 20:14:21 +0000811atomic_is_lock_free(const volatile atomic<_Tp>* __o) _NOEXCEPT
Howard Hinnant4777bf22010-12-06 23:10:08 +0000812{
Howard Hinnant91e2f262010-12-07 20:46:14 +0000813 return __o->is_lock_free();
Howard Hinnant4777bf22010-12-06 23:10:08 +0000814}
815
816template <class _Tp>
817inline _LIBCPP_INLINE_VISIBILITY
818bool
Howard Hinnant300c67a2012-04-11 20:14:21 +0000819atomic_is_lock_free(const atomic<_Tp>* __o) _NOEXCEPT
Howard Hinnant4777bf22010-12-06 23:10:08 +0000820{
Howard Hinnant91e2f262010-12-07 20:46:14 +0000821 return __o->is_lock_free();
Howard Hinnant4777bf22010-12-06 23:10:08 +0000822}
823
824// atomic_init
825
826template <class _Tp>
827inline _LIBCPP_INLINE_VISIBILITY
828void
Howard Hinnant300c67a2012-04-11 20:14:21 +0000829atomic_init(volatile atomic<_Tp>* __o, _Tp __d) _NOEXCEPT
Howard Hinnant4777bf22010-12-06 23:10:08 +0000830{
Richard Smith6186c7f2012-04-11 18:55:46 +0000831 __c11_atomic_init(&__o->__a_, __d);
Howard Hinnant4777bf22010-12-06 23:10:08 +0000832}
833
834template <class _Tp>
835inline _LIBCPP_INLINE_VISIBILITY
836void
Howard Hinnant300c67a2012-04-11 20:14:21 +0000837atomic_init(atomic<_Tp>* __o, _Tp __d) _NOEXCEPT
Howard Hinnant4777bf22010-12-06 23:10:08 +0000838{
Richard Smith6186c7f2012-04-11 18:55:46 +0000839 __c11_atomic_init(&__o->__a_, __d);
Howard Hinnant4777bf22010-12-06 23:10:08 +0000840}
841
842// atomic_store
843
844template <class _Tp>
845inline _LIBCPP_INLINE_VISIBILITY
846void
Howard Hinnant300c67a2012-04-11 20:14:21 +0000847atomic_store(volatile atomic<_Tp>* __o, _Tp __d) _NOEXCEPT
Howard Hinnant4777bf22010-12-06 23:10:08 +0000848{
Howard Hinnant91e2f262010-12-07 20:46:14 +0000849 __o->store(__d);
Howard Hinnant4777bf22010-12-06 23:10:08 +0000850}
851
852template <class _Tp>
853inline _LIBCPP_INLINE_VISIBILITY
854void
Howard Hinnant300c67a2012-04-11 20:14:21 +0000855atomic_store(atomic<_Tp>* __o, _Tp __d) _NOEXCEPT
Howard Hinnant4777bf22010-12-06 23:10:08 +0000856{
Howard Hinnant91e2f262010-12-07 20:46:14 +0000857 __o->store(__d);
Howard Hinnant4777bf22010-12-06 23:10:08 +0000858}
859
860// atomic_store_explicit
861
862template <class _Tp>
863inline _LIBCPP_INLINE_VISIBILITY
864void
Howard Hinnant300c67a2012-04-11 20:14:21 +0000865atomic_store_explicit(volatile atomic<_Tp>* __o, _Tp __d, memory_order __m) _NOEXCEPT
Howard Hinnant4777bf22010-12-06 23:10:08 +0000866{
Howard Hinnant91e2f262010-12-07 20:46:14 +0000867 __o->store(__d, __m);
Howard Hinnant4777bf22010-12-06 23:10:08 +0000868}
869
870template <class _Tp>
871inline _LIBCPP_INLINE_VISIBILITY
872void
Howard Hinnant300c67a2012-04-11 20:14:21 +0000873atomic_store_explicit(atomic<_Tp>* __o, _Tp __d, memory_order __m) _NOEXCEPT
Howard Hinnant4777bf22010-12-06 23:10:08 +0000874{
Howard Hinnant91e2f262010-12-07 20:46:14 +0000875 __o->store(__d, __m);
Howard Hinnant4777bf22010-12-06 23:10:08 +0000876}
877
878// atomic_load
879
880template <class _Tp>
881inline _LIBCPP_INLINE_VISIBILITY
882_Tp
Howard Hinnant300c67a2012-04-11 20:14:21 +0000883atomic_load(const volatile atomic<_Tp>* __o) _NOEXCEPT
Howard Hinnant4777bf22010-12-06 23:10:08 +0000884{
Howard Hinnant91e2f262010-12-07 20:46:14 +0000885 return __o->load();
Howard Hinnant4777bf22010-12-06 23:10:08 +0000886}
887
888template <class _Tp>
889inline _LIBCPP_INLINE_VISIBILITY
890_Tp
Howard Hinnant300c67a2012-04-11 20:14:21 +0000891atomic_load(const atomic<_Tp>* __o) _NOEXCEPT
Howard Hinnant4777bf22010-12-06 23:10:08 +0000892{
Howard Hinnant91e2f262010-12-07 20:46:14 +0000893 return __o->load();
Howard Hinnant4777bf22010-12-06 23:10:08 +0000894}
895
896// atomic_load_explicit
897
898template <class _Tp>
899inline _LIBCPP_INLINE_VISIBILITY
900_Tp
Howard Hinnant300c67a2012-04-11 20:14:21 +0000901atomic_load_explicit(const volatile atomic<_Tp>* __o, memory_order __m) _NOEXCEPT
Howard Hinnant4777bf22010-12-06 23:10:08 +0000902{
Howard Hinnant91e2f262010-12-07 20:46:14 +0000903 return __o->load(__m);
Howard Hinnant4777bf22010-12-06 23:10:08 +0000904}
905
906template <class _Tp>
907inline _LIBCPP_INLINE_VISIBILITY
908_Tp
Howard Hinnant300c67a2012-04-11 20:14:21 +0000909atomic_load_explicit(const atomic<_Tp>* __o, memory_order __m) _NOEXCEPT
Howard Hinnant4777bf22010-12-06 23:10:08 +0000910{
Howard Hinnant91e2f262010-12-07 20:46:14 +0000911 return __o->load(__m);
Howard Hinnant4777bf22010-12-06 23:10:08 +0000912}
913
914// atomic_exchange
915
916template <class _Tp>
917inline _LIBCPP_INLINE_VISIBILITY
918_Tp
Howard Hinnant300c67a2012-04-11 20:14:21 +0000919atomic_exchange(volatile atomic<_Tp>* __o, _Tp __d) _NOEXCEPT
Howard Hinnant4777bf22010-12-06 23:10:08 +0000920{
Howard Hinnant91e2f262010-12-07 20:46:14 +0000921 return __o->exchange(__d);
Howard Hinnant4777bf22010-12-06 23:10:08 +0000922}
923
924template <class _Tp>
925inline _LIBCPP_INLINE_VISIBILITY
926_Tp
Howard Hinnant300c67a2012-04-11 20:14:21 +0000927atomic_exchange(atomic<_Tp>* __o, _Tp __d) _NOEXCEPT
Howard Hinnant4777bf22010-12-06 23:10:08 +0000928{
Howard Hinnant91e2f262010-12-07 20:46:14 +0000929 return __o->exchange(__d);
Howard Hinnant4777bf22010-12-06 23:10:08 +0000930}
931
932// atomic_exchange_explicit
933
934template <class _Tp>
935inline _LIBCPP_INLINE_VISIBILITY
936_Tp
Howard Hinnant300c67a2012-04-11 20:14:21 +0000937atomic_exchange_explicit(volatile atomic<_Tp>* __o, _Tp __d, memory_order __m) _NOEXCEPT
Howard Hinnant4777bf22010-12-06 23:10:08 +0000938{
Howard Hinnant91e2f262010-12-07 20:46:14 +0000939 return __o->exchange(__d, __m);
Howard Hinnant4777bf22010-12-06 23:10:08 +0000940}
941
942template <class _Tp>
943inline _LIBCPP_INLINE_VISIBILITY
944_Tp
Howard Hinnant300c67a2012-04-11 20:14:21 +0000945atomic_exchange_explicit(atomic<_Tp>* __o, _Tp __d, memory_order __m) _NOEXCEPT
Howard Hinnant4777bf22010-12-06 23:10:08 +0000946{
Howard Hinnant91e2f262010-12-07 20:46:14 +0000947 return __o->exchange(__d, __m);
Howard Hinnant4777bf22010-12-06 23:10:08 +0000948}
949
950// atomic_compare_exchange_weak
951
952template <class _Tp>
953inline _LIBCPP_INLINE_VISIBILITY
954bool
Howard Hinnant300c67a2012-04-11 20:14:21 +0000955atomic_compare_exchange_weak(volatile atomic<_Tp>* __o, _Tp* __e, _Tp __d) _NOEXCEPT
Howard Hinnant4777bf22010-12-06 23:10:08 +0000956{
Howard Hinnant91e2f262010-12-07 20:46:14 +0000957 return __o->compare_exchange_weak(*__e, __d);
Howard Hinnant4777bf22010-12-06 23:10:08 +0000958}
959
960template <class _Tp>
961inline _LIBCPP_INLINE_VISIBILITY
962bool
Howard Hinnant300c67a2012-04-11 20:14:21 +0000963atomic_compare_exchange_weak(atomic<_Tp>* __o, _Tp* __e, _Tp __d) _NOEXCEPT
Howard Hinnant4777bf22010-12-06 23:10:08 +0000964{
Howard Hinnant91e2f262010-12-07 20:46:14 +0000965 return __o->compare_exchange_weak(*__e, __d);
Howard Hinnant4777bf22010-12-06 23:10:08 +0000966}
967
968// atomic_compare_exchange_strong
969
970template <class _Tp>
971inline _LIBCPP_INLINE_VISIBILITY
972bool
Howard Hinnant300c67a2012-04-11 20:14:21 +0000973atomic_compare_exchange_strong(volatile atomic<_Tp>* __o, _Tp* __e, _Tp __d) _NOEXCEPT
Howard Hinnant4777bf22010-12-06 23:10:08 +0000974{
Howard Hinnant91e2f262010-12-07 20:46:14 +0000975 return __o->compare_exchange_strong(*__e, __d);
Howard Hinnant4777bf22010-12-06 23:10:08 +0000976}
977
978template <class _Tp>
979inline _LIBCPP_INLINE_VISIBILITY
980bool
Howard Hinnant300c67a2012-04-11 20:14:21 +0000981atomic_compare_exchange_strong(atomic<_Tp>* __o, _Tp* __e, _Tp __d) _NOEXCEPT
Howard Hinnant4777bf22010-12-06 23:10:08 +0000982{
Howard Hinnant91e2f262010-12-07 20:46:14 +0000983 return __o->compare_exchange_strong(*__e, __d);
Howard Hinnant4777bf22010-12-06 23:10:08 +0000984}
985
986// atomic_compare_exchange_weak_explicit
987
988template <class _Tp>
989inline _LIBCPP_INLINE_VISIBILITY
990bool
991atomic_compare_exchange_weak_explicit(volatile atomic<_Tp>* __o, _Tp* __e,
992 _Tp __d,
Howard Hinnant300c67a2012-04-11 20:14:21 +0000993 memory_order __s, memory_order __f) _NOEXCEPT
Howard Hinnant4777bf22010-12-06 23:10:08 +0000994{
Howard Hinnant91e2f262010-12-07 20:46:14 +0000995 return __o->compare_exchange_weak(*__e, __d, __s, __f);
Howard Hinnant4777bf22010-12-06 23:10:08 +0000996}
997
998template <class _Tp>
999inline _LIBCPP_INLINE_VISIBILITY
1000bool
1001atomic_compare_exchange_weak_explicit(atomic<_Tp>* __o, _Tp* __e, _Tp __d,
Howard Hinnant300c67a2012-04-11 20:14:21 +00001002 memory_order __s, memory_order __f) _NOEXCEPT
Howard Hinnant4777bf22010-12-06 23:10:08 +00001003{
Howard Hinnant91e2f262010-12-07 20:46:14 +00001004 return __o->compare_exchange_weak(*__e, __d, __s, __f);
Howard Hinnant4777bf22010-12-06 23:10:08 +00001005}
1006
1007// atomic_compare_exchange_strong_explicit
1008
1009template <class _Tp>
1010inline _LIBCPP_INLINE_VISIBILITY
1011bool
1012atomic_compare_exchange_strong_explicit(volatile atomic<_Tp>* __o,
1013 _Tp* __e, _Tp __d,
Howard Hinnant300c67a2012-04-11 20:14:21 +00001014 memory_order __s, memory_order __f) _NOEXCEPT
Howard Hinnant4777bf22010-12-06 23:10:08 +00001015{
Howard Hinnant91e2f262010-12-07 20:46:14 +00001016 return __o->compare_exchange_strong(*__e, __d, __s, __f);
Howard Hinnant4777bf22010-12-06 23:10:08 +00001017}
1018
1019template <class _Tp>
1020inline _LIBCPP_INLINE_VISIBILITY
1021bool
1022atomic_compare_exchange_strong_explicit(atomic<_Tp>* __o, _Tp* __e,
1023 _Tp __d,
Howard Hinnant300c67a2012-04-11 20:14:21 +00001024 memory_order __s, memory_order __f) _NOEXCEPT
Howard Hinnant4777bf22010-12-06 23:10:08 +00001025{
Howard Hinnant91e2f262010-12-07 20:46:14 +00001026 return __o->compare_exchange_strong(*__e, __d, __s, __f);
Howard Hinnant4777bf22010-12-06 23:10:08 +00001027}
1028
Howard Hinnant91e2f262010-12-07 20:46:14 +00001029// atomic_fetch_add
Howard Hinnant4777bf22010-12-06 23:10:08 +00001030
1031template <class _Tp>
Howard Hinnant91e2f262010-12-07 20:46:14 +00001032inline _LIBCPP_INLINE_VISIBILITY
1033typename enable_if
1034<
1035 is_integral<_Tp>::value && !is_same<_Tp, bool>::value,
1036 _Tp
1037>::type
Howard Hinnant300c67a2012-04-11 20:14:21 +00001038atomic_fetch_add(volatile atomic<_Tp>* __o, _Tp __op) _NOEXCEPT
Howard Hinnant4777bf22010-12-06 23:10:08 +00001039{
Howard Hinnant91e2f262010-12-07 20:46:14 +00001040 return __o->fetch_add(__op);
1041}
Howard Hinnant4777bf22010-12-06 23:10:08 +00001042
Howard Hinnant91e2f262010-12-07 20:46:14 +00001043template <class _Tp>
1044inline _LIBCPP_INLINE_VISIBILITY
1045typename enable_if
1046<
1047 is_integral<_Tp>::value && !is_same<_Tp, bool>::value,
1048 _Tp
1049>::type
Howard Hinnant300c67a2012-04-11 20:14:21 +00001050atomic_fetch_add(atomic<_Tp>* __o, _Tp __op) _NOEXCEPT
Howard Hinnant91e2f262010-12-07 20:46:14 +00001051{
1052 return __o->fetch_add(__op);
1053}
Howard Hinnant4777bf22010-12-06 23:10:08 +00001054
Howard Hinnant91e2f262010-12-07 20:46:14 +00001055template <class _Tp>
1056inline _LIBCPP_INLINE_VISIBILITY
1057_Tp*
Howard Hinnant300c67a2012-04-11 20:14:21 +00001058atomic_fetch_add(volatile atomic<_Tp*>* __o, ptrdiff_t __op) _NOEXCEPT
Howard Hinnant91e2f262010-12-07 20:46:14 +00001059{
1060 return __o->fetch_add(__op);
1061}
1062
1063template <class _Tp>
1064inline _LIBCPP_INLINE_VISIBILITY
1065_Tp*
Howard Hinnant300c67a2012-04-11 20:14:21 +00001066atomic_fetch_add(atomic<_Tp*>* __o, ptrdiff_t __op) _NOEXCEPT
Howard Hinnant91e2f262010-12-07 20:46:14 +00001067{
1068 return __o->fetch_add(__op);
1069}
1070
1071// atomic_fetch_add_explicit
1072
1073template <class _Tp>
1074inline _LIBCPP_INLINE_VISIBILITY
1075typename enable_if
1076<
1077 is_integral<_Tp>::value && !is_same<_Tp, bool>::value,
1078 _Tp
1079>::type
Howard Hinnant300c67a2012-04-11 20:14:21 +00001080atomic_fetch_add_explicit(volatile atomic<_Tp>* __o, _Tp __op, memory_order __m) _NOEXCEPT
Howard Hinnant91e2f262010-12-07 20:46:14 +00001081{
1082 return __o->fetch_add(__op, __m);
1083}
1084
1085template <class _Tp>
1086inline _LIBCPP_INLINE_VISIBILITY
1087typename enable_if
1088<
1089 is_integral<_Tp>::value && !is_same<_Tp, bool>::value,
1090 _Tp
1091>::type
Howard Hinnant300c67a2012-04-11 20:14:21 +00001092atomic_fetch_add_explicit(atomic<_Tp>* __o, _Tp __op, memory_order __m) _NOEXCEPT
Howard Hinnant91e2f262010-12-07 20:46:14 +00001093{
1094 return __o->fetch_add(__op, __m);
1095}
1096
1097template <class _Tp>
1098inline _LIBCPP_INLINE_VISIBILITY
1099_Tp*
1100atomic_fetch_add_explicit(volatile atomic<_Tp*>* __o, ptrdiff_t __op,
Howard Hinnant300c67a2012-04-11 20:14:21 +00001101 memory_order __m) _NOEXCEPT
Howard Hinnant91e2f262010-12-07 20:46:14 +00001102{
1103 return __o->fetch_add(__op, __m);
1104}
1105
1106template <class _Tp>
1107inline _LIBCPP_INLINE_VISIBILITY
1108_Tp*
Howard Hinnant300c67a2012-04-11 20:14:21 +00001109atomic_fetch_add_explicit(atomic<_Tp*>* __o, ptrdiff_t __op, memory_order __m) _NOEXCEPT
Howard Hinnant91e2f262010-12-07 20:46:14 +00001110{
1111 return __o->fetch_add(__op, __m);
1112}
1113
1114// atomic_fetch_sub
1115
1116template <class _Tp>
1117inline _LIBCPP_INLINE_VISIBILITY
1118typename enable_if
1119<
1120 is_integral<_Tp>::value && !is_same<_Tp, bool>::value,
1121 _Tp
1122>::type
Howard Hinnant300c67a2012-04-11 20:14:21 +00001123atomic_fetch_sub(volatile atomic<_Tp>* __o, _Tp __op) _NOEXCEPT
Howard Hinnant91e2f262010-12-07 20:46:14 +00001124{
1125 return __o->fetch_sub(__op);
1126}
1127
1128template <class _Tp>
1129inline _LIBCPP_INLINE_VISIBILITY
1130typename enable_if
1131<
1132 is_integral<_Tp>::value && !is_same<_Tp, bool>::value,
1133 _Tp
1134>::type
Howard Hinnant300c67a2012-04-11 20:14:21 +00001135atomic_fetch_sub(atomic<_Tp>* __o, _Tp __op) _NOEXCEPT
Howard Hinnant91e2f262010-12-07 20:46:14 +00001136{
1137 return __o->fetch_sub(__op);
1138}
1139
1140template <class _Tp>
1141inline _LIBCPP_INLINE_VISIBILITY
1142_Tp*
Howard Hinnant300c67a2012-04-11 20:14:21 +00001143atomic_fetch_sub(volatile atomic<_Tp*>* __o, ptrdiff_t __op) _NOEXCEPT
Howard Hinnant91e2f262010-12-07 20:46:14 +00001144{
1145 return __o->fetch_sub(__op);
1146}
1147
1148template <class _Tp>
1149inline _LIBCPP_INLINE_VISIBILITY
1150_Tp*
Howard Hinnant300c67a2012-04-11 20:14:21 +00001151atomic_fetch_sub(atomic<_Tp*>* __o, ptrdiff_t __op) _NOEXCEPT
Howard Hinnant91e2f262010-12-07 20:46:14 +00001152{
1153 return __o->fetch_sub(__op);
1154}
1155
1156// atomic_fetch_sub_explicit
1157
1158template <class _Tp>
1159inline _LIBCPP_INLINE_VISIBILITY
1160typename enable_if
1161<
1162 is_integral<_Tp>::value && !is_same<_Tp, bool>::value,
1163 _Tp
1164>::type
Howard Hinnant300c67a2012-04-11 20:14:21 +00001165atomic_fetch_sub_explicit(volatile atomic<_Tp>* __o, _Tp __op, memory_order __m) _NOEXCEPT
Howard Hinnant91e2f262010-12-07 20:46:14 +00001166{
1167 return __o->fetch_sub(__op, __m);
1168}
1169
1170template <class _Tp>
1171inline _LIBCPP_INLINE_VISIBILITY
1172typename enable_if
1173<
1174 is_integral<_Tp>::value && !is_same<_Tp, bool>::value,
1175 _Tp
1176>::type
Howard Hinnant300c67a2012-04-11 20:14:21 +00001177atomic_fetch_sub_explicit(atomic<_Tp>* __o, _Tp __op, memory_order __m) _NOEXCEPT
Howard Hinnant91e2f262010-12-07 20:46:14 +00001178{
1179 return __o->fetch_sub(__op, __m);
1180}
1181
1182template <class _Tp>
1183inline _LIBCPP_INLINE_VISIBILITY
1184_Tp*
1185atomic_fetch_sub_explicit(volatile atomic<_Tp*>* __o, ptrdiff_t __op,
Howard Hinnant300c67a2012-04-11 20:14:21 +00001186 memory_order __m) _NOEXCEPT
Howard Hinnant91e2f262010-12-07 20:46:14 +00001187{
1188 return __o->fetch_sub(__op, __m);
1189}
1190
1191template <class _Tp>
1192inline _LIBCPP_INLINE_VISIBILITY
1193_Tp*
Howard Hinnant300c67a2012-04-11 20:14:21 +00001194atomic_fetch_sub_explicit(atomic<_Tp*>* __o, ptrdiff_t __op, memory_order __m) _NOEXCEPT
Howard Hinnant91e2f262010-12-07 20:46:14 +00001195{
1196 return __o->fetch_sub(__op, __m);
1197}
1198
1199// atomic_fetch_and
1200
1201template <class _Tp>
1202inline _LIBCPP_INLINE_VISIBILITY
1203typename enable_if
1204<
1205 is_integral<_Tp>::value && !is_same<_Tp, bool>::value,
1206 _Tp
1207>::type
Howard Hinnant300c67a2012-04-11 20:14:21 +00001208atomic_fetch_and(volatile atomic<_Tp>* __o, _Tp __op) _NOEXCEPT
Howard Hinnant91e2f262010-12-07 20:46:14 +00001209{
1210 return __o->fetch_and(__op);
1211}
1212
1213template <class _Tp>
1214inline _LIBCPP_INLINE_VISIBILITY
1215typename enable_if
1216<
1217 is_integral<_Tp>::value && !is_same<_Tp, bool>::value,
1218 _Tp
1219>::type
Howard Hinnant300c67a2012-04-11 20:14:21 +00001220atomic_fetch_and(atomic<_Tp>* __o, _Tp __op) _NOEXCEPT
Howard Hinnant91e2f262010-12-07 20:46:14 +00001221{
1222 return __o->fetch_and(__op);
1223}
1224
1225// atomic_fetch_and_explicit
1226
1227template <class _Tp>
1228inline _LIBCPP_INLINE_VISIBILITY
1229typename enable_if
1230<
1231 is_integral<_Tp>::value && !is_same<_Tp, bool>::value,
1232 _Tp
1233>::type
Howard Hinnant300c67a2012-04-11 20:14:21 +00001234atomic_fetch_and_explicit(volatile atomic<_Tp>* __o, _Tp __op, memory_order __m) _NOEXCEPT
Howard Hinnant91e2f262010-12-07 20:46:14 +00001235{
1236 return __o->fetch_and(__op, __m);
1237}
1238
1239template <class _Tp>
1240inline _LIBCPP_INLINE_VISIBILITY
1241typename enable_if
1242<
1243 is_integral<_Tp>::value && !is_same<_Tp, bool>::value,
1244 _Tp
1245>::type
Howard Hinnant300c67a2012-04-11 20:14:21 +00001246atomic_fetch_and_explicit(atomic<_Tp>* __o, _Tp __op, memory_order __m) _NOEXCEPT
Howard Hinnant91e2f262010-12-07 20:46:14 +00001247{
1248 return __o->fetch_and(__op, __m);
1249}
1250
1251// atomic_fetch_or
1252
1253template <class _Tp>
1254inline _LIBCPP_INLINE_VISIBILITY
1255typename enable_if
1256<
1257 is_integral<_Tp>::value && !is_same<_Tp, bool>::value,
1258 _Tp
1259>::type
Howard Hinnant300c67a2012-04-11 20:14:21 +00001260atomic_fetch_or(volatile atomic<_Tp>* __o, _Tp __op) _NOEXCEPT
Howard Hinnant91e2f262010-12-07 20:46:14 +00001261{
1262 return __o->fetch_or(__op);
1263}
1264
1265template <class _Tp>
1266inline _LIBCPP_INLINE_VISIBILITY
1267typename enable_if
1268<
1269 is_integral<_Tp>::value && !is_same<_Tp, bool>::value,
1270 _Tp
1271>::type
Howard Hinnant300c67a2012-04-11 20:14:21 +00001272atomic_fetch_or(atomic<_Tp>* __o, _Tp __op) _NOEXCEPT
Howard Hinnant91e2f262010-12-07 20:46:14 +00001273{
1274 return __o->fetch_or(__op);
1275}
1276
1277// atomic_fetch_or_explicit
1278
1279template <class _Tp>
1280inline _LIBCPP_INLINE_VISIBILITY
1281typename enable_if
1282<
1283 is_integral<_Tp>::value && !is_same<_Tp, bool>::value,
1284 _Tp
1285>::type
Howard Hinnant300c67a2012-04-11 20:14:21 +00001286atomic_fetch_or_explicit(volatile atomic<_Tp>* __o, _Tp __op, memory_order __m) _NOEXCEPT
Howard Hinnant91e2f262010-12-07 20:46:14 +00001287{
1288 return __o->fetch_or(__op, __m);
1289}
1290
1291template <class _Tp>
1292inline _LIBCPP_INLINE_VISIBILITY
1293typename enable_if
1294<
1295 is_integral<_Tp>::value && !is_same<_Tp, bool>::value,
1296 _Tp
1297>::type
Howard Hinnant300c67a2012-04-11 20:14:21 +00001298atomic_fetch_or_explicit(atomic<_Tp>* __o, _Tp __op, memory_order __m) _NOEXCEPT
Howard Hinnant91e2f262010-12-07 20:46:14 +00001299{
1300 return __o->fetch_or(__op, __m);
1301}
1302
1303// atomic_fetch_xor
1304
1305template <class _Tp>
1306inline _LIBCPP_INLINE_VISIBILITY
1307typename enable_if
1308<
1309 is_integral<_Tp>::value && !is_same<_Tp, bool>::value,
1310 _Tp
1311>::type
Howard Hinnant300c67a2012-04-11 20:14:21 +00001312atomic_fetch_xor(volatile atomic<_Tp>* __o, _Tp __op) _NOEXCEPT
Howard Hinnant91e2f262010-12-07 20:46:14 +00001313{
1314 return __o->fetch_xor(__op);
1315}
1316
1317template <class _Tp>
1318inline _LIBCPP_INLINE_VISIBILITY
1319typename enable_if
1320<
1321 is_integral<_Tp>::value && !is_same<_Tp, bool>::value,
1322 _Tp
1323>::type
Howard Hinnant300c67a2012-04-11 20:14:21 +00001324atomic_fetch_xor(atomic<_Tp>* __o, _Tp __op) _NOEXCEPT
Howard Hinnant91e2f262010-12-07 20:46:14 +00001325{
1326 return __o->fetch_xor(__op);
1327}
1328
1329// atomic_fetch_xor_explicit
1330
1331template <class _Tp>
1332inline _LIBCPP_INLINE_VISIBILITY
1333typename enable_if
1334<
1335 is_integral<_Tp>::value && !is_same<_Tp, bool>::value,
1336 _Tp
1337>::type
Howard Hinnant300c67a2012-04-11 20:14:21 +00001338atomic_fetch_xor_explicit(volatile atomic<_Tp>* __o, _Tp __op, memory_order __m) _NOEXCEPT
Howard Hinnant91e2f262010-12-07 20:46:14 +00001339{
1340 return __o->fetch_xor(__op, __m);
1341}
1342
1343template <class _Tp>
1344inline _LIBCPP_INLINE_VISIBILITY
1345typename enable_if
1346<
1347 is_integral<_Tp>::value && !is_same<_Tp, bool>::value,
1348 _Tp
1349>::type
Howard Hinnant300c67a2012-04-11 20:14:21 +00001350atomic_fetch_xor_explicit(atomic<_Tp>* __o, _Tp __op, memory_order __m) _NOEXCEPT
Howard Hinnant91e2f262010-12-07 20:46:14 +00001351{
1352 return __o->fetch_xor(__op, __m);
1353}
Howard Hinnant4777bf22010-12-06 23:10:08 +00001354
Howard Hinnant770d1c42010-12-08 17:20:28 +00001355// flag type and operations
1356
1357typedef struct atomic_flag
1358{
David Chisnall83b2c842011-12-19 11:44:20 +00001359 _Atomic(bool) __a_;
Howard Hinnant770d1c42010-12-08 17:20:28 +00001360
1361 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant300c67a2012-04-11 20:14:21 +00001362 bool test_and_set(memory_order __m = memory_order_seq_cst) volatile _NOEXCEPT
Richard Smith6186c7f2012-04-11 18:55:46 +00001363 {return __c11_atomic_exchange(&__a_, true, __m);}
Howard Hinnant770d1c42010-12-08 17:20:28 +00001364 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant300c67a2012-04-11 20:14:21 +00001365 bool test_and_set(memory_order __m = memory_order_seq_cst) _NOEXCEPT
Richard Smith6186c7f2012-04-11 18:55:46 +00001366 {return __c11_atomic_exchange(&__a_, true, __m);}
Howard Hinnant770d1c42010-12-08 17:20:28 +00001367 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant300c67a2012-04-11 20:14:21 +00001368 void clear(memory_order __m = memory_order_seq_cst) volatile _NOEXCEPT
Richard Smith6186c7f2012-04-11 18:55:46 +00001369 {__c11_atomic_store(&__a_, false, __m);}
Howard Hinnant770d1c42010-12-08 17:20:28 +00001370 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant300c67a2012-04-11 20:14:21 +00001371 void clear(memory_order __m = memory_order_seq_cst) _NOEXCEPT
Richard Smith6186c7f2012-04-11 18:55:46 +00001372 {__c11_atomic_store(&__a_, false, __m);}
Howard Hinnant770d1c42010-12-08 17:20:28 +00001373
1374 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant74f4da72013-05-02 20:18:43 +00001375#ifndef _LIBCPP_HAS_NO_DEFAULTED_FUNCTIONS
1376 atomic_flag() _NOEXCEPT = default;
1377#else
1378 atomic_flag() _NOEXCEPT : __a_() {}
1379#endif // _LIBCPP_HAS_NO_DEFAULTED_FUNCTIONS
1380
Howard Hinnant770d1c42010-12-08 17:20:28 +00001381 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant300c67a2012-04-11 20:14:21 +00001382 atomic_flag(bool __b) _NOEXCEPT : __a_(__b) {}
Howard Hinnant770d1c42010-12-08 17:20:28 +00001383
1384#ifndef _LIBCPP_HAS_NO_DELETED_FUNCTIONS
1385 atomic_flag(const atomic_flag&) = delete;
1386 atomic_flag& operator=(const atomic_flag&) = delete;
1387 atomic_flag& operator=(const atomic_flag&) volatile = delete;
1388#else // _LIBCPP_HAS_NO_DELETED_FUNCTIONS
1389private:
1390 atomic_flag(const atomic_flag&);
1391 atomic_flag& operator=(const atomic_flag&);
1392 atomic_flag& operator=(const atomic_flag&) volatile;
1393#endif // _LIBCPP_HAS_NO_DELETED_FUNCTIONS
1394} atomic_flag;
1395
1396inline _LIBCPP_INLINE_VISIBILITY
1397bool
Howard Hinnant300c67a2012-04-11 20:14:21 +00001398atomic_flag_test_and_set(volatile atomic_flag* __o) _NOEXCEPT
Howard Hinnant770d1c42010-12-08 17:20:28 +00001399{
1400 return __o->test_and_set();
1401}
1402
1403inline _LIBCPP_INLINE_VISIBILITY
1404bool
Howard Hinnant300c67a2012-04-11 20:14:21 +00001405atomic_flag_test_and_set(atomic_flag* __o) _NOEXCEPT
Howard Hinnant770d1c42010-12-08 17:20:28 +00001406{
1407 return __o->test_and_set();
1408}
1409
1410inline _LIBCPP_INLINE_VISIBILITY
1411bool
Howard Hinnant300c67a2012-04-11 20:14:21 +00001412atomic_flag_test_and_set_explicit(volatile atomic_flag* __o, memory_order __m) _NOEXCEPT
Howard Hinnant770d1c42010-12-08 17:20:28 +00001413{
1414 return __o->test_and_set(__m);
1415}
1416
1417inline _LIBCPP_INLINE_VISIBILITY
1418bool
Howard Hinnant300c67a2012-04-11 20:14:21 +00001419atomic_flag_test_and_set_explicit(atomic_flag* __o, memory_order __m) _NOEXCEPT
Howard Hinnant770d1c42010-12-08 17:20:28 +00001420{
1421 return __o->test_and_set(__m);
1422}
1423
1424inline _LIBCPP_INLINE_VISIBILITY
1425void
Howard Hinnant300c67a2012-04-11 20:14:21 +00001426atomic_flag_clear(volatile atomic_flag* __o) _NOEXCEPT
Howard Hinnant770d1c42010-12-08 17:20:28 +00001427{
1428 __o->clear();
1429}
1430
1431inline _LIBCPP_INLINE_VISIBILITY
1432void
Howard Hinnant300c67a2012-04-11 20:14:21 +00001433atomic_flag_clear(atomic_flag* __o) _NOEXCEPT
Howard Hinnant770d1c42010-12-08 17:20:28 +00001434{
1435 __o->clear();
1436}
1437
1438inline _LIBCPP_INLINE_VISIBILITY
1439void
Howard Hinnant300c67a2012-04-11 20:14:21 +00001440atomic_flag_clear_explicit(volatile atomic_flag* __o, memory_order __m) _NOEXCEPT
Howard Hinnant770d1c42010-12-08 17:20:28 +00001441{
1442 __o->clear(__m);
1443}
1444
1445inline _LIBCPP_INLINE_VISIBILITY
1446void
Howard Hinnant300c67a2012-04-11 20:14:21 +00001447atomic_flag_clear_explicit(atomic_flag* __o, memory_order __m) _NOEXCEPT
Howard Hinnant770d1c42010-12-08 17:20:28 +00001448{
1449 __o->clear(__m);
1450}
1451
1452// fences
1453
1454inline _LIBCPP_INLINE_VISIBILITY
1455void
Howard Hinnant300c67a2012-04-11 20:14:21 +00001456atomic_thread_fence(memory_order __m) _NOEXCEPT
Howard Hinnant770d1c42010-12-08 17:20:28 +00001457{
Richard Smith6186c7f2012-04-11 18:55:46 +00001458 __c11_atomic_thread_fence(__m);
Howard Hinnant770d1c42010-12-08 17:20:28 +00001459}
1460
1461inline _LIBCPP_INLINE_VISIBILITY
1462void
Howard Hinnant300c67a2012-04-11 20:14:21 +00001463atomic_signal_fence(memory_order __m) _NOEXCEPT
Howard Hinnant770d1c42010-12-08 17:20:28 +00001464{
Richard Smith6186c7f2012-04-11 18:55:46 +00001465 __c11_atomic_signal_fence(__m);
Howard Hinnant770d1c42010-12-08 17:20:28 +00001466}
1467
Howard Hinnantd2f6afb2010-12-07 23:24:41 +00001468// Atomics for standard typedef types
1469
Howard Hinnant6ae47052013-01-04 18:58:50 +00001470typedef atomic<bool> atomic_bool;
Howard Hinnantd2f6afb2010-12-07 23:24:41 +00001471typedef atomic<char> atomic_char;
1472typedef atomic<signed char> atomic_schar;
1473typedef atomic<unsigned char> atomic_uchar;
1474typedef atomic<short> atomic_short;
1475typedef atomic<unsigned short> atomic_ushort;
1476typedef atomic<int> atomic_int;
1477typedef atomic<unsigned int> atomic_uint;
1478typedef atomic<long> atomic_long;
1479typedef atomic<unsigned long> atomic_ulong;
1480typedef atomic<long long> atomic_llong;
1481typedef atomic<unsigned long long> atomic_ullong;
1482typedef atomic<char16_t> atomic_char16_t;
1483typedef atomic<char32_t> atomic_char32_t;
1484typedef atomic<wchar_t> atomic_wchar_t;
1485
1486typedef atomic<int_least8_t> atomic_int_least8_t;
1487typedef atomic<uint_least8_t> atomic_uint_least8_t;
1488typedef atomic<int_least16_t> atomic_int_least16_t;
1489typedef atomic<uint_least16_t> atomic_uint_least16_t;
1490typedef atomic<int_least32_t> atomic_int_least32_t;
1491typedef atomic<uint_least32_t> atomic_uint_least32_t;
1492typedef atomic<int_least64_t> atomic_int_least64_t;
1493typedef atomic<uint_least64_t> atomic_uint_least64_t;
1494
1495typedef atomic<int_fast8_t> atomic_int_fast8_t;
1496typedef atomic<uint_fast8_t> atomic_uint_fast8_t;
1497typedef atomic<int_fast16_t> atomic_int_fast16_t;
1498typedef atomic<uint_fast16_t> atomic_uint_fast16_t;
1499typedef atomic<int_fast32_t> atomic_int_fast32_t;
1500typedef atomic<uint_fast32_t> atomic_uint_fast32_t;
1501typedef atomic<int_fast64_t> atomic_int_fast64_t;
1502typedef atomic<uint_fast64_t> atomic_uint_fast64_t;
1503
1504typedef atomic<intptr_t> atomic_intptr_t;
1505typedef atomic<uintptr_t> atomic_uintptr_t;
1506typedef atomic<size_t> atomic_size_t;
1507typedef atomic<ptrdiff_t> atomic_ptrdiff_t;
1508typedef atomic<intmax_t> atomic_intmax_t;
1509typedef atomic<uintmax_t> atomic_uintmax_t;
1510
Howard Hinnant767ae2b2010-09-29 21:20:03 +00001511#define ATOMIC_FLAG_INIT {false}
Howard Hinnant611fdaf2010-10-04 18:52:54 +00001512#define ATOMIC_VAR_INIT(__v) {__v}
1513
Howard Hinnant770d1c42010-12-08 17:20:28 +00001514// lock-free property
Howard Hinnant611fdaf2010-10-04 18:52:54 +00001515
Howard Hinnant7b9d6a82013-01-21 20:39:41 +00001516#define ATOMIC_BOOL_LOCK_FREE __GCC_ATOMIC_BOOL_LOCK_FREE
1517#define ATOMIC_CHAR_LOCK_FREE __GCC_ATOMIC_CHAR_LOCK_FREE
1518#define ATOMIC_CHAR16_T_LOCK_FREE __GCC_ATOMIC_CHAR16_T_LOCK_FREE
1519#define ATOMIC_CHAR32_T_LOCK_FREE __GCC_ATOMIC_CHAR32_T_LOCK_FREE
1520#define ATOMIC_WCHAR_T_LOCK_FREE __GCC_ATOMIC_WCHAR_T_LOCK_FREE
1521#define ATOMIC_SHORT_LOCK_FREE __GCC_ATOMIC_SHORT_LOCK_FREE
1522#define ATOMIC_INT_LOCK_FREE __GCC_ATOMIC_INT_LOCK_FREE
1523#define ATOMIC_LONG_LOCK_FREE __GCC_ATOMIC_LONG_LOCK_FREE
1524#define ATOMIC_LLONG_LOCK_FREE __GCC_ATOMIC_LLONG_LOCK_FREE
1525#define ATOMIC_POINTER_LOCK_FREE __GCC_ATOMIC_POINTER_LOCK_FREE
Howard Hinnant770d1c42010-12-08 17:20:28 +00001526
Howard Hinnant154002b2011-03-31 16:39:39 +00001527#endif // !__has_feature(cxx_atomic)
1528
Howard Hinnant8f73c632010-09-27 21:17:38 +00001529_LIBCPP_END_NAMESPACE_STD
1530
1531#endif // _LIBCPP_ATOMIC