Restrict supported arch ot P6+ on Intel x86 32.
[urcu.git] / urcu / uatomic_arch_s390.h
CommitLineData
ec4e58a3
MD
1#ifndef _URCU_ARCH_ATOMIC_S390_H
2#define _URCU_ARCH_ATOMIC_S390_H
ac26f1a8
JB
3
4/*
7039fa6f
JB
5 * Atomic exchange operations for the S390 architecture. Based on information
6 * taken from the Principles of Operation Appendix A "Conditional Swapping
7 * Instructions (CS, CDS)".
ac26f1a8 8 *
7039fa6f 9 * Copyright (c) 2009 Novell, Inc.
ac26f1a8
JB
10 * Author: Jan Blunck <jblunck@suse.de>
11 *
7039fa6f
JB
12 * Permission is hereby granted, free of charge, to any person obtaining a copy
13 * of this software and associated documentation files (the "Software"), to
14 * deal in the Software without restriction, including without limitation the
15 * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
16 * sell copies of the Software, and to permit persons to whom the Software is
17 * furnished to do so, subject to the following conditions:
ac26f1a8 18 *
7039fa6f
JB
19 * The above copyright notice and this permission notice shall be included in
20 * all copies or substantial portions of the Software.
21 *
22 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
23 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
24 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
25 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
26 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
27 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
28 * IN THE SOFTWARE.
ac26f1a8
JB
29 */
30
31#ifndef __SIZEOF_LONG__
32#ifdef __s390x__
33#define __SIZEOF_LONG__ 8
34#else
35#define __SIZEOF_LONG__ 4
36#endif
37#endif
38
39#ifndef BITS_PER_LONG
40#define BITS_PER_LONG (__SIZEOF_LONG__ * 8)
41#endif
42
8af57509
JB
43#define uatomic_set(addr, v) \
44do { \
45 ACCESS_ONCE(*(addr)) = (v); \
46} while (0)
47
48#define uatomic_read(addr) ACCESS_ONCE(*(addr))
49
a9a05d42 50static inline __attribute__((always_inline))
ec4e58a3 51unsigned int uatomic_exchange_32(volatile unsigned int *addr, unsigned int val)
ac26f1a8
JB
52{
53 unsigned int result;
54
55 __asm__ __volatile__(
56 "0: cs %0,%2,%1\n"
57 " brc 4,0b\n"
58 : "=&r"(result), "=m" (*addr)
59 : "r"(val), "m" (*addr)
60 : "memory", "cc");
61
62 return result;
63}
64
65#if (BITS_PER_LONG == 64)
66
a9a05d42 67static inline __attribute__((always_inline))
ec4e58a3 68unsigned long uatomic_exchange_64(volatile unsigned long *addr,
ac26f1a8
JB
69 unsigned long val)
70{
71 unsigned long result;
72
73 __asm__ __volatile__(
74 "0: csg %0,%2,%1\n"
75 " brc 4,0b\n"
76 : "=&r"(result), "=m" (*addr)
77 : "r"(val), "m" (*addr)
78 : "memory", "cc");
79
80 return result;
81}
82
83#endif
84
a9a05d42 85static inline __attribute__((always_inline))
ec4e58a3 86unsigned long _uatomic_exchange(volatile void *addr, unsigned long val, int len)
ac26f1a8
JB
87{
88 switch (len) {
89 case 4:
ec4e58a3 90 return uatomic_exchange_32(addr, val);
ac26f1a8
JB
91#if (BITS_PER_LONG == 64)
92 case 8:
ec4e58a3 93 return uatomic_exchange_64(addr, val);
ac26f1a8
JB
94#endif
95 default:
96 __asm__ __volatile__(".long 0xd00d00");
97 }
98
99 return 0;
100}
101
ec4e58a3
MD
102#define uatomic_xchg(addr, v) \
103 (__typeof__(*(addr))) _uatomic_exchange((addr), (unsigned long)(v), \
a9a05d42 104 sizeof(*(addr)))
ac26f1a8 105
8af57509
JB
106
107static inline __attribute__((always_inline))
108void uatomic_add_32(volatile unsigned int *addr, unsigned int val)
109{
110 unsigned int result, old;
111
112 __asm__ __volatile__(
113 " l %0, %1\n"
114 "0: lr %2, %0\n"
115 " ar %2, %3\n"
116 " cs %0,%2,%1\n"
117 " brc 4,0b\n"
118 : "=&r"(old), "+m" (*addr),
119 "=&r"(result)
120 : "r"(val)
121 : "memory", "cc");
122}
123
124#if (BITS_PER_LONG == 64)
125
126static inline __attribute__((always_inline))
127void uatomic_add_64(volatile unsigned long *addr, unsigned long val)
128{
129 unsigned long result, old;
130
131 __asm__ __volatile__(
132 " lg %0, %1\n"
133 "0: lgr %2, %0\n"
134 " agr %2, %3\n"
135 " csg %0,%2,%1\n"
136 " brc 4,0b\n"
137 : "=&r"(old), "+m" (*addr),
138 "=&r"(result)
139 : "r"(val)
140 : "memory", "cc");
141}
142
143#endif
144
145static inline __attribute__((always_inline))
146void _uatomic_add(void *addr, unsigned long val, int len)
147{
148 switch (len) {
149 case 4:
150 uatomic_add_32(addr, val);
151 return;
152#if (BITS_PER_LONG == 64)
153 case 8:
154 uatomic_add_64(addr, val);
155 return;
156#endif
157 default:
158 __asm__ __volatile__(".long 0xd00d00");
159 }
160
161 return;
162}
163
164#define uatomic_add(addr, val) \
165 _uatomic_add((addr), (unsigned long)(val), sizeof(*(addr)))
166
167static inline __attribute__((always_inline))
168unsigned int uatomic_cmpxchg_32(volatile unsigned int *addr, unsigned int old,
169 unsigned int new)
170{
171 __asm__ __volatile__(
172 " cs %0,%2,%1\n"
173 : "+r"(old), "+m"(*addr)
174 : "r"(new)
175 : "memory", "cc");
176
177 return old;
178}
179
180#if (BITS_PER_LONG == 64)
181
182static inline __attribute__((always_inline))
183unsigned long uatomic_cmpxchg_64(volatile unsigned long *addr,
184 unsigned long old, unsigned long new)
185{
186 __asm__ __volatile__(
187 " csg %0,%2,%1\n"
188 : "+r"(old), "+m"(*addr)
189 : "r"(new)
190 : "memory", "cc");
191
192 return old;
193}
194
195#endif
196
197unsigned long _uatomic_cmpxchg(void *addr, unsigned long old,
198 unsigned long new, int len)
199{
200 switch (len) {
201 case 4:
202 return uatomic_cmpxchg_32(addr, old, new);
203#if (BITS_PER_LONG == 64)
204 case 8:
205 return uatomic_cmpxchg_64(addr, old, new);
206#endif
207 default:
208 __asm__ __volatile__(".long 0xd00d00");
209 }
210
211 return 0;
212}
213
214#define uatomic_cmpxchg(addr, old, new) \
215 (__typeof__(*(addr))) _uatomic_cmpxchg((addr), \
216 (unsigned long)(old), \
217 (unsigned long)(new), \
218 sizeof(*(addr)))
219
ec4e58a3 220#endif /* _URCU_ARCH_ATOMIC_S390_H */
This page took 0.030337 seconds and 4 git commands to generate.