HPCToolkit
|
#include <stddef.h>
#include <stdint.h>
Go to the source code of this file.
Classes | |
struct | atomic_flag |
Macros | |
#define | __has_feature(x) 0 |
#define | __has_builtin(x) 0 |
#define | __GNUC_PREREQ__(maj, min) 0 |
#define | _Atomic(T) struct { volatile __typeof__(T) __val; } |
#define | ATOMIC_VAR_INIT(value) { .__val = (value) } |
#define | atomic_init(obj, value) ((void)((obj)->__val = (value))) |
#define | __ATOMIC_RELAXED 0 |
#define | __ATOMIC_CONSUME 1 |
#define | __ATOMIC_ACQUIRE 2 |
#define | __ATOMIC_RELEASE 3 |
#define | __ATOMIC_ACQ_REL 4 |
#define | __ATOMIC_SEQ_CST 5 |
#define | __unused |
#define | atomic_is_lock_free(obj) ((void)(obj), sizeof((obj)->__val) <= sizeof(void *)) |
#define | __atomic_apply_stride(object, operand) (((__typeof__((object)->__val))0) + (operand)) |
#define | atomic_compare_exchange_strong_explicit(object, expected, desired, success, failure) |
#define | atomic_compare_exchange_weak_explicit(object, expected, desired, success, failure) |
#define | atomic_exchange_explicit(object, desired, order) |
#define | atomic_fetch_add_explicit(object, operand, order) |
#define | atomic_fetch_and_explicit(object, operand, order) ((void)(order), __sync_fetch_and_and(&(object)->__val, operand)) |
#define | atomic_fetch_or_explicit(object, operand, order) ((void)(order), __sync_fetch_and_or(&(object)->__val, operand)) |
#define | atomic_fetch_sub_explicit(object, operand, order) |
#define | atomic_fetch_xor_explicit(object, operand, order) ((void)(order), __sync_fetch_and_xor(&(object)->__val, operand)) |
#define | atomic_load_explicit(object, order) ((void)(order), __sync_fetch_and_add(&(object)->__val, 0)) |
#define | atomic_store_explicit(object, desired, order) ((void)atomic_exchange_explicit(object, desired, order)) |
#define | atomic_compare_exchange_strong(object, expected, desired) |
#define | atomic_compare_exchange_weak(object, expected, desired) |
#define | atomic_exchange(object, desired) atomic_exchange_explicit(object, desired, memory_order_seq_cst) |
#define | atomic_fetch_add(object, operand) atomic_fetch_add_explicit(object, operand, memory_order_seq_cst) |
#define | atomic_fetch_and(object, operand) atomic_fetch_and_explicit(object, operand, memory_order_seq_cst) |
#define | atomic_fetch_or(object, operand) atomic_fetch_or_explicit(object, operand, memory_order_seq_cst) |
#define | atomic_fetch_sub(object, operand) atomic_fetch_sub_explicit(object, operand, memory_order_seq_cst) |
#define | atomic_fetch_xor(object, operand) atomic_fetch_xor_explicit(object, operand, memory_order_seq_cst) |
#define | atomic_load(object) atomic_load_explicit(object, memory_order_seq_cst) |
#define | atomic_store(object, desired) atomic_store_explicit(object, desired, memory_order_seq_cst) |
#define | ATOMIC_FLAG_INIT { ATOMIC_VAR_INIT(0) } |
Typedefs | |
typedef int | __Bool |
Enumerations | |
enum | memory_order { memory_order_relaxed = __ATOMIC_RELAXED, memory_order_consume = __ATOMIC_CONSUME, memory_order_acquire = __ATOMIC_ACQUIRE, memory_order_release = __ATOMIC_RELEASE, memory_order_acq_rel = __ATOMIC_ACQ_REL, memory_order_seq_cst = __ATOMIC_SEQ_CST } |
Functions | |
static __inline void | atomic_thread_fence (memory_order __order __unused) |
static __inline void | atomic_signal_fence (memory_order __order __unused) |
typedef | _Atomic (__Bool) atomic_bool |
typedef | _Atomic (char) atomic_char |
typedef | _Atomic (signed char) atomic_schar |
typedef | _Atomic (unsigned char) atomic_uchar |
typedef | _Atomic (short) atomic_short |
typedef | _Atomic (long) atomic_long |
typedef | _Atomic (unsigned long long) atomic_ullong |
typedef | _Atomic (wchar_t) atomic_wchar_t |
typedef | _Atomic (int_least8_t) atomic_int_least8_t |
typedef | _Atomic (uint_least8_t) atomic_uint_least8_t |
typedef | _Atomic (int_least16_t) atomic_int_least16_t |
typedef | _Atomic (uint_least16_t) atomic_uint_least16_t |
typedef | _Atomic (int_least32_t) atomic_int_least32_t |
typedef | _Atomic (uint_least32_t) atomic_uint_least32_t |
typedef | _Atomic (int_least64_t) atomic_int_least64_t |
typedef | _Atomic (uint_least64_t) atomic_uint_least64_t |
typedef | _Atomic (int_fast8_t) atomic_int_fast8_t |
typedef | _Atomic (uint_fast8_t) atomic_uint_fast8_t |
typedef | _Atomic (int_fast16_t) atomic_int_fast16_t |
typedef | _Atomic (uint_fast16_t) atomic_uint_fast16_t |
typedef | _Atomic (int_fast32_t) atomic_int_fast32_t |
typedef | _Atomic (uint_fast32_t) atomic_uint_fast32_t |
typedef | _Atomic (int_fast64_t) atomic_int_fast64_t |
typedef | _Atomic (uint_fast64_t) atomic_uint_fast64_t |
typedef | _Atomic (intptr_t) atomic_intptr_t |
typedef | _Atomic (uintptr_t) atomic_uintptr_t |
typedef | _Atomic (size_t) atomic_size_t |
typedef | _Atomic (ptrdiff_t) atomic_ptrdiff_t |
typedef | _Atomic (intmax_t) atomic_intmax_t |
typedef | _Atomic (uintmax_t) atomic_uintmax_t |
static __inline __Bool | atomic_flag_test_and_set_explicit (volatile atomic_flag *__object, memory_order __order) |
static __inline void | atomic_flag_clear_explicit (volatile atomic_flag *__object, memory_order __order) |
static __inline __Bool | atomic_flag_test_and_set (volatile atomic_flag *__object) |
static __inline void | atomic_flag_clear (volatile atomic_flag *__object) |
#define __ATOMIC_ACQ_REL 4 |
Definition at line 155 of file stdatomic.h.
#define __ATOMIC_ACQUIRE 2 |
Definition at line 149 of file stdatomic.h.
#define __atomic_apply_stride | ( | object, | |
operand | |||
) | (((__typeof__((object)->__val))0) + (operand)) |
Definition at line 333 of file stdatomic.h.
#define __ATOMIC_CONSUME 1 |
Definition at line 146 of file stdatomic.h.
#define __ATOMIC_RELAXED 0 |
Definition at line 143 of file stdatomic.h.
#define __ATOMIC_RELEASE 3 |
Definition at line 152 of file stdatomic.h.
#define __ATOMIC_SEQ_CST 5 |
Definition at line 158 of file stdatomic.h.
#define __GNUC_PREREQ__ | ( | maj, | |
min | |||
) | 0 |
Definition at line 65 of file stdatomic.h.
#define __has_builtin | ( | x | ) | 0 |
Definition at line 58 of file stdatomic.h.
#define __has_feature | ( | x | ) | 0 |
Definition at line 55 of file stdatomic.h.
#define __unused |
Definition at line 181 of file stdatomic.h.
Definition at line 121 of file stdatomic.h.
#define atomic_compare_exchange_strong | ( | object, | |
expected, | |||
desired | |||
) |
Definition at line 392 of file stdatomic.h.
#define atomic_compare_exchange_strong_explicit | ( | object, | |
expected, | |||
desired, | |||
success, | |||
failure | |||
) |
Definition at line 335 of file stdatomic.h.
#define atomic_compare_exchange_weak | ( | object, | |
expected, | |||
desired | |||
) |
Definition at line 395 of file stdatomic.h.
#define atomic_compare_exchange_weak_explicit | ( | object, | |
expected, | |||
desired, | |||
success, | |||
failure | |||
) |
Definition at line 343 of file stdatomic.h.
#define atomic_exchange | ( | object, | |
desired | |||
) | atomic_exchange_explicit(object, desired, memory_order_seq_cst) |
Definition at line 398 of file stdatomic.h.
#define atomic_exchange_explicit | ( | object, | |
desired, | |||
order | |||
) |
Definition at line 357 of file stdatomic.h.
#define atomic_fetch_add | ( | object, | |
operand | |||
) | atomic_fetch_add_explicit(object, operand, memory_order_seq_cst) |
Definition at line 400 of file stdatomic.h.
#define atomic_fetch_add_explicit | ( | object, | |
operand, | |||
order | |||
) |
Definition at line 366 of file stdatomic.h.
#define atomic_fetch_and | ( | object, | |
operand | |||
) | atomic_fetch_and_explicit(object, operand, memory_order_seq_cst) |
Definition at line 402 of file stdatomic.h.
#define atomic_fetch_and_explicit | ( | object, | |
operand, | |||
order | |||
) | ((void)(order), __sync_fetch_and_and(&(object)->__val, operand)) |
Definition at line 369 of file stdatomic.h.
#define atomic_fetch_or | ( | object, | |
operand | |||
) | atomic_fetch_or_explicit(object, operand, memory_order_seq_cst) |
Definition at line 404 of file stdatomic.h.
#define atomic_fetch_or_explicit | ( | object, | |
operand, | |||
order | |||
) | ((void)(order), __sync_fetch_and_or(&(object)->__val, operand)) |
Definition at line 371 of file stdatomic.h.
#define atomic_fetch_sub | ( | object, | |
operand | |||
) | atomic_fetch_sub_explicit(object, operand, memory_order_seq_cst) |
Definition at line 406 of file stdatomic.h.
#define atomic_fetch_sub_explicit | ( | object, | |
operand, | |||
order | |||
) |
Definition at line 373 of file stdatomic.h.
#define atomic_fetch_xor | ( | object, | |
operand | |||
) | atomic_fetch_xor_explicit(object, operand, memory_order_seq_cst) |
Definition at line 408 of file stdatomic.h.
#define atomic_fetch_xor_explicit | ( | object, | |
operand, | |||
order | |||
) | ((void)(order), __sync_fetch_and_xor(&(object)->__val, operand)) |
Definition at line 376 of file stdatomic.h.
#define ATOMIC_FLAG_INIT { ATOMIC_VAR_INIT(0) } |
Definition at line 427 of file stdatomic.h.
#define atomic_init | ( | obj, | |
value | |||
) | ((void)((obj)->__val = (value))) |
Definition at line 133 of file stdatomic.h.
#define atomic_is_lock_free | ( | obj | ) | ((void)(obj), sizeof((obj)->__val) <= sizeof(void *)) |
Definition at line 226 of file stdatomic.h.
#define atomic_load | ( | object | ) | atomic_load_explicit(object, memory_order_seq_cst) |
Definition at line 410 of file stdatomic.h.
#define atomic_load_explicit | ( | object, | |
order | |||
) | ((void)(order), __sync_fetch_and_add(&(object)->__val, 0)) |
Definition at line 378 of file stdatomic.h.
#define atomic_store | ( | object, | |
desired | |||
) | atomic_store_explicit(object, desired, memory_order_seq_cst) |
Definition at line 412 of file stdatomic.h.
#define atomic_store_explicit | ( | object, | |
desired, | |||
order | |||
) | ((void)atomic_exchange_explicit(object, desired, order)) |
Definition at line 380 of file stdatomic.h.
#define ATOMIC_VAR_INIT | ( | value | ) | { .__val = (value) } |
Definition at line 132 of file stdatomic.h.
typedef int __Bool |
Definition at line 83 of file stdatomic.h.
enum memory_order |
Enumerator | |
---|---|
memory_order_relaxed | |
memory_order_consume | |
memory_order_acquire | |
memory_order_release | |
memory_order_acq_rel | |
memory_order_seq_cst |
Definition at line 168 of file stdatomic.h.
typedef _Atomic | ( | __Bool | ) |
typedef _Atomic | ( | char | ) |
typedef _Atomic | ( | signed | char | ) |
typedef _Atomic | ( | unsigned | char | ) |
typedef _Atomic | ( | short | ) |
typedef _Atomic | ( | long | ) |
typedef _Atomic | ( | unsigned long | long | ) |
typedef _Atomic | ( | wchar_t | ) |
typedef _Atomic | ( | int_least8_t | ) |
typedef _Atomic | ( | uint_least8_t | ) |
typedef _Atomic | ( | int_least16_t | ) |
typedef _Atomic | ( | uint_least16_t | ) |
typedef _Atomic | ( | int_least32_t | ) |
typedef _Atomic | ( | uint_least32_t | ) |
typedef _Atomic | ( | int_least64_t | ) |
typedef _Atomic | ( | uint_least64_t | ) |
typedef _Atomic | ( | int_fast8_t | ) |
typedef _Atomic | ( | uint_fast8_t | ) |
typedef _Atomic | ( | int_fast16_t | ) |
typedef _Atomic | ( | uint_fast16_t | ) |
typedef _Atomic | ( | int_fast32_t | ) |
typedef _Atomic | ( | uint_fast32_t | ) |
typedef _Atomic | ( | int_fast64_t | ) |
typedef _Atomic | ( | uint_fast64_t | ) |
typedef _Atomic | ( | intptr_t | ) |
typedef _Atomic | ( | uintptr_t | ) |
typedef _Atomic | ( | size_t | ) |
typedef _Atomic | ( | ptrdiff_t | ) |
typedef _Atomic | ( | intmax_t | ) |
typedef _Atomic | ( | uintmax_t | ) |
|
static |
|
static |
|
static |
|
static |
|
static |
Definition at line 197 of file stdatomic.h.
|
static |
Definition at line 184 of file stdatomic.h.