aboutsummaryrefslogtreecommitdiff
path: root/include/EASTL/internal/atomic/atomic.h
blob: e1c5286edad4b0b51b14617a4f8cd2b7219f7740 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
/////////////////////////////////////////////////////////////////////////////////
// Copyright (c) Electronic Arts Inc. All rights reserved.
/////////////////////////////////////////////////////////////////////////////////


#ifndef EASTL_ATOMIC_INTERNAL_H
#define EASTL_ATOMIC_INTERNAL_H

#if defined(EA_PRAGMA_ONCE_SUPPORTED)
	#pragma once
#endif


#include <EASTL/internal/config.h>
#include <EASTL/internal/move_help.h>
#include <EASTL/internal/memory_base.h>
#include <EASTL/type_traits.h>

#include "atomic_macros.h"
#include "atomic_casts.h"

#include "atomic_memory_order.h"
#include "atomic_asserts.h"

#include "atomic_size_aligned.h"
#include "atomic_base_width.h"

#include "atomic_integral.h"

#include "atomic_pointer.h"


/////////////////////////////////////////////////////////////////////////////////


/**
 * NOTE:
 *
 * All of the actual implementation is done via the ATOMIC_MACROS in the compiler or arch sub folders.
 * The C++ code is merely boilerplate around these macros that actually implement the atomic operations.
 * The C++ boilerplate is also hidden behind macros.
 * This may seem more complicated but this is all meant to reduce copy-pasting and to ensure all operations
 * all end up going down to one macro that does the actual implementation.
 * The reduced code duplication makes it easier to verify the implementation and reason about it.
 * Ensures we do not have to re-implement the same code for compilers that do not support generic builtins such as MSVC.
 * Ensures for compilers that have separate intrinsics for different widths, that C++ boilerplate isn't copy-pasted leading to programmer errors.
 * Ensures if we ever have to implement a new platform, only the low-level leaf macros have to be implemented, everything else will be generated for you.
 */


#include "atomic_push_compiler_options.h"


namespace eastl
{


namespace internal
{


	template <typename T>
	struct is_atomic_lockfree_size
	{
		static EASTL_CPP17_INLINE_VARIABLE constexpr bool value = false ||
		#if defined(EASTL_ATOMIC_HAS_8BIT)
			sizeof(T) == 1 ||
		#endif
		#if defined(EASTL_ATOMIC_HAS_16BIT)
			sizeof(T) == 2 ||
		#endif
		#if defined(EASTL_ATOMIC_HAS_32BIT)
			sizeof(T) == 4 ||
		#endif
		#if defined(EASTL_ATOMIC_HAS_64BIT)
			sizeof(T) == 8 ||
		#endif
		#if defined(EASTL_ATOMIC_HAS_128BIT)
			sizeof(T) == 16 ||
		#endif
		false;
	};


	template <typename T>
	struct is_user_type_suitable_for_primary_template
	{
		static EASTL_CPP17_INLINE_VARIABLE constexpr bool value = eastl::internal::is_atomic_lockfree_size<T>::value;
	};


	template <typename T>
	using select_atomic_inherit_0 = typename eastl::conditional<eastl::is_same_v<bool, T> || eastl::internal::is_user_type_suitable_for_primary_template<T>::value,
																eastl::internal::atomic_base_width<T>, /* True */
																eastl::internal::atomic_invalid_type<T> /* False */
																>::type;

