aboutsummaryrefslogtreecommitdiff
path: root/sys/sys/atomic_san.h
blob: 5d10f58f756534be126d58427597b66bc691a4fb (plain) (blame)
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
/*-
 * SPDX-License-Identifier: BSD-2-Clause
 *
 * Copyright (c) 2019 Andrew Turner
 * Copyright (c) 2021 The FreeBSD Foundation
 *
 * This software was developed by SRI International and the University of
 * Cambridge Computer Laboratory (Department of Computer Science and
 * Technology) under DARPA contract HR0011-18-C-0016 ("ECATS"), as part of the
 * DARPA SSITH research programme.
 *
 * Portions of this software were written by Mark Johnston under sponsorship
 * by the FreeBSD Foundation.
 *
 * 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 AUTHOR 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 AUTHOR 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.
 *
 * $FreeBSD$
 */

#ifndef _SYS_ATOMIC_SAN_H_
#define	_SYS_ATOMIC_SAN_H_

#ifndef _MACHINE_ATOMIC_H_
#error do not include this header, use machine/atomic.h
#endif

#ifndef ATOMIC_SAN_PREFIX
#error No sanitizer prefix available
#endif

#define	ATOMIC_SAN_FUNC_1(sp, op, name, type)				\
	void sp##_atomic_##op##_##name(volatile type *, type);		\
	void sp##_atomic_##op##_acq_##name(volatile type *, type);	\
	void sp##_atomic_##op##_rel_##name(volatile type *, type)

#define	ATOMIC_SAN_CMPSET(sp, name, type)				\
	int sp##_atomic_cmpset_##name(volatile type *, type, type);	\
	int sp##_atomic_cmpset_acq_##name(volatile type *, type, type); \
	int sp##_atomic_cmpset_rel_##name(volatile type *, type, type)

#define	ATOMIC_SAN_FCMPSET(sp, name, type)				\
	int sp##_atomic_fcmpset_##name(volatile type *, type *, type);	\
	int sp##_atomic_fcmpset_acq_##name(volatile type *, type *, type); \
	int sp##_atomic_fcmpset_rel_##name(volatile type *, type *, type)

#define	ATOMIC_SAN_READ(sp, op, name, type)				\
	type sp##_atomic_##op##_##name(volatile type *, type)

#define	ATOMIC_SAN_READANDCLEAR(sp, name, type)				\
	type sp##_atomic_readandclear_##name(volatile type *)

#define	ATOMIC_SAN_LOAD(sp, name, type)					\
	type sp##_atomic_load_##name(volatile type *);			\
	type sp##_atomic_load_acq_##name(volatile type *)

#define	ATOMIC_SAN_STORE(sp, name, type)				\
	void sp##_atomic_store_##name(volatile type *, type);		\
	void sp##_atomic_store_rel_##name(volatile type *, type)

#define	ATOMIC_SAN_TEST(sp, op, name, type)				\
	int sp##_atomic_##op##_##name(volatile type *, u_int);		\
	int sp##_atomic_##op##_acq_##name(volatile type *, u_int)

#define	ATOMIC_SAN_THREAD_FENCE(sp)					\
	void sp##_atomic_thread_fence_acq(void);			\
	void sp##_atomic_thread_fence_rel(void);			\
	void sp##_atomic_thread_fence_acq_rel(void);			\
	void sp##_atomic_thread_fence_seq_cst(void);			\
	void sp##_atomic_interrupt_fence(void)

