-
Notifications
You must be signed in to change notification settings - Fork 2
/
atomics.c
429 lines (389 loc) · 11.1 KB
/
atomics.c
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
/*
* Copyright (c) 2015 Cryptonector LLC
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
*
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in
* the documentation and/or other materials provided with the
* distribution.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
* HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
* OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
* AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY
* WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*/
#include "atomics.h"
/*
* XXX We've left Illumos atomics behind; rename symbols to avoid
* conflicts.
*/
#ifdef HAVE___ATOMIC
/* Nothing to do */
#elif defined(HAVE___SYNC)
/* Nothing to do */
#elif defined(WIN32)
#include <windows.h>
#include <WinBase.h>
#elif defined(HAVE_INTEL_INTRINSICS)
#include <ia64intrin.h>
#elif defined(HAVE_PTHREAD)
#include <pthread.h>
static pthread_mutex_t atomic_lock = PTHREAD_MUTEX_INITIALIZER;
#elif defined(NO_THREADS)
/* Nothing to do */
#else
#error "Error: no acceptable implementation of atomic primitives is available"
#endif
#ifdef USE_HELGRIND
#if defined(HAVE___ATOMIC) || defined(HAVE___SYNC) || defined(WIN32) || defined(HAVE_INTEL_INTRINSICS)
#include <valgrind/helgrind.h>
#else
#define ANNOTATE_HAPPENS_BEFORE(v)
#define ANNOTATE_HAPPENS_AFTER(v)
#endif
#else
#define ANNOTATE_HAPPENS_BEFORE(v)
#define ANNOTATE_HAPPENS_AFTER(v)
#endif
uint32_t
atomic_inc_32_nv(volatile uint32_t *p)
{
uint32_t r;
ANNOTATE_HAPPENS_AFTER(*p);
#ifdef HAVE___ATOMIC
r = __atomic_add_fetch(p, 1, __ATOMIC_SEQ_CST);
#elif defined(HAVE___SYNC)
r = __sync_fetch_and_add(p, 1) + 1;
#elif defined(WIN32)
r = InterlockedIncrement(p);
#elif defined(HAVE_INTEL_INTRINSICS)
r = _InterlockedIncrement((volatile int32_t *)p);
#elif defined(HAVE_PTHREAD)
(void) pthread_mutex_lock(&atomic_lock);
r = ++(*p);
(void) pthread_mutex_unlock(&atomic_lock);
#else
r = ++(*p);
#endif
ANNOTATE_HAPPENS_BEFORE(*p);
return r;
}
uint32_t
atomic_dec_32_nv(volatile uint32_t *p)
{
uint32_t r;
ANNOTATE_HAPPENS_AFTER(*p);
#ifdef HAVE___ATOMIC
r = __atomic_sub_fetch(p, 1, __ATOMIC_SEQ_CST);
#elif defined(HAVE___SYNC)
r = __sync_fetch_and_sub(p, 1) - 1;
#elif defined(WIN32)
r = InterlockedDecrement(p);
#elif defined(HAVE_INTEL_INTRINSICS)
r = _InterlockedDecrement((volatile int32_t *)p);
#elif defined(HAVE_PTHREAD)
(void) pthread_mutex_lock(&atomic_lock);
r = --(*p);
(void) pthread_mutex_unlock(&atomic_lock);
#else
r = --(*p);
#endif
ANNOTATE_HAPPENS_BEFORE(*p);
return r;
}
uint64_t
atomic_inc_64_nv(volatile uint64_t *p)
{
uint64_t r;
ANNOTATE_HAPPENS_AFTER(*p);
#ifdef HAVE___ATOMIC
r = __atomic_add_fetch(p, 1, __ATOMIC_SEQ_CST);
#elif defined(HAVE___SYNC)
r = __sync_fetch_and_add(p, 1) + 1;
#elif defined(WIN32)
r = InterlockedIncrement64(p);
#elif defined(HAVE_INTEL_INTRINSICS)
r = _InterlockedIncrement64((volatile int64_t *)p);
#elif defined(HAVE_PTHREAD)
(void) pthread_mutex_lock(&atomic_lock);
r = ++(*p);
(void) pthread_mutex_unlock(&atomic_lock);
#else
r = ++(*p);
#endif
ANNOTATE_HAPPENS_BEFORE(*p);
return r;
}
uint64_t
atomic_dec_64_nv(volatile uint64_t *p)
{
uint64_t r;
ANNOTATE_HAPPENS_AFTER(*p);
#ifdef HAVE___ATOMIC
r = __atomic_sub_fetch(p, 1, __ATOMIC_SEQ_CST);
#elif defined(HAVE___SYNC)
r = __sync_fetch_and_sub(p, 1) - 1;
#elif defined(WIN32)
r = InterlockedDecrement64(p);
#elif defined(HAVE_INTEL_INTRINSICS)
r = _InterlockedDecrement64((volatile int64_t *)p);
#elif defined(HAVE_PTHREAD)
(void) pthread_mutex_lock(&atomic_lock);
r = --(*p);
(void) pthread_mutex_unlock(&atomic_lock);
#else
r = --(*p);
#endif
ANNOTATE_HAPPENS_BEFORE(*p);
return r;
}
void *
atomic_cas_ptr(volatile void **p, void *oldval, void *newval)
{
void *r;
ANNOTATE_HAPPENS_AFTER(*p);
#ifdef HAVE___ATOMIC
volatile void *expected = oldval;
(void) __atomic_compare_exchange_n(p, &expected, newval, 1, __ATOMIC_SEQ_CST, __ATOMIC_SEQ_CST);
r = (void *)(uintptr_t)/*drop volatile*/expected;
#elif defined(HAVE___SYNC)
r = (void *)(uintptr_t)__sync_val_compare_and_swap(p, oldval, newval);
#elif defined(WIN32)
r = InterlockedCompareExchangePointer(p, newval, oldval);
#elif defined(HAVE_INTEL_INTRINSICS)
r = _InterlockedCompareExchangePointer(p, newval, oldval);
#elif defined(HAVE_PTHREAD)
(void) pthread_mutex_lock(&atomic_lock);
if ((r = *p) == oldval)
*p = newval;
(void) pthread_mutex_unlock(&atomic_lock);
r = (void *)/*drop volatile*/v;
#else
r = *p;
if (v == oldval)
*p = newval;
r = (void *)/*drop volatile*/v;
#endif
ANNOTATE_HAPPENS_BEFORE(*p);
return r;
}
uint32_t
atomic_cas_32(volatile uint32_t *p, uint32_t oldval, uint32_t newval)
{
uint32_t r;
ANNOTATE_HAPPENS_AFTER(*p);
#ifdef HAVE___ATOMIC
uint32_t expected = oldval;
(void) __atomic_compare_exchange_n(p, &expected, newval, 1, __ATOMIC_SEQ_CST, __ATOMIC_SEQ_CST);
r = expected;
#elif defined(HAVE___SYNC)
r = __sync_val_compare_and_swap(p, oldval, newval);
#elif defined(WIN32)
r = InterlockedCompareExchange32(p, newval, oldval);
#elif defined(HAVE_INTEL_INTRINSICS)
r = _InterlockedCompareExchange(p, newval, oldval);
#elif defined(HAVE_PTHREAD)
(void) pthread_mutex_lock(&atomic_lock);
if ((r = *p) == oldval)
*p = newval;
(void) pthread_mutex_unlock(&atomic_lock);
#else
r = *p;
if (v == oldval)
*p = newval;
#endif
ANNOTATE_HAPPENS_BEFORE(*p);
return r;
}
uint64_t
atomic_cas_64(volatile uint64_t *p, uint64_t oldval, uint64_t newval)
{
uint64_t r;
ANNOTATE_HAPPENS_AFTER(*p);
#ifdef HAVE___ATOMIC
uint64_t expected = oldval;
(void) __atomic_compare_exchange_n(p, &expected, newval, 1, __ATOMIC_SEQ_CST, __ATOMIC_SEQ_CST);
r = expected;
#elif defined(HAVE___SYNC)
r = __sync_val_compare_and_swap(p, oldval, newval);
#elif defined(WIN32)
r = InterlockedCompareExchange64(p, newval, oldval);
#elif defined(HAVE_INTEL_INTRINSICS)
r = _InterlockedCompareExchange64(p, newval, oldval);
#elif defined(HAVE_PTHREAD)
(void) pthread_mutex_lock(&atomic_lock);
if ((r = *p) == oldval)
*p = newval;
(void) pthread_mutex_unlock(&atomic_lock);
#else
r = *p;
if (v == oldval)
*p = newval;
#endif
ANNOTATE_HAPPENS_BEFORE(*p);
return r;
}
void *
atomic_read_ptr(volatile void **p)
{
ANNOTATE_HAPPENS_AFTER(*p);
#ifdef HAVE___ATOMIC
return __atomic_load_n((void **)(uintptr_t)/*drop volatile*/p, __ATOMIC_ACQUIRE);
#elif defined(HAVE___SYNC)
void *junk = 0;
return (void **)(uintptr_t)__sync_val_compare_and_swap(p, &junk, &junk);
#elif defined(WIN32)
void *junk = 0;
return InterlockedCompareExchangePointer(p, &junk, &junk);
#elif defined(HAVE_PTHREAD)
{
void *v;
(void) pthread_mutex_lock(&atomic_lock);
v = (void *)p;
(void) pthread_mutex_unlock(&atomic_lock);
return v;
}
#else
return (void *)/*drop volatile*/*p;
#endif
}
uint32_t
atomic_read_32(volatile uint32_t *p)
{
ANNOTATE_HAPPENS_AFTER(*p);
#ifdef HAVE___ATOMIC
return __atomic_load_n(p, __ATOMIC_ACQUIRE);
#elif defined(HAVE___SYNC)
uint32_t junk = 0;
return __sync_val_compare_and_swap(p, &junk, &junk);
#elif defined(WIN32)
uint32_t junk = 0;
return InterlockedCompareExchange32(p, &junk, &junk);
#elif defined(HAVE_PTHREAD)
uind32_t v;
(void) pthread_mutex_lock(&atomic_lock);
v = *p;
(void) pthread_mutex_unlock(&atomic_lock);
return v;
#else
return *p;
#endif
}
uint64_t
atomic_read_64(volatile uint64_t *p)
{
ANNOTATE_HAPPENS_AFTER(*p);
#ifdef HAVE___ATOMIC
return __atomic_load_n(p, __ATOMIC_ACQUIRE);
#elif defined(HAVE___SYNC)
uint64_t junk = 0;
return __sync_val_compare_and_swap(p, &junk, &junk);
#elif defined(WIN32)
uint64_t junk = 0;
return InterlockedCompareExchange64(p, &junk, &junk);
#elif defined(HAVE_PTHREAD)
uind64_t v;
(void) pthread_mutex_lock(&atomic_lock);
v = *p;
(void) pthread_mutex_unlock(&atomic_lock);
return v;
#else
return *p;
#endif
}
void
atomic_write_ptr(volatile void **p, void *v)
{
#ifdef HAVE___ATOMIC
__atomic_store_n(p, v, __ATOMIC_RELEASE);
#elif defined(HAVE___SYNC) || defined(WIN32)
{
void *junk = 0;
void *old;
old = atomic_cas_ptr(p, &junk, &junk);
junk = atomic_cas_ptr(p, old, v);
/*
* To be correct we'd have to loop doing the above two CASes, but we
* assume the writer is releasing p, which they've acquired and is
* stable. This way we don't have to loop.
*/
}
#elif defined(HAVE_PTHREAD)
{
(void) pthread_mutex_lock(&atomic_lock);
*p = v;
(void) pthread_mutex_unlock(&atomic_lock);
}
#else
*p = v;
#endif
ANNOTATE_HAPPENS_BEFORE(*p);
}
void
atomic_write_32(volatile uint32_t *p, uint32_t v)
{
#ifdef HAVE___ATOMIC
__atomic_store_n(p, v, __ATOMIC_RELEASE);
#elif defined(HAVE___SYNC) || defined(WIN32)
{
uint32_t junk = 0;
uint32_t old;
old = atomic_cas_32(p, junk, junk);
junk = atomic_cas_32(p, old, v);
/*
* To be correct we'd have to loop doing the above two CASes, but we
* assume the writer is releasing p, which they've acquired and is
* stable. This way we don't have to loop.
*/
}
#elif defined(HAVE_PTHREAD)
(void) pthread_mutex_lock(&atomic_lock);
*p = v;
(void) pthread_mutex_unlock(&atomic_lock);
#else
*p = v;
#endif
ANNOTATE_HAPPENS_BEFORE(*p);
}
void
atomic_write_64(volatile uint64_t *p, uint64_t v)
{
#ifdef HAVE___ATOMIC
__atomic_store_n(p, v, __ATOMIC_RELEASE);
#elif defined(HAVE___SYNC) || defined(WIN32)
{
uint64_t junk = 0;
uint64_t old;
/* A way to force a memory fence? */
old = atomic_cas_64(p, junk, junk);
junk = atomic_cas_64(p, old, v);
/*
* To be correct we'd have to loop doing the above two CASes, but we
* assume the writer is releasing p, which they've acquired and is
* stable. This way we don't have to loop.
*/
}
#elif defined(HAVE_PTHREAD)
(void) pthread_mutex_lock(&atomic_lock);
*p = v;
(void) pthread_mutex_unlock(&atomic_lock);
#else
*p = v;
#endif
ANNOTATE_HAPPENS_BEFORE(*p);
}