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
|
/*
* Copyright (c) 2018 Agustina Arzille.
* Copyright (c) 2018 Richard Braun.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
*
* Architecture-specific code may override any of the type-specific
* functions by defining a macro of the same name.
*/
#ifndef KERN_LATOMIC_I_H
#define KERN_LATOMIC_I_H
#include <stdbool.h>
#include <stdint.h>
#include <kern/atomic_types.h>
#include <kern/macros.h>
#include <machine/cpu.h>
#include <machine/latomic.h>
#define LATOMIC_ALIGN(ptr) MIN(sizeof(*(ptr)), sizeof(ptr))
#define latomic_ptr_aligned(ptr) P2ALIGNED((uintptr_t)(ptr), LATOMIC_ALIGN(ptr))
/* See atomic_select */
#define latomic_select(ptr, op) \
_Generic(*(ptr), \
float: latomic_invalid_type, \
double: latomic_invalid_type, \
long double: latomic_invalid_type, \
bool: latomic_invalid_type, \
char: latomic_invalid_type, \
signed char: latomic_invalid_type, \
unsigned char: latomic_invalid_type, \
short: latomic_invalid_type, \
unsigned short: latomic_invalid_type, \
int: latomic_ ## op ## _32, \
unsigned int: latomic_ ## op ## _32, \
long: latomic_ ## op ## _ul, \
unsigned long: latomic_ ## op ## _ul, \
long long: latomic_ ## op ## _64, \
unsigned long long: latomic_ ## op ## _64, \
default: latomic_ ## op ## _ptr)
void latomic_invalid_type(void);
#define latomic_swap_n(ptr, val) \
MACRO_BEGIN \
unsigned long flags_; \
typeof(val) ret_; \
\
cpu_intr_save(&flags_); \
ret_ = *(ptr); \
*(ptr) = (val); \
cpu_intr_restore(flags_); \
\
ret_; \
MACRO_END
#define latomic_cas_n(ptr, oval, nval) \
MACRO_BEGIN \
unsigned long flags_; \
typeof(oval) ret_; \
\
cpu_intr_save(&flags_); \
\
ret_ = *(ptr); \
\
if (ret_ == (oval)) { \
*(ptr) = (nval); \
} \
\
cpu_intr_restore(flags_); \
\
ret_; \
MACRO_END
#define latomic_fetch_op_n(ptr, val, op) \
MACRO_BEGIN \
unsigned long flags_; \
typeof(val) ret_; \
\
cpu_intr_save(&flags_); \
ret_ = *(ptr); \
*(ptr) = ret_ op (val); \
cpu_intr_restore(flags_); \
\
ret_; \
MACRO_END
#define latomic_fetch_add_n(ptr, val) latomic_fetch_op_n(ptr, val, +)
#define latomic_fetch_sub_n(ptr, val) latomic_fetch_op_n(ptr, val, -)
#define latomic_fetch_and_n(ptr, val) latomic_fetch_op_n(ptr, val, &)
#define latomic_fetch_or_n(ptr, val) latomic_fetch_op_n(ptr, val, |)
#define latomic_fetch_xor_n(ptr, val) latomic_fetch_op_n(ptr, val, ^)
/* latomic_load */
#ifndef latomic_load_32
static inline unsigned int
latomic_load_32(union atomic_constptr_32 ptr, int memorder)
{
return __atomic_load_n(ptr.ui_ptr, memorder);
}
#endif /* latomic_load_32 */
#ifndef latomic_load_64
#ifdef __LP64__
static inline unsigned long long
latomic_load_64(union atomic_constptr_64 ptr, int memorder)
{
return __atomic_load_n(ptr.ull_ptr, memorder);
}
#else /* __LP64__ */
static inline unsigned long long
latomic_load_64(union atomic_constptr_64 ptr, int memorder)
{
unsigned long long ret;
unsigned long flags;
(void)memorder;
cpu_intr_save(&flags);
ret = *ptr.ull_ptr;
cpu_intr_restore(flags);
return ret;
}
#endif /* __LP64__ */
#endif /* latomic_load_64 */
#ifdef __LP64__
#define latomic_load_ul latomic_load_64
#else /* __LP64__ */
#define latomic_load_ul latomic_load_32
#endif /* __LP64__ */
#define latomic_load_ptr latomic_load_ul
/* latomic_store */
#ifndef latomic_store_32
static inline void
latomic_store_32(union atomic_ptr_32 ptr, union atomic_val_32 val,
int memorder)
{
__atomic_store_n(ptr.ui_ptr, val.ui, memorder);
}
#endif /* latomic_store_32 */
#ifndef latomic_store_64
#ifdef __LP64__
static inline void
latomic_store_64(union atomic_ptr_64 ptr, union atomic_val_64 val,
int memorder)
{
return __atomic_store_n(ptr.ull_ptr, val.ull, memorder);
}
#else /* __LP64__ */
static inline void
latomic_store_64(union atomic_ptr_64 ptr, union atomic_val_64 val,
int memorder)
{
unsigned long flags;
(void)memorder;
cpu_intr_save(&flags);
*ptr.ull_ptr = val.ull;
cpu_intr_restore(flags);
}
#endif /* __LP64__ */
#endif /* latomic_store_64 */
#ifdef __LP64__
#define latomic_store_ul latomic_store_64
#else /* __LP64__ */
#define latomic_store_ul latomic_store_32
#endif /* __LP64__ */
#define latomic_store_ptr latomic_store_ul
/* latomic_swap */
#ifndef latomic_swap_32
static inline unsigned int
latomic_swap_32(union atomic_ptr_32 ptr, union atomic_val_32 val,
int memorder)
{
(void)memorder;
return latomic_swap_n(ptr.ui_ptr, val.ui);
}
#endif /* latomic_swap_32 */
#ifndef latomic_swap_64
static inline unsigned long long
latomic_swap_64(union atomic_ptr_64 ptr, union atomic_val_64 val,
int memorder)
{
(void)memorder;
return latomic_swap_n(ptr.ull_ptr, val.ull);
}
#endif /* latomic_swap_64 */
#ifdef __LP64__
#define latomic_swap_ul latomic_swap_64
#else /* __LP64__ */
#define latomic_swap_ul latomic_swap_32
#endif /* __LP64__ */
#define latomic_swap_ptr latomic_swap_ul
/* latomic_cas */
#ifndef latomic_cas_32
static inline unsigned int
latomic_cas_32(union atomic_ptr_32 ptr, union atomic_val_32 oval,
union atomic_val_32 nval, int memorder)
{
(void)memorder;
return latomic_cas_n(ptr.ui_ptr, oval.ui, nval.ui);
}
#endif /* latomic_cas_32 */
#ifndef latomic_cas_64
static inline unsigned long long
latomic_cas_64(union atomic_ptr_64 ptr, union atomic_val_64 oval,
union atomic_val_64 nval, int memorder)
{
(void)memorder;
return latomic_cas_n(ptr.ull_ptr, oval.ull, nval.ull);
}
#endif /* latomic_cas_64 */
#ifdef __LP64__
#define latomic_cas_ul latomic_cas_64
#else /* __LP64__ */
#define latomic_cas_ul latomic_cas_32
#endif /* __LP64__ */
#define latomic_cas_ptr latomic_cas_ul
/* latomic_fetch_add */
#ifndef latomic_fetch_add_32
static inline unsigned int
latomic_fetch_add_32(union atomic_ptr_32 ptr, union atomic_val_32 val,
int memorder)
{
(void)memorder;
return latomic_fetch_add_n(ptr.ui_ptr, val.ui);
}
#endif /* latomic_fetch_add_32 */
#ifndef latomic_fetch_add_64
static inline unsigned long long
latomic_fetch_add_64(union atomic_ptr_64 ptr, union atomic_val_64 val,
int memorder)
{
(void)memorder;
return latomic_fetch_add_n(ptr.ull_ptr, val.ull);
}
#endif /* latomic_fetch_add_64 */
#ifdef __LP64__
#define latomic_fetch_add_ul latomic_fetch_add_64
#else /* __LP64__ */
#define latomic_fetch_add_ul latomic_fetch_add_32
#endif /* __LP64__ */
#define latomic_fetch_add_ptr latomic_fetch_add_ul
/* latomic_fetch_sub */
#ifndef latomic_fetch_sub_32
static inline unsigned int
latomic_fetch_sub_32(union atomic_ptr_32 ptr, union atomic_val_32 val,
int memorder)
{
(void)memorder;
return latomic_fetch_sub_n(ptr.ui_ptr, val.ui);
}
#endif /* latomic_fetch_sub_32 */
#ifndef latomic_fetch_sub_64
static inline unsigned long long
latomic_fetch_sub_64(union atomic_ptr_64 ptr, union atomic_val_64 val,
int memorder)
{
(void)memorder;
return latomic_fetch_sub_n(ptr.ull_ptr, val.ull);
}
#endif /* latomic_fetch_sub_64 */
#ifdef __LP64__
#define latomic_fetch_sub_ul latomic_fetch_sub_64
#else /* __LP64__ */
#define latomic_fetch_sub_ul latomic_fetch_sub_32
#endif /* __LP64__ */
#define latomic_fetch_sub_ptr latomic_fetch_sub_ul
/* latomic_fetch_and */
#ifndef latomic_fetch_and_32
static inline unsigned int
latomic_fetch_and_32(union atomic_ptr_32 ptr, union atomic_val_32 val,
int memorder)
{
(void)memorder;
return latomic_fetch_and_n(ptr.ui_ptr, val.ui);
}
#endif /* latomic_fetch_and_32 */
#ifndef latomic_fetch_and_64
static inline unsigned long long
latomic_fetch_and_64(union atomic_ptr_64 ptr, union atomic_val_64 val,
int memorder)
{
(void)memorder;
return latomic_fetch_and_n(ptr.ull_ptr, val.ull);
}
#endif /* latomic_fetch_and_64 */
#ifdef __LP64__
#define latomic_fetch_and_ul latomic_fetch_and_64
#else /* __LP64__ */
#define latomic_fetch_and_ul latomic_fetch_and_32
#endif /* __LP64__ */
#define latomic_fetch_and_ptr latomic_fetch_and_ul
/* latomic_fetch_or */
#ifndef latomic_fetch_or_32
static inline unsigned int
latomic_fetch_or_32(union atomic_ptr_32 ptr, union atomic_val_32 val,
int memorder)
{
(void)memorder;
return latomic_fetch_or_n(ptr.ui_ptr, val.ui);
}
#endif /* latomic_fetch_or_32 */
#ifndef latomic_fetch_or_64
static inline unsigned long long
latomic_fetch_or_64(union atomic_ptr_64 ptr, union atomic_val_64 val,
int memorder)
{
(void)memorder;
return latomic_fetch_or_n(ptr.ull_ptr, val.ull);
}
#endif /* latomic_fetch_or_64 */
#ifdef __LP64__
#define latomic_fetch_or_ul latomic_fetch_or_64
#else /* __LP64__ */
#define latomic_fetch_or_ul latomic_fetch_or_32
#endif /* __LP64__ */
#define latomic_fetch_or_ptr latomic_fetch_or_ul
/* latomic_fetch_xor */
#ifndef latomic_fetch_xor_32
static inline unsigned int
latomic_fetch_xor_32(union atomic_ptr_32 ptr, union atomic_val_32 val,
int memorder)
{
(void)memorder;
return latomic_fetch_xor_n(ptr.ui_ptr, val.ui);
}
#endif /* latomic_fetch_xor_32 */
#ifndef latomic_fetch_xor_64
static inline unsigned long long
latomic_fetch_xor_64(union atomic_ptr_64 ptr, union atomic_val_64 val,
int memorder)
{
(void)memorder;
return latomic_fetch_xor_n(ptr.ull_ptr, val.ull);
}
#endif /* latomic_fetch_xor_64 */
#ifdef __LP64__
#define latomic_fetch_xor_ul latomic_fetch_xor_64
#else /* __LP64__ */
#define latomic_fetch_xor_ul latomic_fetch_xor_32
#endif /* __LP64__ */
#define latomic_fetch_xor_ptr latomic_fetch_xor_ul
/* latomic_add */
#ifndef latomic_add_32
static inline void
latomic_add_32(union atomic_ptr_32 ptr, union atomic_val_32 val,
int memorder)
{
(void)memorder;
latomic_fetch_add_n(ptr.ui_ptr, val.ui);
}
#endif /* latomic_add_32 */
#ifndef latomic_add_64
static inline void
latomic_add_64(union atomic_ptr_64 ptr, union atomic_val_64 val,
int memorder)
{
(void)memorder;
latomic_fetch_add_n(ptr.ull_ptr, val.ull);
}
#endif /* latomic_add_64 */
#ifdef __LP64__
#define latomic_add_ul latomic_add_64
#else /* __LP64__ */
#define latomic_add_ul latomic_add_32
#endif /* __LP64__ */
#define latomic_add_ptr latomic_add_ul
/* latomic_sub */
#ifndef latomic_sub_32
static inline void
latomic_sub_32(union atomic_ptr_32 ptr, union atomic_val_32 val,
int memorder)
{
(void)memorder;
latomic_fetch_sub_n(ptr.ui_ptr, val.ui);
}
#endif /* latomic_sub_32 */
#ifndef latomic_sub_64
static inline void
latomic_sub_64(union atomic_ptr_64 ptr, union atomic_val_64 val,
int memorder)
{
(void)memorder;
latomic_fetch_sub_n(ptr.ull_ptr, val.ull);
}
#endif /* latomic_sub_64 */
#ifdef __LP64__
#define latomic_sub_ul latomic_sub_64
#else /* __LP64__ */
#define latomic_sub_ul latomic_sub_32
#endif /* __LP64__ */
#define latomic_sub_ptr latomic_sub_ul
/* latomic_and */
#ifndef latomic_and_32
static inline void
latomic_and_32(union atomic_ptr_32 ptr, union atomic_val_32 val,
int memorder)
{
(void)memorder;
latomic_fetch_and_n(ptr.ui_ptr, val.ui);
}
#endif /* latomic_and_32 */
#ifndef latomic_and_64
static inline void
latomic_and_64(union atomic_ptr_64 ptr, union atomic_val_64 val,
int memorder)
{
(void)memorder;
latomic_fetch_and_n(ptr.ull_ptr, val.ull);
}
#endif /* latomic_and_64 */
#ifdef __LP64__
#define latomic_and_ul latomic_and_64
#else /* __LP64__ */
#define latomic_and_ul latomic_and_32
#endif /* __LP64__ */
#define latomic_and_ptr latomic_and_ul
/* latomic_or */
#ifndef latomic_or_32
static inline void
latomic_or_32(union atomic_ptr_32 ptr, union atomic_val_32 val,
int memorder)
{
(void)memorder;
latomic_fetch_or_n(ptr.ui_ptr, val.ui);
}
#endif /* latomic_or_32 */
#ifndef latomic_or_64
static inline void
latomic_or_64(union atomic_ptr_64 ptr, union atomic_val_64 val,
int memorder)
{
(void)memorder;
latomic_fetch_or_n(ptr.ull_ptr, val.ull);
}
#endif /* latomic_or_64 */
#ifdef __LP64__
#define latomic_or_ul latomic_or_64
#else /* __LP64__ */
#define latomic_or_ul latomic_or_32
#endif /* __LP64__ */
#define latomic_or_ptr latomic_or_ul
/* latomic_xor */
#ifndef latomic_xor_32
static inline void
latomic_xor_32(union atomic_ptr_32 ptr, union atomic_val_32 val,
int memorder)
{
(void)memorder;
latomic_fetch_xor_n(ptr.ui_ptr, val.ui);
}
#endif /* latomic_xor_32 */
#ifndef latomic_xor_64
static inline void
latomic_xor_64(union atomic_ptr_64 ptr, union atomic_val_64 val,
int memorder)
{
(void)memorder;
latomic_fetch_xor_n(ptr.ull_ptr, val.ull);
}
#endif /* latomic_xor_64 */
#ifdef __LP64__
#define latomic_xor_ul latomic_xor_64
#else /* __LP64__ */
#define latomic_xor_ul latomic_xor_32
#endif /* __LP64__ */
#define latomic_xor_ptr latomic_xor_ul
#endif /* KERN_LATOMIC_I_H */
|