#define	_ATOMIC_SAN_FUNCS(sp, name, type)				\
	ATOMIC_SAN_FUNC_1(sp, add, name, type);				\
	ATOMIC_SAN_FUNC_1(sp, clear, name, type);			\
	ATOMIC_SAN_CMPSET(sp, name, type);				\
	ATOMIC_SAN_FCMPSET(sp, name, type);				\
	ATOMIC_SAN_READ(sp, fetchadd, name, type);			\
	ATOMIC_SAN_LOAD(sp, name, type);				\
	ATOMIC_SAN_READANDCLEAR(sp, name, type);			\
	ATOMIC_SAN_FUNC_1(sp, set, name, type);				\
	ATOMIC_SAN_FUNC_1(sp, subtract, name, type);			\
	ATOMIC_SAN_STORE(sp, name, type);				\
	ATOMIC_SAN_READ(sp, swap, name, type);				\
	ATOMIC_SAN_TEST(sp, testandclear, name, type);			\
	ATOMIC_SAN_TEST(sp, testandset, name, type);			\
	ATOMIC_SAN_THREAD_FENCE(sp);

#define	ATOMIC_SAN_FUNCS(name, type)					\
	_ATOMIC_SAN_FUNCS(ATOMIC_SAN_PREFIX, name, type)

ATOMIC_SAN_FUNCS(char, uint8_t);
ATOMIC_SAN_FUNCS(short, uint16_t);
ATOMIC_SAN_FUNCS(int, u_int);
ATOMIC_SAN_FUNCS(long, u_long);
ATOMIC_SAN_FUNCS(ptr, uintptr_t);
ATOMIC_SAN_FUNCS(8, uint8_t);
ATOMIC_SAN_FUNCS(16, uint16_t);
ATOMIC_SAN_FUNCS(32, uint32_t);
ATOMIC_SAN_FUNCS(64, uint64_t);

#ifndef SAN_RUNTIME

/*
 * Redirect uses of an atomic(9) function to the sanitizer's interceptor.
 * For instance, KASAN callers of atomic_add_char() will be redirected to
 * kasan_atomic_add_char().
 */
#define	ATOMIC_SAN(func)		\
	__CONCAT(ATOMIC_SAN_PREFIX, __CONCAT(_atomic_, func))

#define	atomic_add_char			ATOMIC_SAN(add_char)
#define	atomic_add_acq_char		ATOMIC_SAN(add_acq_char)
#define	atomic_add_rel_char		ATOMIC_SAN(add_rel_char)
#define	atomic_clear_char		ATOMIC_SAN(clear_char)
#define	atomic_clear_acq_char		ATOMIC_SAN(clear_acq_char)
#define	atomic_clear_rel_char		ATOMIC_SAN(clear_rel_char)
#define	atomic_cmpset_char		ATOMIC_SAN(cmpset_char)
#define	atomic_cmpset_acq_char		ATOMIC_SAN(cmpset_acq_char)
#define	atomic_cmpset_rel_char		ATOMIC_SAN(cmpset_rel_char)
#define	atomic_fcmpset_char		ATOMIC_SAN(fcmpset_char)
#define	atomic_fcmpset_acq_char		ATOMIC_SAN(fcmpset_acq_char)
#define	atomic_fcmpset_rel_char		ATOMIC_SAN(fcmpset_rel_char)
#define	atomic_fetchadd_char		ATOMIC_SAN(fetchadd_char)
#define	atomic_load_char		ATOMIC_SAN(load_char)
#define	atomic_load_acq_char		ATOMIC_SAN(load_acq_char)
#define	atomic_readandclear_char	ATOMIC_SAN(readandclear_char)
#define	atomic_set_char			ATOMIC_SAN(set_char)
#define	atomic_set_acq_char		ATOMIC_SAN(set_acq_char)
#define	atomic_set_rel_char		ATOMIC_SAN(set_rel_char)
#define	atomic_subtract_char		ATOMIC_SAN(subtract_char)
#define	atomic_subtract_acq_char	ATOMIC_SAN(subtract_acq_char)
#define	atomic_subtract_rel_char	ATOMIC_SAN(subtract_rel_char)
#define	atomic_store_char		ATOMIC_SAN(store_char)
#define	atomic_store_rel_char		ATOMIC_SAN(store_rel_char)
#define	atomic_swap_char		ATOMIC_SAN(swap_char)
#define	atomic_testandclear_char	ATOMIC_SAN(testandclear_char)
#define	atomic_testandset_char		ATOMIC_SAN(testandset_char)

