freebsd-dev/lib/libcompiler_rt/__sync_fetch_and_xor_4.c
Ed Schouten 6d57c75097 Add locally implemented atomic intrinsics to libcompiler_rt.
The built-in atomic operations are not implemented in our version of GCC
4.2 for the ARM and MIPS architectures. Instead of emitting locked
instructions, they generate calls to functions that can be implemented
in the C runtime.

Only implement the atomic operations that are used by <stdatomic.h> for
datatype sizes that are supported by atomic(9). This means that on these
architectures, we can only use atomic operations on 32-bits and 64-bits
variables, which is typically sufficient.

This makes <stdatomic.h> work on all architectures except MIPS, since
MIPS and SPARC64 still use libgcc. Converting these architectures to
libcompiler_rt is on my todo list.
2011-12-27 22:13:51 +00:00

8 lines
174 B
C

/* $FreeBSD$ */
#define NAME __sync_fetch_and_xor_4
#define TYPE uint32_t
#define CMPSET atomic_cmpset_32
#define EXPRESSION t ^ value
#include "__sync_fetch_and_op_n.h"