d3dx9: Use wine_dbgstr_rect() in some more places.
[wine/multimedia.git] / libs / port / interlocked.c
blobeb14daa32b37f583439c5a14ae8bf9bce009af83
1 /*
2 * interlocked functions
4 * Copyright 1996 Alexandre Julliard
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
21 #include "config.h"
22 #include "wine/port.h"
23 #include <assert.h>
25 #ifdef __i386__
27 #if defined(_MSC_VER)
29 __declspec(naked) int interlocked_cmpxchg( int *dest, int xchg, int compare )
31 __asm mov eax, 12[esp];
32 __asm mov ecx, 8[esp];
33 __asm mov edx, 4[esp];
34 __asm lock cmpxchg [edx], ecx;
35 __asm ret;
38 __declspec(naked) void *interlocked_cmpxchg_ptr( void **dest, void *xchg, void *compare )
40 __asm mov eax, 12[esp];
41 __asm mov ecx, 8[esp];
42 __asm mov edx, 4[esp];
43 __asm lock cmpxchg [edx], ecx;
44 __asm ret;
47 __declspec(naked) __int64 interlocked_cmpxchg64( __int64 *dest, __int64 xchg, __int64 compare)
49 __asm push ebx;
50 __asm push esi;
51 __asm mov esi, 12[esp];
52 __asm mov ebx, 16[esp];
53 __asm mov ecx, 20[esp];
54 __asm mov eax, 24[esp];
55 __asm mov edx, 28[esp];
56 __asm lock cmpxchg8b [esi];
57 __asm pop esi;
58 __asm pop ebx;
59 __asm ret;
62 __declspec(naked) int interlocked_xchg( int *dest, int val )
64 __asm mov eax, 8[esp];
65 __asm mov edx, 4[esp];
66 __asm lock xchg [edx], eax;
67 __asm ret;
70 __declspec(naked) void *interlocked_xchg_ptr( void **dest, void *val )
72 __asm mov eax, 8[esp];
73 __asm mov edx, 4[esp];
74 __asm lock xchg [edx], eax;
75 __asm ret;
78 __declspec(naked) int interlocked_xchg_add( int *dest, int incr )
80 __asm mov eax, 8[esp];
81 __asm mov edx, 4[esp];
82 __asm lock xadd [edx], eax;
83 __asm ret;
86 #else
87 /* use gcc compatible asm code as default for __i386__ */
89 __ASM_GLOBAL_FUNC(interlocked_cmpxchg,
90 "movl 12(%esp),%eax\n\t"
91 "movl 8(%esp),%ecx\n\t"
92 "movl 4(%esp),%edx\n\t"
93 "lock; cmpxchgl %ecx,(%edx)\n\t"
94 "ret")
95 __ASM_GLOBAL_FUNC(interlocked_cmpxchg_ptr,
96 "movl 12(%esp),%eax\n\t"
97 "movl 8(%esp),%ecx\n\t"
98 "movl 4(%esp),%edx\n\t"
99 "lock; cmpxchgl %ecx,(%edx)\n\t"
100 "ret")
101 __ASM_GLOBAL_FUNC(interlocked_cmpxchg64,
102 "push %ebx\n\t"
103 __ASM_CFI(".cfi_adjust_cfa_offset 4\n\t")
104 __ASM_CFI(".cfi_rel_offset %ebx,0\n\t")
105 "push %esi\n\t"
106 __ASM_CFI(".cfi_adjust_cfa_offset 4\n\t")
107 __ASM_CFI(".cfi_rel_offset %esi,0\n\t")
108 "movl 12(%esp),%esi\n\t"
109 "movl 16(%esp),%ebx\n\t"
110 "movl 20(%esp),%ecx\n\t"
111 "movl 24(%esp),%eax\n\t"
112 "movl 28(%esp),%edx\n\t"
113 "lock; cmpxchg8b (%esi)\n\t"
114 "pop %esi\n\t"
115 __ASM_CFI(".cfi_same_value %esi\n\t")
116 __ASM_CFI(".cfi_adjust_cfa_offset -4\n\t")
117 "pop %ebx\n\t"
118 __ASM_CFI(".cfi_same_value %ebx\n\t")
119 __ASM_CFI(".cfi_adjust_cfa_offset -4\n\t")
120 "ret")
121 __ASM_GLOBAL_FUNC(interlocked_xchg,
122 "movl 8(%esp),%eax\n\t"
123 "movl 4(%esp),%edx\n\t"
124 "lock; xchgl %eax,(%edx)\n\t"
125 "ret")
126 __ASM_GLOBAL_FUNC(interlocked_xchg_ptr,
127 "movl 8(%esp),%eax\n\t"
128 "movl 4(%esp),%edx\n\t"
129 "lock; xchgl %eax,(%edx)\n\t"
130 "ret")
131 __ASM_GLOBAL_FUNC(interlocked_xchg_add,
132 "movl 8(%esp),%eax\n\t"
133 "movl 4(%esp),%edx\n\t"
134 "lock; xaddl %eax,(%edx)\n\t"
135 "ret")
137 #endif
139 #elif defined(__x86_64__)
141 __ASM_GLOBAL_FUNC(interlocked_cmpxchg,
142 "mov %edx, %eax\n\t"
143 "lock cmpxchgl %esi,(%rdi)\n\t"
144 "ret")
145 __ASM_GLOBAL_FUNC(interlocked_cmpxchg_ptr,
146 "mov %rdx, %rax\n\t"
147 "lock cmpxchgq %rsi,(%rdi)\n\t"
148 "ret")
149 __ASM_GLOBAL_FUNC(interlocked_cmpxchg64,
150 "mov %rdx, %rax\n\t"
151 "lock cmpxchgq %rsi,(%rdi)\n\t"
152 "ret")
153 __ASM_GLOBAL_FUNC(interlocked_xchg,
154 "mov %esi, %eax\n\t"
155 "lock xchgl %eax, (%rdi)\n\t"
156 "ret")
157 __ASM_GLOBAL_FUNC(interlocked_xchg_ptr,
158 "mov %rsi, %rax\n\t"
159 "lock xchgq %rax,(%rdi)\n\t"
160 "ret")
161 __ASM_GLOBAL_FUNC(interlocked_xchg_add,
162 "mov %esi, %eax\n\t"
163 "lock xaddl %eax, (%rdi)\n\t"
164 "ret")
165 __ASM_GLOBAL_FUNC(interlocked_cmpxchg128,
166 "push %rbx\n\t"
167 __ASM_CFI(".cfi_adjust_cfa_offset 8\n\t")
168 __ASM_CFI(".cfi_rel_offset %rbx,0\n\t")
169 "mov %rcx,%r8\n\t" /* compare */
170 "mov %rdx,%rbx\n\t" /* xchg_low */
171 "mov %rsi,%rcx\n\t" /* xchg_high */
172 "mov 0(%r8),%rax\n\t"
173 "mov 8(%r8),%rdx\n\t"
174 "lock cmpxchg16b (%rdi)\n\t"
175 "mov %rax,0(%r8)\n\t"
176 "mov %rdx,8(%r8)\n\t"
177 "setz %al\n\t"
178 "pop %rbx\n\t"
179 __ASM_CFI(".cfi_adjust_cfa_offset -8\n\t")
180 __ASM_CFI(".cfi_same_value %rbx\n\t")
181 "ret")
183 #elif defined(__powerpc__)
184 void* interlocked_cmpxchg_ptr( void **dest, void* xchg, void* compare)
186 void *ret = 0;
187 void *scratch;
188 __asm__ __volatile__(
189 "0: lwarx %0,0,%2\n"
190 " xor. %1,%4,%0\n"
191 " bne 1f\n"
192 " stwcx. %3,0,%2\n"
193 " bne- 0b\n"
194 " isync\n"
195 "1: "
196 : "=&r"(ret), "=&r"(scratch)
197 : "r"(dest), "r"(xchg), "r"(compare)
198 : "cr0","memory");
199 return ret;
202 __int64 interlocked_cmpxchg64( __int64 *dest, __int64 xchg, __int64 compare)
204 /* FIXME: add code */
205 assert(0);
208 int interlocked_cmpxchg( int *dest, int xchg, int compare)
210 int ret = 0;
211 int scratch;
212 __asm__ __volatile__(
213 "0: lwarx %0,0,%2\n"
214 " xor. %1,%4,%0\n"
215 " bne 1f\n"
216 " stwcx. %3,0,%2\n"
217 " bne- 0b\n"
218 " isync\n"
219 "1: "
220 : "=&r"(ret), "=&r"(scratch)
221 : "r"(dest), "r"(xchg), "r"(compare)
222 : "cr0","memory","r0");
223 return ret;
226 int interlocked_xchg_add( int *dest, int incr )
228 int ret = 0;
229 int zero = 0;
230 __asm__ __volatile__(
231 "0: lwarx %0, %3, %1\n"
232 " add %0, %2, %0\n"
233 " stwcx. %0, %3, %1\n"
234 " bne- 0b\n"
235 " isync\n"
236 : "=&r" (ret)
237 : "r"(dest), "r"(incr), "r"(zero)
238 : "cr0", "memory", "r0"
240 return ret-incr;
243 int interlocked_xchg( int* dest, int val )
245 int ret = 0;
246 __asm__ __volatile__(
247 "0: lwarx %0,0,%1\n"
248 " stwcx. %2,0,%1\n"
249 " bne- 0b\n"
250 " isync\n"
251 : "=&r"(ret)
252 : "r"(dest), "r"(val)
253 : "cr0","memory","r0");
254 return ret;
257 void* interlocked_xchg_ptr( void** dest, void* val )
259 void *ret = NULL;
260 __asm__ __volatile__(
261 "0: lwarx %0,0,%1\n"
262 " stwcx. %2,0,%1\n"
263 " bne- 0b\n"
264 " isync\n"
265 : "=&r"(ret)
266 : "r"(dest), "r"(val)
267 : "cr0","memory","r0");
268 return ret;
271 #else
273 #include <pthread.h>
275 static pthread_mutex_t interlocked_mutex = PTHREAD_MUTEX_INITIALIZER;
277 int interlocked_cmpxchg( int *dest, int xchg, int compare )
279 pthread_mutex_lock( &interlocked_mutex );
281 if (*dest == compare)
282 *dest = xchg;
283 else
284 compare = *dest;
286 pthread_mutex_unlock( &interlocked_mutex );
287 return compare;
290 void *interlocked_cmpxchg_ptr( void **dest, void *xchg, void *compare )
292 pthread_mutex_lock( &interlocked_mutex );
294 if (*dest == compare)
295 *dest = xchg;
296 else
297 compare = *dest;
299 pthread_mutex_unlock( &interlocked_mutex );
300 return compare;
303 __int64 interlocked_cmpxchg64( __int64 *dest, __int64 xchg, __int64 compare )
305 pthread_mutex_lock( &interlocked_mutex );
307 if (*dest == compare)
308 *dest = xchg;
309 else
310 compare = *dest;
312 pthread_mutex_unlock( &interlocked_mutex );
313 return compare;
316 int interlocked_xchg( int *dest, int val )
318 int retv;
319 pthread_mutex_lock( &interlocked_mutex );
320 retv = *dest;
321 *dest = val;
322 pthread_mutex_unlock( &interlocked_mutex );
323 return retv;
326 void *interlocked_xchg_ptr( void **dest, void *val )
328 void *retv;
329 pthread_mutex_lock( &interlocked_mutex );
330 retv = *dest;
331 *dest = val;
332 pthread_mutex_unlock( &interlocked_mutex );
333 return retv;
336 int interlocked_xchg_add( int *dest, int incr )
338 int retv;
339 pthread_mutex_lock( &interlocked_mutex );
340 retv = *dest;
341 *dest += incr;
342 pthread_mutex_unlock( &interlocked_mutex );
343 return retv;
346 #endif