#define	atomic_add_short		ATOMIC_SAN(add_short)
#define	atomic_add_acq_short		ATOMIC_SAN(add_acq_short)
#define	atomic_add_rel_short		ATOMIC_SAN(add_rel_short)
#define	atomic_clear_short		ATOMIC_SAN(clear_short)
#define	atomic_clear_acq_short		ATOMIC_SAN(clear_acq_short)
#define	atomic_clear_rel_short		ATOMIC_SAN(clear_rel_short)
#define	atomic_cmpset_short		ATOMIC_SAN(cmpset_short)
#define	atomic_cmpset_acq_short		ATOMIC_SAN(cmpset_acq_short)
#define	atomic_cmpset_rel_short		ATOMIC_SAN(cmpset_rel_short)
#define	atomic_fcmpset_short		ATOMIC_SAN(fcmpset_short)
#define	atomic_fcmpset_acq_short	ATOMIC_SAN(fcmpset_acq_short)
#define	atomic_fcmpset_rel_short	ATOMIC_SAN(fcmpset_rel_short)
#define	atomic_fetchadd_short		ATOMIC_SAN(fetchadd_short)
#define	atomic_load_short		ATOMIC_SAN(load_short)
#define	atomic_load_acq_short		ATOMIC_SAN(load_acq_short)
#define	atomic_readandclear_short	ATOMIC_SAN(readandclear_short)
#define	atomic_set_short		ATOMIC_SAN(set_short)
#define	atomic_set_acq_short		ATOMIC_SAN(set_acq_short)
#define	atomic_set_rel_short		ATOMIC_SAN(set_rel_short)
#define	atomic_subtract_short		ATOMIC_SAN(subtract_short)
#define	atomic_subtract_acq_short	ATOMIC_SAN(subtract_acq_short)
#define	atomic_subtract_rel_short	ATOMIC_SAN(subtract_rel_short)
#define	atomic_store_short		ATOMIC_SAN(store_short)
#define	atomic_store_rel_short		ATOMIC_SAN(store_rel_short)
#define	atomic_swap_short		ATOMIC_SAN(swap_short)
#define	atomic_testandclear_short	ATOMIC_SAN(testandclear_short)
#define	atomic_testandset_short		ATOMIC_SAN(testandset_short)

#define	atomic_add_int			ATOMIC_SAN(add_int)
#define	atomic_add_acq_int		ATOMIC_SAN(add_acq_int)
#define	atomic_add_rel_int		ATOMIC_SAN(add_rel_int)
#define	atomic_clear_int		ATOMIC_SAN(clear_int)
#define	atomic_clear_acq_int		ATOMIC_SAN(clear_acq_int)
#define	atomic_clear_rel_int		ATOMIC_SAN(clear_rel_int)
#define	atomic_cmpset_int		ATOMIC_SAN(cmpset_int)
#define	atomic_cmpset_acq_int		ATOMIC_SAN(cmpset_acq_int)
#define	atomic_cmpset_rel_int		ATOMIC_SAN(cmpset_rel_int)
#define	atomic_fcmpset_int		ATOMIC_SAN(fcmpset_int)
#define	atomic_fcmpset_acq_int		ATOMIC_SAN(fcmpset_acq_int)
#define	atomic_fcmpset_rel_int		ATOMIC_SAN(fcmpset_rel_int)
#define	atomic_fetchadd_int		ATOMIC_SAN(fetchadd_int)
#define	atomic_load_int			ATOMIC_SAN(load_int)
#define	atomic_load_acq_int		ATOMIC_SAN(load_acq_int)
#define	atomic_readandclear_int		ATOMIC_SAN(readandclear_int)
#define	atomic_set_int			ATOMIC_SAN(set_int)
#define	atomic_set_acq_int		ATOMIC_SAN(set_acq_int)
#define	atomic_set_rel_int		ATOMIC_SAN(set_rel_int)
#define	atomic_subtract_int		ATOMIC_SAN(subtract_int)
#define	atomic_subtract_acq_int		ATOMIC_SAN(subtract_acq_int)
#define	atomic_subtract_rel_int		ATOMIC_SAN(subtract_rel_int)
#define	atomic_store_int		ATOMIC_SAN(store_int)
#define	atomic_store_rel_int		ATOMIC_SAN(store_rel_int)
#define	atomic_swap_int			ATOMIC_SAN(swap_int)
#define	atomic_testandclear_int		ATOMIC_SAN(testandclear_int)
#define	atomic_testandset_int		ATOMIC_SAN(testandset_int)