	template <typename T>
	using select_atomic_inherit  = select_atomic_inherit_0<T>;


} // namespace internal


#define EASTL_ATOMIC_CLASS_IMPL(type, base, valueType, differenceType)	\
	private:															\
																		\
		EASTL_ATOMIC_STATIC_ASSERT_TYPE(type);							\
																		\
		using Base = base;												\
																		\
	public:																\
																		\
		typedef valueType value_type;									\
		typedef differenceType difference_type;							\
																		\
	public:																\
																		\
		static EASTL_CPP17_INLINE_VARIABLE constexpr bool is_always_lock_free = eastl::internal::is_atomic_lockfree_size<type>::value; \
																		\
	public: /* deleted ctors && assignment operators */					\
																		\
		atomic(const atomic&) EA_NOEXCEPT = delete;						\
																		\
		atomic& operator=(const atomic&)          EA_NOEXCEPT = delete; \
		atomic& operator=(const atomic&) volatile EA_NOEXCEPT = delete; \
																		\
	public: /* ctors */													\
																		\
		EA_CONSTEXPR atomic(type desired) EA_NOEXCEPT					\
			: Base{ desired }											\
		{																\
		}																\
																		\
		EA_CONSTEXPR atomic() EA_NOEXCEPT_IF(eastl::is_nothrow_default_constructible_v<type>) = default; \
																		\
	public:																\
																		\
		bool is_lock_free() const EA_NOEXCEPT							\
		{																\
			return eastl::internal::is_atomic_lockfree_size<type>::value; \
		}																\
																		\
		bool is_lock_free() const volatile EA_NOEXCEPT					\
		{																\
			EASTL_ATOMIC_STATIC_ASSERT_VOLATILE_MEM_FN(type);			\
			return false;												\
		}


#define EASTL_ATOMIC_USING_ATOMIC_BASE(type)		\
	public:											\
													\
		using Base::operator=;						\
		using Base::store;							\
		using Base::load;							\
		using Base::exchange;						\
		using Base::compare_exchange_weak;			\
		using Base::compare_exchange_strong;		\
													\
	public:											\
													\
		operator type() const volatile EA_NOEXCEPT	\
		{											\
			EASTL_ATOMIC_STATIC_ASSERT_VOLATILE_MEM_FN(T); \
		}											\
													\
		operator type() const EA_NOEXCEPT			\
		{											\
			return load(eastl::memory_order_seq_cst); \
		}


#define EASTL_ATOMIC_USING_ATOMIC_INTEGRAL()	\
	public:										\
												\
		using Base::fetch_add;					\
		using Base::add_fetch;					\
												\
		using Base::fetch_sub;					\
		using Base::sub_fetch;					\
												\
		using Base::fetch_and;					\
		using Base::and_fetch;					\
												\
		using Base::fetch_or;					\
		using Base::or_fetch;					\
												\
		using Base::fetch_xor;					\
		using Base::xor_fetch;					\
												\
		using Base::operator++;					\
		using Base::operator--;					\
		using Base::operator+=;					\
		using Base::operator-=;					\
		using Base::operator&=;					\
		using Base::operator|=;					\
		using Base::operator^=;


#define EASTL_ATOMIC_USING_ATOMIC_POINTER()		\
	public:										\
												\
		using Base::fetch_add;					\
		using Base::add_fetch;					\
		using Base::fetch_sub;					\
		using Base::sub_fetch;					\
												\
		using Base::operator++;					\
		using Base::operator--;					\
		using Base::operator+=;					\
		using Base::operator-=;


template <typename T, typename = void>
struct atomic : protected eastl::internal::select_atomic_inherit<T>
{
	EASTL_ATOMIC_CLASS_IMPL(T, eastl::internal::select_atomic_inherit<T>, T, T)

	EASTL_ATOMIC_USING_ATOMIC_BASE(T)
};


template <typename T>
struct atomic<T, eastl::enable_if_t<eastl::is_integral_v<T> && !eastl::is_same_v<bool, T>>> : protected eastl::internal::atomic_integral_width<T>
{
	EASTL_ATOMIC_CLASS_IMPL(T, eastl::internal::atomic_integral_width<T>, T, T)

	EASTL_ATOMIC_USING_ATOMIC_BASE(T)

	EASTL_ATOMIC_USING_ATOMIC_INTEGRAL()
};


template <typename T>
struct atomic<T*> : protected eastl::internal::atomic_pointer_width<T*>
{
	EASTL_ATOMIC_CLASS_IMPL(T*, eastl::internal::atomic_pointer_width<T*>, T*, ptrdiff_t)

	EASTL_ATOMIC_USING_ATOMIC_BASE(T*)

	EASTL_ATOMIC_USING_ATOMIC_POINTER()
};


} // namespace eastl


#include "atomic_pop_compiler_options.h"


#endif /* EASTL_ATOMIC_INTERNAL_H */