2015-06-21 18:33:46 +03:00
|
|
|
/*
|
|
|
|
Simple DirectMedia Layer
|
2024-01-02 00:15:26 +03:00
|
|
|
Copyright (C) 1997-2024 Sam Lantinga <slouken@libsdl.org>
|
2015-06-21 18:33:46 +03:00
|
|
|
|
|
|
|
This software is provided 'as-is', without any express or implied
|
|
|
|
warranty. In no event will the authors be held liable for any damages
|
|
|
|
arising from the use of this software.
|
|
|
|
|
|
|
|
Permission is granted to anyone to use this software for any purpose,
|
|
|
|
including commercial applications, and to alter it and redistribute it
|
|
|
|
freely, subject to the following restrictions:
|
|
|
|
|
|
|
|
1. The origin of this software must not be misrepresented; you must not
|
|
|
|
claim that you wrote the original software. If you use this software
|
|
|
|
in a product, an acknowledgment in the product documentation would be
|
|
|
|
appreciated but is not required.
|
|
|
|
2. Altered source versions must be plainly marked as such, and must not be
|
|
|
|
misrepresented as being the original software.
|
|
|
|
3. This notice may not be removed or altered from any source distribution.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* \file SDL_atomic.h
|
|
|
|
*
|
2023-11-06 18:26:06 +03:00
|
|
|
* Atomic operations.
|
2015-06-21 18:33:46 +03:00
|
|
|
*
|
|
|
|
* IMPORTANT:
|
|
|
|
* If you are not an expert in concurrent lockless programming, you should
|
2024-04-24 23:42:16 +03:00
|
|
|
* not be using any functions in this file. You should be protecting your
|
|
|
|
* data structures with full mutexes instead.
|
2015-06-21 18:33:46 +03:00
|
|
|
*
|
|
|
|
* Seriously, here be dragons!
|
|
|
|
* ^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
*
|
|
|
|
* You can find out a little more about lockless programming and the
|
|
|
|
* subtle issues that can arise here:
|
2023-02-18 20:32:06 +03:00
|
|
|
* https://learn.microsoft.com/en-us/windows/win32/dxtecharts/lockless-programming
|
2015-06-21 18:33:46 +03:00
|
|
|
*
|
|
|
|
* There's also lots of good information here:
|
|
|
|
* http://www.1024cores.net/home/lock-free-algorithms
|
|
|
|
* http://preshing.com/
|
|
|
|
*
|
|
|
|
* These operations may or may not actually be implemented using
|
|
|
|
* processor specific atomic operations. When possible they are
|
|
|
|
* implemented as true processor specific atomic operations. When that
|
|
|
|
* is not possible the are implemented using locks that *do* use the
|
|
|
|
* available atomic operations.
|
|
|
|
*
|
|
|
|
* All of the atomic operations that modify memory are full memory barriers.
|
|
|
|
*/
|
|
|
|
|
2016-11-21 08:34:54 +03:00
|
|
|
#ifndef SDL_atomic_h_
|
|
|
|
#define SDL_atomic_h_
|
2015-06-21 18:33:46 +03:00
|
|
|
|
2022-11-27 07:43:38 +03:00
|
|
|
#include <SDL3/SDL_stdinc.h>
|
2023-01-08 02:40:09 +03:00
|
|
|
#include <SDL3/SDL_platform_defines.h>
|
2015-06-21 18:33:46 +03:00
|
|
|
|
2022-12-22 19:38:59 +03:00
|
|
|
#include <SDL3/SDL_begin_code.h>
|
2015-06-21 18:33:46 +03:00
|
|
|
|
|
|
|
/* Set up for C function definitions, even when using C++ */
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/**
|
2024-04-24 23:42:16 +03:00
|
|
|
* An atomic spinlock.
|
2015-06-21 18:33:46 +03:00
|
|
|
*
|
2024-04-24 23:43:29 +03:00
|
|
|
* The atomic locks are efficient spinlocks using CPU instructions, but are
|
|
|
|
* vulnerable to starvation and can spin forever if a thread holding a lock
|
|
|
|
* has been terminated. For this reason you should minimize the code executed
|
|
|
|
* inside an atomic lock and never do expensive things like API or system
|
|
|
|
* calls while holding them.
|
2015-06-21 18:33:46 +03:00
|
|
|
*
|
2024-04-24 23:43:29 +03:00
|
|
|
* They are also vulnerable to starvation if the thread holding the lock is
|
|
|
|
* lower priority than other threads and doesn't get scheduled. In general you
|
|
|
|
* should use mutexes instead, since they have better performance and
|
|
|
|
* contention behavior.
|
2023-01-09 20:01:41 +03:00
|
|
|
*
|
2015-06-21 18:33:46 +03:00
|
|
|
* The atomic locks are not safe to lock recursively.
|
|
|
|
*
|
2024-04-24 23:43:29 +03:00
|
|
|
* Porting Note: The spin lock functions and type are required and can not be
|
2015-06-21 18:33:46 +03:00
|
|
|
* emulated because they are used in the atomic emulation code.
|
|
|
|
*/
|
|
|
|
typedef int SDL_SpinLock;
|
|
|
|
|
|
|
|
/**
|
2021-03-21 21:18:39 +03:00
|
|
|
* Try to lock a spin lock by setting it to a non-zero value.
|
2015-06-21 18:33:46 +03:00
|
|
|
*
|
2021-03-21 21:18:39 +03:00
|
|
|
* ***Please note that spinlocks are dangerous if you don't know what you're
|
|
|
|
* doing. Please be careful using any sort of spinlock!***
|
2015-06-21 18:33:46 +03:00
|
|
|
*
|
2021-03-21 21:18:39 +03:00
|
|
|
* \param lock a pointer to a lock variable
|
|
|
|
* \returns SDL_TRUE if the lock succeeded, SDL_FALSE if the lock is already
|
|
|
|
* held.
|
|
|
|
*
|
2022-11-23 01:40:14 +03:00
|
|
|
* \since This function is available since SDL 3.0.0.
|
2021-10-27 04:36:05 +03:00
|
|
|
*
|
2024-01-18 14:39:55 +03:00
|
|
|
* \sa SDL_LockSpinlock
|
|
|
|
* \sa SDL_UnlockSpinlock
|
2015-06-21 18:33:46 +03:00
|
|
|
*/
|
2024-01-18 14:39:55 +03:00
|
|
|
extern DECLSPEC SDL_bool SDLCALL SDL_TryLockSpinlock(SDL_SpinLock *lock);
|
2015-06-21 18:33:46 +03:00
|
|
|
|
|
|
|
/**
|
2021-03-21 21:18:39 +03:00
|
|
|
* Lock a spin lock by setting it to a non-zero value.
|
|
|
|
*
|
|
|
|
* ***Please note that spinlocks are dangerous if you don't know what you're
|
|
|
|
* doing. Please be careful using any sort of spinlock!***
|
2015-06-21 18:33:46 +03:00
|
|
|
*
|
2021-03-21 21:18:39 +03:00
|
|
|
* \param lock a pointer to a lock variable
|
|
|
|
*
|
2022-11-23 01:40:14 +03:00
|
|
|
* \since This function is available since SDL 3.0.0.
|
2021-10-27 04:36:05 +03:00
|
|
|
*
|
2024-01-18 14:39:55 +03:00
|
|
|
* \sa SDL_TryLockSpinlock
|
|
|
|
* \sa SDL_UnlockSpinlock
|
2015-06-21 18:33:46 +03:00
|
|
|
*/
|
2024-01-18 14:39:55 +03:00
|
|
|
extern DECLSPEC void SDLCALL SDL_LockSpinlock(SDL_SpinLock *lock);
|
2015-06-21 18:33:46 +03:00
|
|
|
|
|
|
|
/**
|
2021-03-21 21:18:39 +03:00
|
|
|
* Unlock a spin lock by setting it to 0.
|
|
|
|
*
|
|
|
|
* Always returns immediately.
|
|
|
|
*
|
|
|
|
* ***Please note that spinlocks are dangerous if you don't know what you're
|
|
|
|
* doing. Please be careful using any sort of spinlock!***
|
|
|
|
*
|
|
|
|
* \param lock a pointer to a lock variable
|
|
|
|
*
|
2022-11-23 01:40:14 +03:00
|
|
|
* \since This function is available since SDL 3.0.0.
|
2015-06-21 18:33:46 +03:00
|
|
|
*
|
2024-01-18 14:39:55 +03:00
|
|
|
* \sa SDL_LockSpinlock
|
|
|
|
* \sa SDL_TryLockSpinlock
|
2015-06-21 18:33:46 +03:00
|
|
|
*/
|
2024-01-18 14:39:55 +03:00
|
|
|
extern DECLSPEC void SDLCALL SDL_UnlockSpinlock(SDL_SpinLock *lock);
|
2015-06-21 18:33:46 +03:00
|
|
|
|
|
|
|
|
2024-04-14 08:33:56 +03:00
|
|
|
#ifdef SDL_WIKI_DOCUMENTATION_SECTION
|
2024-04-14 08:35:26 +03:00
|
|
|
|
2015-06-21 18:33:46 +03:00
|
|
|
/**
|
2024-04-14 08:33:56 +03:00
|
|
|
* Mark a compiler barrier.
|
|
|
|
*
|
2024-04-14 08:35:26 +03:00
|
|
|
* A compiler barrier prevents the compiler from reordering reads and writes
|
|
|
|
* to globally visible variables across the call.
|
2024-04-14 08:33:56 +03:00
|
|
|
*
|
2024-04-14 08:35:26 +03:00
|
|
|
* This macro only prevents the compiler from reordering reads and writes, it
|
|
|
|
* does not prevent the CPU from reordering reads and writes. However, all of
|
|
|
|
* the atomic operations that modify memory are full memory barriers.
|
2024-04-14 08:33:56 +03:00
|
|
|
*
|
2024-04-14 08:35:26 +03:00
|
|
|
* \threadsafety Obviously this macro is safe to use from any thread at any
|
|
|
|
* time, but if you find yourself needing this, you are probably
|
|
|
|
* dealing with some very sensitive code; be careful!
|
2024-04-14 08:33:56 +03:00
|
|
|
*
|
|
|
|
* \since This macro is available since SDL 3.0.0.
|
2015-06-21 18:33:46 +03:00
|
|
|
*/
|
2024-04-14 08:33:56 +03:00
|
|
|
#define SDL_CompilerBarrier() DoCompilerSpecificReadWriteBarrier()
|
|
|
|
#elif defined(_MSC_VER) && (_MSC_VER > 1200) && !defined(__clang__)
|
2015-06-21 18:33:46 +03:00
|
|
|
void _ReadWriteBarrier(void);
|
|
|
|
#pragma intrinsic(_ReadWriteBarrier)
|
|
|
|
#define SDL_CompilerBarrier() _ReadWriteBarrier()
|
2024-01-24 04:40:51 +03:00
|
|
|
#elif (defined(__GNUC__) && !defined(SDL_PLATFORM_EMSCRIPTEN)) || (defined(__SUNPRO_C) && (__SUNPRO_C >= 0x5120))
|
2015-06-21 18:33:46 +03:00
|
|
|
/* This is correct for all CPUs when using GCC or Solaris Studio 12.1+. */
|
|
|
|
#define SDL_CompilerBarrier() __asm__ __volatile__ ("" : : : "memory")
|
2017-08-18 23:35:55 +03:00
|
|
|
#elif defined(__WATCOMC__)
|
2021-11-25 17:00:24 +03:00
|
|
|
extern __inline void SDL_CompilerBarrier(void);
|
2017-08-18 23:35:55 +03:00
|
|
|
#pragma aux SDL_CompilerBarrier = "" parm [] modify exact [];
|
2015-06-21 18:33:46 +03:00
|
|
|
#else
|
|
|
|
#define SDL_CompilerBarrier() \
|
2024-01-18 14:39:55 +03:00
|
|
|
{ SDL_SpinLock _tmp = 0; SDL_LockSpinlock(&_tmp); SDL_UnlockSpinlock(&_tmp); }
|
2015-06-21 18:33:46 +03:00
|
|
|
#endif
|
|
|
|
|
|
|
|
/**
|
2024-04-14 08:33:56 +03:00
|
|
|
* Insert a memory release barrier.
|
|
|
|
*
|
2015-06-21 18:33:46 +03:00
|
|
|
* Memory barriers are designed to prevent reads and writes from being
|
|
|
|
* reordered by the compiler and being seen out of order on multi-core CPUs.
|
|
|
|
*
|
2021-07-15 00:07:04 +03:00
|
|
|
* A typical pattern would be for thread A to write some data and a flag, and
|
|
|
|
* for thread B to read the flag and get the data. In this case you would
|
|
|
|
* insert a release barrier between writing the data and the flag,
|
2015-06-21 18:33:46 +03:00
|
|
|
* guaranteeing that the data write completes no later than the flag is
|
2021-07-15 00:07:04 +03:00
|
|
|
* written, and you would insert an acquire barrier between reading the flag
|
|
|
|
* and reading the data, to ensure that all the reads associated with the flag
|
|
|
|
* have completed.
|
2015-06-21 18:33:46 +03:00
|
|
|
*
|
2021-07-15 00:07:04 +03:00
|
|
|
* In this pattern you should always see a release barrier paired with an
|
|
|
|
* acquire barrier and you should gate the data reads/writes with a single
|
|
|
|
* flag variable.
|
2015-06-21 18:33:46 +03:00
|
|
|
*
|
|
|
|
* For more information on these semantics, take a look at the blog post:
|
|
|
|
* http://preshing.com/20120913/acquire-and-release-semantics
|
2021-10-27 04:36:05 +03:00
|
|
|
*
|
2024-04-14 08:35:26 +03:00
|
|
|
* \threadsafety Obviously this macro is safe to use from any thread at any
|
|
|
|
* time, but if you find yourself needing this, you are probably
|
|
|
|
* dealing with some very sensitive code; be careful!
|
2024-04-14 08:33:56 +03:00
|
|
|
*
|
2022-11-23 01:40:14 +03:00
|
|
|
* \since This function is available since SDL 3.0.0.
|
2015-06-21 18:33:46 +03:00
|
|
|
*/
|
2017-02-10 22:21:15 +03:00
|
|
|
extern DECLSPEC void SDLCALL SDL_MemoryBarrierReleaseFunction(void);
|
2023-02-12 22:39:22 +03:00
|
|
|
|
2024-04-14 08:33:56 +03:00
|
|
|
/**
|
|
|
|
* Insert a memory acquire barrier.
|
|
|
|
*
|
|
|
|
* Please refer to SDL_MemoryBarrierReleaseFunction for the details!
|
|
|
|
*
|
2024-04-14 08:35:26 +03:00
|
|
|
* \threadsafety Obviously this function is safe to use from any thread at any
|
|
|
|
* time, but if you find yourself needing this, you are probably
|
|
|
|
* dealing with some very sensitive code; be careful!
|
2024-04-14 08:33:56 +03:00
|
|
|
*
|
2023-02-12 22:39:22 +03:00
|
|
|
* \since This function is available since SDL 3.0.0.
|
2024-04-14 08:33:56 +03:00
|
|
|
*
|
|
|
|
* \sa SDL_MemoryBarrierReleaseFunction
|
2023-02-12 22:39:22 +03:00
|
|
|
*/
|
2017-02-10 22:21:15 +03:00
|
|
|
extern DECLSPEC void SDLCALL SDL_MemoryBarrierAcquireFunction(void);
|
|
|
|
|
2024-04-14 08:33:56 +03:00
|
|
|
/* !!! FIXME: this should have documentation! */
|
2015-06-21 18:33:46 +03:00
|
|
|
#if defined(__GNUC__) && (defined(__powerpc__) || defined(__ppc__))
|
|
|
|
#define SDL_MemoryBarrierRelease() __asm__ __volatile__ ("lwsync" : : : "memory")
|
|
|
|
#define SDL_MemoryBarrierAcquire() __asm__ __volatile__ ("lwsync" : : : "memory")
|
2017-11-20 10:36:54 +03:00
|
|
|
#elif defined(__GNUC__) && defined(__aarch64__)
|
|
|
|
#define SDL_MemoryBarrierRelease() __asm__ __volatile__ ("dmb ish" : : : "memory")
|
|
|
|
#define SDL_MemoryBarrierAcquire() __asm__ __volatile__ ("dmb ish" : : : "memory")
|
2015-06-21 18:33:46 +03:00
|
|
|
#elif defined(__GNUC__) && defined(__arm__)
|
2024-01-24 04:40:51 +03:00
|
|
|
#if 0 /* defined(SDL_PLATFORM_LINUX) || defined(SDL_PLATFORM_ANDROID) */
|
2019-07-01 09:26:16 +03:00
|
|
|
/* Information from:
|
|
|
|
https://chromium.googlesource.com/chromium/chromium/+/trunk/base/atomicops_internals_arm_gcc.h#19
|
|
|
|
|
|
|
|
The Linux kernel provides a helper function which provides the right code for a memory barrier,
|
|
|
|
hard-coded at address 0xffff0fa0
|
|
|
|
*/
|
|
|
|
typedef void (*SDL_KernelMemoryBarrierFunc)();
|
|
|
|
#define SDL_MemoryBarrierRelease() ((SDL_KernelMemoryBarrierFunc)0xffff0fa0)()
|
|
|
|
#define SDL_MemoryBarrierAcquire() ((SDL_KernelMemoryBarrierFunc)0xffff0fa0)()
|
|
|
|
#else
|
2018-11-24 08:29:42 +03:00
|
|
|
#if defined(__ARM_ARCH_7__) || defined(__ARM_ARCH_7A__) || defined(__ARM_ARCH_7EM__) || defined(__ARM_ARCH_7R__) || defined(__ARM_ARCH_7M__) || defined(__ARM_ARCH_7S__) || defined(__ARM_ARCH_8A__)
|
2015-06-21 18:33:46 +03:00
|
|
|
#define SDL_MemoryBarrierRelease() __asm__ __volatile__ ("dmb ish" : : : "memory")
|
|
|
|
#define SDL_MemoryBarrierAcquire() __asm__ __volatile__ ("dmb ish" : : : "memory")
|
Fix memory barriers on ARMv5
The ARM926EJ-S Technical Reference Manual states:
> You can only access CP15 registers with MRC and MCR instructions in a
> privileged mode. CDP, LDC, STC, MCRR, and MRRC instructions, and unprivileged
> MRC or MCR instructions to CP15 cause the Undefined instruction exception to
> be taken.
Furthermore, `MCR p15, 0, <Rd>, c7, c10, 5` (later called Data Memory Barrier)
is not specified for the ARM926. Thus, SDL should not use these cache
instructions on ARMv5.
2024-01-05 08:30:54 +03:00
|
|
|
#elif defined(__ARM_ARCH_6__) || defined(__ARM_ARCH_6J__) || defined(__ARM_ARCH_6K__) || defined(__ARM_ARCH_6T2__) || defined(__ARM_ARCH_6Z__) || defined(__ARM_ARCH_6ZK__)
|
2015-06-21 18:33:46 +03:00
|
|
|
#ifdef __thumb__
|
|
|
|
/* The mcr instruction isn't available in thumb mode, use real functions */
|
2019-07-01 09:58:31 +03:00
|
|
|
#define SDL_MEMORY_BARRIER_USES_FUNCTION
|
2017-02-10 22:21:15 +03:00
|
|
|
#define SDL_MemoryBarrierRelease() SDL_MemoryBarrierReleaseFunction()
|
|
|
|
#define SDL_MemoryBarrierAcquire() SDL_MemoryBarrierAcquireFunction()
|
2015-06-21 18:33:46 +03:00
|
|
|
#else
|
|
|
|
#define SDL_MemoryBarrierRelease() __asm__ __volatile__ ("mcr p15, 0, %0, c7, c10, 5" : : "r"(0) : "memory")
|
|
|
|
#define SDL_MemoryBarrierAcquire() __asm__ __volatile__ ("mcr p15, 0, %0, c7, c10, 5" : : "r"(0) : "memory")
|
|
|
|
#endif /* __thumb__ */
|
|
|
|
#else
|
|
|
|
#define SDL_MemoryBarrierRelease() __asm__ __volatile__ ("" : : : "memory")
|
|
|
|
#define SDL_MemoryBarrierAcquire() __asm__ __volatile__ ("" : : : "memory")
|
2024-01-24 04:40:51 +03:00
|
|
|
#endif /* SDL_PLATFORM_LINUX || SDL_PLATFORM_ANDROID */
|
2015-06-21 18:33:46 +03:00
|
|
|
#endif /* __GNUC__ && __arm__ */
|
|
|
|
#else
|
|
|
|
#if (defined(__SUNPRO_C) && (__SUNPRO_C >= 0x5120))
|
|
|
|
/* This is correct for all CPUs on Solaris when using Solaris Studio 12.1+. */
|
|
|
|
#include <mbarrier.h>
|
|
|
|
#define SDL_MemoryBarrierRelease() __machine_rel_barrier()
|
|
|
|
#define SDL_MemoryBarrierAcquire() __machine_acq_barrier()
|
|
|
|
#else
|
|
|
|
/* This is correct for the x86 and x64 CPUs, and we'll expand this over time. */
|
|
|
|
#define SDL_MemoryBarrierRelease() SDL_CompilerBarrier()
|
|
|
|
#define SDL_MemoryBarrierAcquire() SDL_CompilerBarrier()
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
2022-08-01 09:59:04 +03:00
|
|
|
/* "REP NOP" is PAUSE, coded for tools that don't know it by that name. */
|
2024-04-24 23:42:16 +03:00
|
|
|
#ifdef SDL_WIKI_DOCUMENTATION_SECTION
|
2024-04-24 23:43:29 +03:00
|
|
|
|
2024-04-24 23:42:16 +03:00
|
|
|
/**
|
|
|
|
* A macro to insert a CPU-specific "pause" instruction into the program.
|
|
|
|
*
|
2024-04-24 23:43:29 +03:00
|
|
|
* This can be useful in busy-wait loops, as it serves as a hint to the CPU as
|
|
|
|
* to the program's intent; some CPUs can use this to do more efficient
|
2024-04-24 23:42:16 +03:00
|
|
|
* processing. On some platforms, this doesn't do anything, so using this
|
|
|
|
* macro might just be a harmless no-op.
|
|
|
|
*
|
|
|
|
* Note that if you are busy-waiting, there are often more-efficient
|
|
|
|
* approaches with other synchronization primitives: mutexes, semaphores,
|
|
|
|
* condition variables, etc.
|
|
|
|
*
|
|
|
|
* \threadsafety This macro is safe to use from any thread.
|
|
|
|
*
|
|
|
|
* \since This macro is available since SDL 3.0.0.
|
|
|
|
*/
|
|
|
|
#define SDL_CPUPauseInstruction() DoACPUPauseInACompilerAndArchitectureSpecificWay
|
|
|
|
#elif (defined(__GNUC__) || defined(__clang__)) && (defined(__i386__) || defined(__x86_64__))
|
2022-08-01 09:59:04 +03:00
|
|
|
#define SDL_CPUPauseInstruction() __asm__ __volatile__("pause\n") /* Some assemblers can't do REP NOP, so go with PAUSE. */
|
2023-07-22 22:20:34 +03:00
|
|
|
#elif (defined(__arm__) && defined(__ARM_ARCH) && __ARM_ARCH >= 7) || defined(__aarch64__)
|
2022-08-01 09:59:04 +03:00
|
|
|
#define SDL_CPUPauseInstruction() __asm__ __volatile__("yield" ::: "memory")
|
|
|
|
#elif (defined(__powerpc__) || defined(__powerpc64__))
|
|
|
|
#define SDL_CPUPauseInstruction() __asm__ __volatile__("or 27,27,27");
|
2023-01-23 00:01:22 +03:00
|
|
|
#elif (defined(__riscv) && __riscv_xlen == 64)
|
|
|
|
#define SDL_CPUPauseInstruction() __asm__ __volatile__(".insn i 0x0F, 0, x0, x0, 0x010");
|
2022-08-01 09:59:04 +03:00
|
|
|
#elif defined(_MSC_VER) && (defined(_M_IX86) || defined(_M_X64))
|
|
|
|
#define SDL_CPUPauseInstruction() _mm_pause() /* this is actually "rep nop" and not a SIMD instruction. No inline asm in MSVC x86-64! */
|
|
|
|
#elif defined(_MSC_VER) && (defined(_M_ARM) || defined(_M_ARM64))
|
|
|
|
#define SDL_CPUPauseInstruction() __yield()
|
|
|
|
#elif defined(__WATCOMC__) && defined(__386__)
|
|
|
|
extern __inline void SDL_CPUPauseInstruction(void);
|
2023-01-26 17:00:02 +03:00
|
|
|
#pragma aux SDL_CPUPauseInstruction = ".686p" ".xmm2" "pause"
|
2022-08-01 09:59:04 +03:00
|
|
|
#else
|
|
|
|
#define SDL_CPUPauseInstruction()
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2015-06-21 18:33:46 +03:00
|
|
|
/**
|
2023-11-06 18:26:06 +03:00
|
|
|
* A type representing an atomic integer value.
|
|
|
|
*
|
2024-04-24 23:42:16 +03:00
|
|
|
* This can be used to manage a value that is synchronized across multiple
|
|
|
|
* CPUs without a race condition; when an app sets a value with SDL_AtomicSet
|
|
|
|
* all other threads, regardless of the CPU it is running on, will see that
|
|
|
|
* value when retrieved with SDL_AtomicGet, regardless of CPU caches, etc.
|
|
|
|
*
|
2024-04-24 23:43:29 +03:00
|
|
|
* This is also useful for atomic compare-and-swap operations: a thread can
|
|
|
|
* change the value as long as its current value matches expectations. When
|
|
|
|
* done in a loop, one can guarantee data consistency across threads without a
|
|
|
|
* lock (but the usual warnings apply: if you don't know what you're doing, or
|
|
|
|
* you don't do it carefully, you can confidently cause any number of
|
|
|
|
* disasters with this, so in most cases, you _should_ use a mutex instead of
|
|
|
|
* this!).
|
2024-04-24 23:42:16 +03:00
|
|
|
*
|
2024-04-24 23:43:29 +03:00
|
|
|
* This is a struct so people don't accidentally use numeric operations on it
|
|
|
|
* directly. You have to use SDL_Atomic* functions.
|
2024-04-11 20:34:29 +03:00
|
|
|
*
|
|
|
|
* \since This struct is available since SDL 3.0.0.
|
2024-04-24 23:42:16 +03:00
|
|
|
*
|
|
|
|
* \sa SDL_AtomicCompareAndSwap
|
|
|
|
* \sa SDL_AtomicGet
|
|
|
|
* \sa SDL_AtomicSet
|
|
|
|
* \sa SDL_AtomicAdd
|
2015-06-21 18:33:46 +03:00
|
|
|
*/
|
2023-12-17 20:28:58 +03:00
|
|
|
typedef struct SDL_AtomicInt { int value; } SDL_AtomicInt;
|
2015-06-21 18:33:46 +03:00
|
|
|
|
|
|
|
/**
|
2021-07-15 00:07:04 +03:00
|
|
|
* Set an atomic variable to a new value if it is currently an old value.
|
2015-06-21 18:33:46 +03:00
|
|
|
*
|
2021-03-21 21:18:39 +03:00
|
|
|
* ***Note: If you don't know what this function is for, you shouldn't use
|
|
|
|
* it!***
|
2015-06-21 18:33:46 +03:00
|
|
|
*
|
2023-02-23 22:33:51 +03:00
|
|
|
* \param a a pointer to an SDL_AtomicInt variable to be modified
|
2021-03-21 21:18:39 +03:00
|
|
|
* \param oldval the old value
|
|
|
|
* \param newval the new value
|
|
|
|
* \returns SDL_TRUE if the atomic variable was set, SDL_FALSE otherwise.
|
|
|
|
*
|
2022-11-23 01:40:14 +03:00
|
|
|
* \since This function is available since SDL 3.0.0.
|
2021-03-21 21:18:39 +03:00
|
|
|
*
|
2024-01-18 14:39:55 +03:00
|
|
|
* \sa SDL_AtomicCompareAndSwapPointer
|
2021-03-21 21:18:39 +03:00
|
|
|
*/
|
2024-01-18 14:39:55 +03:00
|
|
|
extern DECLSPEC SDL_bool SDLCALL SDL_AtomicCompareAndSwap(SDL_AtomicInt *a, int oldval, int newval);
|
2015-06-21 18:33:46 +03:00
|
|
|
|
|
|
|
/**
|
2021-03-21 21:18:39 +03:00
|
|
|
* Set an atomic variable to a value.
|
|
|
|
*
|
|
|
|
* This function also acts as a full memory barrier.
|
|
|
|
*
|
|
|
|
* ***Note: If you don't know what this function is for, you shouldn't use
|
|
|
|
* it!***
|
|
|
|
*
|
2023-02-23 22:33:51 +03:00
|
|
|
* \param a a pointer to an SDL_AtomicInt variable to be modified
|
2021-03-21 21:18:39 +03:00
|
|
|
* \param v the desired value
|
|
|
|
* \returns the previous value of the atomic variable.
|
2015-06-21 18:33:46 +03:00
|
|
|
*
|
2022-11-23 01:40:14 +03:00
|
|
|
* \since This function is available since SDL 3.0.0.
|
2021-10-27 04:36:05 +03:00
|
|
|
*
|
2021-03-21 21:18:39 +03:00
|
|
|
* \sa SDL_AtomicGet
|
2015-06-21 18:33:46 +03:00
|
|
|
*/
|
2023-02-23 22:33:51 +03:00
|
|
|
extern DECLSPEC int SDLCALL SDL_AtomicSet(SDL_AtomicInt *a, int v);
|
2015-06-21 18:33:46 +03:00
|
|
|
|
|
|
|
/**
|
2021-03-21 21:18:39 +03:00
|
|
|
* Get the value of an atomic variable.
|
|
|
|
*
|
|
|
|
* ***Note: If you don't know what this function is for, you shouldn't use
|
|
|
|
* it!***
|
|
|
|
*
|
2023-02-23 22:33:51 +03:00
|
|
|
* \param a a pointer to an SDL_AtomicInt variable
|
2021-03-21 21:18:39 +03:00
|
|
|
* \returns the current value of an atomic variable.
|
|
|
|
*
|
2022-11-23 01:40:14 +03:00
|
|
|
* \since This function is available since SDL 3.0.0.
|
2021-10-27 04:36:05 +03:00
|
|
|
*
|
2021-03-21 21:18:39 +03:00
|
|
|
* \sa SDL_AtomicSet
|
2015-06-21 18:33:46 +03:00
|
|
|
*/
|
2023-02-23 22:33:51 +03:00
|
|
|
extern DECLSPEC int SDLCALL SDL_AtomicGet(SDL_AtomicInt *a);
|
2015-06-21 18:33:46 +03:00
|
|
|
|
|
|
|
/**
|
2021-03-21 21:18:39 +03:00
|
|
|
* Add to an atomic variable.
|
|
|
|
*
|
|
|
|
* This function also acts as a full memory barrier.
|
2015-06-21 18:33:46 +03:00
|
|
|
*
|
2021-03-21 21:18:39 +03:00
|
|
|
* ***Note: If you don't know what this function is for, you shouldn't use
|
|
|
|
* it!***
|
2015-06-21 18:33:46 +03:00
|
|
|
*
|
2023-02-23 22:33:51 +03:00
|
|
|
* \param a a pointer to an SDL_AtomicInt variable to be modified
|
2021-03-21 21:18:39 +03:00
|
|
|
* \param v the desired value to add
|
|
|
|
* \returns the previous value of the atomic variable.
|
|
|
|
*
|
2022-11-23 01:40:14 +03:00
|
|
|
* \since This function is available since SDL 3.0.0.
|
2021-10-27 04:36:05 +03:00
|
|
|
*
|
2021-03-21 21:18:39 +03:00
|
|
|
* \sa SDL_AtomicDecRef
|
|
|
|
* \sa SDL_AtomicIncRef
|
2015-06-21 18:33:46 +03:00
|
|
|
*/
|
2023-02-23 22:33:51 +03:00
|
|
|
extern DECLSPEC int SDLCALL SDL_AtomicAdd(SDL_AtomicInt *a, int v);
|
2015-06-21 18:33:46 +03:00
|
|
|
|
2024-04-10 22:58:16 +03:00
|
|
|
#ifndef SDL_AtomicIncRef
|
2024-04-10 22:59:14 +03:00
|
|
|
|
2015-06-21 18:33:46 +03:00
|
|
|
/**
|
2023-11-06 18:26:06 +03:00
|
|
|
* Increment an atomic variable used as a reference count.
|
2024-04-10 22:58:16 +03:00
|
|
|
*
|
2024-04-10 22:59:14 +03:00
|
|
|
* ***Note: If you don't know what this macro is for, you shouldn't use it!***
|
2024-04-10 22:58:16 +03:00
|
|
|
*
|
|
|
|
* \param a a pointer to an SDL_AtomicInt to increment.
|
|
|
|
* \returns the previous value of the atomic variable.
|
|
|
|
*
|
|
|
|
* \since This macro is available since SDL 3.0.0.
|
|
|
|
*
|
|
|
|
* \sa SDL_AtomicDecRef
|
2015-06-21 18:33:46 +03:00
|
|
|
*/
|
|
|
|
#define SDL_AtomicIncRef(a) SDL_AtomicAdd(a, 1)
|
|
|
|
#endif
|
|
|
|
|
2024-04-10 22:58:16 +03:00
|
|
|
#ifndef SDL_AtomicDecRef
|
2024-04-10 22:59:14 +03:00
|
|
|
|
2015-06-21 18:33:46 +03:00
|
|
|
/**
|
2023-11-06 18:26:06 +03:00
|
|
|
* Decrement an atomic variable used as a reference count.
|
2015-06-21 18:33:46 +03:00
|
|
|
*
|
2024-04-10 22:59:14 +03:00
|
|
|
* ***Note: If you don't know what this macro is for, you shouldn't use it!***
|
2024-04-10 22:58:16 +03:00
|
|
|
*
|
|
|
|
* \param a a pointer to an SDL_AtomicInt to increment.
|
|
|
|
* \returns SDL_TRUE if the variable reached zero after decrementing,
|
|
|
|
* SDL_FALSE otherwise
|
|
|
|
*
|
|
|
|
* \since This macro is available since SDL 3.0.0.
|
|
|
|
*
|
|
|
|
* \sa SDL_AtomicIncRef
|
2015-06-21 18:33:46 +03:00
|
|
|
*/
|
|
|
|
#define SDL_AtomicDecRef(a) (SDL_AtomicAdd(a, -1) == 1)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/**
|
2021-07-15 00:07:04 +03:00
|
|
|
* Set a pointer to a new value if it is currently an old value.
|
2015-06-21 18:33:46 +03:00
|
|
|
*
|
2021-03-21 21:18:39 +03:00
|
|
|
* ***Note: If you don't know what this function is for, you shouldn't use
|
|
|
|
* it!***
|
2015-06-21 18:33:46 +03:00
|
|
|
*
|
2021-03-21 21:18:39 +03:00
|
|
|
* \param a a pointer to a pointer
|
|
|
|
* \param oldval the old pointer value
|
|
|
|
* \param newval the new pointer value
|
|
|
|
* \returns SDL_TRUE if the pointer was set, SDL_FALSE otherwise.
|
|
|
|
*
|
2022-11-23 01:40:14 +03:00
|
|
|
* \since This function is available since SDL 3.0.0.
|
2021-03-21 21:18:39 +03:00
|
|
|
*
|
2024-01-18 14:39:55 +03:00
|
|
|
* \sa SDL_AtomicCompareAndSwap
|
2021-03-21 21:18:39 +03:00
|
|
|
* \sa SDL_AtomicGetPtr
|
|
|
|
* \sa SDL_AtomicSetPtr
|
|
|
|
*/
|
2024-01-18 14:39:55 +03:00
|
|
|
extern DECLSPEC SDL_bool SDLCALL SDL_AtomicCompareAndSwapPointer(void **a, void *oldval, void *newval);
|
2015-06-21 18:33:46 +03:00
|
|
|
|
|
|
|
/**
|
2021-03-21 21:18:39 +03:00
|
|
|
* Set a pointer to a value atomically.
|
|
|
|
*
|
|
|
|
* ***Note: If you don't know what this function is for, you shouldn't use
|
|
|
|
* it!***
|
|
|
|
*
|
|
|
|
* \param a a pointer to a pointer
|
|
|
|
* \param v the desired pointer value
|
|
|
|
* \returns the previous value of the pointer.
|
2015-06-21 18:33:46 +03:00
|
|
|
*
|
2022-11-23 01:40:14 +03:00
|
|
|
* \since This function is available since SDL 3.0.0.
|
2021-10-27 04:36:05 +03:00
|
|
|
*
|
2024-01-18 14:39:55 +03:00
|
|
|
* \sa SDL_AtomicCompareAndSwapPointer
|
2021-03-21 21:18:39 +03:00
|
|
|
* \sa SDL_AtomicGetPtr
|
2015-06-21 18:33:46 +03:00
|
|
|
*/
|
|
|
|
extern DECLSPEC void* SDLCALL SDL_AtomicSetPtr(void **a, void* v);
|
|
|
|
|
|
|
|
/**
|
2021-03-21 21:18:39 +03:00
|
|
|
* Get the value of a pointer atomically.
|
|
|
|
*
|
|
|
|
* ***Note: If you don't know what this function is for, you shouldn't use
|
|
|
|
* it!***
|
|
|
|
*
|
|
|
|
* \param a a pointer to a pointer
|
|
|
|
* \returns the current value of a pointer.
|
|
|
|
*
|
2022-11-23 01:40:14 +03:00
|
|
|
* \since This function is available since SDL 3.0.0.
|
2021-10-27 04:36:05 +03:00
|
|
|
*
|
2024-01-18 14:39:55 +03:00
|
|
|
* \sa SDL_AtomicCompareAndSwapPointer
|
2021-03-21 21:18:39 +03:00
|
|
|
* \sa SDL_AtomicSetPtr
|
2015-06-21 18:33:46 +03:00
|
|
|
*/
|
|
|
|
extern DECLSPEC void* SDLCALL SDL_AtomicGetPtr(void **a);
|
|
|
|
|
|
|
|
/* Ends C function definitions when using C++ */
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2022-12-22 19:38:59 +03:00
|
|
|
#include <SDL3/SDL_close_code.h>
|
2015-06-21 18:33:46 +03:00
|
|
|
|
2016-11-21 08:34:54 +03:00
|
|
|
#endif /* SDL_atomic_h_ */
|