| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
|
|
| #ifndef _LIBCUDACXX_ATOMIC_BASE_H |
| #define _LIBCUDACXX_ATOMIC_BASE_H |
|
|
| #include "cxx_atomic.h" |
|
|
| |
| #ifndef _LIBCUDACXX_ATOMIC_IS_LOCK_FREE |
| #define _LIBCUDACXX_ATOMIC_IS_LOCK_FREE(__x) __atomic_is_lock_free(__x, 0) |
| #endif |
|
|
| _LIBCUDACXX_INLINE_VISIBILITY inline constexpr int __cxx_atomic_order_to_int(memory_order __order) { |
| |
| return __order == memory_order_relaxed ? __ATOMIC_RELAXED: |
| (__order == memory_order_acquire ? __ATOMIC_ACQUIRE: |
| (__order == memory_order_release ? __ATOMIC_RELEASE: |
| (__order == memory_order_seq_cst ? __ATOMIC_SEQ_CST: |
| (__order == memory_order_acq_rel ? __ATOMIC_ACQ_REL: |
| __ATOMIC_CONSUME)))); |
| } |
|
|
| _LIBCUDACXX_INLINE_VISIBILITY inline constexpr int __cxx_atomic_failure_order_to_int(memory_order __order) { |
| |
| return __order == memory_order_relaxed ? __ATOMIC_RELAXED: |
| (__order == memory_order_acquire ? __ATOMIC_ACQUIRE: |
| (__order == memory_order_release ? __ATOMIC_RELAXED: |
| (__order == memory_order_seq_cst ? __ATOMIC_SEQ_CST: |
| (__order == memory_order_acq_rel ? __ATOMIC_ACQUIRE: |
| __ATOMIC_CONSUME)))); |
| } |
|
|
| template <typename _Tp, typename _Up> |
| inline void __cxx_atomic_init(volatile _Tp* __a, _Up __val) { |
| auto __a_tmp = __cxx_get_underlying_atomic(__cxx_atomic_unwrap(__a)); |
| __cxx_atomic_assign_volatile(*__a_tmp, __val); |
| } |
|
|
| template <typename _Tp, typename _Up> |
| inline void __cxx_atomic_init(_Tp* __a, _Up __val) { |
| auto __a_tmp = __cxx_get_underlying_atomic(__cxx_atomic_unwrap(__a)); |
| *__a_tmp = __val; |
| } |
|
|
| inline |
| void __cxx_atomic_thread_fence(memory_order __order) { |
| __atomic_thread_fence(__cxx_atomic_order_to_int(__order)); |
| } |
|
|
| inline |
| void __cxx_atomic_signal_fence(memory_order __order) { |
| __atomic_signal_fence(__cxx_atomic_order_to_int(__order)); |
| } |
|
|
| template <typename _Tp, typename _Up> |
| inline void __cxx_atomic_store(_Tp* __a, _Up __val, |
| memory_order __order) { |
| auto __v_temp = __cxx_atomic_wrap_to_base(__a, __val); |
| __atomic_store(__cxx_atomic_unwrap(__a), &__v_temp, __cxx_atomic_order_to_int(__order)); |
| } |
|
|
| template <typename _Tp> |
| inline auto __cxx_atomic_load(const _Tp* __a, |
| memory_order __order) -> __cxx_atomic_underlying_t<_Tp> { |
| auto __ret = __cxx_atomic_base_temporary(__a); |
| __atomic_load(__cxx_atomic_unwrap(__a), &__ret, __cxx_atomic_order_to_int(__order)); |
| return *__cxx_get_underlying_atomic(&__ret); |
| } |
|
|
| template <typename _Tp, typename _Up> |
| inline auto __cxx_atomic_exchange(_Tp* __a, _Up __val, |
| memory_order __order) -> __cxx_atomic_underlying_t<_Tp> { |
| auto __v_temp = __cxx_atomic_wrap_to_base(__a, __val); |
| auto __ret = __cxx_atomic_base_temporary(__a); |
| __atomic_exchange(__cxx_atomic_unwrap(__a), &__v_temp, &__ret, __cxx_atomic_order_to_int(__order)); |
| return *__cxx_get_underlying_atomic(&__ret); |
| } |
|
|
| template <typename _Tp, typename _Up> |
| inline bool __cxx_atomic_compare_exchange_strong( |
| _Tp* __a, _Up* __expected, _Up __value, memory_order __success, |
| memory_order __failure) { |
| (void)__expected; |
| return __atomic_compare_exchange(__cxx_get_underlying_atomic(__cxx_atomic_unwrap(__a)), |
| __expected, &__value, false, |
| __cxx_atomic_order_to_int(__success), |
| __cxx_atomic_failure_order_to_int(__failure)); |
| } |
|
|
| template <typename _Tp, typename _Up> |
| inline bool __cxx_atomic_compare_exchange_weak( |
| _Tp* __a, _Up* __expected, _Up __value, memory_order __success, |
| memory_order __failure) { |
| (void)__expected; |
| return __atomic_compare_exchange(__cxx_get_underlying_atomic(__cxx_atomic_unwrap(__a)), |
| __expected, &__value, true, |
| __cxx_atomic_order_to_int(__success), |
| __cxx_atomic_failure_order_to_int(__failure)); |
| } |
|
|
| template <typename _Tp> |
| struct __atomic_ptr_inc { enum {value = 1}; }; |
|
|
| template <typename _Tp> |
| struct __atomic_ptr_inc<_Tp*> { enum {value = sizeof(_Tp)}; }; |
|
|
| |
| |
| template <typename _Tp> |
| struct __atomic_ptr_inc<_Tp[]> { }; |
| template <typename _Tp, int n> |
| struct __atomic_ptr_inc<_Tp[n]> { }; |
|
|
| template <typename _Tp, typename _Td, __enable_if_t<!is_floating_point<__cxx_atomic_underlying_t<_Tp>>::value, int> = 0> |
| inline auto __cxx_atomic_fetch_add(_Tp* __a, _Td __delta, |
| memory_order __order) -> __cxx_atomic_underlying_t<_Tp> { |
| constexpr auto __skip_v = __atomic_ptr_inc<__cxx_atomic_underlying_t<_Tp>>::value; |
| auto __a_tmp = __cxx_get_underlying_atomic(__cxx_atomic_unwrap(__a)); |
| return __atomic_fetch_add(__a_tmp, __delta * __skip_v, |
| __cxx_atomic_order_to_int(__order)); |
| } |
|
|
| template <typename _Tp, typename _Td, __enable_if_t<is_floating_point<__cxx_atomic_underlying_t<_Tp>>::value, int> = 0> |
| inline auto __cxx_atomic_fetch_add(_Tp* __a, _Td __delta, |
| memory_order __order) -> __cxx_atomic_underlying_t<_Tp> { |
| auto __expected = __cxx_atomic_load(__a, memory_order_relaxed); |
| auto __desired = __expected + __delta; |
|
|
| while(!__cxx_atomic_compare_exchange_strong(__a, &__expected, __desired, __order, __order)) { |
| __desired = __expected + __delta; |
| } |
|
|
| return __expected; |
| } |
|
|
| template <typename _Tp, typename _Td, __enable_if_t<!is_floating_point<__cxx_atomic_underlying_t<_Tp>>::value, int> = 0> |
| inline auto __cxx_atomic_fetch_sub(_Tp* __a, _Td __delta, |
| memory_order __order) -> __cxx_atomic_underlying_t<_Tp> { |
| constexpr auto __skip_v = __atomic_ptr_inc<__cxx_atomic_underlying_t<_Tp>>::value; |
| auto __a_tmp = __cxx_get_underlying_atomic(__cxx_atomic_unwrap(__a)); |
| return __atomic_fetch_sub(__a_tmp, __delta * __skip_v, |
| __cxx_atomic_order_to_int(__order)); |
| } |
|
|
| template <typename _Tp, typename _Td, __enable_if_t<is_floating_point<__cxx_atomic_underlying_t<_Tp>>::value, int> = 0> |
| inline auto __cxx_atomic_fetch_sub(_Tp* __a, _Td __delta, |
| memory_order __order) -> __cxx_atomic_underlying_t<_Tp> { |
| auto __expected = __cxx_atomic_load(__a, memory_order_relaxed); |
| auto __desired = __expected - __delta; |
|
|
| while(!__cxx_atomic_compare_exchange_strong(__a, &__expected, __desired, __order, __order)) { |
| __desired = __expected - __delta; |
| } |
|
|
| return __expected; |
| } |
|
|
| template <typename _Tp, typename _Td> |
| inline auto __cxx_atomic_fetch_and(_Tp* __a, _Td __pattern, |
| memory_order __order) -> __cxx_atomic_underlying_t<_Tp> { |
| auto __a_tmp = __cxx_get_underlying_atomic(__cxx_atomic_unwrap(__a)); |
| return __atomic_fetch_and(__a_tmp, __pattern, |
| __cxx_atomic_order_to_int(__order)); |
| } |
|
|
| template <typename _Tp, typename _Td> |
| inline auto __cxx_atomic_fetch_or(_Tp* __a, _Td __pattern, |
| memory_order __order) -> __cxx_atomic_underlying_t<_Tp> { |
| auto __a_tmp = __cxx_get_underlying_atomic(__cxx_atomic_unwrap(__a)); |
| return __atomic_fetch_or(__a_tmp, __pattern, |
| __cxx_atomic_order_to_int(__order)); |
| } |
|
|
| template <typename _Tp, typename _Td> |
| inline auto __cxx_atomic_fetch_xor(_Tp* __a, _Td __pattern, |
| memory_order __order) -> __cxx_atomic_underlying_t<_Tp> { |
| auto __a_tmp = __cxx_get_underlying_atomic(__cxx_atomic_unwrap(__a)); |
| return __atomic_fetch_xor(__a_tmp, __pattern, |
| __cxx_atomic_order_to_int(__order)); |
| } |
|
|
| template <typename _Tp, typename _Td> |
| inline auto __cxx_atomic_fetch_max(_Tp* __a, _Td __val, |
| memory_order __order) -> __cxx_atomic_underlying_t<_Tp> { |
| auto __expected = __cxx_atomic_load(__a, memory_order_relaxed); |
| auto __desired = __expected > __val ? __expected : __val; |
|
|
| while(__desired == __val && |
| !__cxx_atomic_compare_exchange_strong(__a, &__expected, __desired, __order, __order)) { |
| __desired = __expected > __val ? __expected : __val; |
| } |
|
|
| return __expected; |
| } |
|
|
| template <typename _Tp, typename _Td> |
| inline auto __cxx_atomic_fetch_min(_Tp* __a, _Td __val, |
| memory_order __order) -> __cxx_atomic_underlying_t<_Tp> { |
| auto __expected = __cxx_atomic_load(__a, memory_order_relaxed); |
| auto __desired = __expected < __val ? __expected : __val; |
|
|
| while(__desired == __val && |
| !__cxx_atomic_compare_exchange_strong(__a, &__expected, __desired, __order, __order)) { |
| __desired = __expected < __val ? __expected : __val; |
| } |
|
|
| return __expected; |
| } |
|
|
| #endif |
|
|