SDL_atomic.h 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408
  1. /*
  2. Simple DirectMedia Layer
  3. Copyright (C) 1997-2025 Sam Lantinga <slouken@libsdl.org>
  4. This software is provided 'as-is', without any express or implied
  5. warranty. In no event will the authors be held liable for any damages
  6. arising from the use of this software.
  7. Permission is granted to anyone to use this software for any purpose,
  8. including commercial applications, and to alter it and redistribute it
  9. freely, subject to the following restrictions:
  10. 1. The origin of this software must not be misrepresented; you must not
  11. claim that you wrote the original software. If you use this software
  12. in a product, an acknowledgment in the product documentation would be
  13. appreciated but is not required.
  14. 2. Altered source versions must be plainly marked as such, and must not be
  15. misrepresented as being the original software.
  16. 3. This notice may not be removed or altered from any source distribution.
  17. */
  18. /**
  19. * # CategoryAtomic
  20. *
  21. * Atomic operations.
  22. *
  23. * IMPORTANT: If you are not an expert in concurrent lockless programming, you
  24. * should not be using any functions in this file. You should be protecting
  25. * your data structures with full mutexes instead.
  26. *
  27. * ***Seriously, here be dragons!***
  28. *
  29. * You can find out a little more about lockless programming and the subtle
  30. * issues that can arise here:
  31. * https://learn.microsoft.com/en-us/windows/win32/dxtecharts/lockless-programming
  32. *
  33. * There's also lots of good information here:
  34. *
  35. * - https://www.1024cores.net/home/lock-free-algorithms
  36. * - https://preshing.com/
  37. *
  38. * These operations may or may not actually be implemented using processor
  39. * specific atomic operations. When possible they are implemented as true
  40. * processor specific atomic operations. When that is not possible the are
  41. * implemented using locks that *do* use the available atomic operations.
  42. *
  43. * All of the atomic operations that modify memory are full memory barriers.
  44. */
  45. #ifndef SDL_atomic_h_
  46. #define SDL_atomic_h_
  47. #include "SDL_stdinc.h"
  48. #include "SDL_platform.h"
  49. #include "begin_code.h"
  50. /* Set up for C function definitions, even when using C++ */
  51. #ifdef __cplusplus
  52. extern "C" {
  53. #endif
  54. /**
  55. * \name SDL AtomicLock
  56. *
  57. * The atomic locks are efficient spinlocks using CPU instructions,
  58. * but are vulnerable to starvation and can spin forever if a thread
  59. * holding a lock has been terminated. For this reason you should
  60. * minimize the code executed inside an atomic lock and never do
  61. * expensive things like API or system calls while holding them.
  62. *
  63. * The atomic locks are not safe to lock recursively.
  64. *
  65. * Porting Note:
  66. * The spin lock functions and type are required and can not be
  67. * emulated because they are used in the atomic emulation code.
  68. */
  69. /* @{ */
  70. typedef int SDL_SpinLock;
  71. /**
  72. * Try to lock a spin lock by setting it to a non-zero value.
  73. *
  74. * ***Please note that spinlocks are dangerous if you don't know what you're
  75. * doing. Please be careful using any sort of spinlock!***
  76. *
  77. * \param lock a pointer to a lock variable.
  78. * \returns SDL_TRUE if the lock succeeded, SDL_FALSE if the lock is already
  79. * held.
  80. *
  81. * \since This function is available since SDL 2.0.0.
  82. *
  83. * \sa SDL_AtomicLock
  84. * \sa SDL_AtomicUnlock
  85. */
  86. extern DECLSPEC SDL_bool SDLCALL SDL_AtomicTryLock(SDL_SpinLock *lock);
  87. /**
  88. * Lock a spin lock by setting it to a non-zero value.
  89. *
  90. * ***Please note that spinlocks are dangerous if you don't know what you're
  91. * doing. Please be careful using any sort of spinlock!***
  92. *
  93. * \param lock a pointer to a lock variable.
  94. *
  95. * \since This function is available since SDL 2.0.0.
  96. *
  97. * \sa SDL_AtomicTryLock
  98. * \sa SDL_AtomicUnlock
  99. */
  100. extern DECLSPEC void SDLCALL SDL_AtomicLock(SDL_SpinLock *lock);
  101. /**
  102. * Unlock a spin lock by setting it to 0.
  103. *
  104. * Always returns immediately.
  105. *
  106. * ***Please note that spinlocks are dangerous if you don't know what you're
  107. * doing. Please be careful using any sort of spinlock!***
  108. *
  109. * \param lock a pointer to a lock variable.
  110. *
  111. * \since This function is available since SDL 2.0.0.
  112. *
  113. * \sa SDL_AtomicLock
  114. * \sa SDL_AtomicTryLock
  115. */
  116. extern DECLSPEC void SDLCALL SDL_AtomicUnlock(SDL_SpinLock *lock);
  117. /* @} *//* SDL AtomicLock */
  118. /**
  119. * The compiler barrier prevents the compiler from reordering
  120. * reads and writes to globally visible variables across the call.
  121. */
  122. #if defined(_MSC_VER) && (_MSC_VER > 1200) && !defined(__clang__)
  123. void _ReadWriteBarrier(void);
  124. #pragma intrinsic(_ReadWriteBarrier)
  125. #define SDL_CompilerBarrier() _ReadWriteBarrier()
  126. #elif (defined(__GNUC__) && !defined(__EMSCRIPTEN__)) || (defined(__SUNPRO_C) && (__SUNPRO_C >= 0x5120))
  127. /* This is correct for all CPUs when using GCC or Solaris Studio 12.1+. */
  128. #define SDL_CompilerBarrier() __asm__ __volatile__ ("" : : : "memory")
  129. #elif defined(__WATCOMC__)
  130. extern __inline void SDL_CompilerBarrier(void);
  131. #pragma aux SDL_CompilerBarrier = "" parm [] modify exact [];
  132. #else
  133. #define SDL_CompilerBarrier() \
  134. { SDL_SpinLock _tmp = 0; SDL_AtomicLock(&_tmp); SDL_AtomicUnlock(&_tmp); }
  135. #endif
  136. /**
  137. * Memory barriers are designed to prevent reads and writes from being
  138. * reordered by the compiler and being seen out of order on multi-core CPUs.
  139. *
  140. * A typical pattern would be for thread A to write some data and a flag, and
  141. * for thread B to read the flag and get the data. In this case you would
  142. * insert a release barrier between writing the data and the flag,
  143. * guaranteeing that the data write completes no later than the flag is
  144. * written, and you would insert an acquire barrier between reading the flag
  145. * and reading the data, to ensure that all the reads associated with the flag
  146. * have completed.
  147. *
  148. * In this pattern you should always see a release barrier paired with an
  149. * acquire barrier and you should gate the data reads/writes with a single
  150. * flag variable.
  151. *
  152. * For more information on these semantics, take a look at the blog post:
  153. * http://preshing.com/20120913/acquire-and-release-semantics
  154. *
  155. * \since This function is available since SDL 2.0.6.
  156. */
  157. extern DECLSPEC void SDLCALL SDL_MemoryBarrierReleaseFunction(void);
  158. extern DECLSPEC void SDLCALL SDL_MemoryBarrierAcquireFunction(void);
  159. #if defined(__GNUC__) && (defined(__powerpc__) || defined(__ppc__))
  160. #define SDL_MemoryBarrierRelease() __asm__ __volatile__ ("lwsync" : : : "memory")
  161. #define SDL_MemoryBarrierAcquire() __asm__ __volatile__ ("lwsync" : : : "memory")
  162. #elif defined(__GNUC__) && defined(__aarch64__)
  163. #define SDL_MemoryBarrierRelease() __asm__ __volatile__ ("dmb ish" : : : "memory")
  164. #define SDL_MemoryBarrierAcquire() __asm__ __volatile__ ("dmb ish" : : : "memory")
  165. #elif defined(__GNUC__) && defined(__arm__)
  166. #if 0 /* defined(__LINUX__) || defined(__ANDROID__) */
  167. /* Information from:
  168. https://chromium.googlesource.com/chromium/chromium/+/trunk/base/atomicops_internals_arm_gcc.h#19
  169. The Linux kernel provides a helper function which provides the right code for a memory barrier,
  170. hard-coded at address 0xffff0fa0
  171. */
  172. typedef void (*SDL_KernelMemoryBarrierFunc)();
  173. #define SDL_MemoryBarrierRelease() ((SDL_KernelMemoryBarrierFunc)0xffff0fa0)()
  174. #define SDL_MemoryBarrierAcquire() ((SDL_KernelMemoryBarrierFunc)0xffff0fa0)()
  175. #elif 0 /* defined(__QNXNTO__) */
  176. #include <sys/cpuinline.h>
  177. #define SDL_MemoryBarrierRelease() __cpu_membarrier()
  178. #define SDL_MemoryBarrierAcquire() __cpu_membarrier()
  179. #else
  180. #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__)
  181. #define SDL_MemoryBarrierRelease() __asm__ __volatile__ ("dmb ish" : : : "memory")
  182. #define SDL_MemoryBarrierAcquire() __asm__ __volatile__ ("dmb ish" : : : "memory")
  183. #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__)
  184. #ifdef __thumb__
  185. /* The mcr instruction isn't available in thumb mode, use real functions */
  186. #define SDL_MEMORY_BARRIER_USES_FUNCTION
  187. #define SDL_MemoryBarrierRelease() SDL_MemoryBarrierReleaseFunction()
  188. #define SDL_MemoryBarrierAcquire() SDL_MemoryBarrierAcquireFunction()
  189. #else
  190. #define SDL_MemoryBarrierRelease() __asm__ __volatile__ ("mcr p15, 0, %0, c7, c10, 5" : : "r"(0) : "memory")
  191. #define SDL_MemoryBarrierAcquire() __asm__ __volatile__ ("mcr p15, 0, %0, c7, c10, 5" : : "r"(0) : "memory")
  192. #endif /* __thumb__ */
  193. #else
  194. #define SDL_MemoryBarrierRelease() __asm__ __volatile__ ("" : : : "memory")
  195. #define SDL_MemoryBarrierAcquire() __asm__ __volatile__ ("" : : : "memory")
  196. #endif /* __LINUX__ || __ANDROID__ */
  197. #endif /* __GNUC__ && __arm__ */
  198. #else
  199. #if (defined(__SUNPRO_C) && (__SUNPRO_C >= 0x5120))
  200. /* This is correct for all CPUs on Solaris when using Solaris Studio 12.1+. */
  201. #include <mbarrier.h>
  202. #define SDL_MemoryBarrierRelease() __machine_rel_barrier()
  203. #define SDL_MemoryBarrierAcquire() __machine_acq_barrier()
  204. #else
  205. /* This is correct for the x86 and x64 CPUs, and we'll expand this over time. */
  206. #define SDL_MemoryBarrierRelease() SDL_CompilerBarrier()
  207. #define SDL_MemoryBarrierAcquire() SDL_CompilerBarrier()
  208. #endif
  209. #endif
  210. /* "REP NOP" is PAUSE, coded for tools that don't know it by that name. */
  211. #if (defined(__GNUC__) || defined(__clang__)) && (defined(__i386__) || defined(__x86_64__))
  212. #define SDL_CPUPauseInstruction() __asm__ __volatile__("pause\n") /* Some assemblers can't do REP NOP, so go with PAUSE. */
  213. #elif (defined(__arm__) && defined(__ARM_ARCH) && __ARM_ARCH >= 7) || defined(__aarch64__)
  214. #define SDL_CPUPauseInstruction() __asm__ __volatile__("yield" ::: "memory")
  215. #elif (defined(__powerpc__) || defined(__powerpc64__))
  216. #define SDL_CPUPauseInstruction() __asm__ __volatile__("or 27,27,27");
  217. #elif defined(_MSC_VER) && (defined(_M_IX86) || defined(_M_X64))
  218. #define SDL_CPUPauseInstruction() _mm_pause() /* this is actually "rep nop" and not a SIMD instruction. No inline asm in MSVC x86-64! */
  219. #elif defined(_MSC_VER) && (defined(_M_ARM) || defined(_M_ARM64))
  220. #define SDL_CPUPauseInstruction() __yield()
  221. #elif defined(__WATCOMC__) && defined(__386__)
  222. extern __inline void SDL_CPUPauseInstruction(void);
  223. #pragma aux SDL_CPUPauseInstruction = ".686p" ".xmm2" "pause"
  224. #else
  225. #define SDL_CPUPauseInstruction()
  226. #endif
  227. /**
  228. * A type representing an atomic integer value.
  229. *
  230. * It is a struct so people don't accidentally use numeric operations on it.
  231. */
  232. typedef struct SDL_atomic_t {
  233. int value;
  234. } SDL_atomic_t;
  235. /**
  236. * Set an atomic variable to a new value if it is currently an old value.
  237. *
  238. * ***Note: If you don't know what this function is for, you shouldn't use
  239. * it!***
  240. *
  241. * \param a a pointer to an SDL_atomic_t variable to be modified.
  242. * \param oldval the old value.
  243. * \param newval the new value.
  244. * \returns SDL_TRUE if the atomic variable was set, SDL_FALSE otherwise.
  245. *
  246. * \since This function is available since SDL 2.0.0.
  247. *
  248. * \sa SDL_AtomicCASPtr
  249. * \sa SDL_AtomicGet
  250. * \sa SDL_AtomicSet
  251. */
  252. extern DECLSPEC SDL_bool SDLCALL SDL_AtomicCAS(SDL_atomic_t *a, int oldval, int newval);
  253. /**
  254. * Set an atomic variable to a value.
  255. *
  256. * This function also acts as a full memory barrier.
  257. *
  258. * ***Note: If you don't know what this function is for, you shouldn't use
  259. * it!***
  260. *
  261. * \param a a pointer to an SDL_atomic_t variable to be modified.
  262. * \param v the desired value.
  263. * \returns the previous value of the atomic variable.
  264. *
  265. * \since This function is available since SDL 2.0.2.
  266. *
  267. * \sa SDL_AtomicGet
  268. */
  269. extern DECLSPEC int SDLCALL SDL_AtomicSet(SDL_atomic_t *a, int v);
  270. /**
  271. * Get the value of an atomic variable.
  272. *
  273. * ***Note: If you don't know what this function is for, you shouldn't use
  274. * it!***
  275. *
  276. * \param a a pointer to an SDL_atomic_t variable.
  277. * \returns the current value of an atomic variable.
  278. *
  279. * \since This function is available since SDL 2.0.2.
  280. *
  281. * \sa SDL_AtomicSet
  282. */
  283. extern DECLSPEC int SDLCALL SDL_AtomicGet(SDL_atomic_t *a);
  284. /**
  285. * Add to an atomic variable.
  286. *
  287. * This function also acts as a full memory barrier.
  288. *
  289. * ***Note: If you don't know what this function is for, you shouldn't use
  290. * it!***
  291. *
  292. * \param a a pointer to an SDL_atomic_t variable to be modified.
  293. * \param v the desired value to add.
  294. * \returns the previous value of the atomic variable.
  295. *
  296. * \since This function is available since SDL 2.0.2.
  297. *
  298. * \sa SDL_AtomicDecRef
  299. * \sa SDL_AtomicIncRef
  300. */
  301. extern DECLSPEC int SDLCALL SDL_AtomicAdd(SDL_atomic_t *a, int v);
  302. /**
  303. * \brief Increment an atomic variable used as a reference count.
  304. */
  305. #ifndef SDL_AtomicIncRef
  306. #define SDL_AtomicIncRef(a) SDL_AtomicAdd(a, 1)
  307. #endif
  308. /**
  309. * \brief Decrement an atomic variable used as a reference count.
  310. *
  311. * \return SDL_TRUE if the variable reached zero after decrementing,
  312. * SDL_FALSE otherwise
  313. */
  314. #ifndef SDL_AtomicDecRef
  315. #define SDL_AtomicDecRef(a) (SDL_AtomicAdd(a, -1) == 1)
  316. #endif
  317. /**
  318. * Set a pointer to a new value if it is currently an old value.
  319. *
  320. * ***Note: If you don't know what this function is for, you shouldn't use
  321. * it!***
  322. *
  323. * \param a a pointer to a pointer.
  324. * \param oldval the old pointer value.
  325. * \param newval the new pointer value.
  326. * \returns SDL_TRUE if the pointer was set, SDL_FALSE otherwise.
  327. *
  328. * \since This function is available since SDL 2.0.0.
  329. *
  330. * \sa SDL_AtomicCAS
  331. * \sa SDL_AtomicGetPtr
  332. * \sa SDL_AtomicSetPtr
  333. */
  334. extern DECLSPEC SDL_bool SDLCALL SDL_AtomicCASPtr(void **a, void *oldval, void *newval);
  335. /**
  336. * Set a pointer to a value atomically.
  337. *
  338. * ***Note: If you don't know what this function is for, you shouldn't use
  339. * it!***
  340. *
  341. * \param a a pointer to a pointer.
  342. * \param v the desired pointer value.
  343. * \returns the previous value of the pointer.
  344. *
  345. * \since This function is available since SDL 2.0.2.
  346. *
  347. * \sa SDL_AtomicCASPtr
  348. * \sa SDL_AtomicGetPtr
  349. */
  350. extern DECLSPEC void* SDLCALL SDL_AtomicSetPtr(void **a, void* v);
  351. /**
  352. * Get the value of a pointer atomically.
  353. *
  354. * ***Note: If you don't know what this function is for, you shouldn't use
  355. * it!***
  356. *
  357. * \param a a pointer to a pointer.
  358. * \returns the current value of a pointer.
  359. *
  360. * \since This function is available since SDL 2.0.2.
  361. *
  362. * \sa SDL_AtomicCASPtr
  363. * \sa SDL_AtomicSetPtr
  364. */
  365. extern DECLSPEC void* SDLCALL SDL_AtomicGetPtr(void **a);
  366. /* Ends C function definitions when using C++ */
  367. #ifdef __cplusplus
  368. }
  369. #endif
  370. #include "close_code.h"
  371. #endif /* SDL_atomic_h_ */
  372. /* vi: set ts=4 sw=4 expandtab: */