2016-06-28 21:37:27 +03:00
|
|
|
/*
|
|
|
|
* Atomic helper templates
|
|
|
|
* Included from tcg-runtime.c and cputlb.c.
|
|
|
|
*
|
|
|
|
* Copyright (c) 2016 Red Hat, Inc
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
2019-01-23 17:08:56 +03:00
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
2016-06-28 21:37:27 +03:00
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2018-10-21 20:24:26 +03:00
|
|
|
#include "qemu/plugin.h"
|
2018-05-23 01:26:52 +03:00
|
|
|
|
2016-06-30 07:10:59 +03:00
|
|
|
#if DATA_SIZE == 16
|
|
|
|
# define SUFFIX o
|
|
|
|
# define DATA_TYPE Int128
|
|
|
|
# define BSWAP bswap128
|
2018-05-23 01:26:52 +03:00
|
|
|
# define SHIFT 4
|
2016-06-30 07:10:59 +03:00
|
|
|
#elif DATA_SIZE == 8
|
2016-06-28 21:37:27 +03:00
|
|
|
# define SUFFIX q
|
2021-07-16 18:17:18 +03:00
|
|
|
# define DATA_TYPE aligned_uint64_t
|
|
|
|
# define SDATA_TYPE aligned_int64_t
|
2016-06-28 21:37:27 +03:00
|
|
|
# define BSWAP bswap64
|
2018-05-23 01:26:52 +03:00
|
|
|
# define SHIFT 3
|
2016-06-28 21:37:27 +03:00
|
|
|
#elif DATA_SIZE == 4
|
|
|
|
# define SUFFIX l
|
|
|
|
# define DATA_TYPE uint32_t
|
2018-05-10 20:10:57 +03:00
|
|
|
# define SDATA_TYPE int32_t
|
2016-06-28 21:37:27 +03:00
|
|
|
# define BSWAP bswap32
|
2018-05-23 01:26:52 +03:00
|
|
|
# define SHIFT 2
|
2016-06-28 21:37:27 +03:00
|
|
|
#elif DATA_SIZE == 2
|
|
|
|
# define SUFFIX w
|
|
|
|
# define DATA_TYPE uint16_t
|
2018-05-10 20:10:57 +03:00
|
|
|
# define SDATA_TYPE int16_t
|
2016-06-28 21:37:27 +03:00
|
|
|
# define BSWAP bswap16
|
2018-05-23 01:26:52 +03:00
|
|
|
# define SHIFT 1
|
2016-06-28 21:37:27 +03:00
|
|
|
#elif DATA_SIZE == 1
|
|
|
|
# define SUFFIX b
|
|
|
|
# define DATA_TYPE uint8_t
|
2018-05-10 20:10:57 +03:00
|
|
|
# define SDATA_TYPE int8_t
|
2016-06-28 21:37:27 +03:00
|
|
|
# define BSWAP
|
2018-05-23 01:26:52 +03:00
|
|
|
# define SHIFT 0
|
2016-06-28 21:37:27 +03:00
|
|
|
#else
|
|
|
|
# error unsupported data size
|
|
|
|
#endif
|
|
|
|
|
2024-09-16 11:53:46 +03:00
|
|
|
#if DATA_SIZE == 16
|
|
|
|
# define VALUE_LOW(val) int128_getlo(val)
|
|
|
|
# define VALUE_HIGH(val) int128_gethi(val)
|
|
|
|
#else
|
|
|
|
# define VALUE_LOW(val) val
|
|
|
|
# define VALUE_HIGH(val) 0
|
|
|
|
#endif
|
|
|
|
|
2016-06-28 21:37:27 +03:00
|
|
|
#if DATA_SIZE >= 4
|
|
|
|
# define ABI_TYPE DATA_TYPE
|
|
|
|
#else
|
|
|
|
# define ABI_TYPE uint32_t
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Define host-endian atomic operations. Note that END is used within
|
|
|
|
the ATOMIC_NAME macro, and redefined below. */
|
|
|
|
#if DATA_SIZE == 1
|
|
|
|
# define END
|
2022-03-23 18:57:17 +03:00
|
|
|
#elif HOST_BIG_ENDIAN
|
2016-06-28 21:37:27 +03:00
|
|
|
# define END _be
|
|
|
|
#else
|
|
|
|
# define END _le
|
|
|
|
#endif
|
|
|
|
|
2023-08-07 18:57:02 +03:00
|
|
|
ABI_TYPE ATOMIC_NAME(cmpxchg)(CPUArchState *env, abi_ptr addr,
|
2021-07-17 01:57:02 +03:00
|
|
|
ABI_TYPE cmpv, ABI_TYPE newv,
|
2021-07-26 01:06:49 +03:00
|
|
|
MemOpIdx oi, uintptr_t retaddr)
|
2016-06-28 21:37:27 +03:00
|
|
|
{
|
2023-09-12 18:34:23 +03:00
|
|
|
DATA_TYPE *haddr = atomic_mmu_lookup(env_cpu(env), addr, oi,
|
|
|
|
DATA_SIZE, retaddr);
|
2018-05-23 01:26:52 +03:00
|
|
|
DATA_TYPE ret;
|
|
|
|
|
2018-08-16 02:31:47 +03:00
|
|
|
#if DATA_SIZE == 16
|
|
|
|
ret = atomic16_cmpxchg(haddr, cmpv, newv);
|
|
|
|
#else
|
2020-09-23 13:56:46 +03:00
|
|
|
ret = qatomic_cmpxchg__nocheck(haddr, cmpv, newv);
|
2018-08-16 02:31:47 +03:00
|
|
|
#endif
|
2017-11-14 12:34:20 +03:00
|
|
|
ATOMIC_MMU_CLEANUP;
|
2024-09-16 11:53:46 +03:00
|
|
|
atomic_trace_rmw_post(env, addr,
|
|
|
|
VALUE_LOW(ret),
|
|
|
|
VALUE_HIGH(ret),
|
|
|
|
VALUE_LOW(newv),
|
|
|
|
VALUE_HIGH(newv),
|
|
|
|
oi);
|
2017-11-14 12:34:20 +03:00
|
|
|
return ret;
|
2016-06-28 21:37:27 +03:00
|
|
|
}
|
|
|
|
|
2023-05-20 03:45:47 +03:00
|
|
|
#if DATA_SIZE < 16
|
2023-08-07 18:57:02 +03:00
|
|
|
ABI_TYPE ATOMIC_NAME(xchg)(CPUArchState *env, abi_ptr addr, ABI_TYPE val,
|
2021-07-26 01:06:49 +03:00
|
|
|
MemOpIdx oi, uintptr_t retaddr)
|
2016-06-28 21:37:27 +03:00
|
|
|
{
|
2023-09-12 18:34:23 +03:00
|
|
|
DATA_TYPE *haddr = atomic_mmu_lookup(env_cpu(env), addr, oi,
|
|
|
|
DATA_SIZE, retaddr);
|
2018-05-23 01:26:52 +03:00
|
|
|
DATA_TYPE ret;
|
|
|
|
|
2020-09-23 13:56:46 +03:00
|
|
|
ret = qatomic_xchg__nocheck(haddr, val);
|
2017-11-14 12:34:20 +03:00
|
|
|
ATOMIC_MMU_CLEANUP;
|
2024-09-16 11:53:46 +03:00
|
|
|
atomic_trace_rmw_post(env, addr,
|
|
|
|
VALUE_LOW(ret),
|
|
|
|
VALUE_HIGH(ret),
|
|
|
|
VALUE_LOW(val),
|
|
|
|
VALUE_HIGH(val),
|
|
|
|
oi);
|
2017-11-14 12:34:20 +03:00
|
|
|
return ret;
|
2016-06-28 21:37:27 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
#define GEN_ATOMIC_HELPER(X) \
|
2023-08-07 18:57:02 +03:00
|
|
|
ABI_TYPE ATOMIC_NAME(X)(CPUArchState *env, abi_ptr addr, \
|
2021-07-26 01:06:49 +03:00
|
|
|
ABI_TYPE val, MemOpIdx oi, uintptr_t retaddr) \
|
2016-06-28 21:37:27 +03:00
|
|
|
{ \
|
2023-05-20 03:54:18 +03:00
|
|
|
DATA_TYPE *haddr, ret; \
|
2023-09-12 18:34:23 +03:00
|
|
|
haddr = atomic_mmu_lookup(env_cpu(env), addr, oi, DATA_SIZE, retaddr); \
|
2020-09-23 13:56:46 +03:00
|
|
|
ret = qatomic_##X(haddr, val); \
|
2017-11-14 12:34:20 +03:00
|
|
|
ATOMIC_MMU_CLEANUP; \
|
2024-09-16 11:53:46 +03:00
|
|
|
atomic_trace_rmw_post(env, addr, \
|
|
|
|
VALUE_LOW(ret), \
|
|
|
|
VALUE_HIGH(ret), \
|
|
|
|
VALUE_LOW(val), \
|
|
|
|
VALUE_HIGH(val), \
|
|
|
|
oi); \
|
2017-11-14 12:34:20 +03:00
|
|
|
return ret; \
|
|
|
|
}
|
2016-06-28 21:37:27 +03:00
|
|
|
|
|
|
|
GEN_ATOMIC_HELPER(fetch_add)
|
|
|
|
GEN_ATOMIC_HELPER(fetch_and)
|
|
|
|
GEN_ATOMIC_HELPER(fetch_or)
|
|
|
|
GEN_ATOMIC_HELPER(fetch_xor)
|
|
|
|
GEN_ATOMIC_HELPER(add_fetch)
|
|
|
|
GEN_ATOMIC_HELPER(and_fetch)
|
|
|
|
GEN_ATOMIC_HELPER(or_fetch)
|
|
|
|
GEN_ATOMIC_HELPER(xor_fetch)
|
|
|
|
|
|
|
|
#undef GEN_ATOMIC_HELPER
|
2018-05-10 20:10:57 +03:00
|
|
|
|
2021-07-17 03:49:09 +03:00
|
|
|
/*
|
|
|
|
* These helpers are, as a whole, full barriers. Within the helper,
|
2018-05-10 20:10:57 +03:00
|
|
|
* the leading barrier is explicit and the trailing barrier is within
|
|
|
|
* cmpxchg primitive.
|
2018-05-23 01:26:52 +03:00
|
|
|
*
|
|
|
|
* Trace this load + RMW loop as a single RMW op. This way, regardless
|
|
|
|
* of CF_PARALLEL's value, we'll trace just a read and a write.
|
2018-05-10 20:10:57 +03:00
|
|
|
*/
|
|
|
|
#define GEN_ATOMIC_HELPER_FN(X, FN, XDATA_TYPE, RET) \
|
2023-08-07 18:57:02 +03:00
|
|
|
ABI_TYPE ATOMIC_NAME(X)(CPUArchState *env, abi_ptr addr, \
|
2021-07-26 01:06:49 +03:00
|
|
|
ABI_TYPE xval, MemOpIdx oi, uintptr_t retaddr) \
|
2018-05-10 20:10:57 +03:00
|
|
|
{ \
|
2023-05-20 03:54:18 +03:00
|
|
|
XDATA_TYPE *haddr, cmp, old, new, val = xval; \
|
2023-09-12 18:34:23 +03:00
|
|
|
haddr = atomic_mmu_lookup(env_cpu(env), addr, oi, DATA_SIZE, retaddr); \
|
2018-05-10 20:10:57 +03:00
|
|
|
smp_mb(); \
|
2020-09-23 13:56:46 +03:00
|
|
|
cmp = qatomic_read__nocheck(haddr); \
|
2018-05-10 20:10:57 +03:00
|
|
|
do { \
|
|
|
|
old = cmp; new = FN(old, val); \
|
2020-09-23 13:56:46 +03:00
|
|
|
cmp = qatomic_cmpxchg__nocheck(haddr, old, new); \
|
2018-05-10 20:10:57 +03:00
|
|
|
} while (cmp != old); \
|
|
|
|
ATOMIC_MMU_CLEANUP; \
|
2024-09-16 11:53:46 +03:00
|
|
|
atomic_trace_rmw_post(env, addr, \
|
|
|
|
VALUE_LOW(old), \
|
|
|
|
VALUE_HIGH(old), \
|
|
|
|
VALUE_LOW(xval), \
|
|
|
|
VALUE_HIGH(xval), \
|
|
|
|
oi); \
|
2018-05-10 20:10:57 +03:00
|
|
|
return RET; \
|
|
|
|
}
|
|
|
|
|
|
|
|
GEN_ATOMIC_HELPER_FN(fetch_smin, MIN, SDATA_TYPE, old)
|
|
|
|
GEN_ATOMIC_HELPER_FN(fetch_umin, MIN, DATA_TYPE, old)
|
|
|
|
GEN_ATOMIC_HELPER_FN(fetch_smax, MAX, SDATA_TYPE, old)
|
|
|
|
GEN_ATOMIC_HELPER_FN(fetch_umax, MAX, DATA_TYPE, old)
|
|
|
|
|
|
|
|
GEN_ATOMIC_HELPER_FN(smin_fetch, MIN, SDATA_TYPE, new)
|
|
|
|
GEN_ATOMIC_HELPER_FN(umin_fetch, MIN, DATA_TYPE, new)
|
|
|
|
GEN_ATOMIC_HELPER_FN(smax_fetch, MAX, SDATA_TYPE, new)
|
|
|
|
GEN_ATOMIC_HELPER_FN(umax_fetch, MAX, DATA_TYPE, new)
|
|
|
|
|
|
|
|
#undef GEN_ATOMIC_HELPER_FN
|
2023-05-20 03:45:47 +03:00
|
|
|
#endif /* DATA SIZE < 16 */
|
2016-06-30 07:10:59 +03:00
|
|
|
|
2016-06-28 21:37:27 +03:00
|
|
|
#undef END
|
|
|
|
|
|
|
|
#if DATA_SIZE > 1
|
|
|
|
|
|
|
|
/* Define reverse-host-endian atomic operations. Note that END is used
|
|
|
|
within the ATOMIC_NAME macro. */
|
2022-03-23 18:57:17 +03:00
|
|
|
#if HOST_BIG_ENDIAN
|
2016-06-28 21:37:27 +03:00
|
|
|
# define END _le
|
|
|
|
#else
|
|
|
|
# define END _be
|
|
|
|
#endif
|
|
|
|
|
2023-08-07 18:57:02 +03:00
|
|
|
ABI_TYPE ATOMIC_NAME(cmpxchg)(CPUArchState *env, abi_ptr addr,
|
2021-07-17 01:57:02 +03:00
|
|
|
ABI_TYPE cmpv, ABI_TYPE newv,
|
2021-07-26 01:06:49 +03:00
|
|
|
MemOpIdx oi, uintptr_t retaddr)
|
2016-06-28 21:37:27 +03:00
|
|
|
{
|
2023-09-12 18:34:23 +03:00
|
|
|
DATA_TYPE *haddr = atomic_mmu_lookup(env_cpu(env), addr, oi,
|
|
|
|
DATA_SIZE, retaddr);
|
2018-05-23 01:26:52 +03:00
|
|
|
DATA_TYPE ret;
|
|
|
|
|
2018-08-16 02:31:47 +03:00
|
|
|
#if DATA_SIZE == 16
|
|
|
|
ret = atomic16_cmpxchg(haddr, BSWAP(cmpv), BSWAP(newv));
|
|
|
|
#else
|
2020-09-23 13:56:46 +03:00
|
|
|
ret = qatomic_cmpxchg__nocheck(haddr, BSWAP(cmpv), BSWAP(newv));
|
2018-08-16 02:31:47 +03:00
|
|
|
#endif
|
2017-11-14 12:34:20 +03:00
|
|
|
ATOMIC_MMU_CLEANUP;
|
2024-09-16 11:53:46 +03:00
|
|
|
atomic_trace_rmw_post(env, addr,
|
|
|
|
VALUE_LOW(ret),
|
|
|
|
VALUE_HIGH(ret),
|
|
|
|
VALUE_LOW(newv),
|
|
|
|
VALUE_HIGH(newv),
|
|
|
|
oi);
|
2017-11-14 12:34:20 +03:00
|
|
|
return BSWAP(ret);
|
2016-06-28 21:37:27 +03:00
|
|
|
}
|
|
|
|
|
2023-05-20 03:45:47 +03:00
|
|
|
#if DATA_SIZE < 16
|
2023-08-07 18:57:02 +03:00
|
|
|
ABI_TYPE ATOMIC_NAME(xchg)(CPUArchState *env, abi_ptr addr, ABI_TYPE val,
|
2021-07-26 01:06:49 +03:00
|
|
|
MemOpIdx oi, uintptr_t retaddr)
|
2016-06-28 21:37:27 +03:00
|
|
|
{
|
2023-09-12 18:34:23 +03:00
|
|
|
DATA_TYPE *haddr = atomic_mmu_lookup(env_cpu(env), addr, oi,
|
|
|
|
DATA_SIZE, retaddr);
|
2018-05-23 01:26:52 +03:00
|
|
|
ABI_TYPE ret;
|
|
|
|
|
2020-09-23 13:56:46 +03:00
|
|
|
ret = qatomic_xchg__nocheck(haddr, BSWAP(val));
|
2017-11-14 12:34:20 +03:00
|
|
|
ATOMIC_MMU_CLEANUP;
|
2024-09-16 11:53:46 +03:00
|
|
|
atomic_trace_rmw_post(env, addr,
|
|
|
|
VALUE_LOW(ret),
|
|
|
|
VALUE_HIGH(ret),
|
|
|
|
VALUE_LOW(val),
|
|
|
|
VALUE_HIGH(val),
|
|
|
|
oi);
|
2017-11-14 12:34:20 +03:00
|
|
|
return BSWAP(ret);
|
2016-06-28 21:37:27 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
#define GEN_ATOMIC_HELPER(X) \
|
2023-08-07 18:57:02 +03:00
|
|
|
ABI_TYPE ATOMIC_NAME(X)(CPUArchState *env, abi_ptr addr, \
|
2021-07-26 01:06:49 +03:00
|
|
|
ABI_TYPE val, MemOpIdx oi, uintptr_t retaddr) \
|
2016-06-28 21:37:27 +03:00
|
|
|
{ \
|
2023-05-20 03:54:18 +03:00
|
|
|
DATA_TYPE *haddr, ret; \
|
2023-09-12 18:34:23 +03:00
|
|
|
haddr = atomic_mmu_lookup(env_cpu(env), addr, oi, DATA_SIZE, retaddr); \
|
2020-09-23 13:56:46 +03:00
|
|
|
ret = qatomic_##X(haddr, BSWAP(val)); \
|
2017-11-14 12:34:20 +03:00
|
|
|
ATOMIC_MMU_CLEANUP; \
|
2024-09-16 11:53:46 +03:00
|
|
|
atomic_trace_rmw_post(env, addr, \
|
|
|
|
VALUE_LOW(ret), \
|
|
|
|
VALUE_HIGH(ret), \
|
|
|
|
VALUE_LOW(val), \
|
|
|
|
VALUE_HIGH(val), \
|
|
|
|
oi); \
|
2017-11-14 12:34:20 +03:00
|
|
|
return BSWAP(ret); \
|
2016-06-28 21:37:27 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
GEN_ATOMIC_HELPER(fetch_and)
|
|
|
|
GEN_ATOMIC_HELPER(fetch_or)
|
|
|
|
GEN_ATOMIC_HELPER(fetch_xor)
|
|
|
|
GEN_ATOMIC_HELPER(and_fetch)
|
|
|
|
GEN_ATOMIC_HELPER(or_fetch)
|
|
|
|
GEN_ATOMIC_HELPER(xor_fetch)
|
|
|
|
|
|
|
|
#undef GEN_ATOMIC_HELPER
|
|
|
|
|
2018-05-10 20:10:57 +03:00
|
|
|
/* These helpers are, as a whole, full barriers. Within the helper,
|
|
|
|
* the leading barrier is explicit and the trailing barrier is within
|
|
|
|
* cmpxchg primitive.
|
2018-05-23 01:26:52 +03:00
|
|
|
*
|
|
|
|
* Trace this load + RMW loop as a single RMW op. This way, regardless
|
|
|
|
* of CF_PARALLEL's value, we'll trace just a read and a write.
|
2018-05-10 20:10:57 +03:00
|
|
|
*/
|
|
|
|
#define GEN_ATOMIC_HELPER_FN(X, FN, XDATA_TYPE, RET) \
|
2023-08-07 18:57:02 +03:00
|
|
|
ABI_TYPE ATOMIC_NAME(X)(CPUArchState *env, abi_ptr addr, \
|
2021-07-26 01:06:49 +03:00
|
|
|
ABI_TYPE xval, MemOpIdx oi, uintptr_t retaddr) \
|
2018-05-10 20:10:57 +03:00
|
|
|
{ \
|
2023-05-20 03:54:18 +03:00
|
|
|
XDATA_TYPE *haddr, ldo, ldn, old, new, val = xval; \
|
2023-09-12 18:34:23 +03:00
|
|
|
haddr = atomic_mmu_lookup(env_cpu(env), addr, oi, DATA_SIZE, retaddr); \
|
2018-05-10 20:10:57 +03:00
|
|
|
smp_mb(); \
|
2020-09-23 13:56:46 +03:00
|
|
|
ldn = qatomic_read__nocheck(haddr); \
|
2018-05-10 20:10:57 +03:00
|
|
|
do { \
|
|
|
|
ldo = ldn; old = BSWAP(ldo); new = FN(old, val); \
|
2020-09-23 13:56:46 +03:00
|
|
|
ldn = qatomic_cmpxchg__nocheck(haddr, ldo, BSWAP(new)); \
|
2018-05-10 20:10:57 +03:00
|
|
|
} while (ldo != ldn); \
|
|
|
|
ATOMIC_MMU_CLEANUP; \
|
2024-09-16 11:53:46 +03:00
|
|
|
atomic_trace_rmw_post(env, addr, \
|
|
|
|
VALUE_LOW(old), \
|
|
|
|
VALUE_HIGH(old), \
|
|
|
|
VALUE_LOW(xval), \
|
|
|
|
VALUE_HIGH(xval), \
|
|
|
|
oi); \
|
2018-05-10 20:10:57 +03:00
|
|
|
return RET; \
|
|
|
|
}
|
|
|
|
|
|
|
|
GEN_ATOMIC_HELPER_FN(fetch_smin, MIN, SDATA_TYPE, old)
|
|
|
|
GEN_ATOMIC_HELPER_FN(fetch_umin, MIN, DATA_TYPE, old)
|
|
|
|
GEN_ATOMIC_HELPER_FN(fetch_smax, MAX, SDATA_TYPE, old)
|
|
|
|
GEN_ATOMIC_HELPER_FN(fetch_umax, MAX, DATA_TYPE, old)
|
|
|
|
|
|
|
|
GEN_ATOMIC_HELPER_FN(smin_fetch, MIN, SDATA_TYPE, new)
|
|
|
|
GEN_ATOMIC_HELPER_FN(umin_fetch, MIN, DATA_TYPE, new)
|
|
|
|
GEN_ATOMIC_HELPER_FN(smax_fetch, MAX, SDATA_TYPE, new)
|
|
|
|
GEN_ATOMIC_HELPER_FN(umax_fetch, MAX, DATA_TYPE, new)
|
|
|
|
|
2018-05-10 20:10:57 +03:00
|
|
|
/* Note that for addition, we need to use a separate cmpxchg loop instead
|
|
|
|
of bswaps for the reverse-host-endian helpers. */
|
|
|
|
#define ADD(X, Y) (X + Y)
|
|
|
|
GEN_ATOMIC_HELPER_FN(fetch_add, ADD, DATA_TYPE, old)
|
|
|
|
GEN_ATOMIC_HELPER_FN(add_fetch, ADD, DATA_TYPE, new)
|
|
|
|
#undef ADD
|
|
|
|
|
2018-05-10 20:10:57 +03:00
|
|
|
#undef GEN_ATOMIC_HELPER_FN
|
2023-05-20 03:45:47 +03:00
|
|
|
#endif /* DATA_SIZE < 16 */
|
2016-06-28 21:37:27 +03:00
|
|
|
|
|
|
|
#undef END
|
|
|
|
#endif /* DATA_SIZE > 1 */
|
|
|
|
|
|
|
|
#undef BSWAP
|
|
|
|
#undef ABI_TYPE
|
|
|
|
#undef DATA_TYPE
|
2018-05-10 20:10:57 +03:00
|
|
|
#undef SDATA_TYPE
|
2016-06-28 21:37:27 +03:00
|
|
|
#undef SUFFIX
|
|
|
|
#undef DATA_SIZE
|
2018-05-23 01:26:52 +03:00
|
|
|
#undef SHIFT
|
2024-09-16 11:53:46 +03:00
|
|
|
#undef VALUE_LOW
|
|
|
|
#undef VALUE_HIGH
|