/*
* Copyright (c) 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2017,
* 2018
* Jonathan Schleifer <js@heap.zone>
*
* All rights reserved.
*
* This file is part of ObjFW. It may be distributed under the terms of the
* Q Public License 1.0, which can be found in the file LICENSE.QPL included in
* the packaging of this file.
*
* Alternatively, it may be distributed under the terms of the GNU General
* Public License, either version 2 or 3, which can be found in the file
* LICENSE.GPLv2 or LICENSE.GPLv3 respectively included in the packaging of this
* file.
*/
#include <libkern/OSAtomic.h>
static OF_INLINE int
of_atomic_int_add(volatile int *_Nonnull p, int i)
{
return OSAtomicAdd32(i, p);
}
static OF_INLINE int32_t
of_atomic_int32_add(volatile int32_t *_Nonnull p, int32_t i)
{
return OSAtomicAdd32(i, p);
}
static OF_INLINE void *_Nullable
of_atomic_ptr_add(void *volatile _Nullable *_Nonnull p, intptr_t i)
{
#ifdef __LP64__
return (void *)OSAtomicAdd64(i, (int64_t *)p);
#else
return (void *)OSAtomicAdd32(i, (int32_t *)p);
#endif
}
static OF_INLINE int
of_atomic_int_sub(volatile int *_Nonnull p, int i)
{
return OSAtomicAdd32(-i, p);
}
static OF_INLINE int32_t
of_atomic_int32_sub(volatile int32_t *_Nonnull p, int32_t i)
{
return OSAtomicAdd32(-i, p);
}
static OF_INLINE void *_Nullable
of_atomic_ptr_sub(void *volatile _Nullable *_Nonnull p, intptr_t i)
{
#ifdef __LP64__
return (void *)OSAtomicAdd64(-i, (int64_t *)p);
#else
return (void *)OSAtomicAdd32(-i, (int32_t *)p);
#endif
}
static OF_INLINE int
of_atomic_int_inc(volatile int *_Nonnull p)
{
return OSAtomicIncrement32(p);
}
static OF_INLINE int32_t
of_atomic_int32_inc(volatile int32_t *_Nonnull p)
{
return OSAtomicIncrement32(p);
}
static OF_INLINE int
of_atomic_int_dec(volatile int *_Nonnull p)
{
return OSAtomicDecrement32(p);
}
static OF_INLINE int32_t
of_atomic_int32_dec(volatile int32_t *_Nonnull p)
{
return OSAtomicDecrement32(p);
}
static OF_INLINE unsigned int
of_atomic_int_or(volatile unsigned int *_Nonnull p, unsigned int i)
{
return OSAtomicOr32(i, p);
}
static OF_INLINE uint32_t
of_atomic_int32_or(volatile uint32_t *_Nonnull p, uint32_t i)
{
return OSAtomicOr32(i, p);
}
static OF_INLINE unsigned int
of_atomic_int_and(volatile unsigned int *_Nonnull p, unsigned int i)
{
return OSAtomicAnd32(i, p);
}
static OF_INLINE uint32_t
of_atomic_int32_and(volatile uint32_t *_Nonnull p, uint32_t i)
{
return OSAtomicAnd32(i, p);
}
static OF_INLINE unsigned int
of_atomic_int_xor(volatile unsigned int *_Nonnull p, unsigned int i)
{
return OSAtomicXor32(i, p);
}
static OF_INLINE uint32_t
of_atomic_int32_xor(volatile uint32_t *_Nonnull p, uint32_t i)
{
return OSAtomicXor32(i, p);
}
static OF_INLINE bool
of_atomic_int_cmpswap(volatile int *_Nonnull p, int o, int n)
{
return OSAtomicCompareAndSwapInt(o, n, p);
}
static OF_INLINE bool
of_atomic_int32_cmpswap(volatile int32_t *_Nonnull p, int32_t o, int32_t n)
{
return OSAtomicCompareAndSwap32(o, n, p);
}
static OF_INLINE bool
of_atomic_ptr_cmpswap(void *volatile _Nullable *_Nonnull p,
void *_Nullable o, void *_Nullable n)
{
return OSAtomicCompareAndSwapPtr(o, n, p);
}
static OF_INLINE void
of_memory_barrier(void)
{
OSMemoryBarrier();
}
static OF_INLINE void
of_memory_barrier_acquire(void)
{
OSMemoryBarrier();
}
static OF_INLINE void
of_memory_barrier_release(void)
{
OSMemoryBarrier();
}