[docs] Add LICENSE.txt to the root of the mono-repo
[llvm-project.git] / clang / lib / Headers / stdatomic.h
blob648af44f2a64174857f11ceb0ec1390d2f51948d
1 /*===---- stdatomic.h - Standard header for atomic types and operations -----===
3 * Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 * See https://llvm.org/LICENSE.txt for license information.
5 * SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 *===-----------------------------------------------------------------------===
8 */
10 #ifndef __CLANG_STDATOMIC_H
11 #define __CLANG_STDATOMIC_H
13 /* If we're hosted, fall back to the system's stdatomic.h. FreeBSD, for
14 * example, already has a Clang-compatible stdatomic.h header.
16 * Exclude the MSVC path as well as the MSVC header as of the 14.31.30818
17 * explicitly disallows `stdatomic.h` in the C mode via an `#error`. Fallback
18 * to the clang resource header until that is fully supported.
20 #if __STDC_HOSTED__ && \
21 __has_include_next(<stdatomic.h>) && !(defined(_MSC_VER) && !defined(__cplusplus))
22 # include_next <stdatomic.h>
23 #else
25 #include <stddef.h>
26 #include <stdint.h>
28 #ifdef __cplusplus
29 extern "C" {
30 #endif
32 /* 7.17.1 Introduction */
34 #define ATOMIC_BOOL_LOCK_FREE __CLANG_ATOMIC_BOOL_LOCK_FREE
35 #define ATOMIC_CHAR_LOCK_FREE __CLANG_ATOMIC_CHAR_LOCK_FREE
36 #define ATOMIC_CHAR16_T_LOCK_FREE __CLANG_ATOMIC_CHAR16_T_LOCK_FREE
37 #define ATOMIC_CHAR32_T_LOCK_FREE __CLANG_ATOMIC_CHAR32_T_LOCK_FREE
38 #define ATOMIC_WCHAR_T_LOCK_FREE __CLANG_ATOMIC_WCHAR_T_LOCK_FREE
39 #define ATOMIC_SHORT_LOCK_FREE __CLANG_ATOMIC_SHORT_LOCK_FREE
40 #define ATOMIC_INT_LOCK_FREE __CLANG_ATOMIC_INT_LOCK_FREE
41 #define ATOMIC_LONG_LOCK_FREE __CLANG_ATOMIC_LONG_LOCK_FREE
42 #define ATOMIC_LLONG_LOCK_FREE __CLANG_ATOMIC_LLONG_LOCK_FREE
43 #define ATOMIC_POINTER_LOCK_FREE __CLANG_ATOMIC_POINTER_LOCK_FREE
45 /* 7.17.2 Initialization */
47 #define ATOMIC_VAR_INIT(value) (value)
48 #if ((defined(__STDC_VERSION__) && __STDC_VERSION__ >= 201710L) || \
49 (defined(__cplusplus) && __cplusplus >= 202002L)) && \
50 !defined(_CLANG_DISABLE_CRT_DEPRECATION_WARNINGS)
51 /* ATOMIC_VAR_INIT was deprecated in C17 and C++20. */
52 #pragma clang deprecated(ATOMIC_VAR_INIT)
53 #endif
54 #define atomic_init __c11_atomic_init
56 /* 7.17.3 Order and consistency */
58 typedef enum memory_order {
59 memory_order_relaxed = __ATOMIC_RELAXED,
60 memory_order_consume = __ATOMIC_CONSUME,
61 memory_order_acquire = __ATOMIC_ACQUIRE,
62 memory_order_release = __ATOMIC_RELEASE,
63 memory_order_acq_rel = __ATOMIC_ACQ_REL,
64 memory_order_seq_cst = __ATOMIC_SEQ_CST
65 } memory_order;
67 #define kill_dependency(y) (y)
69 /* 7.17.4 Fences */
71 /* These should be provided by the libc implementation. */
72 void atomic_thread_fence(memory_order);
73 void atomic_signal_fence(memory_order);
75 #define atomic_thread_fence(order) __c11_atomic_thread_fence(order)
76 #define atomic_signal_fence(order) __c11_atomic_signal_fence(order)
78 /* 7.17.5 Lock-free property */
80 #define atomic_is_lock_free(obj) __c11_atomic_is_lock_free(sizeof(*(obj)))
82 /* 7.17.6 Atomic integer types */
84 #ifdef __cplusplus
85 typedef _Atomic(bool) atomic_bool;
86 #else
87 typedef _Atomic(_Bool) atomic_bool;
88 #endif
89 typedef _Atomic(char) atomic_char;
90 typedef _Atomic(signed char) atomic_schar;
91 typedef _Atomic(unsigned char) atomic_uchar;
92 typedef _Atomic(short) atomic_short;
93 typedef _Atomic(unsigned short) atomic_ushort;
94 typedef _Atomic(int) atomic_int;
95 typedef _Atomic(unsigned int) atomic_uint;
96 typedef _Atomic(long) atomic_long;
97 typedef _Atomic(unsigned long) atomic_ulong;
98 typedef _Atomic(long long) atomic_llong;
99 typedef _Atomic(unsigned long long) atomic_ullong;
100 typedef _Atomic(uint_least16_t) atomic_char16_t;
101 typedef _Atomic(uint_least32_t) atomic_char32_t;
102 typedef _Atomic(wchar_t) atomic_wchar_t;
103 typedef _Atomic(int_least8_t) atomic_int_least8_t;
104 typedef _Atomic(uint_least8_t) atomic_uint_least8_t;
105 typedef _Atomic(int_least16_t) atomic_int_least16_t;
106 typedef _Atomic(uint_least16_t) atomic_uint_least16_t;
107 typedef _Atomic(int_least32_t) atomic_int_least32_t;
108 typedef _Atomic(uint_least32_t) atomic_uint_least32_t;
109 typedef _Atomic(int_least64_t) atomic_int_least64_t;
110 typedef _Atomic(uint_least64_t) atomic_uint_least64_t;
111 typedef _Atomic(int_fast8_t) atomic_int_fast8_t;
112 typedef _Atomic(uint_fast8_t) atomic_uint_fast8_t;
113 typedef _Atomic(int_fast16_t) atomic_int_fast16_t;
114 typedef _Atomic(uint_fast16_t) atomic_uint_fast16_t;
115 typedef _Atomic(int_fast32_t) atomic_int_fast32_t;
116 typedef _Atomic(uint_fast32_t) atomic_uint_fast32_t;
117 typedef _Atomic(int_fast64_t) atomic_int_fast64_t;
118 typedef _Atomic(uint_fast64_t) atomic_uint_fast64_t;
119 typedef _Atomic(intptr_t) atomic_intptr_t;
120 typedef _Atomic(uintptr_t) atomic_uintptr_t;
121 typedef _Atomic(size_t) atomic_size_t;
122 typedef _Atomic(ptrdiff_t) atomic_ptrdiff_t;
123 typedef _Atomic(intmax_t) atomic_intmax_t;
124 typedef _Atomic(uintmax_t) atomic_uintmax_t;
126 /* 7.17.7 Operations on atomic types */
128 #define atomic_store(object, desired) __c11_atomic_store(object, desired, __ATOMIC_SEQ_CST)
129 #define atomic_store_explicit __c11_atomic_store
131 #define atomic_load(object) __c11_atomic_load(object, __ATOMIC_SEQ_CST)
132 #define atomic_load_explicit __c11_atomic_load
134 #define atomic_exchange(object, desired) __c11_atomic_exchange(object, desired, __ATOMIC_SEQ_CST)
135 #define atomic_exchange_explicit __c11_atomic_exchange
137 #define atomic_compare_exchange_strong(object, expected, desired) __c11_atomic_compare_exchange_strong(object, expected, desired, __ATOMIC_SEQ_CST, __ATOMIC_SEQ_CST)
138 #define atomic_compare_exchange_strong_explicit __c11_atomic_compare_exchange_strong
140 #define atomic_compare_exchange_weak(object, expected, desired) __c11_atomic_compare_exchange_weak(object, expected, desired, __ATOMIC_SEQ_CST, __ATOMIC_SEQ_CST)
141 #define atomic_compare_exchange_weak_explicit __c11_atomic_compare_exchange_weak
143 #define atomic_fetch_add(object, operand) __c11_atomic_fetch_add(object, operand, __ATOMIC_SEQ_CST)
144 #define atomic_fetch_add_explicit __c11_atomic_fetch_add
146 #define atomic_fetch_sub(object, operand) __c11_atomic_fetch_sub(object, operand, __ATOMIC_SEQ_CST)
147 #define atomic_fetch_sub_explicit __c11_atomic_fetch_sub
149 #define atomic_fetch_or(object, operand) __c11_atomic_fetch_or(object, operand, __ATOMIC_SEQ_CST)
150 #define atomic_fetch_or_explicit __c11_atomic_fetch_or
152 #define atomic_fetch_xor(object, operand) __c11_atomic_fetch_xor(object, operand, __ATOMIC_SEQ_CST)
153 #define atomic_fetch_xor_explicit __c11_atomic_fetch_xor
155 #define atomic_fetch_and(object, operand) __c11_atomic_fetch_and(object, operand, __ATOMIC_SEQ_CST)
156 #define atomic_fetch_and_explicit __c11_atomic_fetch_and
158 /* 7.17.8 Atomic flag type and operations */
160 typedef struct atomic_flag { atomic_bool _Value; } atomic_flag;
162 #define ATOMIC_FLAG_INIT { 0 }
164 /* These should be provided by the libc implementation. */
165 #ifdef __cplusplus
166 bool atomic_flag_test_and_set(volatile atomic_flag *);
167 bool atomic_flag_test_and_set_explicit(volatile atomic_flag *, memory_order);
168 #else
169 _Bool atomic_flag_test_and_set(volatile atomic_flag *);
170 _Bool atomic_flag_test_and_set_explicit(volatile atomic_flag *, memory_order);
171 #endif
172 void atomic_flag_clear(volatile atomic_flag *);
173 void atomic_flag_clear_explicit(volatile atomic_flag *, memory_order);
175 #define atomic_flag_test_and_set(object) __c11_atomic_exchange(&(object)->_Value, 1, __ATOMIC_SEQ_CST)
176 #define atomic_flag_test_and_set_explicit(object, order) __c11_atomic_exchange(&(object)->_Value, 1, order)
178 #define atomic_flag_clear(object) __c11_atomic_store(&(object)->_Value, 0, __ATOMIC_SEQ_CST)
179 #define atomic_flag_clear_explicit(object, order) __c11_atomic_store(&(object)->_Value, 0, order)
181 #ifdef __cplusplus
183 #endif
185 #endif /* __STDC_HOSTED__ */
186 #endif /* __CLANG_STDATOMIC_H */