#define	atomic_add_long			ATOMIC_SAN(add_long)
#define	atomic_add_acq_long		ATOMIC_SAN(add_acq_long)
#define	atomic_add_rel_long		ATOMIC_SAN(add_rel_long)
#define	atomic_clear_long		ATOMIC_SAN(clear_long)
#define	atomic_clear_acq_long		ATOMIC_SAN(clear_acq_long)
#define	atomic_clear_rel_long		ATOMIC_SAN(clear_rel_long)
#define	atomic_cmpset_long		ATOMIC_SAN(cmpset_long)
#define	atomic_cmpset_acq_long		ATOMIC_SAN(cmpset_acq_long)
#define	atomic_cmpset_rel_long		ATOMIC_SAN(cmpset_rel_long)
#define	atomic_fcmpset_long		ATOMIC_SAN(fcmpset_long)
#define	atomic_fcmpset_acq_long		ATOMIC_SAN(fcmpset_acq_long)
#define	atomic_fcmpset_rel_long		ATOMIC_SAN(fcmpset_rel_long)
#define	atomic_fetchadd_long		ATOMIC_SAN(fetchadd_long)
#define	atomic_load_long		ATOMIC_SAN(load_long)
#define	atomic_load_acq_long		ATOMIC_SAN(load_acq_long)
#define	atomic_readandclear_long	ATOMIC_SAN(readandclear_long)
#define	atomic_set_long			ATOMIC_SAN(set_long)
#define	atomic_set_acq_long		ATOMIC_SAN(set_acq_long)
#define	atomic_set_rel_long		ATOMIC_SAN(set_rel_long)
#define	atomic_subtract_long		ATOMIC_SAN(subtract_long)
#define	atomic_subtract_acq_long	ATOMIC_SAN(subtract_acq_long)
#define	atomic_subtract_rel_long	ATOMIC_SAN(subtract_rel_long)
#define	atomic_store_long		ATOMIC_SAN(store_long)
#define	atomic_store_rel_long		ATOMIC_SAN(store_rel_long)
#define	atomic_swap_long		ATOMIC_SAN(swap_long)
#define	atomic_testandclear_long	ATOMIC_SAN(testandclear_long)
#define	atomic_testandset_long		ATOMIC_SAN(testandset_long)
#define	atomic_testandset_acq_long	ATOMIC_SAN(testandset_acq_long)

