-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathCcpMutex.cpp
More file actions
294 lines (250 loc) · 6.65 KB
/
Copy pathCcpMutex.cpp
File metadata and controls
294 lines (250 loc) · 6.65 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
// Copyright © 2026 CCP ehf.
#include <string>
#include "include/CcpAtomic.h"
#include "include/CcpMutex.h"
#include "include/CcpThread.h"
#include "tracy/TracyC.h"
namespace
{
// Platform independent alias for the underlying lock object used by CcpMutex
#ifdef _WIN32
#include <windows.h>
using NativeMutex = CRITICAL_SECTION;
#else
#include <pthread.h>
using NativeMutex = pthread_mutex_t;
#endif
// Small platform-specific helpers. The cross-platform CcpMutex methods below
// call these so that no public method body needs to be duplicated per OS.
void CreateNativeMutex( NativeMutex& mux, unsigned spinCount )
{
#ifdef _WIN32
InitializeCriticalSectionAndSpinCount( &mux, spinCount );
#else
(void)spinCount; // pthreads has no equivalent
pthread_mutexattr_t mutexAttr;
pthread_mutexattr_init( &mutexAttr );
pthread_mutexattr_settype( &mutexAttr, PTHREAD_MUTEX_RECURSIVE );
pthread_mutex_init( &mux, &mutexAttr );
pthread_mutexattr_destroy( &mutexAttr );
#endif
}
void DestroyNativeMutex( NativeMutex& mux )
{
#ifdef _WIN32
::DeleteCriticalSection( &mux );
#else
pthread_mutex_destroy( &mux );
#endif
}
void LockNativeMutex( NativeMutex& mux )
{
#ifdef _WIN32
EnterCriticalSection( &mux );
#else
pthread_mutex_lock( &mux );
#endif
}
void UnlockNativeMutex( NativeMutex& mux )
{
#ifdef _WIN32
LeaveCriticalSection( &mux );
#else
pthread_mutex_unlock( &mux );
#endif
}
}
// ---------------------------------------------------------------------------
// CcpMutex
// ---------------------------------------------------------------------------
struct CcpMutex::Private
{
#if CCP_TELEMETRY_ENABLED
TracyCLockCtx telemetryLockContext;
#endif
NativeMutex mutexHandle;
const char* owner;
const char* name;
};
CcpMutex::CcpMutex( const char* owner, const char* name, unsigned spinCount ) : m_impl( std::make_unique<Private>() )
{
CreateNativeMutex( m_impl->mutexHandle, spinCount );
SetOwner( owner );
SetName( name );
CcpRegisterMutex( *this, owner, name );
}
CcpMutex::~CcpMutex()
{
DestroyNativeMutex( m_impl->mutexHandle );
#if CCP_TELEMETRY_ENABLED
if ( CcpTelemetryLockTrackingIsEnabled() && m_impl->telemetryLockContext && CcpTelemetryIsConnected() )
{
TracyCLockTerminate( m_impl->telemetryLockContext );
}
#endif
}
void CcpMutex::Acquire()
{
#if CCP_TELEMETRY_ENABLED
bool notifyTracy{ false };
if ( CcpTelemetryLockTrackingIsEnabled() && CcpTelemetryIsConnected() )
{
// Lazy initialization pattern because there are many CcpMutex instances which are created statically,
// and therefore would never be announced to tracy.
if ( !m_impl->telemetryLockContext )
{
const std::string lockName = std::string( m_impl->owner ) + "-" + m_impl->name;
TracyCLockAnnounce( m_impl->telemetryLockContext );
if ( m_impl->telemetryLockContext ) {
TracyCLockCustomName( m_impl->telemetryLockContext, lockName.c_str(), lockName.size() );
}
}
if ( m_impl->telemetryLockContext )
{
notifyTracy = TracyCLockBeforeLock( m_impl->telemetryLockContext );
}
}
#endif
LockNativeMutex( m_impl->mutexHandle );
#if CCP_TELEMETRY_ENABLED
if ( notifyTracy && CcpTelemetryLockTrackingIsEnabled() && CcpTelemetryIsConnected() )
{
TracyCLockAfterLock( m_impl->telemetryLockContext );
}
#endif
}
void CcpMutex::Release()
{
UnlockNativeMutex( m_impl->mutexHandle );
#if CCP_TELEMETRY_ENABLED
if ( m_impl->telemetryLockContext && CcpTelemetryLockTrackingIsEnabled() && CcpTelemetryIsConnected() )
{
TracyCLockAfterUnlock( m_impl->telemetryLockContext );
}
#endif
}
void CcpMutex::SetOwner( const char* owner )
{
m_impl->owner = owner ? owner : "<owner>";
}
void CcpMutex::SetName( const char* name )
{
m_impl->name = name ? name : "<name>";
}
// ---------------------------------------------------------------------------
// CcpAutoMutex
// ---------------------------------------------------------------------------
CcpAutoMutex::CcpAutoMutex( CcpMutex& m )
: m_mutex( m ), m_released( false )
{
m_mutex.Acquire();
}
CcpAutoMutex::~CcpAutoMutex()
{
if ( !m_released )
{
m_mutex.Release();
}
}
void CcpAutoMutex::Release()
{
m_mutex.Release();
m_released = true;
}
// ---------------------------------------------------------------------------
// CcpSpinLock
// ---------------------------------------------------------------------------
struct CcpSpinLock::Private
{
#if CCP_TELEMETRY_ENABLED
TracyCLockCtx telemetryLockContext;
#endif
CcpAtomic<uint32_t> lock;
const char* spinLockName;
};
CcpSpinLock::CcpSpinLock( const char* spinLockName )
: m_impl( std::make_unique<Private>() )
{
m_impl->spinLockName = spinLockName ? spinLockName : "<Unnamed Spinlock>";
}
// Deprecated default ctor — forwards to the named ctor using the class name.
CcpSpinLock::CcpSpinLock()
: CcpSpinLock( "CcpSpinLock" )
{
}
CcpSpinLock::~CcpSpinLock()
{
#if CCP_TELEMETRY_ENABLED
if ( CcpTelemetryLockTrackingIsEnabled() && m_impl->telemetryLockContext && CcpTelemetryIsConnected() )
{
TracyCLockTerminate( m_impl->telemetryLockContext );
}
#endif
}
void CcpSpinLock::Acquire()
{
#if CCP_TELEMETRY_ENABLED
bool notifyTracy{ false };
if ( CcpTelemetryLockTrackingIsEnabled() && CcpTelemetryIsConnected() )
{
// Lazy initialization pattern because there are many CcpMutex instances which are created statically,
// and therefore would never be announced to tracy.
if ( !m_impl->telemetryLockContext )
{
TracyCLockAnnounce( m_impl->telemetryLockContext );
if ( m_impl->telemetryLockContext ) {
TracyCLockCustomName( m_impl->telemetryLockContext, m_impl->spinLockName, strlen( m_impl->spinLockName) )
}
}
if ( m_impl->telemetryLockContext )
{
notifyTracy = TracyCLockBeforeLock( m_impl->telemetryLockContext );
}
}
#endif
while ( true )
{
uint32_t expected = 0;
if ( m_impl->lock.compare_exchange_strong( expected, 1 ) )
{
break;
}
CcpThreadYield();
}
#if CCP_TELEMETRY_ENABLED
if ( notifyTracy && CcpTelemetryLockTrackingIsEnabled() && CcpTelemetryIsConnected() )
{
TracyCLockAfterLock( m_impl->telemetryLockContext );
}
#endif
}
void CcpSpinLock::Release()
{
m_impl->lock = 0;
#if CCP_TELEMETRY_ENABLED
if ( m_impl->telemetryLockContext && CcpTelemetryLockTrackingIsEnabled() && CcpTelemetryIsConnected() )
{
TracyCLockAfterUnlock( m_impl->telemetryLockContext );
}
#endif
}
// ---------------------------------------------------------------------------
// CcpAutoSpinLock
// ---------------------------------------------------------------------------
CcpAutoSpinLock::CcpAutoSpinLock( CcpSpinLock& m )
: m_mutex( m ), m_released( false )
{
m_mutex.Acquire();
}
CcpAutoSpinLock::~CcpAutoSpinLock()
{
if ( !m_released )
{
m_mutex.Release();
}
}
void CcpAutoSpinLock::Release()
{
m_mutex.Release();
m_released = true;
}