d3d8: Get rid of the format switching code in d3d8_device_CopyRects().
[wine.git] / dlls / msvcrt / lock.c
blob328b5b59fbea8de04f996b07479dda43d7e72950
1 /*
2 * Copyright (c) 2002, TransGaming Technologies Inc.
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2.1 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
19 #include "config.h"
20 #include "wine/port.h"
22 #include <stdarg.h>
24 #include "wine/debug.h"
25 #include "windef.h"
26 #include "winbase.h"
27 #include "winternl.h"
28 #include "msvcrt.h"
29 #include "cppexcept.h"
30 #include "mtdll.h"
31 #include "cxx.h"
33 WINE_DEFAULT_DEBUG_CHANNEL(msvcrt);
35 typedef struct
37 BOOL bInit;
38 CRITICAL_SECTION crit;
39 } LOCKTABLEENTRY;
41 static LOCKTABLEENTRY lock_table[ _TOTAL_LOCKS ];
43 static inline void msvcrt_mlock_set_entry_initialized( int locknum, BOOL initialized )
45 lock_table[ locknum ].bInit = initialized;
48 static inline void msvcrt_initialize_mlock( int locknum )
50 InitializeCriticalSection( &(lock_table[ locknum ].crit) );
51 lock_table[ locknum ].crit.DebugInfo->Spare[0] = (DWORD_PTR)(__FILE__ ": LOCKTABLEENTRY.crit");
52 msvcrt_mlock_set_entry_initialized( locknum, TRUE );
55 static inline void msvcrt_uninitialize_mlock( int locknum )
57 lock_table[ locknum ].crit.DebugInfo->Spare[0] = 0;
58 DeleteCriticalSection( &(lock_table[ locknum ].crit) );
59 msvcrt_mlock_set_entry_initialized( locknum, FALSE );
62 /**********************************************************************
63 * msvcrt_init_mt_locks (internal)
65 * Initialize the table lock. All other locks will be initialized
66 * upon first use.
69 void msvcrt_init_mt_locks(void)
71 int i;
73 TRACE( "initializing mtlocks\n" );
75 /* Initialize the table */
76 for( i=0; i < _TOTAL_LOCKS; i++ )
78 msvcrt_mlock_set_entry_initialized( i, FALSE );
81 /* Initialize our lock table lock */
82 msvcrt_initialize_mlock( _LOCKTAB_LOCK );
85 /**********************************************************************
86 * _lock (MSVCRT.@)
88 void CDECL _lock( int locknum )
90 TRACE( "(%d)\n", locknum );
92 /* If the lock doesn't exist yet, create it */
93 if( lock_table[ locknum ].bInit == FALSE )
95 /* Lock while we're changing the lock table */
96 _lock( _LOCKTAB_LOCK );
98 /* Check again if we've got a bit of a race on lock creation */
99 if( lock_table[ locknum ].bInit == FALSE )
101 TRACE( ": creating lock #%d\n", locknum );
102 msvcrt_initialize_mlock( locknum );
105 /* Unlock ourselves */
106 _unlock( _LOCKTAB_LOCK );
109 EnterCriticalSection( &(lock_table[ locknum ].crit) );
112 /**********************************************************************
113 * _unlock (MSVCRT.@)
115 * NOTE: There is no error detection to make sure the lock exists and is acquired.
117 void CDECL _unlock( int locknum )
119 TRACE( "(%d)\n", locknum );
121 LeaveCriticalSection( &(lock_table[ locknum ].crit) );
124 #if _MSVCR_VER >= 100
125 typedef enum
127 SPINWAIT_INIT,
128 SPINWAIT_SPIN,
129 SPINWAIT_YIELD,
130 SPINWAIT_DONE
131 } SpinWait_state;
133 typedef void (__cdecl *yield_func)(void);
135 typedef struct
137 ULONG spin;
138 ULONG unknown;
139 SpinWait_state state;
140 yield_func yield_func;
141 } SpinWait;
143 /* ?_Value@_SpinCount@details@Concurrency@@SAIXZ */
144 unsigned int __cdecl SpinCount__Value(void)
146 static unsigned int val = -1;
148 TRACE("()\n");
150 if(val == -1) {
151 SYSTEM_INFO si;
153 GetSystemInfo(&si);
154 val = si.dwNumberOfProcessors>1 ? 4000 : 0;
157 return val;
160 /* ??0?$_SpinWait@$00@details@Concurrency@@QAE@P6AXXZ@Z */
161 /* ??0?$_SpinWait@$00@details@Concurrency@@QEAA@P6AXXZ@Z */
162 DEFINE_THISCALL_WRAPPER(SpinWait_ctor_yield, 8)
163 SpinWait* __thiscall SpinWait_ctor_yield(SpinWait *this, yield_func yf)
165 TRACE("(%p %p)\n", this, yf);
167 this->state = SPINWAIT_INIT;
168 this->unknown = 1;
169 this->yield_func = yf;
170 return this;
173 /* ??0?$_SpinWait@$0A@@details@Concurrency@@QAE@P6AXXZ@Z */
174 /* ??0?$_SpinWait@$0A@@details@Concurrency@@QEAA@P6AXXZ@Z */
175 DEFINE_THISCALL_WRAPPER(SpinWait_ctor, 8)
176 SpinWait* __thiscall SpinWait_ctor(SpinWait *this, yield_func yf)
178 TRACE("(%p %p)\n", this, yf);
180 this->state = SPINWAIT_INIT;
181 this->unknown = 0;
182 this->yield_func = yf;
183 return this;
186 /* ??_F?$_SpinWait@$00@details@Concurrency@@QAEXXZ */
187 /* ??_F?$_SpinWait@$00@details@Concurrency@@QEAAXXZ */
188 /* ??_F?$_SpinWait@$0A@@details@Concurrency@@QAEXXZ */
189 /* ??_F?$_SpinWait@$0A@@details@Concurrency@@QEAAXXZ */
190 DEFINE_THISCALL_WRAPPER(SpinWait_dtor, 4)
191 void __thiscall SpinWait_dtor(SpinWait *this)
193 TRACE("(%p)\n", this);
196 /* ?_DoYield@?$_SpinWait@$00@details@Concurrency@@IAEXXZ */
197 /* ?_DoYield@?$_SpinWait@$00@details@Concurrency@@IEAAXXZ */
198 /* ?_DoYield@?$_SpinWait@$0A@@details@Concurrency@@IAEXXZ */
199 /* ?_DoYield@?$_SpinWait@$0A@@details@Concurrency@@IEAAXXZ */
200 DEFINE_THISCALL_WRAPPER(SpinWait__DoYield, 4)
201 void __thiscall SpinWait__DoYield(SpinWait *this)
203 TRACE("(%p)\n", this);
205 if(this->unknown)
206 this->yield_func();
209 /* ?_NumberOfSpins@?$_SpinWait@$00@details@Concurrency@@IAEKXZ */
210 /* ?_NumberOfSpins@?$_SpinWait@$00@details@Concurrency@@IEAAKXZ */
211 /* ?_NumberOfSpins@?$_SpinWait@$0A@@details@Concurrency@@IAEKXZ */
212 /* ?_NumberOfSpins@?$_SpinWait@$0A@@details@Concurrency@@IEAAKXZ */
213 DEFINE_THISCALL_WRAPPER(SpinWait__NumberOfSpins, 4)
214 ULONG __thiscall SpinWait__NumberOfSpins(SpinWait *this)
216 TRACE("(%p)\n", this);
217 return 1;
220 /* ?_SetSpinCount@?$_SpinWait@$00@details@Concurrency@@QAEXI@Z */
221 /* ?_SetSpinCount@?$_SpinWait@$00@details@Concurrency@@QEAAXI@Z */
222 /* ?_SetSpinCount@?$_SpinWait@$0A@@details@Concurrency@@QAEXI@Z */
223 /* ?_SetSpinCount@?$_SpinWait@$0A@@details@Concurrency@@QEAAXI@Z */
224 DEFINE_THISCALL_WRAPPER(SpinWait__SetSpinCount, 8)
225 void __thiscall SpinWait__SetSpinCount(SpinWait *this, unsigned int spin)
227 TRACE("(%p %d)\n", this, spin);
229 this->spin = spin;
230 this->state = spin ? SPINWAIT_SPIN : SPINWAIT_YIELD;
233 /* ?_Reset@?$_SpinWait@$00@details@Concurrency@@IAEXXZ */
234 /* ?_Reset@?$_SpinWait@$00@details@Concurrency@@IEAAXXZ */
235 /* ?_Reset@?$_SpinWait@$0A@@details@Concurrency@@IAEXXZ */
236 /* ?_Reset@?$_SpinWait@$0A@@details@Concurrency@@IEAAXXZ */
237 DEFINE_THISCALL_WRAPPER(SpinWait__Reset, 4)
238 void __thiscall SpinWait__Reset(SpinWait *this)
240 SpinWait__SetSpinCount(this, SpinCount__Value());
243 /* ?_ShouldSpinAgain@?$_SpinWait@$00@details@Concurrency@@IAE_NXZ */
244 /* ?_ShouldSpinAgain@?$_SpinWait@$00@details@Concurrency@@IEAA_NXZ */
245 /* ?_ShouldSpinAgain@?$_SpinWait@$0A@@details@Concurrency@@IAE_NXZ */
246 /* ?_ShouldSpinAgain@?$_SpinWait@$0A@@details@Concurrency@@IEAA_NXZ */
247 DEFINE_THISCALL_WRAPPER(SpinWait__ShouldSpinAgain, 4)
248 MSVCRT_bool __thiscall SpinWait__ShouldSpinAgain(SpinWait *this)
250 TRACE("(%p)\n", this);
252 this->spin--;
253 return this->spin > 0;
256 /* ?_SpinOnce@?$_SpinWait@$00@details@Concurrency@@QAE_NXZ */
257 /* ?_SpinOnce@?$_SpinWait@$00@details@Concurrency@@QEAA_NXZ */
258 /* ?_SpinOnce@?$_SpinWait@$0A@@details@Concurrency@@QAE_NXZ */
259 /* ?_SpinOnce@?$_SpinWait@$0A@@details@Concurrency@@QEAA_NXZ */
260 DEFINE_THISCALL_WRAPPER(SpinWait__SpinOnce, 4)
261 MSVCRT_bool __thiscall SpinWait__SpinOnce(SpinWait *this)
263 switch(this->state) {
264 case SPINWAIT_INIT:
265 SpinWait__Reset(this);
266 /* fall through */
267 case SPINWAIT_SPIN:
268 #ifdef __i386__
269 __asm__ __volatile__( "rep;nop" : : : "memory" );
270 #else
271 __asm__ __volatile__( "" : : : "memory" );
272 #endif
274 this->spin--;
275 if(!this->spin)
276 this->state = this->unknown ? SPINWAIT_YIELD : SPINWAIT_DONE;
277 return TRUE;
278 case SPINWAIT_YIELD:
279 this->state = SPINWAIT_DONE;
280 this->yield_func();
281 return TRUE;
282 default:
283 SpinWait__Reset(this);
284 return FALSE;
288 static HANDLE keyed_event;
290 /* keep in sync with msvcp90/msvcp90.h */
291 typedef struct cs_queue
293 struct cs_queue *next;
294 #if _MSVCR_VER >= 110
295 BOOL free;
296 int unknown;
297 #endif
298 } cs_queue;
300 typedef struct
302 ULONG_PTR unk_thread_id;
303 cs_queue unk_active;
304 #if _MSVCR_VER >= 110
305 void *unknown[2];
306 #else
307 void *unknown[1];
308 #endif
309 cs_queue *head;
310 void *tail;
311 } critical_section;
313 /* ??0critical_section@Concurrency@@QAE@XZ */
314 /* ??0critical_section@Concurrency@@QEAA@XZ */
315 DEFINE_THISCALL_WRAPPER(critical_section_ctor, 4)
316 critical_section* __thiscall critical_section_ctor(critical_section *this)
318 TRACE("(%p)\n", this);
320 if(!keyed_event) {
321 HANDLE event;
323 NtCreateKeyedEvent(&event, GENERIC_READ|GENERIC_WRITE, NULL, 0);
324 if(InterlockedCompareExchangePointer(&keyed_event, event, NULL) != NULL)
325 NtClose(event);
328 this->unk_thread_id = 0;
329 this->head = this->tail = NULL;
330 return this;
333 /* ??1critical_section@Concurrency@@QAE@XZ */
334 /* ??1critical_section@Concurrency@@QEAA@XZ */
335 DEFINE_THISCALL_WRAPPER(critical_section_dtor, 4)
336 void __thiscall critical_section_dtor(critical_section *this)
338 TRACE("(%p)\n", this);
341 static void __cdecl spin_wait_yield(void)
343 Sleep(0);
346 static inline void spin_wait_for_next_cs(cs_queue *q)
348 SpinWait sw;
350 if(q->next) return;
352 SpinWait_ctor(&sw, &spin_wait_yield);
353 SpinWait__Reset(&sw);
354 while(!q->next)
355 SpinWait__SpinOnce(&sw);
356 SpinWait_dtor(&sw);
359 static inline void cs_set_head(critical_section *cs, cs_queue *q)
361 cs->unk_thread_id = GetCurrentThreadId();
362 cs->unk_active.next = q->next;
363 cs->head = &cs->unk_active;
366 /* ?lock@critical_section@Concurrency@@QAEXXZ */
367 /* ?lock@critical_section@Concurrency@@QEAAXXZ */
368 DEFINE_THISCALL_WRAPPER(critical_section_lock, 4)
369 void __thiscall critical_section_lock(critical_section *this)
371 cs_queue q, *last;
373 TRACE("(%p)\n", this);
375 if(this->unk_thread_id == GetCurrentThreadId()) {
376 FIXME("throw exception\n");
377 return;
380 memset(&q, 0, sizeof(q));
381 last = InterlockedExchangePointer(&this->tail, &q);
382 if(last) {
383 last->next = &q;
384 NtWaitForKeyedEvent(keyed_event, &q, 0, NULL);
387 this->unk_active.next = NULL;
388 if(InterlockedCompareExchangePointer(&this->tail, &this->unk_active, &q) != &q)
389 spin_wait_for_next_cs(&q);
390 cs_set_head(this, &q);
393 /* ?try_lock@critical_section@Concurrency@@QAE_NXZ */
394 /* ?try_lock@critical_section@Concurrency@@QEAA_NXZ */
395 DEFINE_THISCALL_WRAPPER(critical_section_try_lock, 4)
396 MSVCRT_bool __thiscall critical_section_try_lock(critical_section *this)
398 cs_queue q;
400 TRACE("(%p)\n", this);
402 if(this->unk_thread_id == GetCurrentThreadId()) {
403 FIXME("throw exception\n");
404 return FALSE;
407 memset(&q, 0, sizeof(q));
408 if(!InterlockedCompareExchangePointer(&this->tail, &q, NULL)) {
409 this->unk_active.next = NULL;
410 if(InterlockedCompareExchangePointer(&this->tail, &this->unk_active, &q) != &q)
411 spin_wait_for_next_cs(&q);
413 cs_set_head(this, &q);
414 return TRUE;
416 return FALSE;
419 /* ?unlock@critical_section@Concurrency@@QAEXXZ */
420 /* ?unlock@critical_section@Concurrency@@QEAAXXZ */
421 DEFINE_THISCALL_WRAPPER(critical_section_unlock, 4)
422 void __thiscall critical_section_unlock(critical_section *this)
424 TRACE("(%p)\n", this);
426 this->unk_thread_id = 0;
427 this->head = NULL;
428 if(InterlockedCompareExchangePointer(&this->tail, NULL, &this->unk_active)
429 == &this->unk_active) return;
430 spin_wait_for_next_cs(&this->unk_active);
432 #if _MSVCR_VER >= 110
433 while(1) {
434 cs_queue *next;
436 if(!InterlockedExchange(&this->unk_active.next->free, TRUE))
437 break;
439 next = this->unk_active.next;
440 if(InterlockedCompareExchangePointer(&this->tail, NULL, next) == next)
441 return;
442 spin_wait_for_next_cs(next);
444 this->unk_active.next = next->next;
445 HeapFree(GetProcessHeap(), 0, next);
447 #endif
449 NtReleaseKeyedEvent(keyed_event, this->unk_active.next, 0, NULL);
452 /* ?native_handle@critical_section@Concurrency@@QAEAAV12@XZ */
453 /* ?native_handle@critical_section@Concurrency@@QEAAAEAV12@XZ */
454 DEFINE_THISCALL_WRAPPER(critical_section_native_handle, 4)
455 critical_section* __thiscall critical_section_native_handle(critical_section *this)
457 TRACE("(%p)\n", this);
458 return this;
461 #if _MSVCR_VER >= 110
462 /* ?try_lock_for@critical_section@Concurrency@@QAE_NI@Z */
463 /* ?try_lock_for@critical_section@Concurrency@@QEAA_NI@Z */
464 DEFINE_THISCALL_WRAPPER(critical_section_try_lock_for, 8)
465 MSVCRT_bool __thiscall critical_section_try_lock_for(
466 critical_section *this, unsigned int timeout)
468 cs_queue *q, *last;
470 TRACE("(%p %d)\n", this, timeout);
472 if(this->unk_thread_id == GetCurrentThreadId()) {
473 FIXME("throw exception\n");
474 return FALSE;
477 if(!(q = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(*q))))
478 return critical_section_try_lock(this);
480 last = InterlockedExchangePointer(&this->tail, q);
481 if(last) {
482 LARGE_INTEGER to;
483 NTSTATUS status;
484 FILETIME ft;
486 last->next = q;
487 GetSystemTimeAsFileTime(&ft);
488 to.QuadPart = ((LONGLONG)ft.dwHighDateTime<<32) +
489 ft.dwLowDateTime + (LONGLONG)timeout*10000;
490 status = NtWaitForKeyedEvent(keyed_event, q, 0, &to);
491 if(status == STATUS_TIMEOUT) {
492 if(!InterlockedExchange(&q->free, TRUE))
493 return FALSE;
497 this->unk_active.next = NULL;
498 if(InterlockedCompareExchangePointer(&this->tail, &this->unk_active, q) != q)
499 spin_wait_for_next_cs(q);
501 cs_set_head(this, q);
502 HeapFree(GetProcessHeap(), 0, q);
503 return TRUE;
505 #endif
507 typedef struct
509 critical_section *cs;
510 void *unknown[3];
511 } critical_section_scoped_lock;
513 /* ??0scoped_lock@critical_section@Concurrency@@QAE@AAV12@@Z */
514 /* ??0scoped_lock@critical_section@Concurrency@@QEAA@AEAV12@@Z */
515 DEFINE_THISCALL_WRAPPER(critical_section_scoped_lock_ctor, 8)
516 critical_section_scoped_lock* __thiscall critical_section_scoped_lock_ctor(
517 critical_section_scoped_lock *this, critical_section *cs)
519 TRACE("(%p %p)\n", this, cs);
520 this->cs = cs;
521 critical_section_lock(this->cs);
522 return this;
525 /* ??1scoped_lock@critical_section@Concurrency@@QAE@XZ */
526 /* ??1scoped_lock@critical_section@Concurrency@@QEAA@XZ */
527 DEFINE_THISCALL_WRAPPER(critical_section_scoped_lock_dtor, 4)
528 void __thiscall critical_section_scoped_lock_dtor(critical_section_scoped_lock *this)
530 TRACE("(%p)\n", this);
531 critical_section_unlock(this->cs);
533 #endif
535 /**********************************************************************
536 * msvcrt_free_locks (internal)
538 * Uninitialize all mt locks. Assume that neither _lock or _unlock will
539 * be called once we're calling this routine (ie _LOCKTAB_LOCK can be deleted)
542 void msvcrt_free_locks(void)
544 int i;
546 TRACE( ": uninitializing all mtlocks\n" );
548 /* Uninitialize the table */
549 for( i=0; i < _TOTAL_LOCKS; i++ )
551 if( lock_table[ i ].bInit )
553 msvcrt_uninitialize_mlock( i );
557 #if _MSVCR_VER >= 100
558 if(keyed_event)
559 NtClose(keyed_event);
560 #endif