#define	atomic_add_ptr			ATOMIC_SAN(add_ptr)
#define	atomic_add_acq_ptr		ATOMIC_SAN(add_acq_ptr)
#define	atomic_add_rel_ptr		ATOMIC_SAN(add_rel_ptr)
#define	atomic_clear_ptr		ATOMIC_SAN(clear_ptr)
#define	atomic_clear_acq_ptr		ATOMIC_SAN(clear_acq_ptr)
#define	atomic_clear_rel_ptr		ATOMIC_SAN(clear_rel_ptr)
#define	atomic_cmpset_ptr		ATOMIC_SAN(cmpset_ptr)
#define	atomic_cmpset_acq_ptr		ATOMIC_SAN(cmpset_acq_ptr)
#define	atomic_cmpset_rel_ptr		ATOMIC_SAN(cmpset_rel_ptr)
#define	atomic_fcmpset_ptr		ATOMIC_SAN(fcmpset_ptr)
#define	atomic_fcmpset_acq_ptr		ATOMIC_SAN(fcmpset_acq_ptr)
#define	atomic_fcmpset_rel_ptr		ATOMIC_SAN(fcmpset_rel_ptr)
#define	atomic_fetchadd_ptr		ATOMIC_SAN(fetchadd_ptr)
#define	atomic_load_ptr(x)		({					\
	__typeof(*x) __retptr;							\
	__retptr = (void *)ATOMIC_SAN(load_ptr)((volatile uintptr_t *)(x));	\
	__retptr;								\
})
#define	atomic_load_acq_ptr		ATOMIC_SAN(load_acq_ptr)
#define	atomic_load_consume_ptr(x)	({					\
	__typeof(*x) __retptr;							\
	__retptr = (void *)atomic_load_acq_ptr((volatile uintptr_t *)(x));\
	__retptr;								\
})
#define	atomic_readandclear_ptr		ATOMIC_SAN(readandclear_ptr)
#define	atomic_set_ptr			ATOMIC_SAN(set_ptr)
#define	atomic_set_acq_ptr		ATOMIC_SAN(set_acq_ptr)
#define	atomic_set_rel_ptr		ATOMIC_SAN(set_rel_ptr)
#define	atomic_subtract_ptr		ATOMIC_SAN(subtract_ptr)
#define	atomic_subtract_acq_ptr		ATOMIC_SAN(subtract_acq_ptr)
#define	atomic_subtract_rel_ptr		ATOMIC_SAN(subtract_rel_ptr)
#define	atomic_store_ptr(x, v)		({					\
	__typeof(*x) __value = (v);						\
	ATOMIC_SAN(store_ptr)((volatile uintptr_t *)(x), (uintptr_t)(__value));\
})
#define	atomic_store_rel_ptr		ATOMIC_SAN(store_rel_ptr)
#define	atomic_swap_ptr			ATOMIC_SAN(swap_ptr)
#define	atomic_testandclear_ptr		ATOMIC_SAN(testandclear_ptr)
#define	atomic_testandset_ptr		ATOMIC_SAN(testandset_ptr)

#define	atomic_add_8			ATOMIC_SAN(add_8)
#define	atomic_add_acq_8		ATOMIC_SAN(add_acq_8)
#define	atomic_add_rel_8		ATOMIC_SAN(add_rel_8)
#define	atomic_clear_8			ATOMIC_SAN(clear_8)
#define	atomic_clear_acq_8		ATOMIC_SAN(clear_acq_8)
#define	atomic_clear_rel_8		ATOMIC_SAN(clear_rel_8)
#define	atomic_cmpset_8			ATOMIC_SAN(cmpset_8)
#define	atomic_cmpset_acq_8		ATOMIC_SAN(cmpset_acq_8)
#define	atomic_cmpset_rel_8		ATOMIC_SAN(cmpset_rel_8)
#define	atomic_fcmpset_8		ATOMIC_SAN(fcmpset_8)
#define	atomic_fcmpset_acq_8		ATOMIC_SAN(fcmpset_acq_8)
#define	atomic_fcmpset_rel_8		ATOMIC_SAN(fcmpset_rel_8)
#define	atomic_fetchadd_8		ATOMIC_SAN(fetchadd_8)
#define	atomic_load_8			ATOMIC_SAN(load_8)
#define	atomic_load_acq_8		ATOMIC_SAN(load_acq_8)
#define	atomic_readandclear_8		ATOMIC_SAN(readandclear_8)
#define	atomic_set_8			ATOMIC_SAN(set_8)
#define	atomic_set_acq_8		ATOMIC_SAN(set_acq_8)
#define	atomic_set_rel_8		ATOMIC_SAN(set_rel_8)
#define	atomic_subtract_8		ATOMIC_SAN(subtract_8)
#define	atomic_subtract_acq_8		ATOMIC_SAN(subtract_acq_8)
#define	atomic_subtract_rel_8		ATOMIC_SAN(subtract_rel_8)
#define	atomic_store_8			ATOMIC_SAN(store_8)
#define	atomic_store_rel_8		ATOMIC_SAN(store_rel_8)
#define	atomic_swap_8			ATOMIC_SAN(swap_8)
#define	atomic_testandclear_8		ATOMIC_SAN(testandclear_8)
#define	atomic_testandset_8		ATOMIC_SAN(testandset_8)

