]> CyberLeo.Net >> Repos - FreeBSD/releng/9.2.git/blob - contrib/bind9/lib/isc/arm/include/isc/atomic.h
- Copy stable/9 to releng/9.2 as part of the 9.2-RELEASE cycle.
[FreeBSD/releng/9.2.git] / contrib / bind9 / lib / isc / arm / include / isc / atomic.h
1 /*-
2  * Copyright (c) 2007 Warner Losh
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$
27  */
28
29 #ifndef ISC_ATOMIC_H
30 #define ISC_ATOMIC_H 1
31
32 #include <isc/platform.h>
33 #include <isc/types.h>
34 #include <machine/atomic.h>
35
36 #ifdef __FreeBSD__
37 static inline isc_int32_t
38 isc_atomic_xadd(isc_int32_t *p, isc_int32_t val)
39 {
40         return atomic_fetchadd_int(p, val);
41 }
42
43 static inline void
44 isc_atomic_store(isc_int32_t *p, isc_int32_t val)
45 {
46         atomic_store_rel_int(p, val);
47 }
48
49 static inline isc_int32_t
50 isc_atomic_cmpxchg(isc_int32_t *p, isc_int32_t cmpval, isc_int32_t val)
51 {
52         register int done, ras_start;
53
54         __asm __volatile("1:\n"
55             "adr        %1, 1b\n"
56             "mov        %0, #0xe0000004\n"
57             "str        %1, [%0]\n"
58             "mov        %0, #0xe0000008\n"
59             "adr        %1, 2f\n"
60             "str        %1, [%0]\n"
61             "ldr        %1, [%2]\n"
62             "cmp        %1, %3\n"
63             "streq      %4, [%2]\n"
64             "2:\n"
65             "mov        %3, #0\n"
66             "mov        %0, #0xe0000004\n"
67             "str        %3, [%0]\n"
68             "mov        %3, #0xffffffff\n"
69             "mov        %0, #0xe0000008\n"
70             "str        %3, [%0]\n"
71             : "=r" (ras_start), "=r" (done)
72             ,"+r" (p), "+r" (cmpval), "+r" (val) : : "memory");
73         return (done);
74
75 }
76 #else /* !FreeBSD */
77
78 #error "unsupported compiler.  disable atomic ops by --disable-atomic"
79
80 #endif
81 #endif /* ISC_ATOMIC_H */