implemented Setup.hs to build boehm cpp libs and install them;
[hs-boehmgc.git] / gc-7.2 / libatomic_ops / src / atomic_ops / sysdeps / gcc / avr32.h
1 /*
2  * Copyright (C) 2009 Bradley Smith <brad@brad-smith.co.uk>
3  *
4  * Permission is hereby granted, free of charge, to any person obtaining a
5  * copy of this software and associated documentation files (the
6  * "Software"), to deal in the Software without restriction, including
7  * without limitation the rights to use, copy, modify, merge, publish,
8  * distribute, sublicense, and/or sell copies of the Software, and to
9  * permit persons to whom the Software is furnished to do so, subject to
10  * the following conditions:
11  *
12  * The above copyright notice and this permission notice shall be included
13  * in all copies or substantial portions of the Software.
14  *
15  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
16  * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
17  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
18  * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
19  * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
20  * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
21  * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
22  *
23  */
24
25 #include "../all_atomic_load_store.h"
26
27 #include "../ordered.h" /* There are no multiprocessor implementations. */
28
29 #include "../test_and_set_t_is_ao_t.h"
30
31 AO_INLINE AO_TS_VAL_t
32 AO_test_and_set_full(volatile AO_TS_t *addr)
33 {
34         register long ret;
35
36         __asm__ __volatile__(
37                 "xchg %[oldval], %[mem], %[newval]"
38                 : [oldval] "=&r"(ret)
39                 : [mem] "r"(addr), [newval] "r"(1)
40                 : "memory");
41
42         return (AO_TS_VAL_t)ret;
43 }
44 #define AO_HAVE_test_and_set_full
45
46 AO_INLINE int
47 AO_compare_and_swap_full(volatile AO_t *addr, AO_t old, AO_t new_val)
48 {
49        register long ret;
50
51        __asm__ __volatile__(
52                "1: ssrf    5\n"
53                "   ld.w    %[res], %[mem]\n"
54                "   eor     %[res], %[oldval]\n"
55                "   brne    2f\n"
56                "   stcond  %[mem], %[newval]\n"
57                "   brne    1b\n"
58                "2:\n"
59                : [res] "=&r"(ret), [mem] "=m"(*addr)
60                : "m"(*addr), [newval] "r"(new_val), [oldval] "r"(old)
61                : "cc", "memory");
62
63        return (int)ret;
64 }
65 #define AO_HAVE_compare_and_swap_full