#define	atomic_add_16			ATOMIC_SAN(add_16)
#define	atomic_add_acq_16		ATOMIC_SAN(add_acq_16)
#define	atomic_add_rel_16		ATOMIC_SAN(add_rel_16)
#define	atomic_clear_16			ATOMIC_SAN(clear_16)
#define	atomic_clear_acq_16		ATOMIC_SAN(clear_acq_16)
#define	atomic_clear_rel_16		ATOMIC_SAN(clear_rel_16)
#define	atomic_cmpset_16		ATOMIC_SAN(cmpset_16)
#define	atomic_cmpset_acq_16		ATOMIC_SAN(cmpset_acq_16)
#define	atomic_cmpset_rel_16		ATOMIC_SAN(cmpset_rel_16)
#define	atomic_fcmpset_16		ATOMIC_SAN(fcmpset_16)
#define	atomic_fcmpset_acq_16		ATOMIC_SAN(fcmpset_acq_16)
#define	atomic_fcmpset_rel_16		ATOMIC_SAN(fcmpset_rel_16)
#define	atomic_fetchadd_16		ATOMIC_SAN(fetchadd_16)
#define	atomic_load_16			ATOMIC_SAN(load_16)
#define	atomic_load_acq_16		ATOMIC_SAN(load_acq_16)
#define	atomic_readandclear_16		ATOMIC_SAN(readandclear_16)
#define	atomic_set_16			ATOMIC_SAN(set_16)
#define	atomic_set_acq_16		ATOMIC_SAN(set_acq_16)
#define	atomic_set_rel_16		ATOMIC_SAN(set_rel_16)
#define	atomic_subtract_16		ATOMIC_SAN(subtract_16)
#define	atomic_subtract_acq_16		ATOMIC_SAN(subtract_acq_16)
#define	atomic_subtract_rel_16		ATOMIC_SAN(subtract_rel_16)
#define	atomic_store_16			ATOMIC_SAN(store_16)
#define	atomic_store_rel_16		ATOMIC_SAN(store_rel_16)
#define	atomic_swap_16			ATOMIC_SAN(swap_16)
#define	atomic_testandclear_16		ATOMIC_SAN(testandclear_16)
#define	atomic_testandset_16		ATOMIC_SAN(testandset_16)

#define	atomic_add_32			ATOMIC_SAN(add_32)
#define	atomic_add_acq_32		ATOMIC_SAN(add_acq_32)
#define	atomic_add_rel_32		ATOMIC_SAN(add_rel_32)
#define	atomic_clear_32			ATOMIC_SAN(clear_32)
#define	atomic_clear_acq_32		ATOMIC_SAN(clear_acq_32)
#define	atomic_clear_rel_32		ATOMIC_SAN(clear_rel_32)
#define	atomic_cmpset_32		ATOMIC_SAN(cmpset_32)
#define	atomic_cmpset_acq_32		ATOMIC_SAN(cmpset_acq_32)
#define	atomic_cmpset_rel_32		ATOMIC_SAN(cmpset_rel_32)
#define	atomic_fcmpset_32		ATOMIC_SAN(fcmpset_32)
#define	atomic_fcmpset_acq_32		ATOMIC_SAN(fcmpset_acq_32)
#define	atomic_fcmpset_rel_32		ATOMIC_SAN(fcmpset_rel_32)
#define	atomic_fetchadd_32		ATOMIC_SAN(fetchadd_32)
#define	atomic_load_32			ATOMIC_SAN(load_32)
#define	atomic_load_acq_32		ATOMIC_SAN(load_acq_32)
#define	atomic_readandclear_32		ATOMIC_SAN(readandclear_32)
#define	atomic_set_32			ATOMIC_SAN(set_32)
#define	atomic_set_acq_32		ATOMIC_SAN(set_acq_32)
#define	atomic_set_rel_32		ATOMIC_SAN(set_rel_32)
#define	atomic_subtract_32		ATOMIC_SAN(subtract_32)
#define	atomic_subtract_acq_32		ATOMIC_SAN(subtract_acq_32)
#define	atomic_subtract_rel_32		ATOMIC_SAN(subtract_rel_32)
#define	atomic_store_32			ATOMIC_SAN(store_32)
#define	atomic_store_rel_32		ATOMIC_SAN(store_rel_32)
#define	atomic_swap_32			ATOMIC_SAN(swap_32)
#define	atomic_testandclear_32		ATOMIC_SAN(testandclear_32)
#define	atomic_testandset_32		ATOMIC_SAN(testandset_32)

