From 4bb58e4f5d8dbf6ff38d1652c421414f9dae8cf4 Mon Sep 17 00:00:00 2001 From: marcel Date: Sun, 16 Feb 2014 23:08:21 +0000 Subject: MFC r260175: Implement atomic_swap_. --- sys/ia64/include/atomic.h | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/sys/ia64/include/atomic.h b/sys/ia64/include/atomic.h index d2f8874..e8ac7a7 100644 --- a/sys/ia64/include/atomic.h +++ b/sys/ia64/include/atomic.h @@ -386,4 +386,32 @@ atomic_fetchadd_long(volatile u_long *p, u_long v) return (value); } +/* + * atomic_swap_(volatile *p, v); + */ + +static __inline uint32_t +atomic_swap_32(volatile uint32_t *p, uint32_t v) +{ + uint32_t r; + + __asm __volatile ("xchg4 %0 = %3, %2;;" : "=r"(r), "=m"(*p) : + "r"(v), "m"(*p) : "memory"); + return (r); +} + +static __inline uint64_t +atomic_swap_64(volatile uint64_t *p, uint64_t v) +{ + uint64_t r; + + __asm __volatile ("xchg8 %0 = %3, %2;;" : "=r"(r), "=m"(*p) : + "r"(v), "m"(*p) : "memory"); + return (r); +} + +#define atomic_swap_int atomic_swap_32 +#define atomic_swap_long atomic_swap_64 +#define atomic_swap_ptr atomic_swap_64 + #endif /* ! _MACHINE_ATOMIC_H_ */ -- cgit v1.1