slouken@5003
|
1 |
/*
|
slouken@5003
|
2 |
SDL - Simple DirectMedia Layer
|
slouken@5003
|
3 |
Copyright (C) 1997-2010 Sam Lantinga
|
slouken@5003
|
4 |
|
slouken@5003
|
5 |
This library is free software; you can redistribute it and/or
|
slouken@5003
|
6 |
modify it under the terms of the GNU Lesser General Public
|
slouken@5003
|
7 |
License as published by the Free Software Foundation; either
|
slouken@5003
|
8 |
version 2.1 of the License, or (at your option) any later version.
|
slouken@5003
|
9 |
|
slouken@5003
|
10 |
This library is distributed in the hope that it will be useful,
|
slouken@5003
|
11 |
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
slouken@5003
|
12 |
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
slouken@5003
|
13 |
Lesser General Public License for more details.
|
slouken@5003
|
14 |
|
slouken@5003
|
15 |
You should have received a copy of the GNU Lesser General Public
|
slouken@5003
|
16 |
License along with this library; if not, write to the Free Software
|
slouken@5003
|
17 |
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
slouken@5003
|
18 |
|
slouken@5003
|
19 |
Sam Lantinga
|
slouken@5003
|
20 |
slouken@libsdl.org
|
slouken@5003
|
21 |
*/
|
slouken@5003
|
22 |
#include "SDL_stdinc.h"
|
slouken@5003
|
23 |
|
slouken@5003
|
24 |
#include "SDL_atomic.h"
|
slouken@5003
|
25 |
#include "SDL_timer.h"
|
slouken@5003
|
26 |
|
slouken@5073
|
27 |
/* Don't do the check for Visual Studio 2005, it's safe here */
|
slouken@5091
|
28 |
#ifdef __WIN32__
|
slouken@5090
|
29 |
#include "../core/windows/SDL_windows.h"
|
slouken@5091
|
30 |
#endif
|
slouken@5003
|
31 |
|
slouken@5003
|
32 |
/* This function is where all the magic happens... */
|
slouken@5003
|
33 |
SDL_bool
|
slouken@5003
|
34 |
SDL_AtomicTryLock(SDL_SpinLock *lock)
|
slouken@5003
|
35 |
{
|
slouken@5028
|
36 |
#if defined(_MSC_VER)
|
slouken@5015
|
37 |
SDL_COMPILE_TIME_ASSERT(locksize, sizeof(*lock) == sizeof(long));
|
slouken@5090
|
38 |
return (InterlockedExchange((long*)lock, 1) == 0);
|
slouken@5003
|
39 |
|
slouken@5003
|
40 |
#elif defined(__MACOSX__)
|
slouken@5003
|
41 |
return OSAtomicCompareAndSwap32Barrier(0, 1, lock);
|
slouken@5003
|
42 |
|
slouken@5071
|
43 |
#elif defined(HAVE_GCC_ATOMICS) || defined(HAVE_GCC_SYNC_LOCK_TEST_AND_SET)
|
slouken@5004
|
44 |
return (__sync_lock_test_and_set(lock, 1) == 0);
|
slouken@5004
|
45 |
|
slouken@5004
|
46 |
#elif defined(__GNUC__) && defined(__arm__) && defined(__ARM_ARCH_5__)
|
slouken@5003
|
47 |
int result;
|
slouken@5003
|
48 |
__asm__ __volatile__ (
|
slouken@5003
|
49 |
"swp %0, %1, [%2]\n"
|
slouken@5003
|
50 |
: "=&r,&r" (result) : "r,0" (1), "r,r" (lock) : "memory");
|
slouken@5003
|
51 |
return (result == 0);
|
slouken@5004
|
52 |
|
slouken@5004
|
53 |
#elif defined(__GNUC__) && defined(__arm__)
|
slouken@5003
|
54 |
int result;
|
slouken@5003
|
55 |
__asm__ __volatile__ (
|
slouken@5003
|
56 |
"ldrex %0, [%2]\nteq %0, #0\nstrexeq %0, %1, [%2]"
|
slouken@5003
|
57 |
: "=&r" (result) : "r" (1), "r" (lock) : "cc", "memory");
|
slouken@5003
|
58 |
return (result == 0);
|
slouken@5003
|
59 |
|
slouken@5003
|
60 |
#else
|
slouken@5003
|
61 |
/* Need CPU instructions for spinlock here! */
|
slouken@5003
|
62 |
__need_spinlock_implementation__
|
slouken@5003
|
63 |
#endif
|
slouken@5003
|
64 |
}
|
slouken@5003
|
65 |
|
slouken@5003
|
66 |
void
|
slouken@5003
|
67 |
SDL_AtomicLock(SDL_SpinLock *lock)
|
slouken@5003
|
68 |
{
|
slouken@5003
|
69 |
/* FIXME: Should we have an eventual timeout? */
|
slouken@5003
|
70 |
while (!SDL_AtomicTryLock(lock)) {
|
slouken@5003
|
71 |
SDL_Delay(0);
|
slouken@5003
|
72 |
}
|
slouken@5003
|
73 |
}
|
slouken@5003
|
74 |
|
slouken@5003
|
75 |
void
|
slouken@5003
|
76 |
SDL_AtomicUnlock(SDL_SpinLock *lock)
|
slouken@5003
|
77 |
{
|
slouken@5004
|
78 |
/* Assuming atomic assignment operation and full memory barrier in lock */
|
slouken@5003
|
79 |
*lock = 0;
|
slouken@5003
|
80 |
}
|
slouken@5003
|
81 |
|
slouken@5003
|
82 |
/* vi: set ts=4 sw=4 expandtab: */
|