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 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330
|
#ifndef AWS_COMMON_ATOMICS_H
#define AWS_COMMON_ATOMICS_H
#include <aws/common/common.h>
/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
AWS_PUSH_SANE_WARNING_LEVEL
/**
* struct aws_atomic_var represents an atomic variable - a value which can hold an integer or pointer
* that can be manipulated atomically. struct aws_atomic_vars should normally only be manipulated
* with atomics methods defined in this header.
*/
struct aws_atomic_var {
void *value;
};
/* Helpers for extracting the integer and pointer values from aws_atomic_var. */
#define AWS_ATOMIC_VAR_PTRVAL(var) ((var)->value)
#define AWS_ATOMIC_VAR_INTVAL(var) (*(aws_atomic_impl_int_t *)(var))
/*
* This enumeration specifies the memory ordering properties requested for a particular
* atomic operation. The atomic operation may provide stricter ordering than requested.
* Note that, within a single thread, all operations are still sequenced (that is, a thread
* sees its own atomic writes and reads happening in program order, but other threads may
* disagree on this ordering).
*
* The behavior of these memory orderings are the same as in the C11 atomics API; however,
* we only implement a subset that can be portably implemented on the compilers we target.
*/
enum aws_memory_order {
/**
* No particular ordering constraints are guaranteed relative to other
* operations at all; we merely ensure that the operation itself is atomic.
*/
aws_memory_order_relaxed = 0,
/* aws_memory_order_consume - not currently implemented */
/**
* Specifies acquire ordering. No reads or writes on the current thread can be
* reordered to happen before this operation. This is typically paired with a release
* ordering; any writes that happened on the releasing operation will be visible
* after the paired acquire operation.
*
* Acquire ordering is only meaningful on load or load-store operations.
*/
aws_memory_order_acquire = 2, /* leave a spot for consume if we ever add it */
/**
* Specifies release order. No reads or writes can be reordered to come after this
* operation. Typically paired with an acquire operation.
*
* Release ordering is only meaningful on store or load-store operations.
*/
aws_memory_order_release,
/**
* Specifies acquire-release order; if this operation acts as a load, it acts as an
* acquire operation; if it acts as a store, it acts as a release operation; if it's
* a load-store, it does both.
*/
aws_memory_order_acq_rel,
/*
* Specifies sequentially consistent order. This behaves as acq_rel, but in addition,
* all seq_cst operations appear to occur in some globally consistent order.
*
* TODO: Figure out how to correctly implement this in MSVC. It appears that interlocked
* functions provide only acq_rel ordering.
*/
aws_memory_order_seq_cst
};
/**
* Statically initializes an aws_atomic_var to a given size_t value.
*/
#define AWS_ATOMIC_INIT_INT(x) \
{ .value = (void *)(uintptr_t)(x) }
/**
* Statically initializes an aws_atomic_var to a given void * value.
*/
#define AWS_ATOMIC_INIT_PTR(x) \
{ .value = (void *)(x) }
AWS_EXTERN_C_BEGIN
/*
* Note: We do not use the C11 atomics API; this is because we want to make sure the representation
* (and behavior) of atomic values is consistent, regardless of what --std= flag you pass to your compiler.
* Since C11 atomics can silently introduce locks, we run the risk of creating such ABI inconsistencies
* if we decide based on compiler features which atomics API to use, and in practice we expect to have
* either the GNU or MSVC atomics anyway.
*
* As future work, we could test to see if the C11 atomics API on this platform behaves consistently
* with the other APIs and use it if it does.
*/
/**
* Initializes an atomic variable with an integer value. This operation should be done before any
* other operations on this atomic variable, and must be done before attempting any parallel operations.
*
* This operation does not imply a barrier. Ensure that you use an acquire-release barrier (or stronger)
* when communicating the fact that initialization is complete to the other thread. Launching the thread
* implies a sufficiently strong barrier.
*/
AWS_STATIC_IMPL
void aws_atomic_init_int(volatile struct aws_atomic_var *var, size_t n);
/**
* Initializes an atomic variable with a pointer value. This operation should be done before any
* other operations on this atomic variable, and must be done before attempting any parallel operations.
*
* This operation does not imply a barrier. Ensure that you use an acquire-release barrier (or stronger)
* when communicating the fact that initialization is complete to the other thread. Launching the thread
* implies a sufficiently strong barrier.
*/
AWS_STATIC_IMPL
void aws_atomic_init_ptr(volatile struct aws_atomic_var *var, void *p);
/**
* Reads an atomic var as an integer, using the specified ordering, and returns the result.
*/
AWS_STATIC_IMPL
size_t aws_atomic_load_int_explicit(volatile const struct aws_atomic_var *var, enum aws_memory_order memory_order);
/**
* Reads an atomic var as an integer, using sequentially consistent ordering, and returns the result.
*/
AWS_STATIC_IMPL
size_t aws_atomic_load_int(volatile const struct aws_atomic_var *var);
/**
* Reads an atomic var as a pointer, using the specified ordering, and returns the result.
*/
AWS_STATIC_IMPL
void *aws_atomic_load_ptr_explicit(volatile const struct aws_atomic_var *var, enum aws_memory_order memory_order);
/**
* Reads an atomic var as a pointer, using sequentially consistent ordering, and returns the result.
*/
AWS_STATIC_IMPL
void *aws_atomic_load_ptr(volatile const struct aws_atomic_var *var);
/**
* Stores an integer into an atomic var, using the specified ordering.
*/
AWS_STATIC_IMPL
void aws_atomic_store_int_explicit(volatile struct aws_atomic_var *var, size_t n, enum aws_memory_order memory_order);
/**
* Stores an integer into an atomic var, using sequentially consistent ordering.
*/
AWS_STATIC_IMPL
void aws_atomic_store_int(volatile struct aws_atomic_var *var, size_t n);
/**
* Stores a pointer into an atomic var, using the specified ordering.
*/
AWS_STATIC_IMPL
void aws_atomic_store_ptr_explicit(volatile struct aws_atomic_var *var, void *p, enum aws_memory_order memory_order);
/**
* Stores a pointer into an atomic var, using sequentially consistent ordering.
*/
AWS_STATIC_IMPL
void aws_atomic_store_ptr(volatile struct aws_atomic_var *var, void *p);
/**
* Exchanges an integer with the value in an atomic_var, using the specified ordering.
* Returns the value that was previously in the atomic_var.
*/
AWS_STATIC_IMPL
size_t aws_atomic_exchange_int_explicit(
volatile struct aws_atomic_var *var,
size_t n,
enum aws_memory_order memory_order);
/**
* Exchanges an integer with the value in an atomic_var, using sequentially consistent ordering.
* Returns the value that was previously in the atomic_var.
*/
AWS_STATIC_IMPL
size_t aws_atomic_exchange_int(volatile struct aws_atomic_var *var, size_t n);
/**
* Exchanges a pointer with the value in an atomic_var, using the specified ordering.
* Returns the value that was previously in the atomic_var.
*/
AWS_STATIC_IMPL
void *aws_atomic_exchange_ptr_explicit(
volatile struct aws_atomic_var *var,
void *p,
enum aws_memory_order memory_order);
/**
* Exchanges an integer with the value in an atomic_var, using sequentially consistent ordering.
* Returns the value that was previously in the atomic_var.
*/
AWS_STATIC_IMPL
void *aws_atomic_exchange_ptr(volatile struct aws_atomic_var *var, void *p);
/**
* Atomically compares *var to *expected; if they are equal, atomically sets *var = desired. Otherwise, *expected is set
* to the value in *var. On success, the memory ordering used was order_success; otherwise, it was order_failure.
* order_failure must be no stronger than order_success, and must not be release or acq_rel.
* Returns true if the compare was successful and the variable updated to desired.
*/
AWS_STATIC_IMPL
bool aws_atomic_compare_exchange_int_explicit(
volatile struct aws_atomic_var *var,
size_t *expected,
size_t desired,
enum aws_memory_order order_success,
enum aws_memory_order order_failure);
/**
* Atomically compares *var to *expected; if they are equal, atomically sets *var = desired. Otherwise, *expected is set
* to the value in *var. Uses sequentially consistent memory ordering, regardless of success or failure.
* Returns true if the compare was successful and the variable updated to desired.
*/
AWS_STATIC_IMPL
bool aws_atomic_compare_exchange_int(volatile struct aws_atomic_var *var, size_t *expected, size_t desired);
/**
* Atomically compares *var to *expected; if they are equal, atomically sets *var = desired. Otherwise, *expected is set
* to the value in *var. On success, the memory ordering used was order_success; otherwise, it was order_failure.
* order_failure must be no stronger than order_success, and must not be release or acq_rel.
* Returns true if the compare was successful and the variable updated to desired.
*/
AWS_STATIC_IMPL
bool aws_atomic_compare_exchange_ptr_explicit(
volatile struct aws_atomic_var *var,
void **expected,
void *desired,
enum aws_memory_order order_success,
enum aws_memory_order order_failure);
/**
* Atomically compares *var to *expected; if they are equal, atomically sets *var = desired. Otherwise, *expected is set
* to the value in *var. Uses sequentially consistent memory ordering, regardless of success or failure.
* Returns true if the compare was successful and the variable updated to desired.
*/
AWS_STATIC_IMPL
bool aws_atomic_compare_exchange_ptr(volatile struct aws_atomic_var *var, void **expected, void *desired);
/**
* Atomically adds n to *var, and returns the previous value of *var.
*/
AWS_STATIC_IMPL
size_t aws_atomic_fetch_add_explicit(volatile struct aws_atomic_var *var, size_t n, enum aws_memory_order order);
/**
* Atomically subtracts n from *var, and returns the previous value of *var.
*/
AWS_STATIC_IMPL
size_t aws_atomic_fetch_sub_explicit(volatile struct aws_atomic_var *var, size_t n, enum aws_memory_order order);
/**
* Atomically ORs n with *var, and returns the previous value of *var.
*/
AWS_STATIC_IMPL
size_t aws_atomic_fetch_or_explicit(volatile struct aws_atomic_var *var, size_t n, enum aws_memory_order order);
/**
* Atomically ANDs n with *var, and returns the previous value of *var.
*/
AWS_STATIC_IMPL
size_t aws_atomic_fetch_and_explicit(volatile struct aws_atomic_var *var, size_t n, enum aws_memory_order order);
/**
* Atomically XORs n with *var, and returns the previous value of *var.
*/
AWS_STATIC_IMPL
size_t aws_atomic_fetch_xor_explicit(volatile struct aws_atomic_var *var, size_t n, enum aws_memory_order order);
/**
* Atomically adds n to *var, and returns the previous value of *var.
* Uses sequentially consistent ordering.
*/
AWS_STATIC_IMPL
size_t aws_atomic_fetch_add(volatile struct aws_atomic_var *var, size_t n);
/**
* Atomically subtracts n from *var, and returns the previous value of *var.
* Uses sequentially consistent ordering.
*/
AWS_STATIC_IMPL
size_t aws_atomic_fetch_sub(volatile struct aws_atomic_var *var, size_t n);
/**
* Atomically ands n into *var, and returns the previous value of *var.
* Uses sequentially consistent ordering.
*/
AWS_STATIC_IMPL
size_t aws_atomic_fetch_and(volatile struct aws_atomic_var *var, size_t n);
/**
* Atomically ors n into *var, and returns the previous value of *var.
* Uses sequentially consistent ordering.
*/
AWS_STATIC_IMPL
size_t aws_atomic_fetch_or(volatile struct aws_atomic_var *var, size_t n);
/**
* Atomically xors n into *var, and returns the previous value of *var.
* Uses sequentially consistent ordering.
*/
AWS_STATIC_IMPL
size_t aws_atomic_fetch_xor(volatile struct aws_atomic_var *var, size_t n);
/**
* Provides the same reordering guarantees as an atomic operation with the specified memory order, without
* needing to actually perform an atomic operation.
*/
AWS_STATIC_IMPL
void aws_atomic_thread_fence(enum aws_memory_order order);
#ifndef AWS_NO_STATIC_IMPL
# include <aws/common/atomics.inl>
#endif /* AWS_NO_STATIC_IMPL */
AWS_EXTERN_C_END
AWS_POP_SANE_WARNING_LEVEL
#endif
|