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