netinet{,6}: Assert in{,6}_inithead() are only used for system routing tables.
[dragonfly.git] / sys / cpu / i386 / include / atomic.h
1 /*-
2  * Copyright (c) 1998 Doug Rabson
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice, this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright
11  *    notice, this list of conditions and the following disclaimer in the
12  *    documentation and/or other materials provided with the distribution.
13  *
14  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
15  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
18  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24  * SUCH DAMAGE.
25  *
26  * $FreeBSD: src/sys/i386/include/atomic.h,v 1.9.2.1 2000/07/07 00:38:47 obrien Exp $
27  */
28 #ifndef _CPU_ATOMIC_H_
29 #define _CPU_ATOMIC_H_
30
31 #ifndef _SYS_TYPES_H_
32 #include <sys/types.h>
33 #endif
34
35 /*
36  * Various simple arithmetic on memory which is atomic in the presence
37  * of interrupts and multiple processors.
38  *
39  * atomic_set_char(P, V)        (*(u_char*)(P) |= (V))
40  * atomic_clear_char(P, V)      (*(u_char*)(P) &= ~(V))
41  * atomic_add_char(P, V)        (*(u_char*)(P) += (V))
42  * atomic_subtract_char(P, V)   (*(u_char*)(P) -= (V))
43  *
44  * atomic_set_short(P, V)       (*(u_short*)(P) |= (V))
45  * atomic_clear_short(P, V)     (*(u_short*)(P) &= ~(V))
46  * atomic_add_short(P, V)       (*(u_short*)(P) += (V))
47  * atomic_subtract_short(P, V)  (*(u_short*)(P) -= (V))
48  *
49  * atomic_set_int(P, V)         (*(u_int*)(P) |= (V))
50  * atomic_clear_int(P, V)       (*(u_int*)(P) &= ~(V))
51  * atomic_add_int(P, V)         (*(u_int*)(P) += (V))
52  * atomic_subtract_int(P, V)    (*(u_int*)(P) -= (V))
53  *
54  * atomic_set_long(P, V)        (*(u_long*)(P) |= (V))
55  * atomic_clear_long(P, V)      (*(u_long*)(P) &= ~(V))
56  * atomic_add_long(P, V)        (*(u_long*)(P) += (V))
57  * atomic_subtract_long(P, V)   (*(u_long*)(P) -= (V))
58  */
59
60 /*
61  * The above functions are expanded inline in the statically-linked
62  * kernel and lock prefixes are generated.
63  *
64  * Kernel modules call real functions which are built into the kernel.
65  */
66 #if defined(KLD_MODULE)
67 #define ATOMIC_ASM(NAME, TYPE, OP, V)                   \
68         extern void atomic_##NAME##_##TYPE(volatile u_##TYPE *p, u_##TYPE v); \
69         extern void atomic_##NAME##_##TYPE##_nonlocked(volatile u_##TYPE *p, u_##TYPE v);
70
71 int     atomic_testandset_int(volatile u_int *p, u_int v);
72
73 #else /* !KLD_MODULE */
74 #define MPLOCKED        "lock ; "
75
76 /*
77  * The assembly is volatilized to demark potential before-and-after side
78  * effects if an interrupt or SMP collision were to occur.  The primary
79  * atomic instructions are MP safe, the nonlocked instructions are 
80  * local-interrupt-safe (so we don't depend on C 'X |= Y' generating an
81  * atomic instruction).
82  *
83  * +m - memory is read and written (=m - memory is only written)
84  * iq - integer constant or %ax/%bx/%cx/%dx (ir = int constant or any reg)
85  *      (Note: byte instructions only work on %ax,%bx,%cx, or %dx).  iq
86  *      is good enough for our needs so don't get fancy.
87  */
88
89 /* egcs 1.1.2+ version */
90 #define ATOMIC_ASM(NAME, TYPE, OP, V)                   \
91 static __inline void                                    \
92 atomic_##NAME##_##TYPE(volatile u_##TYPE *p, u_##TYPE v)\
93 {                                                       \
94         __asm __volatile(MPLOCKED OP                    \
95                          : "+m" (*p)                    \
96                          : "iq" (V));                   \
97 }                                                       \
98 static __inline void                                    \
99 atomic_##NAME##_##TYPE##_nonlocked(volatile u_##TYPE *p, u_##TYPE v)\
100 {                                                       \
101         __asm __volatile(OP                             \
102                          : "+m" (*p)                    \
103                          : "iq" (V));                   \
104 }
105
106 #endif /* KLD_MODULE */
107
108 /* egcs 1.1.2+ version */
109 ATOMIC_ASM(set,      char,  "orb %b1,%0",   v)
110 ATOMIC_ASM(clear,    char,  "andb %b1,%0", ~v)
111 ATOMIC_ASM(add,      char,  "addb %b1,%0",  v)
112 ATOMIC_ASM(subtract, char,  "subb %b1,%0",  v)
113
114 ATOMIC_ASM(set,      short, "orw %w1,%0",   v)
115 ATOMIC_ASM(clear,    short, "andw %w1,%0", ~v)
116 ATOMIC_ASM(add,      short, "addw %w1,%0",  v)
117 ATOMIC_ASM(subtract, short, "subw %w1,%0",  v)
118
119 ATOMIC_ASM(set,      int,   "orl %1,%0",   v)
120 ATOMIC_ASM(clear,    int,   "andl %1,%0", ~v)
121 ATOMIC_ASM(add,      int,   "addl %1,%0",  v)
122 ATOMIC_ASM(subtract, int,   "subl %1,%0",  v)
123
124 ATOMIC_ASM(set,      long,  "orl %1,%0",   v)
125 ATOMIC_ASM(clear,    long,  "andl %1,%0", ~v)
126 ATOMIC_ASM(add,      long,  "addl %1,%0",  v)
127 ATOMIC_ASM(subtract, long,  "subl %1,%0",  v)
128
129 #if defined(KLD_MODULE)
130
131 u_int   atomic_readandclear_int(volatile u_int *addr);
132
133 #else /* !KLD_MODULE */
134
135 static __inline u_int
136 atomic_readandclear_int(volatile u_int *addr)
137 {
138         u_int res;
139
140         res = 0;
141         __asm __volatile(
142         "       xchgl   %1,%0 ;         "
143         "# atomic_readandclear_int"
144         : "+r" (res),                   /* 0 */
145           "=m" (*addr)                  /* 1 */
146         : "m" (*addr));
147
148         return (res);
149 }
150
151 #endif /* KLD_MODULE */
152
153
154 /*
155  * atomic_poll_acquire_int(P)   Returns non-zero on success, 0 if the lock
156  *                              has already been acquired.
157  * atomic_poll_release_int(P)
158  *
159  * These support the NDIS driver and are also used for IPIQ interlocks
160  * between cpus.  Both the acquisition and release must be 
161  * cache-synchronizing instructions.
162  */
163
164 #if defined(KLD_MODULE)
165
166 extern int atomic_swap_int(volatile int *addr, int value);
167 extern long atomic_swap_long(volatile long *addr, long value);
168 extern void *atomic_swap_ptr(volatile void **addr, void *value);
169 extern int atomic_poll_acquire_int(volatile u_int *p);
170 extern void atomic_poll_release_int(volatile u_int *p);
171
172 #else
173
174 static __inline int
175 atomic_swap_int(volatile int *addr, int value)
176 {
177         __asm __volatile("xchgl %0, %1" :
178             "=r" (value), "=m" (*addr) : "0" (value) : "memory");
179         return (value);
180 }
181
182 static __inline long
183 atomic_swap_long(volatile long *addr, long value)
184 {
185         return (atomic_swap_int((volatile int *)addr, (int)value));
186 }
187
188 static __inline void *
189 atomic_swap_ptr(volatile void **addr, void *value)
190 {
191         __asm __volatile("xchgl %0, %1" :
192             "=r" (value), "=m" (*addr) : "0" (value) : "memory");
193         return (value);
194 }
195
196 static __inline int
197 atomic_poll_acquire_int(volatile u_int *p)
198 {
199         u_int data;
200
201         __asm __volatile(MPLOCKED "btsl $0,%0; setnc %%al; andl $255,%%eax" : "+m" (*p), "=a" (data));
202         return(data);
203 }
204
205 static __inline void
206 atomic_poll_release_int(volatile u_int *p)
207 {
208         __asm __volatile(MPLOCKED "btrl $0,%0" : "+m" (*p));
209 }
210
211 #endif
212
213 /*
214  * These functions operate on a 32 bit interrupt interlock which is defined
215  * as follows:
216  *
217  *      bit 0-29        interrupt handler wait counter
218  *      bit 30          interrupt handler disabled bit
219  *      bit 31          interrupt handler currently running bit (1 = run)
220  *
221  * atomic_intr_cond_test(P)     Determine if the interlock is in an
222  *                              acquired state.  Returns 0 if it not
223  *                              acquired, non-zero if it is. (not MPLOCKed)
224  *
225  * atomic_intr_cond_try(P)      Attempt to set bit 31 to acquire the
226  *                              interlock.  If we are unable to set bit 31
227  *                              we return 1, otherwise we return 0.
228  *
229  * atomic_intr_cond_enter(P, func, arg)
230  *                              Attempt to set bit 31 to acquire the
231  *                              interlock.  If we are unable to set bit 31,
232  *                              the wait is incremented counter and func(arg)
233  *                              is called in a loop until we are able to set
234  *                              bit 31.  Once we set bit 31, wait counter
235  *                              is decremented.
236  *
237  * atomic_intr_cond_exit(P, func, arg)
238  *                              Clear bit 31.  If the wait counter is still
239  *                              non-zero call func(arg) once.
240  *
241  * atomic_intr_handler_disable(P)
242  *                              Set bit 30, indicating that the interrupt
243  *                              handler has been disabled.  Must be called
244  *                              after the hardware is disabled.
245  *
246  *                              Returns bit 31 indicating whether a serialized
247  *                              accessor is active (typically the interrupt
248  *                              handler is running).  0 == not active,
249  *                              non-zero == active.
250  *
251  * atomic_intr_handler_enable(P)
252  *                              Clear bit 30, indicating that the interrupt
253  *                              handler has been enabled.  Must be called
254  *                              before the hardware is actually enabled.
255  *
256  * atomic_intr_handler_is_enabled(P)
257  *                              Returns bit 30, 0 indicates that the handler
258  *                              is enabled, non-zero indicates that it is
259  *                              disabled.  The request counter portion of
260  *                              the field is ignored. (not MPLOCKed)
261  *
262  * atomic_intr_cond_inc(P)      Increment wait counter by 1.
263  * atomic_intr_cond_dec(P)      Decrement wait counter by 1.
264  */
265
266 #if defined(KLD_MODULE)
267
268 void atomic_intr_init(__atomic_intr_t *p);
269 int atomic_intr_handler_disable(__atomic_intr_t *p);
270 void atomic_intr_handler_enable(__atomic_intr_t *p);
271 int atomic_intr_handler_is_enabled(__atomic_intr_t *p);
272 int atomic_intr_cond_test(__atomic_intr_t *p);
273 int atomic_intr_cond_try(__atomic_intr_t *p);
274 void atomic_intr_cond_enter(__atomic_intr_t *p, void (*func)(void *), void *arg);
275 void atomic_intr_cond_exit(__atomic_intr_t *p, void (*func)(void *), void *arg);
276 void atomic_intr_cond_inc(__atomic_intr_t *p);
277 void atomic_intr_cond_dec(__atomic_intr_t *p);
278 uint64_t atomic_load_acq_64_i586(volatile uint64_t *p);
279
280 #else
281
282 static __inline void
283 atomic_intr_init(__atomic_intr_t *p)
284 {
285         *p = 0;
286 }
287
288 static __inline int
289 atomic_intr_handler_disable(__atomic_intr_t *p)
290 {
291         int data;
292
293         __asm __volatile(MPLOCKED "orl $0x40000000,%1; movl %1,%%eax; " \
294                                   "andl $0x80000000,%%eax" \
295                                   : "=a"(data) , "+m"(*p));
296         return(data);
297 }
298
299 static __inline void
300 atomic_intr_handler_enable(__atomic_intr_t *p)
301 {
302         __asm __volatile(MPLOCKED "andl $0xBFFFFFFF,%0" : "+m" (*p));
303 }
304
305 static __inline int
306 atomic_intr_handler_is_enabled(__atomic_intr_t *p)
307 {
308         int data;
309
310         __asm __volatile("movl %1,%%eax; andl $0x40000000,%%eax" \
311                          : "=a"(data) : "m"(*p));
312         return(data);
313 }
314
315 static __inline void
316 atomic_intr_cond_inc(__atomic_intr_t *p)
317 {
318         __asm __volatile(MPLOCKED "incl %0" : "+m" (*p));
319 }
320
321 static __inline void
322 atomic_intr_cond_dec(__atomic_intr_t *p)
323 {
324         __asm __volatile(MPLOCKED "decl %0" : "+m" (*p));
325 }
326
327 static __inline void
328 atomic_intr_cond_enter(__atomic_intr_t *p, void (*func)(void *), void *arg)
329 {
330         __asm __volatile(MPLOCKED "btsl $31,%0; jnc 3f; " \
331                          MPLOCKED "incl %0; " \
332                          "1: ;" \
333                          MPLOCKED "btsl $31,%0; jnc 2f; " \
334                          "pushl %2; call *%1; addl $4,%%esp; " \
335                          "jmp 1b; " \
336                          "2: ;" \
337                          MPLOCKED "decl %0; " \
338                          "3: ;" \
339                          : "+m" (*p) \
340                          : "r"(func), "m"(arg) \
341                          : "ax", "cx", "dx");
342 }
343
344 /*
345  * Attempt to enter the interrupt condition variable.  Returns zero on
346  * success, 1 on failure.
347  */
348 static __inline int
349 atomic_intr_cond_try(__atomic_intr_t *p)
350 {
351         int ret;
352
353         __asm __volatile("subl %%eax,%%eax; "                   \
354                          MPLOCKED "btsl $31,%0; jnc 2f; "       \
355                          "movl $1,%%eax;"                       \
356                          "2: ;"
357                          : "+m" (*p), "=&a"(ret)
358                          : : "cx", "dx");
359         return (ret);
360 }
361
362
363 static __inline int
364 atomic_intr_cond_test(__atomic_intr_t *p)
365 {
366         return((int)(*p & 0x80000000));
367 }
368
369 static __inline void
370 atomic_intr_cond_exit(__atomic_intr_t *p, void (*func)(void *), void *arg)
371 {
372         __asm __volatile(MPLOCKED "btrl $31,%0; " \
373                          "testl $0x3FFFFFFF,%0; jz 1f; " \
374                          "pushl %2; call *%1; addl $4,%%esp; " \
375                          "1: ;" \
376                          : "+m" (*p) \
377                          : "r"(func), "m"(arg) \
378                          : "ax", "cx", "dx");
379 }
380
381 static __inline uint64_t
382 atomic_load_acq_64_i586(volatile uint64_t *p)
383 {
384         uint64_t res;
385
386         __asm __volatile(
387         "       movl %%ebx,%%eax ;      "
388         "       movl %%ecx,%%edx ;      "
389         "       " MPLOCKED "            "
390         "       cmpxchg8b %2"
391         : "=&A" (res),                  /* 0 */
392           "=m" (*p)                     /* 1 */
393         : "m" (*p)                      /* 2 */
394         : "memory", "cc");
395
396         return (res);
397 }
398
399 #endif /* _KERNEL */
400
401 /*
402  * Atomic compare and set
403  *
404  * if (*_dst == _old) *_dst = _new (all 32 bit words)
405  *
406  * Returns 0 on failure, non-zero on success
407  */
408 #if defined(KLD_MODULE)
409
410 extern int atomic_cmpset_int(volatile u_int *_dst, u_int _old, u_int _new);
411 extern long atomic_cmpset_long(volatile u_long *_dst, u_long _exp, u_long _src);
412 extern u_int atomic_fetchadd_int(volatile u_int *_p, u_int _v);
413 extern u_long atomic_fetchadd_long(volatile u_long *_p, u_long _v);
414
415 #else
416
417 static __inline int
418 atomic_cmpset_int(volatile u_int *_dst, u_int _old, u_int _new)
419 {
420         u_int res = _old;
421
422         __asm __volatile(MPLOCKED "cmpxchgl %2,%1; " \
423                          : "+a" (res), "=m" (*_dst) \
424                          : "r" (_new), "m" (*_dst) \
425                          : "memory");
426         return (res == _old);
427 }
428
429 static __inline long
430 atomic_cmpset_long(volatile u_long *_dst, u_long _exp, u_long _src)
431 {
432          return (atomic_cmpset_int((volatile u_int *)_dst, (u_int)_exp,
433                                    (u_int)_src));
434 }
435
436 /*
437  * Atomically add the value of v to the integer pointed to by p and return
438  * the previous value of *p.
439  */
440 static __inline u_int
441 atomic_fetchadd_int(volatile u_int *_p, u_int _v)
442 {
443         __asm __volatile(MPLOCKED "xaddl %0,%1; " \
444                          : "+r" (_v), "=m" (*_p)        \
445                          : "m" (*_p)            \
446                          : "memory");
447         return (_v);
448 }
449
450 static __inline int
451 atomic_testandset_int(volatile u_int *p, u_int v)
452 {
453         u_char res;
454
455         __asm __volatile(
456         "       " MPLOCKED "            "
457         "       btsl    %2,%1 ;         "
458         "       setc    %0 ;            "
459         "# atomic_testandset_int"
460         : "=q" (res),                   /* 0 */
461           "+m" (*p)                     /* 1 */
462         : "Ir" (v & 0x1f)               /* 2 */
463         : "cc");
464         return (res);
465 }
466
467 static __inline u_long
468 atomic_fetchadd_long(volatile u_long *_p, u_long _v)
469 {
470         __asm __volatile(MPLOCKED "xaddl %0,%1; " \
471                          : "+r" (_v), "=m" (*_p)        \
472                          : "m" (*_p)            \
473                          : "memory");
474         return (_v);
475 }
476
477 #endif  /* KLD_MODULE */
478
479 #if defined(KLD_MODULE)
480
481 #define ATOMIC_STORE_LOAD(TYPE, LOP, SOP)                       \
482 extern u_##TYPE atomic_load_acq_##TYPE(volatile u_##TYPE *p);   \
483 extern void     atomic_store_rel_##TYPE(volatile u_##TYPE *p, u_##TYPE v);
484
485 #else /* !KLD_MODULE */
486
487 #define ATOMIC_STORE_LOAD(TYPE, LOP, SOP)               \
488 static __inline u_##TYPE                                \
489 atomic_load_acq_##TYPE(volatile u_##TYPE *p)            \
490 {                                                       \
491         u_##TYPE res;                                   \
492                                                         \
493         __asm __volatile(MPLOCKED LOP                   \
494         : "=a" (res),                   /* 0 */         \
495           "=m" (*p)                     /* 1 */         \
496         : "m" (*p)                      /* 2 */         \
497         : "memory");                                    \
498                                                         \
499         return (res);                                   \
500 }                                                       \
501                                                         \
502 /*                                                      \
503  * The XCHG instruction asserts LOCK automagically.     \
504  */                                                     \
505 static __inline void                                    \
506 atomic_store_rel_##TYPE(volatile u_##TYPE *p, u_##TYPE v)\
507 {                                                       \
508         __asm __volatile(SOP                            \
509         : "=m" (*p),                    /* 0 */         \
510           "+r" (v)                      /* 1 */         \
511         : "m" (*p));                    /* 2 */         \
512 }                                                       \
513 struct __hack
514
515 #endif /* !KLD_MODULE */
516
517 ATOMIC_STORE_LOAD(char, "cmpxchgb %b0,%1", "xchgb %b1,%0");
518 ATOMIC_STORE_LOAD(short,"cmpxchgw %w0,%1", "xchgw %w1,%0");
519 ATOMIC_STORE_LOAD(int,  "cmpxchgl %0,%1",  "xchgl %1,%0");
520 ATOMIC_STORE_LOAD(long, "cmpxchgl %0,%1",  "xchgl %1,%0");
521
522 #undef ATOMIC_ASM
523 #undef ATOMIC_STORE_LOAD
524
525 /* Acquire and release variants are identical to the normal ones. */
526 #define atomic_set_acq_char             atomic_set_char
527 #define atomic_set_rel_char             atomic_set_char
528 #define atomic_clear_acq_char           atomic_clear_char
529 #define atomic_clear_rel_char           atomic_clear_char
530 #define atomic_add_acq_char             atomic_add_char
531 #define atomic_add_rel_char             atomic_add_char
532 #define atomic_subtract_acq_char        atomic_subtract_char
533 #define atomic_subtract_rel_char        atomic_subtract_char
534
535 #define atomic_set_acq_short            atomic_set_short
536 #define atomic_set_rel_short            atomic_set_short
537 #define atomic_clear_acq_short          atomic_clear_short
538 #define atomic_clear_rel_short          atomic_clear_short
539 #define atomic_add_acq_short            atomic_add_short
540 #define atomic_add_rel_short            atomic_add_short
541 #define atomic_subtract_acq_short       atomic_subtract_short
542 #define atomic_subtract_rel_short       atomic_subtract_short
543
544 #define atomic_set_acq_int              atomic_set_int
545 #define atomic_set_rel_int              atomic_set_int
546 #define atomic_clear_acq_int            atomic_clear_int
547 #define atomic_clear_rel_int            atomic_clear_int
548 #define atomic_add_acq_int              atomic_add_int
549 #define atomic_add_rel_int              atomic_add_int
550 #define atomic_subtract_acq_int         atomic_subtract_int
551 #define atomic_subtract_rel_int         atomic_subtract_int
552 #define atomic_cmpset_acq_int           atomic_cmpset_int
553 #define atomic_cmpset_rel_int           atomic_cmpset_int
554
555 #define atomic_set_acq_long             atomic_set_long
556 #define atomic_set_rel_long             atomic_set_long
557 #define atomic_clear_acq_long           atomic_clear_long
558 #define atomic_clear_rel_long           atomic_clear_long
559 #define atomic_add_acq_long             atomic_add_long
560 #define atomic_add_rel_long             atomic_add_long
561 #define atomic_subtract_acq_long        atomic_subtract_long
562 #define atomic_subtract_rel_long        atomic_subtract_long
563 #define atomic_cmpset_acq_long          atomic_cmpset_long
564 #define atomic_cmpset_rel_long          atomic_cmpset_long
565
566 /* cpumask_t is 32-bits on i386 */
567 #define atomic_set_cpumask              atomic_set_int
568 #define atomic_clear_cpumask            atomic_clear_int
569 #define atomic_cmpset_cpumask           atomic_cmpset_int
570
571 /* Operations on 8-bit bytes. */
572 #define atomic_set_8            atomic_set_char
573 #define atomic_set_acq_8        atomic_set_acq_char
574 #define atomic_set_rel_8        atomic_set_rel_char
575 #define atomic_clear_8          atomic_clear_char
576 #define atomic_clear_acq_8      atomic_clear_acq_char
577 #define atomic_clear_rel_8      atomic_clear_rel_char
578 #define atomic_add_8            atomic_add_char
579 #define atomic_add_acq_8        atomic_add_acq_char
580 #define atomic_add_rel_8        atomic_add_rel_char
581 #define atomic_subtract_8       atomic_subtract_char
582 #define atomic_subtract_acq_8   atomic_subtract_acq_char
583 #define atomic_subtract_rel_8   atomic_subtract_rel_char
584 #define atomic_load_acq_8       atomic_load_acq_char
585 #define atomic_store_rel_8      atomic_store_rel_char
586
587 /* Operations on 16-bit words. */
588 #define atomic_set_16           atomic_set_short
589 #define atomic_set_acq_16       atomic_set_acq_short
590 #define atomic_set_rel_16       atomic_set_rel_short
591 #define atomic_clear_16         atomic_clear_short
592 #define atomic_clear_acq_16     atomic_clear_acq_short
593 #define atomic_clear_rel_16     atomic_clear_rel_short
594 #define atomic_add_16           atomic_add_short
595 #define atomic_add_acq_16       atomic_add_acq_short
596 #define atomic_add_rel_16       atomic_add_rel_short
597 #define atomic_subtract_16      atomic_subtract_short
598 #define atomic_subtract_acq_16  atomic_subtract_acq_short
599 #define atomic_subtract_rel_16  atomic_subtract_rel_short
600 #define atomic_load_acq_16      atomic_load_acq_short
601 #define atomic_store_rel_16     atomic_store_rel_short
602
603 /* Operations on 32-bit double words. */
604 #define atomic_set_32           atomic_set_int
605 #define atomic_set_acq_32       atomic_set_acq_int
606 #define atomic_set_rel_32       atomic_set_rel_int
607 #define atomic_clear_32         atomic_clear_int
608 #define atomic_clear_acq_32     atomic_clear_acq_int
609 #define atomic_clear_rel_32     atomic_clear_rel_int
610 #define atomic_add_32           atomic_add_int
611 #define atomic_add_acq_32       atomic_add_acq_int
612 #define atomic_add_rel_32       atomic_add_rel_int
613 #define atomic_subtract_32      atomic_subtract_int
614 #define atomic_subtract_acq_32  atomic_subtract_acq_int
615 #define atomic_subtract_rel_32  atomic_subtract_rel_int
616 #define atomic_load_acq_32      atomic_load_acq_int
617 #define atomic_store_rel_32     atomic_store_rel_int
618 #define atomic_cmpset_32        atomic_cmpset_int
619 #define atomic_cmpset_acq_32    atomic_cmpset_acq_int
620 #define atomic_cmpset_rel_32    atomic_cmpset_rel_int
621 #define atomic_readandclear_32  atomic_readandclear_int
622 #define atomic_fetchadd_32      atomic_fetchadd_int
623
624 /* Operations on 64-bit quad words. */
625 #define atomic_load_acq_64      atomic_load_acq_64_i586
626
627 /* Operations on pointers. */
628 #define atomic_set_ptr(p, v) \
629         atomic_set_int((volatile u_int *)(p), (u_int)(v))
630 #define atomic_set_acq_ptr(p, v) \
631         atomic_set_acq_int((volatile u_int *)(p), (u_int)(v))
632 #define atomic_set_rel_ptr(p, v) \
633         atomic_set_rel_int((volatile u_int *)(p), (u_int)(v))
634 #define atomic_clear_ptr(p, v) \
635         atomic_clear_int((volatile u_int *)(p), (u_int)(v))
636 #define atomic_clear_acq_ptr(p, v) \
637         atomic_clear_acq_int((volatile u_int *)(p), (u_int)(v))
638 #define atomic_clear_rel_ptr(p, v) \
639         atomic_clear_rel_int((volatile u_int *)(p), (u_int)(v))
640 #define atomic_add_ptr(p, v) \
641         atomic_add_int((volatile u_int *)(p), (u_int)(v))
642 #define atomic_add_acq_ptr(p, v) \
643         atomic_add_acq_int((volatile u_int *)(p), (u_int)(v))
644 #define atomic_add_rel_ptr(p, v) \
645         atomic_add_rel_int((volatile u_int *)(p), (u_int)(v))
646 #define atomic_subtract_ptr(p, v) \
647         atomic_subtract_int((volatile u_int *)(p), (u_int)(v))
648 #define atomic_subtract_acq_ptr(p, v) \
649         atomic_subtract_acq_int((volatile u_int *)(p), (u_int)(v))
650 #define atomic_subtract_rel_ptr(p, v) \
651         atomic_subtract_rel_int((volatile u_int *)(p), (u_int)(v))
652 #define atomic_load_acq_ptr(p) \
653         atomic_load_acq_int((volatile u_int *)(p))
654 #define atomic_store_rel_ptr(p, v) \
655         atomic_store_rel_int((volatile u_int *)(p), (v))
656 #define atomic_cmpset_ptr(dst, old, new) \
657         atomic_cmpset_int((volatile u_int *)(dst), (u_int)(old), (u_int)(new))
658 #define atomic_cmpset_acq_ptr(dst, old, new) \
659         atomic_cmpset_acq_int((volatile u_int *)(dst), (u_int)(old), \
660             (u_int)(new))
661 #define atomic_cmpset_rel_ptr(dst, old, new) \
662         atomic_cmpset_rel_int((volatile u_int *)(dst), (u_int)(old), \
663             (u_int)(new))
664 #define atomic_readandclear_ptr(p) \
665         atomic_readandclear_int((volatile u_int *)(p))
666
667 #endif /* ! _CPU_ATOMIC_H_ */