File size: 20,631 Bytes
2a504a6 | 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 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 | //===----------------------------------------------------------------------===//
//
// Part of libcu++, the C++ Standard Library for your entire system,
// under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
// SPDX-FileCopyrightText: Copyright (c) 2023 NVIDIA CORPORATION & AFFILIATES.
//
//===----------------------------------------------------------------------===//
#if defined(__CUDA_MINIMUM_ARCH__) && ((!defined(_LIBCUDACXX_COMPILER_MSVC) && __CUDA_MINIMUM_ARCH__ < 600) || (defined(_LIBCUDACXX_COMPILER_MSVC) && __CUDA_MINIMUM_ARCH__ < 700))
# error "CUDA atomics are only supported for sm_60 and up on *nix and sm_70 and up on Windows."
#endif
inline _LIBCUDACXX_HOST_DEVICE int __stronger_order_cuda(int __a, int __b) {
int const __max = __a > __b ? __a : __b;
if(__max != __ATOMIC_RELEASE)
return __max;
static int const __xform[] = {
__ATOMIC_RELEASE,
__ATOMIC_ACQ_REL,
__ATOMIC_ACQ_REL,
__ATOMIC_RELEASE };
return __xform[__a < __b ? __a : __b];
}
// pre-define lock free query for heterogeneous compatibility
#ifndef _LIBCUDACXX_ATOMIC_IS_LOCK_FREE
#define _LIBCUDACXX_ATOMIC_IS_LOCK_FREE(__x) (__x <= 8)
#endif
// Wrap host atomic implementations into a sub-namespace
namespace __host {
#if defined(_LIBCUDACXX_COMPILER_MSVC)
# include "atomic_msvc.h"
#elif defined (_LIBCUDACXX_HAS_GCC_ATOMIC_IMP)
# include "atomic_gcc.h"
#elif defined (_LIBCUDACXX_HAS_C11_ATOMIC_IMP)
//TODO
// # include "atomic_c11.h"
#elif defined(_LIBCUDACXX_COMPILER_NVRTC)
# include "atomic_nvrtc.h"
#endif
}
using __host::__cxx_atomic_underlying_t;
#include "atomic_cuda_generated.h"
#include "atomic_cuda_derived.h"
_LIBCUDACXX_INLINE_VISIBILITY
inline
void __cxx_atomic_thread_fence(memory_order __order) {
NV_DISPATCH_TARGET(
NV_IS_DEVICE, (
__atomic_thread_fence_cuda(static_cast<__memory_order_underlying_t>(__order), __thread_scope_system_tag());
),
NV_IS_HOST, (
__host::__cxx_atomic_thread_fence(__order);
)
)
}
_LIBCUDACXX_INLINE_VISIBILITY
inline
void __cxx_atomic_signal_fence(memory_order __order) {
NV_DISPATCH_TARGET(
NV_IS_DEVICE, (
__atomic_signal_fence_cuda(static_cast<__memory_order_underlying_t>(__order));
),
NV_IS_HOST, (
__host::__cxx_atomic_signal_fence(__order);
)
)
}
template <typename _Tp, int _Sco, bool _Ref = false>
struct __cxx_atomic_base_heterogeneous_impl {
__cxx_atomic_base_heterogeneous_impl() noexcept = default;
_LIBCUDACXX_INLINE_VISIBILITY constexpr explicit
__cxx_atomic_base_heterogeneous_impl(_Tp __value) : __a_value(__value) {
}
using __underlying_t = _Tp;
static constexpr int __sco = _Sco;
__host::__cxx_atomic_base_impl<_Tp, _Sco> __a_value;
};
template <typename _Tp, int _Sco>
struct __cxx_atomic_base_heterogeneous_impl<_Tp, _Sco, true> {
__cxx_atomic_base_heterogeneous_impl() noexcept = default;
static_assert(sizeof(_Tp) >= 4, "atomic_ref does not support 1 or 2 byte types");
static_assert(sizeof(_Tp) <= 8, "atomic_ref does not support types larger than 8 bytes");
_LIBCUDACXX_INLINE_VISIBILITY constexpr explicit
__cxx_atomic_base_heterogeneous_impl(_Tp& __value) : __a_value(__value) {
}
using __underlying_t = _Tp;
static constexpr int __sco = _Sco;
__host::__cxx_atomic_ref_base_impl<_Tp, _Sco> __a_value;
};
template <typename _Tp, int _Sco, bool _Ref>
_LIBCUDACXX_INLINE_VISIBILITY constexpr
_Tp* __cxx_get_underlying_device_atomic(__cxx_atomic_base_heterogeneous_impl<_Tp, _Sco, _Ref> * __a) noexcept {
return __cxx_get_underlying_atomic(&__a->__a_value);
}
template <typename _Tp, int _Sco, bool _Ref>
_LIBCUDACXX_INLINE_VISIBILITY constexpr
volatile _Tp* __cxx_get_underlying_device_atomic(__cxx_atomic_base_heterogeneous_impl<_Tp, _Sco, _Ref> volatile* __a) noexcept {
return __cxx_get_underlying_atomic(&__a->__a_value);
}
template <typename _Tp, int _Sco, bool _Ref>
_LIBCUDACXX_INLINE_VISIBILITY constexpr
const _Tp* __cxx_get_underlying_device_atomic(__cxx_atomic_base_heterogeneous_impl<_Tp, _Sco, _Ref> const* __a) noexcept {
return __cxx_get_underlying_atomic(&__a->__a_value);
}
template <typename _Tp, int _Sco, bool _Ref>
_LIBCUDACXX_INLINE_VISIBILITY constexpr
const volatile _Tp* __cxx_get_underlying_device_atomic(__cxx_atomic_base_heterogeneous_impl<_Tp, _Sco, _Ref> const volatile* __a) noexcept {
return __cxx_get_underlying_atomic(&__a->__a_value);
}
template <typename _Tp>
using __cxx_atomic_small_to_32 = __conditional_t<is_signed<_Tp>::value, int32_t, uint32_t>;
// Arithmetic conversions to/from proxy types
template<class _Tp, __enable_if_t<is_arithmetic<_Tp>::value, int> = 0>
constexpr _LIBCUDACXX_INLINE_VISIBILITY inline __cxx_atomic_small_to_32<_Tp> __cxx_small_to_32(_Tp __val) {
return static_cast<__cxx_atomic_small_to_32<_Tp>>(__val);
}
template<class _Tp, __enable_if_t<is_arithmetic<_Tp>::value, int> = 0>
constexpr _LIBCUDACXX_INLINE_VISIBILITY inline _Tp __cxx_small_from_32(__cxx_atomic_small_to_32<_Tp> __val) {
return static_cast<_Tp>(__val);
}
// Non-arithmetic conversion to/from proxy types
template<class _Tp, __enable_if_t<!is_arithmetic<_Tp>::value, int> = 0>
_LIBCUDACXX_INLINE_VISIBILITY inline __cxx_atomic_small_to_32<_Tp> __cxx_small_to_32(_Tp __val) {
__cxx_atomic_small_to_32<_Tp> __temp{};
memcpy(&__temp, &__val, sizeof(_Tp));
return __temp;
}
template<class _Tp, __enable_if_t<!is_arithmetic<_Tp>::value, int> = 0>
_LIBCUDACXX_INLINE_VISIBILITY inline _Tp __cxx_small_from_32(__cxx_atomic_small_to_32<_Tp> __val) {
_Tp __temp{};
memcpy(&__temp, &__val, sizeof(_Tp));
return __temp;
}
template <typename _Tp, int _Sco>
struct __cxx_atomic_base_small_impl {
__cxx_atomic_base_small_impl() noexcept = default;
_LIBCUDACXX_INLINE_VISIBILITY constexpr explicit
__cxx_atomic_base_small_impl(_Tp __value) : __a_value(__cxx_small_to_32(__value)) {
}
using __underlying_t = _Tp;
static constexpr int __sco = _Sco;
__cxx_atomic_base_heterogeneous_impl<__cxx_atomic_small_to_32<_Tp>, _Sco, false> __a_value;
};
template <typename _Tp, int _Sco>
using __cxx_atomic_base_impl = __conditional_t<sizeof(_Tp) < 4,
__cxx_atomic_base_small_impl<_Tp, _Sco>,
__cxx_atomic_base_heterogeneous_impl<_Tp, _Sco> >;
template <typename _Tp, int _Sco>
using __cxx_atomic_ref_base_impl = __cxx_atomic_base_heterogeneous_impl<_Tp, _Sco, true>;
template <typename _Tp, int _Sco, bool _Ref>
_LIBCUDACXX_HOST_DEVICE
void __cxx_atomic_init(__cxx_atomic_base_heterogeneous_impl<_Tp, _Sco, _Ref> volatile* __a, _Tp __val) {
alignas(_Tp) auto __tmp = __val;
__cxx_atomic_assign_volatile(*__cxx_get_underlying_device_atomic(__a), __tmp);
}
template <typename _Tp, int _Sco, bool _Ref>
_LIBCUDACXX_HOST_DEVICE
void __cxx_atomic_store(__cxx_atomic_base_heterogeneous_impl<_Tp, _Sco, _Ref> volatile* __a, _Tp __val, memory_order __order) {
alignas(_Tp) auto __tmp = __val;
NV_DISPATCH_TARGET(
NV_IS_DEVICE, (
__atomic_store_n_cuda(__cxx_get_underlying_device_atomic(__a), __tmp, static_cast<__memory_order_underlying_t>(__order), __scope_tag<_Sco>());
),
NV_IS_HOST, (
__host::__cxx_atomic_store(&__a->__a_value, __tmp, __order);
)
)
}
template <typename _Tp, int _Sco, bool _Ref>
_LIBCUDACXX_HOST_DEVICE
_Tp __cxx_atomic_load(__cxx_atomic_base_heterogeneous_impl<_Tp, _Sco, _Ref> const volatile* __a, memory_order __order) {
NV_DISPATCH_TARGET(
NV_IS_DEVICE, (
return __atomic_load_n_cuda(__cxx_get_underlying_device_atomic(__a), static_cast<__memory_order_underlying_t>(__order), __scope_tag<_Sco>());
),
NV_IS_HOST, (
return __host::__cxx_atomic_load(&__a->__a_value, __order);
)
)
}
template <typename _Tp, int _Sco, bool _Ref>
_LIBCUDACXX_HOST_DEVICE
_Tp __cxx_atomic_exchange(__cxx_atomic_base_heterogeneous_impl<_Tp, _Sco, _Ref> volatile* __a, _Tp __val, memory_order __order) {
alignas(_Tp) auto __tmp = __val;
NV_DISPATCH_TARGET(
NV_IS_DEVICE, (
return __atomic_exchange_n_cuda(__cxx_get_underlying_device_atomic(__a), __tmp, static_cast<__memory_order_underlying_t>(__order), __scope_tag<_Sco>());
),
NV_IS_HOST, (
return __host::__cxx_atomic_exchange(&__a->__a_value, __tmp, __order);
)
)
}
template <typename _Tp, int _Sco, bool _Ref>
_LIBCUDACXX_HOST_DEVICE
bool __cxx_atomic_compare_exchange_strong(__cxx_atomic_base_heterogeneous_impl<_Tp, _Sco, _Ref> volatile* __a, _Tp* __expected, _Tp __val, memory_order __success, memory_order __failure) {
alignas(_Tp) auto __tmp = *__expected;
bool __result = false;
NV_DISPATCH_TARGET(
NV_IS_DEVICE, (
alignas(_Tp) auto __tmp_v = __val;
__result = __atomic_compare_exchange_cuda(__cxx_get_underlying_device_atomic(__a), &__tmp, &__tmp_v, false, static_cast<__memory_order_underlying_t>(__success), static_cast<__memory_order_underlying_t>(__failure), __scope_tag<_Sco>());
),
NV_IS_HOST, (
__result = __host::__cxx_atomic_compare_exchange_strong(&__a->__a_value, &__tmp, __val, __success, __failure);
)
)
*__expected = __tmp;
return __result;
}
template <typename _Tp, int _Sco, bool _Ref>
_LIBCUDACXX_HOST_DEVICE
bool __cxx_atomic_compare_exchange_weak(__cxx_atomic_base_heterogeneous_impl<_Tp, _Sco, _Ref> volatile* __a, _Tp* __expected, _Tp __val, memory_order __success, memory_order __failure) {
alignas(_Tp) auto __tmp = *__expected;
bool __result = false;
NV_DISPATCH_TARGET(
NV_IS_DEVICE, (
alignas(_Tp) auto __tmp_v = __val;
__result = __atomic_compare_exchange_cuda(__cxx_get_underlying_device_atomic(__a), &__tmp, &__tmp_v, true, static_cast<__memory_order_underlying_t>(__success), static_cast<__memory_order_underlying_t>(__failure), __scope_tag<_Sco>());
),
NV_IS_HOST, (
__result = __host::__cxx_atomic_compare_exchange_weak(&__a->__a_value, &__tmp, __val, __success, __failure);
)
)
*__expected = __tmp;
return __result;
}
template <typename _Tp, int _Sco, bool _Ref>
_LIBCUDACXX_HOST_DEVICE
_Tp __cxx_atomic_fetch_add(__cxx_atomic_base_heterogeneous_impl<_Tp, _Sco, _Ref> volatile* __a, _Tp __delta, memory_order __order) {
NV_DISPATCH_TARGET(
NV_IS_DEVICE, (
return __atomic_fetch_add_cuda(__cxx_get_underlying_device_atomic(__a), __delta, static_cast<__memory_order_underlying_t>(__order), __scope_tag<_Sco>());
),
NV_IS_HOST, (
return __host::__cxx_atomic_fetch_add(&__a->__a_value, __delta, __order);
)
)
}
template <typename _Tp, int _Sco, bool _Ref>
_LIBCUDACXX_HOST_DEVICE
_Tp* __cxx_atomic_fetch_add(__cxx_atomic_base_heterogeneous_impl<_Tp*, _Sco, _Ref> volatile* __a, ptrdiff_t __delta, memory_order __order) {
NV_DISPATCH_TARGET(
NV_IS_DEVICE, (
return __atomic_fetch_add_cuda(__cxx_get_underlying_device_atomic(__a), __delta, static_cast<__memory_order_underlying_t>(__order), __scope_tag<_Sco>());
),
NV_IS_HOST, (
return __host::__cxx_atomic_fetch_add(&__a->__a_value, __delta, __order);
)
)
}
template <typename _Tp, int _Sco, bool _Ref>
_LIBCUDACXX_HOST_DEVICE
_Tp __cxx_atomic_fetch_sub(__cxx_atomic_base_heterogeneous_impl<_Tp, _Sco, _Ref> volatile* __a, _Tp __delta, memory_order __order) {
NV_DISPATCH_TARGET(
NV_IS_DEVICE, (
return __atomic_fetch_sub_cuda(__cxx_get_underlying_device_atomic(__a), __delta, static_cast<__memory_order_underlying_t>(__order), __scope_tag<_Sco>());
),
NV_IS_HOST, (
return __host::__cxx_atomic_fetch_sub(&__a->__a_value, __delta, __order);
)
)
}
template <typename _Tp, int _Sco, bool _Ref>
_LIBCUDACXX_HOST_DEVICE
_Tp* __cxx_atomic_fetch_sub(__cxx_atomic_base_heterogeneous_impl<_Tp*, _Sco, _Ref> volatile* __a, ptrdiff_t __delta, memory_order __order) {
NV_DISPATCH_TARGET(
NV_IS_DEVICE, (
return __atomic_fetch_sub_cuda(__cxx_get_underlying_device_atomic(__a), __delta, static_cast<__memory_order_underlying_t>(__order), __scope_tag<_Sco>());
),
NV_IS_HOST, (
return __host::__cxx_atomic_fetch_sub(&__a->__a_value, __delta, __order);
)
)
}
template <typename _Tp, int _Sco, bool _Ref>
_LIBCUDACXX_HOST_DEVICE
_Tp __cxx_atomic_fetch_and(__cxx_atomic_base_heterogeneous_impl<_Tp, _Sco, _Ref> volatile* __a, _Tp __pattern, memory_order __order) {
NV_DISPATCH_TARGET(
NV_IS_DEVICE, (
return __atomic_fetch_and_cuda(__cxx_get_underlying_device_atomic(__a), __pattern, static_cast<__memory_order_underlying_t>(__order), __scope_tag<_Sco>());
),
NV_IS_HOST, (
return __host::__cxx_atomic_fetch_and(&__a->__a_value, __pattern, __order);
)
)
}
template <typename _Tp, int _Sco, bool _Ref>
_LIBCUDACXX_HOST_DEVICE
_Tp __cxx_atomic_fetch_or(__cxx_atomic_base_heterogeneous_impl<_Tp, _Sco, _Ref> volatile* __a, _Tp __pattern, memory_order __order) {
NV_DISPATCH_TARGET(
NV_IS_DEVICE, (
return __atomic_fetch_or_cuda(__cxx_get_underlying_device_atomic(__a), __pattern, static_cast<__memory_order_underlying_t>(__order), __scope_tag<_Sco>());
),
NV_IS_HOST, (
return __host::__cxx_atomic_fetch_or(&__a->__a_value, __pattern, __order);
)
)
}
template <typename _Tp, int _Sco, bool _Ref>
_LIBCUDACXX_HOST_DEVICE
_Tp __cxx_atomic_fetch_xor(__cxx_atomic_base_heterogeneous_impl<_Tp, _Sco, _Ref> volatile* __a, _Tp __pattern, memory_order __order) {
NV_DISPATCH_TARGET(
NV_IS_DEVICE, (
return __atomic_fetch_xor_cuda(__cxx_get_underlying_device_atomic(__a), __pattern, static_cast<__memory_order_underlying_t>(__order), __scope_tag<_Sco>());
),
NV_IS_HOST, (
return __host::__cxx_atomic_fetch_xor(&__a->__a_value, __pattern, __order);
)
)
}
template <typename _Tp, typename _Delta, int _Sco, bool _Ref>
_LIBCUDACXX_HOST_DEVICE
_Tp __cxx_atomic_fetch_max(__cxx_atomic_base_heterogeneous_impl<_Tp, _Sco, _Ref> volatile* __a, _Delta __val, memory_order __order) {
NV_IF_TARGET(
NV_IS_DEVICE, (
return __atomic_fetch_max_cuda(__cxx_get_underlying_device_atomic(__a), __val, static_cast<__memory_order_underlying_t>(__order), __scope_tag<_Sco>());
), (
return __host::__cxx_atomic_fetch_max(&__a->__a_value, __val, __order);
)
)
}
template <typename _Tp, typename _Delta, int _Sco, bool _Ref>
_LIBCUDACXX_HOST_DEVICE
_Tp __cxx_atomic_fetch_min(__cxx_atomic_base_heterogeneous_impl<_Tp, _Sco, _Ref> volatile* __a, _Delta __val, memory_order __order) {
NV_IF_TARGET(
NV_IS_DEVICE, (
return __atomic_fetch_min_cuda(__cxx_get_underlying_device_atomic(__a), __val, static_cast<__memory_order_underlying_t>(__order), __scope_tag<_Sco>());
), (
return __host::__cxx_atomic_fetch_min(&__a->__a_value, __val, __order);
)
)
}
template <typename _Tp, int _Sco>
_LIBCUDACXX_HOST_DEVICE inline void __cxx_atomic_init(__cxx_atomic_base_small_impl<_Tp, _Sco> volatile* __a, _Tp __val) {
__cxx_atomic_init(&__a->__a_value, __cxx_small_to_32(__val));
}
template <typename _Tp, int _Sco>
_LIBCUDACXX_HOST_DEVICE inline void __cxx_atomic_store(__cxx_atomic_base_small_impl<_Tp, _Sco> volatile* __a, _Tp __val, memory_order __order) {
__cxx_atomic_store(&__a->__a_value, __cxx_small_to_32(__val), __order);
}
template <typename _Tp, int _Sco>
_LIBCUDACXX_HOST_DEVICE inline _Tp __cxx_atomic_load(__cxx_atomic_base_small_impl<_Tp, _Sco> const volatile* __a, memory_order __order) {
return __cxx_small_from_32<_Tp>(__cxx_atomic_load(&__a->__a_value, __order));
}
template <typename _Tp, int _Sco>
_LIBCUDACXX_HOST_DEVICE inline _Tp __cxx_atomic_exchange(__cxx_atomic_base_small_impl<_Tp, _Sco> volatile* __a, _Tp __value, memory_order __order) {
return __cxx_small_from_32<_Tp>(__cxx_atomic_exchange(&__a->__a_value, __cxx_small_to_32(__value), __order));
}
_LIBCUDACXX_HOST_DEVICE
inline int __cuda_memcmp(void const * __lhs, void const * __rhs, size_t __count) {
NV_DISPATCH_TARGET(
NV_IS_DEVICE, (
auto __lhs_c = reinterpret_cast<unsigned char const *>(__lhs);
auto __rhs_c = reinterpret_cast<unsigned char const *>(__rhs);
while (__count--) {
auto const __lhs_v = *__lhs_c++;
auto const __rhs_v = *__rhs_c++;
if (__lhs_v < __rhs_v) { return -1; }
if (__lhs_v > __rhs_v) { return 1; }
}
return 0;
),
NV_IS_HOST, (
return memcmp(__lhs, __rhs, __count);
)
)
}
template <typename _Tp, int _Sco>
_LIBCUDACXX_HOST_DEVICE inline bool __cxx_atomic_compare_exchange_weak(__cxx_atomic_base_small_impl<_Tp, _Sco> volatile* __a, _Tp* __expected, _Tp __value, memory_order __success, memory_order __failure) {
auto __temp = __cxx_small_to_32(*__expected);
auto const __ret = __cxx_atomic_compare_exchange_weak(&__a->__a_value, &__temp, __cxx_small_to_32(__value), __success, __failure);
auto const __actual = __cxx_small_from_32<_Tp>(__temp);
constexpr auto __mask = static_cast<decltype(__temp)>((1u << (8*sizeof(_Tp))) - 1);
if(!__ret) {
if(0 == __cuda_memcmp(&__actual, __expected, sizeof(_Tp)))
__cxx_atomic_fetch_and(&__a->__a_value, __mask, memory_order_relaxed);
else
*__expected = __actual;
}
return __ret;
}
template <typename _Tp, int _Sco>
_LIBCUDACXX_HOST_DEVICE inline bool __cxx_atomic_compare_exchange_strong(__cxx_atomic_base_small_impl<_Tp, _Sco> volatile* __a, _Tp* __expected, _Tp __value, memory_order __success, memory_order __failure) {
auto const __old = *__expected;
while(1) {
if(__cxx_atomic_compare_exchange_weak(__a, __expected, __value, __success, __failure))
return true;
if(0 != __cuda_memcmp(&__old, __expected, sizeof(_Tp)))
return false;
}
}
template <typename _Tp, int _Sco>
_LIBCUDACXX_HOST_DEVICE inline _Tp __cxx_atomic_fetch_add(__cxx_atomic_base_small_impl<_Tp, _Sco> volatile* __a, _Tp __delta, memory_order __order) {
return __cxx_small_from_32<_Tp>(__cxx_atomic_fetch_add(&__a->__a_value, __cxx_small_to_32(__delta), __order));
}
template <typename _Tp, int _Sco>
_LIBCUDACXX_HOST_DEVICE inline _Tp __cxx_atomic_fetch_sub(__cxx_atomic_base_small_impl<_Tp, _Sco> volatile* __a, _Tp __delta, memory_order __order) {
return __cxx_small_from_32<_Tp>(__cxx_atomic_fetch_sub(&__a->__a_value, __cxx_small_to_32(__delta), __order));
}
template <typename _Tp, int _Sco>
_LIBCUDACXX_HOST_DEVICE inline _Tp __cxx_atomic_fetch_and(__cxx_atomic_base_small_impl<_Tp, _Sco> volatile* __a, _Tp __pattern, memory_order __order) {
return __cxx_small_from_32<_Tp>(__cxx_atomic_fetch_and(&__a->__a_value, __cxx_small_to_32(__pattern), __order));
}
template <typename _Tp, int _Sco>
_LIBCUDACXX_HOST_DEVICE inline _Tp __cxx_atomic_fetch_or(__cxx_atomic_base_small_impl<_Tp, _Sco> volatile* __a, _Tp __pattern, memory_order __order) {
return __cxx_small_from_32<_Tp>(__cxx_atomic_fetch_or(&__a->__a_value, __cxx_small_to_32(__pattern), __order));
}
template <typename _Tp, int _Sco>
_LIBCUDACXX_HOST_DEVICE inline _Tp __cxx_atomic_fetch_xor(__cxx_atomic_base_small_impl<_Tp, _Sco> volatile* __a, _Tp __pattern, memory_order __order) {
return __cxx_small_from_32<_Tp>(__cxx_atomic_fetch_xor(&__a->__a_value, __cxx_small_to_32(__pattern), __order));
}
template <typename _Tp, typename _Delta, int _Sco>
_LIBCUDACXX_HOST_DEVICE inline _Tp __cxx_atomic_fetch_max(__cxx_atomic_base_small_impl<_Tp, _Sco> volatile* __a, _Delta __val, memory_order __order) {
return __cxx_small_from_32<_Tp>(__cxx_atomic_fetch_max(&__a->__a_value, __cxx_small_to_32(__val), __order));
}
template <typename _Tp, typename _Delta, int _Sco>
_LIBCUDACXX_HOST_DEVICE inline _Tp __cxx_atomic_fetch_min(__cxx_atomic_base_small_impl<_Tp, _Sco> volatile* __a, _Delta __val, memory_order __order) {
return __cxx_small_from_32<_Tp>(__cxx_atomic_fetch_min(&__a->__a_value, __cxx_small_to_32(__val), __order));
}
|