Skip to content
This repository has been archived by the owner on Feb 11, 2021. It is now read-only.

Latest commit

 

History

History
281 lines (241 loc) · 8.55 KB

SDL_atomic.h

File metadata and controls

281 lines (241 loc) · 8.55 KB
 
1
2
/*
SDL - Simple DirectMedia Layer
Jan 24, 2010
Jan 24, 2010
3
Copyright (C) 1997-2010 Sam Lantinga
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
Sam Lantinga
slouken@libsdl.org
*/
/**
Jan 15, 2011
Jan 15, 2011
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
* \file SDL_atomic.h
*
* Atomic operations.
*
* IMPORTANT:
* If you are not an expert in concurrent lockless programming, you should
* only be using the atomic lock and reference counting functions in this
* file. In all other cases you should be protecting your data structures
* with full mutexes.
*
* The list of "safe" functions to use are:
* SDL_AtomicLock()
* SDL_AtomicUnlock()
* SDL_AtomicIncRef()
* SDL_AtomicDecRef()
*
* Seriously, here be dragons!
*
* 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.
49
50
51
52
53
54
55
56
57
58
*/
#ifndef _SDL_atomic_h_
#define _SDL_atomic_h_
#include "SDL_stdinc.h"
#include "SDL_platform.h"
#include "begin_code.h"
Jan 22, 2011
Jan 22, 2011
59
60
/* Need to do this here because intrin.h has C++ code in it */
/* Visual Studio 2005 has a bug where intrin.h conflicts with winnt.h */
Jan 24, 2011
Jan 24, 2011
61
#if defined(_MSC_VER) && (_MSC_VER >= 1500) && !defined(_WIN32_WCE)
Jan 22, 2011
Jan 22, 2011
62
63
64
65
#include <intrin.h>
#define HAVE_MSC_ATOMICS
#endif
66
67
68
69
70
71
72
/* Set up for C function definitions, even when using C++ */
#ifdef __cplusplus
/* *INDENT-OFF* */
extern "C" {
/* *INDENT-ON* */
#endif
Sep 17, 2009
Sep 17, 2009
73
/**
Jan 15, 2011
Jan 15, 2011
74
75
76
77
78
79
80
81
82
83
84
85
86
* \name SDL AtomicLock
*
* 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.
*
* The atomic locks are not safe to lock recursively.
*
* Porting Note:
* The spin lock functions and type are required and can not be
* emulated because they are used in the atomic emulation code.
Sep 17, 2009
Sep 17, 2009
87
*/
Oct 19, 2009
Oct 19, 2009
88
/*@{*/
Sep 17, 2009
Sep 17, 2009
89
Jan 15, 2011
Jan 15, 2011
90
91
92
93
94
95
96
97
98
99
typedef int SDL_SpinLock;
/**
* \brief Try to lock a spin lock by setting it to a non-zero value.
*
* \param lock Points to the lock.
*
* \return SDL_TRUE if the lock succeeded, SDL_FALSE if the lock is already held.
*/
extern DECLSPEC SDL_bool SDLCALL SDL_AtomicTryLock(SDL_SpinLock *lock);
100
Jun 24, 2009
Jun 24, 2009
101
/**
Jan 15, 2011
Jan 15, 2011
102
103
104
* \brief Lock a spin lock by setting it to a non-zero value.
*
* \param lock Points to the lock.
Jun 24, 2009
Jun 24, 2009
105
*/
Sep 17, 2009
Sep 17, 2009
106
extern DECLSPEC void SDLCALL SDL_AtomicLock(SDL_SpinLock *lock);
Aug 11, 2009
Aug 11, 2009
107
Jun 24, 2009
Jun 24, 2009
108
/**
Jan 15, 2011
Jan 15, 2011
109
* \brief Unlock a spin lock by setting it to 0. Always returns immediately
Jun 24, 2009
Jun 24, 2009
110
*
Jan 15, 2011
Jan 15, 2011
111
* \param lock Points to the lock.
Jun 24, 2009
Jun 24, 2009
112
*/
Sep 17, 2009
Sep 17, 2009
113
114
extern DECLSPEC void SDLCALL SDL_AtomicUnlock(SDL_SpinLock *lock);
Oct 19, 2009
Oct 19, 2009
115
/*@}*//*SDL AtomicLock*/
Sep 17, 2009
Sep 17, 2009
116
Jan 17, 2011
Jan 17, 2011
117
118
119
120
121
/* Platform specific optimized versions of the atomic functions,
* you can disable these by defining SDL_DISABLE_ATOMIC_INLINE
*/
#ifndef SDL_DISABLE_ATOMIC_INLINE
Jan 22, 2011
Jan 22, 2011
122
#if defined(HAVE_MSC_ATOMICS)
Jan 16, 2011
Jan 16, 2011
123
Jan 17, 2011
Jan 17, 2011
124
#define SDL_AtomicSet(a, v) _InterlockedExchange((long*)&(a)->value, (v))
Jan 16, 2011
Jan 16, 2011
125
#define SDL_AtomicGet(a) ((a)->value)
Jan 17, 2011
Jan 17, 2011
126
127
#define SDL_AtomicAdd(a, v) _InterlockedExchangeAdd((long*)&(a)->value, (v))
#define SDL_AtomicCAS(a, oldval, newval) (_InterlockedCompareExchange((long*)&(a)->value, (newval), (oldval)) == (oldval))
Jan 17, 2011
Jan 17, 2011
128
#define SDL_AtomicSetPtr(a, v) (void)_InterlockedExchangePointer((a), (v))
Jan 17, 2011
Jan 17, 2011
129
#define SDL_AtomicGetPtr(a) (*(a))
Jan 17, 2011
Jan 17, 2011
130
131
132
133
134
#if _M_IX86
#define SDL_AtomicCASPtr(a, oldval, newval) (_InterlockedCompareExchange((long*)(a), (long)(newval), (long)(oldval)) == (long)(oldval))
#else
#define SDL_AtomicCASPtr(a, oldval, newval) (_InterlockedCompareExchangePointer((a), (newval), (oldval)) == (oldval))
#endif
Jan 16, 2011
Jan 16, 2011
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
#elif defined(__MACOSX__)
#include <libkern/OSAtomic.h>
#define SDL_AtomicSet(a, v) \
({ \
int oldvalue; \
\
do { \
oldvalue = (a)->value; \
} while (!OSAtomicCompareAndSwap32Barrier(oldvalue, v, &(a)->value)); \
\
oldvalue; \
})
#define SDL_AtomicGet(a) ((a)->value)
#define SDL_AtomicAdd(a, v) \
({ \
int oldvalue; \
\
do { \
oldvalue = (a)->value; \
} while (!OSAtomicCompareAndSwap32Barrier(oldvalue, oldvalue+v, &(a)->value)); \
\
oldvalue; \
})
#define SDL_AtomicCAS(a, oldval, newval) OSAtomicCompareAndSwap32Barrier(oldval, newval, &(a)->value)
#define SDL_AtomicSetPtr(a, v) (*(a) = v, OSMemoryBarrier())
#define SDL_AtomicGetPtr(a) (*(a))
#if SIZEOF_VOIDP == 4
#define SDL_AtomicCASPtr(a, oldval, newval) OSAtomicCompareAndSwap32Barrier((int32_t)(oldval), (int32_t)(newval), (int32_t*)(a))
#elif SIZEOF_VOIDP == 8
#define SDL_AtomicCASPtr(a, oldval, newval) OSAtomicCompareAndSwap64Barrier((int64_t)(oldval), (int64_t)(newval), (int64_t*)(a))
#endif
#elif defined(HAVE_GCC_ATOMICS)
#define SDL_AtomicSet(a, v) __sync_lock_test_and_set(&(a)->value, v)
#define SDL_AtomicGet(a) ((a)->value)
#define SDL_AtomicAdd(a, v) __sync_fetch_and_add(&(a)->value, v)
#define SDL_AtomicCAS(a, oldval, newval) __sync_bool_compare_and_swap(&(a)->value, oldval, newval)
#define SDL_AtomicSetPtr(a, v) (*(a) = v, __sync_synchronize())
#define SDL_AtomicGetPtr(a) (*(a))
#define SDL_AtomicCASPtr(a, oldval, newval) __sync_bool_compare_and_swap(a, oldval, newval)
#endif
Oct 19, 2009
Oct 19, 2009
180
Jan 17, 2011
Jan 17, 2011
181
182
183
#endif /* !SDL_DISABLE_ATOMIC_INLINE */
Oct 19, 2009
Oct 19, 2009
184
/**
Jan 15, 2011
Jan 15, 2011
185
186
* \brief A type representing an atomic integer value. It is a struct
* so people don't accidentally use numeric operations on it.
Jun 24, 2009
Jun 24, 2009
187
*/
Jan 15, 2011
Jan 15, 2011
188
189
190
#ifndef SDL_atomic_t_defined
typedef struct { int value; } SDL_atomic_t;
#endif
Aug 11, 2009
Aug 11, 2009
191
Jun 24, 2009
Jun 24, 2009
192
/**
Jan 15, 2011
Jan 15, 2011
193
194
195
* \brief Set an atomic variable to a value.
*
* \return The previous value of the atomic variable.
Jun 24, 2009
Jun 24, 2009
196
*/
Jan 15, 2011
Jan 15, 2011
197
198
199
#ifndef SDL_AtomicSet
extern DECLSPEC int SDLCALL SDL_AtomicSet(SDL_atomic_t *a, int value);
#endif
Aug 11, 2009
Aug 11, 2009
200
Jun 24, 2009
Jun 24, 2009
201
/**
Jan 15, 2011
Jan 15, 2011
202
* \brief Get the value of an atomic variable
Jun 24, 2009
Jun 24, 2009
203
*/
Jan 15, 2011
Jan 15, 2011
204
205
206
#ifndef SDL_AtomicGet
extern DECLSPEC int SDLCALL SDL_AtomicGet(SDL_atomic_t *a);
#endif
Aug 11, 2009
Aug 11, 2009
207
Jun 24, 2009
Jun 24, 2009
208
/**
Jan 15, 2011
Jan 15, 2011
209
210
211
* \brief Add to an atomic variable.
*
* \return The previous value of the atomic variable.
Jun 24, 2009
Jun 24, 2009
212
*/
Jan 15, 2011
Jan 15, 2011
213
214
215
#ifndef SDL_AtomicAdd
extern DECLSPEC int SDLCALL SDL_AtomicAdd(SDL_atomic_t *a, int value);
#endif
Aug 11, 2009
Aug 11, 2009
216
Jun 24, 2009
Jun 24, 2009
217
/**
Jan 15, 2011
Jan 15, 2011
218
* \brief Increment an atomic variable used as a reference count.
Jun 24, 2009
Jun 24, 2009
219
*/
Jan 15, 2011
Jan 15, 2011
220
221
222
#ifndef SDL_AtomicIncRef
extern DECLSPEC void SDLCALL SDL_AtomicIncRef(SDL_atomic_t *a);
#endif
Aug 11, 2009
Aug 11, 2009
223
Jun 24, 2009
Jun 24, 2009
224
/**
Jan 15, 2011
Jan 15, 2011
225
226
227
228
* \brief Decrement an atomic variable used as a reference count.
*
* \return SDL_TRUE if the variable has reached zero after decrementing,
* SDL_FALSE otherwise
Jun 24, 2009
Jun 24, 2009
229
*/
Jan 15, 2011
Jan 15, 2011
230
231
232
#ifndef SDL_AtomicDecRef
extern DECLSPEC SDL_bool SDLCALL SDL_AtomicDecRef(SDL_atomic_t *a);
#endif
Aug 11, 2009
Aug 11, 2009
233
Jun 24, 2009
Jun 24, 2009
234
/**
Jan 15, 2011
Jan 15, 2011
235
236
* \brief Set an atomic variable to a new value if it is currently an old value.
*
Jan 16, 2011
Jan 16, 2011
237
* \return SDL_TRUE if the atomic variable was set, SDL_FALSE otherwise.
Jan 15, 2011
Jan 15, 2011
238
239
240
241
*
* \note If you don't know what this function is for, you shouldn't use it!
*/
#ifndef SDL_AtomicCAS
Jan 16, 2011
Jan 16, 2011
242
extern DECLSPEC SDL_bool SDLCALL SDL_AtomicCAS(SDL_atomic_t *a, int oldval, int newval);
Jan 15, 2011
Jan 15, 2011
243
#endif
Aug 11, 2009
Aug 11, 2009
244
Jun 24, 2009
Jun 24, 2009
245
/**
Jan 15, 2011
Jan 15, 2011
246
* \brief Set a pointer to a value atomically.
Jun 24, 2009
Jun 24, 2009
247
*/
Jan 15, 2011
Jan 15, 2011
248
249
250
#ifndef SDL_AtomicSetPtr
extern DECLSPEC void SDLCALL SDL_AtomicSetPtr(void** a, void* value);
#endif
Aug 11, 2009
Aug 11, 2009
251
Jun 24, 2009
Jun 24, 2009
252
/**
Jan 15, 2011
Jan 15, 2011
253
* \brief Get the value of a pointer atomically.
Jun 24, 2009
Jun 24, 2009
254
*/
Jan 15, 2011
Jan 15, 2011
255
256
257
#ifndef SDL_AtomicGetPtr
extern DECLSPEC void* SDLCALL SDL_AtomicGetPtr(void** a);
#endif
Oct 19, 2009
Oct 19, 2009
258
259
/**
Jan 15, 2011
Jan 15, 2011
260
261
* \brief Set a pointer to a new value if it is currently an old value.
*
Jan 16, 2011
Jan 16, 2011
262
* \return SDL_TRUE if the pointer was set, SDL_FALSE otherwise.
Jan 15, 2011
Jan 15, 2011
263
264
265
266
*
* \note If you don't know what this function is for, you shouldn't use it!
*/
#ifndef SDL_AtomicCASPtr
Jan 16, 2011
Jan 16, 2011
267
extern DECLSPEC SDL_bool SDLCALL SDL_AtomicCASPtr(void **a, void *oldval, void *newval);
Jan 15, 2011
Jan 15, 2011
268
#endif
Oct 19, 2009
Oct 19, 2009
269
270
271
272
273
274
275
276
277
278
279
280
281
/* Ends C function definitions when using C++ */
#ifdef __cplusplus
/* *INDENT-OFF* */
}
/* *INDENT-ON* */
#endif
#include "close_code.h"
#endif /* _SDL_atomic_h_ */
/* vi: set ts=4 sw=4 expandtab: */