-
-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Expand file tree
/
Copy pathtimer.c
More file actions
670 lines (562 loc) · 12.5 KB
/
timer.c
File metadata and controls
670 lines (562 loc) · 12.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
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
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
// SPDX-FileCopyrightText: 2023 Erin Catto
// SPDX-License-Identifier: MIT
// Required on Linux to expose pthread_setname_np. Must be defined before any
// system header is included.
#if defined( __linux__ ) && !defined( _GNU_SOURCE )
#define _GNU_SOURCE
#endif
#include "core.h"
#include "box2d/base.h"
#include <stddef.h>
#include <stdio.h>
#if defined( _WIN32 )
#ifndef WIN32_LEAN_AND_MEAN
#define WIN32_LEAN_AND_MEAN 1
#endif
#include <Windows.h>
#include <limits.h>
static double s_invFrequency = 0.0;
uint64_t b2GetTicks( void )
{
LARGE_INTEGER counter;
QueryPerformanceCounter( &counter );
return (uint64_t)counter.QuadPart;
}
float b2GetMilliseconds( uint64_t ticks )
{
if ( s_invFrequency == 0.0 )
{
LARGE_INTEGER frequency;
QueryPerformanceFrequency( &frequency );
s_invFrequency = (double)frequency.QuadPart;
if ( s_invFrequency > 0.0 )
{
s_invFrequency = 1000.0 / s_invFrequency;
}
}
uint64_t ticksNow = b2GetTicks();
return (float)( s_invFrequency * ( ticksNow - ticks ) );
}
float b2GetMillisecondsAndReset( uint64_t* ticks )
{
if ( s_invFrequency == 0.0 )
{
LARGE_INTEGER frequency;
QueryPerformanceFrequency( &frequency );
s_invFrequency = (double)frequency.QuadPart;
if ( s_invFrequency > 0.0 )
{
s_invFrequency = 1000.0 / s_invFrequency;
}
}
uint64_t ticksNow = b2GetTicks();
float ms = (float)( s_invFrequency * ( ticksNow - *ticks ) );
*ticks = ticksNow;
return ms;
}
void b2Yield( void )
{
SwitchToThread();
}
typedef struct b2Mutex
{
CRITICAL_SECTION cs;
} b2Mutex;
b2Mutex* b2CreateMutex( void )
{
b2Mutex* m = b2Alloc( sizeof( b2Mutex ) );
InitializeCriticalSection( &m->cs );
return m;
}
void b2DestroyMutex( b2Mutex* m )
{
DeleteCriticalSection( &m->cs );
*m = (b2Mutex){ 0 };
b2Free( m, sizeof( b2Mutex ) );
}
void b2LockMutex( b2Mutex* m )
{
EnterCriticalSection( &m->cs );
}
void b2UnlockMutex( b2Mutex* m )
{
LeaveCriticalSection( &m->cs );
}
typedef struct b2Semaphore
{
HANDLE semaphore;
} b2Semaphore;
b2Semaphore* b2CreateSemaphore( int initCount )
{
b2Semaphore* s = b2Alloc( sizeof( b2Semaphore ) );
s->semaphore = CreateSemaphoreExW( NULL, initCount, INT_MAX, NULL, 0, SEMAPHORE_ALL_ACCESS );
return s;
}
void b2DestroySemaphore( b2Semaphore* s )
{
CloseHandle( s->semaphore );
*s = (b2Semaphore){ 0 };
b2Free( s, sizeof( b2Semaphore ) );
}
void b2WaitSemaphore( b2Semaphore* s )
{
WaitForSingleObjectEx( s->semaphore, INFINITE, FALSE );
}
void b2SignalSemaphore( b2Semaphore* s )
{
ReleaseSemaphore( s->semaphore, 1, NULL );
}
typedef struct b2Thread
{
HANDLE thread;
b2ThreadFunction* function;
void* context;
char name[32];
} b2Thread;
typedef HRESULT( WINAPI* b2SetThreadDescriptionFn )( HANDLE, PCWSTR );
// SetThreadDescription exists on Windows 10 1607+. Resolve it dynamically so
// older Windows versions still link. Resolved once, cached for subsequent calls.
static void b2SetCurrentThreadName( const char* name )
{
if ( name == NULL || name[0] == 0 )
{
return;
}
static b2SetThreadDescriptionFn pfn = NULL;
static int resolved = 0;
if ( resolved == 0 )
{
HMODULE kernel = GetModuleHandleW( L"kernel32.dll" );
if ( kernel != NULL )
{
// MSVC /Wall warns C4191 and GCC/Clang -Wcast-function-type
// warns on every FARPROC function-pointer cast. This is the
// intended use of GetProcAddress, so suppress locally.
#if defined( __clang__ )
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Wcast-function-type"
#elif defined( _MSC_VER )
#pragma warning( push )
#pragma warning( disable : 4191 )
#elif defined( __GNUC__ )
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wcast-function-type"
#endif
pfn = (b2SetThreadDescriptionFn)GetProcAddress( kernel, "SetThreadDescription" );
#if defined( __clang__ )
#pragma clang diagnostic pop
#elif defined( _MSC_VER )
#pragma warning( pop )
#elif defined( __GNUC__ )
#pragma GCC diagnostic pop
#endif
}
resolved = 1;
}
if ( pfn == NULL )
{
return;
}
wchar_t wide[32];
int n = MultiByteToWideChar( CP_UTF8, 0, name, -1, wide, (int)( sizeof( wide ) / sizeof( wide[0] ) ) );
if ( n > 0 )
{
pfn( GetCurrentThread(), wide );
}
}
static DWORD WINAPI b2ThreadStart( LPVOID param )
{
b2Thread* t = (b2Thread*)param;
b2SetCurrentThreadName( t->name );
b2TracyCSetThreadName( t->name );
t->function( t->context );
return 0;
}
b2Thread* b2CreateThread( b2ThreadFunction* function, void* context, const char* name )
{
b2Thread* t = b2Alloc( sizeof( b2Thread ) );
t->function = function;
t->context = context;
if ( name != NULL )
{
snprintf( t->name, sizeof( t->name ), "%s", name );
}
else
{
t->name[0] = 0;
}
t->thread = CreateThread( NULL, 0, b2ThreadStart, t, 0, NULL );
return t;
}
void b2JoinThread( b2Thread* t )
{
WaitForSingleObject( t->thread, INFINITE );
CloseHandle( t->thread );
*t = (b2Thread){ 0 };
b2Free( t, sizeof( b2Thread ) );
}
#elif defined( __linux__ ) || defined( __EMSCRIPTEN__ )
#include <sched.h>
#include <time.h>
uint64_t b2GetTicks( void )
{
struct timespec ts;
clock_gettime( CLOCK_MONOTONIC, &ts );
return ts.tv_sec * 1000000000LL + ts.tv_nsec;
}
float b2GetMilliseconds( uint64_t ticks )
{
uint64_t ticksNow = b2GetTicks();
return (float)( ( ticksNow - ticks ) / 1000000.0 );
}
float b2GetMillisecondsAndReset( uint64_t* ticks )
{
uint64_t ticksNow = b2GetTicks();
float ms = (float)( ( ticksNow - *ticks ) / 1000000.0 );
*ticks = ticksNow;
return ms;
}
void b2Yield( void )
{
sched_yield();
}
#include <pthread.h>
typedef struct b2Mutex
{
pthread_mutex_t mtx;
} b2Mutex;
b2Mutex* b2CreateMutex( void )
{
b2Mutex* m = b2Alloc( sizeof( b2Mutex ) );
pthread_mutex_init( &m->mtx, NULL );
return m;
}
void b2DestroyMutex( b2Mutex* m )
{
pthread_mutex_destroy( &m->mtx );
*m = (b2Mutex){ 0 };
b2Free( m, sizeof( b2Mutex ) );
}
void b2LockMutex( b2Mutex* m )
{
pthread_mutex_lock( &m->mtx );
}
void b2UnlockMutex( b2Mutex* m )
{
pthread_mutex_unlock( &m->mtx );
}
#include <semaphore.h>
typedef struct b2Semaphore
{
sem_t semaphore;
} b2Semaphore;
b2Semaphore* b2CreateSemaphore( int initCount )
{
b2Semaphore* s = b2Alloc( sizeof( b2Semaphore ) );
sem_init( &s->semaphore, 0, (unsigned int)initCount );
return s;
}
void b2DestroySemaphore( b2Semaphore* s )
{
sem_destroy( &s->semaphore );
*s = (b2Semaphore){ 0 };
b2Free( s, sizeof( b2Semaphore ) );
}
void b2WaitSemaphore( b2Semaphore* s )
{
sem_wait( &s->semaphore );
}
void b2SignalSemaphore( b2Semaphore* s )
{
sem_post( &s->semaphore );
}
typedef struct b2Thread
{
pthread_t thread;
b2ThreadFunction* function;
void* context;
char name[32];
} b2Thread;
static void b2SetCurrentThreadName( const char* name )
{
if ( name == NULL || name[0] == 0 )
{
return;
}
#if defined( __linux__ )
// Linux caps thread names at 15 chars + null terminator.
char truncated[16];
snprintf( truncated, sizeof( truncated ), "%.15s", name );
pthread_setname_np( pthread_self(), truncated );
#else
(void)name;
#endif
}
static void* b2ThreadStart( void* param )
{
b2Thread* t = (b2Thread*)param;
b2SetCurrentThreadName( t->name );
b2TracyCSetThreadName( t->name );
t->function( t->context );
return NULL;
}
b2Thread* b2CreateThread( b2ThreadFunction* function, void* context, const char* name )
{
b2Thread* t = b2Alloc( sizeof( b2Thread ) );
t->function = function;
t->context = context;
if ( name != NULL )
{
snprintf( t->name, sizeof( t->name ), "%s", name );
}
else
{
t->name[0] = 0;
}
pthread_create( &t->thread, NULL, b2ThreadStart, t );
return t;
}
void b2JoinThread( b2Thread* t )
{
pthread_join( t->thread, NULL );
*t = (b2Thread){ 0 };
b2Free( t, sizeof( b2Thread ) );
}
#elif defined( __APPLE__ )
#include <mach/mach_time.h>
#include <sched.h>
#include <sys/time.h>
static double s_invFrequency = 0.0;
uint64_t b2GetTicks( void )
{
return mach_absolute_time();
}
float b2GetMilliseconds( uint64_t ticks )
{
if ( s_invFrequency == 0 )
{
mach_timebase_info_data_t timebase;
mach_timebase_info( &timebase );
// convert to ns then to ms
s_invFrequency = 1e-6 * (double)timebase.numer / (double)timebase.denom;
}
uint64_t ticksNow = b2GetTicks();
return (float)( s_invFrequency * ( ticksNow - ticks ) );
}
float b2GetMillisecondsAndReset( uint64_t* ticks )
{
if ( s_invFrequency == 0 )
{
mach_timebase_info_data_t timebase;
mach_timebase_info( &timebase );
// convert to ns then to ms
s_invFrequency = 1e-6 * (double)timebase.numer / (double)timebase.denom;
}
uint64_t ticksNow = b2GetTicks();
float ms = (float)( s_invFrequency * ( ticksNow - *ticks ) );
*ticks = ticksNow;
return ms;
}
void b2Yield( void )
{
sched_yield();
}
#include <pthread.h>
typedef struct b2Mutex
{
pthread_mutex_t mtx;
} b2Mutex;
b2Mutex* b2CreateMutex( void )
{
b2Mutex* m = b2Alloc( sizeof( b2Mutex ) );
pthread_mutex_init( &m->mtx, NULL );
return m;
}
void b2DestroyMutex( b2Mutex* m )
{
pthread_mutex_destroy( &m->mtx );
*m = (b2Mutex){ 0 };
b2Free( m, sizeof( b2Mutex ) );
}
void b2LockMutex( b2Mutex* m )
{
pthread_mutex_lock( &m->mtx );
}
void b2UnlockMutex( b2Mutex* m )
{
pthread_mutex_unlock( &m->mtx );
}
#include <dispatch/dispatch.h>
typedef struct b2Semaphore
{
dispatch_semaphore_t semaphore;
int initialCount;
} b2Semaphore;
b2Semaphore* b2CreateSemaphore( int initCount )
{
b2Semaphore* s = b2Alloc( sizeof( b2Semaphore ) );
s->semaphore = dispatch_semaphore_create( (long)initCount );
s->initialCount = initCount;
return s;
}
void b2DestroySemaphore( b2Semaphore* s )
{
// libdispatch aborts if the current count is less than the initial count at release time.
// Pad with signals so the invariant always holds; no one is waiting at this point.
for ( int i = 0; i < s->initialCount; ++i )
{
dispatch_semaphore_signal( s->semaphore );
}
dispatch_release( s->semaphore );
*s = (b2Semaphore){ 0 };
b2Free( s, sizeof( b2Semaphore ) );
}
void b2WaitSemaphore( b2Semaphore* s )
{
dispatch_semaphore_wait( s->semaphore, DISPATCH_TIME_FOREVER );
}
void b2SignalSemaphore( b2Semaphore* s )
{
dispatch_semaphore_signal( s->semaphore );
}
typedef struct b2Thread
{
pthread_t thread;
b2ThreadFunction* function;
void* context;
char name[32];
} b2Thread;
// macOS pthread_setname_np takes only the name — it always names the calling thread.
static void b2SetCurrentThreadName( const char* name )
{
if ( name == NULL || name[0] == 0 )
{
return;
}
pthread_setname_np( name );
}
static void* b2ThreadStart( void* param )
{
b2Thread* t = (b2Thread*)param;
b2SetCurrentThreadName( t->name );
b2TracyCSetThreadName( t->name );
t->function( t->context );
return NULL;
}
b2Thread* b2CreateThread( b2ThreadFunction* function, void* context, const char* name )
{
b2Thread* t = b2Alloc( sizeof( b2Thread ) );
t->function = function;
t->context = context;
if ( name != NULL )
{
snprintf( t->name, sizeof( t->name ), "%s", name );
}
else
{
t->name[0] = 0;
}
pthread_create( &t->thread, NULL, b2ThreadStart, t );
return t;
}
void b2JoinThread( b2Thread* t )
{
pthread_join( t->thread, NULL );
*t = (b2Thread){ 0 };
b2Free( t, sizeof( b2Thread ) );
}
#else
// Fallbacks for unknown platforms
uint64_t b2GetTicks( void )
{
return 0;
}
float b2GetMilliseconds( uint64_t ticks )
{
( (void)( ticks ) );
return 0.0f;
}
float b2GetMillisecondsAndReset( uint64_t* ticks )
{
( (void)( ticks ) );
return 0.0f;
}
void b2Yield( void )
{
}
typedef struct b2Mutex
{
int dummy;
} b2Mutex;
b2Mutex* b2CreateMutex( void )
{
b2Mutex* m = b2Alloc( sizeof( b2Mutex ) );
m->dummy = 42;
return m;
}
void b2DestroyMutex( b2Mutex* m )
{
*m = (b2Mutex){ 0 };
b2Free( m, sizeof( b2Mutex ) );
}
void b2LockMutex( b2Mutex* m )
{
(void)m;
}
void b2UnlockMutex( b2Mutex* m )
{
(void)m;
}
typedef struct b2Semaphore
{
int dummy;
} b2Semaphore;
b2Semaphore* b2CreateSemaphore( int initCount )
{
b2Semaphore* s = b2Alloc( sizeof( b2Semaphore ) );
(void)initCount;
s->dummy = 42;
return s;
}
void b2DestroySemaphore( b2Semaphore* s )
{
*s = (b2Semaphore){ 0 };
b2Free( s, sizeof( b2Semaphore ) );
}
void b2WaitSemaphore( b2Semaphore* s )
{
(void)s;
}
void b2SignalSemaphore( b2Semaphore* s )
{
(void)s;
}
typedef struct b2Thread
{
int dummy;
} b2Thread;
b2Thread* b2CreateThread( b2ThreadFunction* function, void* context, const char* name )
{
(void)name;
function( context );
b2Thread* t = b2Alloc( sizeof( b2Thread ) );
t->dummy = 42;
return t;
}
void b2JoinThread( b2Thread* t )
{
*t = (b2Thread){ 0 };
b2Free( t, sizeof( b2Thread ) );
}
#endif
// djb2 hash
// https://en.wikipedia.org/wiki/List_of_hash_functions
uint32_t b2Hash( uint32_t hash, const uint8_t* data, int count )
{
uint32_t result = hash;
for ( int i = 0; i < count; i++ )
{
result = ( result << 5 ) + result + data[i];
}
return result;
}