1 #ifndef _URCU_UATOMIC_ARCH_S390_H
2 #define _URCU_UATOMIC_ARCH_S390_H
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)".
9 * Copyright (c) 2009 Novell, Inc.
10 * Author: Jan Blunck <jblunck@suse.de>
11 * Copyright (c) 2009 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
13 * Permission is hereby granted, free of charge, to any person obtaining a copy
14 * of this software and associated documentation files (the "Software"), to
15 * deal in the Software without restriction, including without limitation the
16 * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
17 * sell copies of the Software, and to permit persons to whom the Software is
18 * furnished to do so, subject to the following conditions:
20 * The above copyright notice and this permission notice shall be included in
21 * all copies or substantial portions of the Software.
23 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
24 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
25 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
26 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
27 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
28 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
32 #include <urcu/compiler.h>
33 #include <urcu/system.h>
39 #if __GNUC__ > 3 || (__GNUC__ == 3 && __GNUC_MINOR__ > 2)
40 #define COMPILER_HAVE_SHORT_MEM_OPERAND
44 * MEMOP assembler operand rules:
45 * - op refer to MEMOP_IN operand
46 * - MEMOP_IN can expand to more than a single operand. Use it at the end of
50 #ifdef COMPILER_HAVE_SHORT_MEM_OPERAND
52 #define MEMOP_OUT(addr) "=Q" (*(addr))
53 #define MEMOP_IN(addr) "Q" (*(addr))
54 #define MEMOP_REF(op) #op /* op refer to MEMOP_IN operand */
56 #else /* !COMPILER_HAVE_SHORT_MEM_OPERAND */
58 #define MEMOP_OUT(addr) "=m" (*(addr))
59 #define MEMOP_IN(addr) "a" (addr), "m" (*(addr))
60 #define MEMOP_REF(op) "0(" #op ")" /* op refer to MEMOP_IN operand */
62 #endif /* !COMPILER_HAVE_SHORT_MEM_OPERAND */
64 struct __uatomic_dummy
{
67 #define __hp(x) ((struct __uatomic_dummy *)(x))
71 static inline __attribute__((always_inline
))
72 unsigned long _uatomic_exchange(volatile void *addr
, unsigned long val
, int len
)
80 "0: cs %0,%2," MEMOP_REF(%3) "\n"
82 : "=&r" (old_val
), MEMOP_OUT (__hp(addr
))
83 : "r" (val
), MEMOP_IN (__hp(addr
))
87 #if (CAA_BITS_PER_LONG == 64)
90 unsigned long old_val
;
93 "0: csg %0,%2," MEMOP_REF(%3) "\n"
95 : "=&r" (old_val
), MEMOP_OUT (__hp(addr
))
96 : "r" (val
), MEMOP_IN (__hp(addr
))
102 __asm__
__volatile__(".long 0xd00d00");
108 #define uatomic_xchg(addr, v) \
109 (__typeof__(*(addr))) _uatomic_exchange((addr), (unsigned long)(v), \
114 static inline __attribute__((always_inline
))
115 unsigned long _uatomic_cmpxchg(void *addr
, unsigned long old
,
116 unsigned long _new
, int len
)
121 unsigned int old_val
= (unsigned int)old
;
123 __asm__
__volatile__(
124 " cs %0,%2," MEMOP_REF(%3) "\n"
125 : "+r" (old_val
), MEMOP_OUT (__hp(addr
))
126 : "r" (_new
), MEMOP_IN (__hp(addr
))
130 #if (CAA_BITS_PER_LONG == 64)
133 __asm__
__volatile__(
134 " csg %0,%2," MEMOP_REF(%3) "\n"
135 : "+r" (old
), MEMOP_OUT (__hp(addr
))
136 : "r" (_new
), MEMOP_IN (__hp(addr
))
142 __asm__
__volatile__(".long 0xd00d00");
148 #define uatomic_cmpxchg(addr, old, _new) \
149 (__typeof__(*(addr))) _uatomic_cmpxchg((addr), \
150 (unsigned long)(old), \
151 (unsigned long)(_new), \
158 #include <urcu/uatomic/generic.h>
160 #endif /* _URCU_UATOMIC_ARCH_S390_H */
This page took 0.03214 seconds and 4 git commands to generate.