#define	atomic_add_64			ATOMIC_SAN(add_64)
#define	atomic_add_acq_64		ATOMIC_SAN(add_acq_64)
#define	atomic_add_rel_64		ATOMIC_SAN(add_rel_64)
#define	atomic_clear_64			ATOMIC_SAN(clear_64)
#define	atomic_clear_acq_64		ATOMIC_SAN(clear_acq_64)
#define	atomic_clear_rel_64		ATOMIC_SAN(clear_rel_64)
#define	atomic_cmpset_64		ATOMIC_SAN(cmpset_64)
#define	atomic_cmpset_acq_64		ATOMIC_SAN(cmpset_acq_64)
#define	atomic_cmpset_rel_64		ATOMIC_SAN(cmpset_rel_64)
#define	atomic_fcmpset_64		ATOMIC_SAN(fcmpset_64)
#define	atomic_fcmpset_acq_64		ATOMIC_SAN(fcmpset_acq_64)
#define	atomic_fcmpset_rel_64		ATOMIC_SAN(fcmpset_rel_64)
#define	atomic_fetchadd_64		ATOMIC_SAN(fetchadd_64)
#define	atomic_load_64			ATOMIC_SAN(load_64)
#define	atomic_load_acq_64		ATOMIC_SAN(load_acq_64)
#define	atomic_readandclear_64		ATOMIC_SAN(readandclear_64)
#define	atomic_set_64			ATOMIC_SAN(set_64)
#define	atomic_set_acq_64		ATOMIC_SAN(set_acq_64)
#define	atomic_set_rel_64		ATOMIC_SAN(set_rel_64)
#define	atomic_subtract_64		ATOMIC_SAN(subtract_64)
#define	atomic_subtract_acq_64		ATOMIC_SAN(subtract_acq_64)
#define	atomic_subtract_rel_64		ATOMIC_SAN(subtract_rel_64)
#define	atomic_store_64			ATOMIC_SAN(store_64)
#define	atomic_store_rel_64		ATOMIC_SAN(store_rel_64)
#define	atomic_swap_64			ATOMIC_SAN(swap_64)
#define	atomic_testandclear_64		ATOMIC_SAN(testandclear_64)
#define	atomic_testandset_64		ATOMIC_SAN(testandset_64)

#define	atomic_thread_fence_acq		ATOMIC_SAN(thread_fence_acq)
#define	atomic_thread_fence_acq_rel	ATOMIC_SAN(thread_fence_acq_rel)
#define	atomic_thread_fence_rel		ATOMIC_SAN(thread_fence_rel)
#define	atomic_thread_fence_seq_cst	ATOMIC_SAN(thread_fence_seq_cst)
#define	atomic_interrupt_fence		ATOMIC_SAN(interrupt_fence)

#endif /* !SAN_RUNTIME */

#endif /* !_SYS_ATOMIC_SAN_H_ */