SDL_atomic.h 8.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260
  1. /*
  2. Simple DirectMedia Layer
  3. Copyright (C) 1997-2014 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. * \file SDL_atomic.h
  20. *
  21. * Atomic operations.
  22. *
  23. * IMPORTANT:
  24. * If you are not an expert in concurrent lockless programming, you should
  25. * only be using the atomic lock and reference counting functions in this
  26. * file. In all other cases you should be protecting your data structures
  27. * with full mutexes.
  28. *
  29. * The list of "safe" functions to use are:
  30. * SDL_AtomicLock()
  31. * SDL_AtomicUnlock()
  32. * SDL_AtomicIncRef()
  33. * SDL_AtomicDecRef()
  34. *
  35. * Seriously, here be dragons!
  36. * ^^^^^^^^^^^^^^^^^^^^^^^^^^^
  37. *
  38. * You can find out a little more about lockless programming and the
  39. * subtle issues that can arise here:
  40. * http://msdn.microsoft.com/en-us/library/ee418650%28v=vs.85%29.aspx
  41. *
  42. * There's also lots of good information here:
  43. * http://www.1024cores.net/home/lock-free-algorithms
  44. * http://preshing.com/
  45. *
  46. * These operations may or may not actually be implemented using
  47. * processor specific atomic operations. When possible they are
  48. * implemented as true processor specific atomic operations. When that
  49. * is not possible the are implemented using locks that *do* use the
  50. * available atomic operations.
  51. *
  52. * All of the atomic operations that modify memory are full memory barriers.
  53. */
  54. #ifndef _SDL_atomic_h_
  55. #define _SDL_atomic_h_
  56. #include "SDL_stdinc.h"
  57. #include "SDL_platform.h"
  58. #include "begin_code.h"
  59. /* Set up for C function definitions, even when using C++ */
  60. #ifdef __cplusplus
  61. extern "C" {
  62. #endif
  63. /**
  64. * \name SDL AtomicLock
  65. *
  66. * The atomic locks are efficient spinlocks using CPU instructions,
  67. * but are vulnerable to starvation and can spin forever if a thread
  68. * holding a lock has been terminated. For this reason you should
  69. * minimize the code executed inside an atomic lock and never do
  70. * expensive things like API or system calls while holding them.
  71. *
  72. * The atomic locks are not safe to lock recursively.
  73. *
  74. * Porting Note:
  75. * The spin lock functions and type are required and can not be
  76. * emulated because they are used in the atomic emulation code.
  77. */
  78. /* @{ */
  79. typedef int SDL_SpinLock;
  80. /**
  81. * \brief Try to lock a spin lock by setting it to a non-zero value.
  82. *
  83. * \param lock Points to the lock.
  84. *
  85. * \return SDL_TRUE if the lock succeeded, SDL_FALSE if the lock is already held.
  86. */
  87. extern DECLSPEC SDL_bool SDLCALL SDL_AtomicTryLock(SDL_SpinLock *lock);
  88. /**
  89. * \brief Lock a spin lock by setting it to a non-zero value.
  90. *
  91. * \param lock Points to the lock.
  92. */
  93. extern DECLSPEC void SDLCALL SDL_AtomicLock(SDL_SpinLock *lock);
  94. /**
  95. * \brief Unlock a spin lock by setting it to 0. Always returns immediately
  96. *
  97. * \param lock Points to the lock.
  98. */
  99. extern DECLSPEC void SDLCALL SDL_AtomicUnlock(SDL_SpinLock *lock);
  100. /* @} *//* SDL AtomicLock */
  101. /**
  102. * The compiler barrier prevents the compiler from reordering
  103. * reads and writes to globally visible variables across the call.
  104. */
  105. #if defined(_MSC_VER) && (_MSC_VER > 1200)
  106. void _ReadWriteBarrier(void);
  107. #pragma intrinsic(_ReadWriteBarrier)
  108. #define SDL_CompilerBarrier() _ReadWriteBarrier()
  109. #elif defined(__GNUC__)
  110. #define SDL_CompilerBarrier() __asm__ __volatile__ ("" : : : "memory")
  111. #else
  112. #define SDL_CompilerBarrier() \
  113. { SDL_SpinLock _tmp = 0; SDL_AtomicLock(&_tmp); SDL_AtomicUnlock(&_tmp); }
  114. #endif
  115. /**
  116. * Memory barriers are designed to prevent reads and writes from being
  117. * reordered by the compiler and being seen out of order on multi-core CPUs.
  118. *
  119. * A typical pattern would be for thread A to write some data and a flag,
  120. * and for thread B to read the flag and get the data. In this case you
  121. * would insert a release barrier between writing the data and the flag,
  122. * guaranteeing that the data write completes no later than the flag is
  123. * written, and you would insert an acquire barrier between reading the
  124. * flag and reading the data, to ensure that all the reads associated
  125. * with the flag have completed.
  126. *
  127. * In this pattern you should always see a release barrier paired with
  128. * an acquire barrier and you should gate the data reads/writes with a
  129. * single flag variable.
  130. *
  131. * For more information on these semantics, take a look at the blog post:
  132. * http://preshing.com/20120913/acquire-and-release-semantics
  133. */
  134. #if defined(__GNUC__) && (defined(__powerpc__) || defined(__ppc__))
  135. #define SDL_MemoryBarrierRelease() __asm__ __volatile__ ("lwsync" : : : "memory")
  136. #define SDL_MemoryBarrierAcquire() __asm__ __volatile__ ("lwsync" : : : "memory")
  137. #elif defined(__GNUC__) && defined(__arm__)
  138. #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__)
  139. #define SDL_MemoryBarrierRelease() __asm__ __volatile__ ("dmb ish" : : : "memory")
  140. #define SDL_MemoryBarrierAcquire() __asm__ __volatile__ ("dmb ish" : : : "memory")
  141. #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__)
  142. #ifdef __thumb__
  143. /* The mcr instruction isn't available in thumb mode, use real functions */
  144. extern DECLSPEC void SDLCALL SDL_MemoryBarrierRelease();
  145. extern DECLSPEC void SDLCALL SDL_MemoryBarrierAcquire();
  146. #else
  147. #define SDL_MemoryBarrierRelease() __asm__ __volatile__ ("mcr p15, 0, %0, c7, c10, 5" : : "r"(0) : "memory")
  148. #define SDL_MemoryBarrierAcquire() __asm__ __volatile__ ("mcr p15, 0, %0, c7, c10, 5" : : "r"(0) : "memory")
  149. #endif /* __thumb__ */
  150. #else
  151. #define SDL_MemoryBarrierRelease() __asm__ __volatile__ ("" : : : "memory")
  152. #define SDL_MemoryBarrierAcquire() __asm__ __volatile__ ("" : : : "memory")
  153. #endif /* __GNUC__ && __arm__ */
  154. #else
  155. /* This is correct for the x86 and x64 CPUs, and we'll expand this over time. */
  156. #define SDL_MemoryBarrierRelease() SDL_CompilerBarrier()
  157. #define SDL_MemoryBarrierAcquire() SDL_CompilerBarrier()
  158. #endif
  159. /**
  160. * \brief A type representing an atomic integer value. It is a struct
  161. * so people don't accidentally use numeric operations on it.
  162. */
  163. typedef struct { int value; } SDL_atomic_t;
  164. /**
  165. * \brief Set an atomic variable to a new value if it is currently an old value.
  166. *
  167. * \return SDL_TRUE if the atomic variable was set, SDL_FALSE otherwise.
  168. *
  169. * \note If you don't know what this function is for, you shouldn't use it!
  170. */
  171. extern DECLSPEC SDL_bool SDLCALL SDL_AtomicCAS(SDL_atomic_t *a, int oldval, int newval);
  172. /**
  173. * \brief Set an atomic variable to a value.
  174. *
  175. * \return The previous value of the atomic variable.
  176. */
  177. extern DECLSPEC int SDLCALL SDL_AtomicSet(SDL_atomic_t *a, int v);
  178. /**
  179. * \brief Get the value of an atomic variable
  180. */
  181. extern DECLSPEC int SDLCALL SDL_AtomicGet(SDL_atomic_t *a);
  182. /**
  183. * \brief Add to an atomic variable.
  184. *
  185. * \return The previous value of the atomic variable.
  186. *
  187. * \note This same style can be used for any number operation
  188. */
  189. extern DECLSPEC int SDLCALL SDL_AtomicAdd(SDL_atomic_t *a, int v);
  190. /**
  191. * \brief Increment an atomic variable used as a reference count.
  192. */
  193. #ifndef SDL_AtomicIncRef
  194. #define SDL_AtomicIncRef(a) SDL_AtomicAdd(a, 1)
  195. #endif
  196. /**
  197. * \brief Decrement an atomic variable used as a reference count.
  198. *
  199. * \return SDL_TRUE if the variable reached zero after decrementing,
  200. * SDL_FALSE otherwise
  201. */
  202. #ifndef SDL_AtomicDecRef
  203. #define SDL_AtomicDecRef(a) (SDL_AtomicAdd(a, -1) == 1)
  204. #endif
  205. /**
  206. * \brief Set a pointer to a new value if it is currently an old value.
  207. *
  208. * \return SDL_TRUE if the pointer was set, SDL_FALSE otherwise.
  209. *
  210. * \note If you don't know what this function is for, you shouldn't use it!
  211. */
  212. extern DECLSPEC SDL_bool SDLCALL SDL_AtomicCASPtr(void **a, void *oldval, void *newval);
  213. /**
  214. * \brief Set a pointer to a value atomically.
  215. *
  216. * \return The previous value of the pointer.
  217. */
  218. extern DECLSPEC void* SDLCALL SDL_AtomicSetPtr(void **a, void* v);
  219. /**
  220. * \brief Get the value of a pointer atomically.
  221. */
  222. extern DECLSPEC void* SDLCALL SDL_AtomicGetPtr(void **a);
  223. /* Ends C function definitions when using C++ */
  224. #ifdef __cplusplus
  225. }
  226. #endif
  227. #include "close_code.h"
  228. #endif /* _SDL_atomic_h_ */
  229. /* vi: set ts=4 sw=4 expandtab: */