1 #ifndef _ASM_IA64_INTRINSICS_H
2 #define _ASM_IA64_INTRINSICS_H
5 * Compiler-dependent intrinsics.
7 * Copyright (C) 2002-2003 Hewlett-Packard Co
8 * David Mosberger-Tang <davidm@hpl.hp.com>
13 /* include compiler specific intrinsics */
14 #include <asm/ia64regs.h>
15 #ifdef __INTEL_COMPILER
16 # include <asm/intel_intrin.h>
18 # include <asm/gcc_intrin.h>
22 * Force an unresolved reference if someone tries to use
23 * ia64_fetch_and_add() with a bad value.
25 extern unsigned long __bad_size_for_ia64_fetch_and_add (void);
26 extern unsigned long __bad_increment_for_ia64_fetch_and_add (void);
28 #define IA64_FETCHADD(tmp,v,n,sz,sem) \
32 tmp = ia64_fetchadd4_##sem((unsigned int *) v, n); \
36 tmp = ia64_fetchadd8_##sem((unsigned long *) v, n); \
40 __bad_size_for_ia64_fetch_and_add(); \
44 #define ia64_fetchadd(i,v,sem) \
47 volatile __typeof__(*(v)) *_v = (v); \
48 /* Can't use a switch () here: gcc isn't always smart enough for that... */ \
50 IA64_FETCHADD(_tmp, _v, -16, sizeof(*(v)), sem); \
52 IA64_FETCHADD(_tmp, _v, -8, sizeof(*(v)), sem); \
54 IA64_FETCHADD(_tmp, _v, -4, sizeof(*(v)), sem); \
56 IA64_FETCHADD(_tmp, _v, -1, sizeof(*(v)), sem); \
58 IA64_FETCHADD(_tmp, _v, 1, sizeof(*(v)), sem); \
60 IA64_FETCHADD(_tmp, _v, 4, sizeof(*(v)), sem); \
62 IA64_FETCHADD(_tmp, _v, 8, sizeof(*(v)), sem); \
64 IA64_FETCHADD(_tmp, _v, 16, sizeof(*(v)), sem); \
66 _tmp = __bad_increment_for_ia64_fetch_and_add(); \
67 (__typeof__(*(v))) (_tmp); /* return old value */ \
70 #define ia64_fetch_and_add(i,v) (ia64_fetchadd(i, v, rel) + (i)) /* return new value */
73 * This function doesn't exist, so you'll get a linker error if
74 * something tries to do an invalid xchg().
76 extern void ia64_xchg_called_with_bad_pointer (void);
78 #define __xchg(x,ptr,size) \
80 unsigned long __xchg_result; \
84 __xchg_result = ia64_xchg1((__u8 *)ptr, x); \
88 __xchg_result = ia64_xchg2((__u16 *)ptr, x); \
92 __xchg_result = ia64_xchg4((__u32 *)ptr, x); \
96 __xchg_result = ia64_xchg8((__u64 *)ptr, x); \
99 ia64_xchg_called_with_bad_pointer(); \
104 #define xchg(ptr,x) \
105 ((__typeof__(*(ptr))) __xchg ((unsigned long) (x), (ptr), sizeof(*(ptr))))
108 * Atomic compare and exchange. Compare OLD with MEM, if identical,
109 * store NEW in MEM. Return the initial value in MEM. Success is
110 * indicated by comparing RETURN with OLD.
113 #define __HAVE_ARCH_CMPXCHG 1
116 * This function doesn't exist, so you'll get a linker error
117 * if something tries to do an invalid cmpxchg().
119 extern long ia64_cmpxchg_called_with_bad_pointer (void);
121 #define ia64_cmpxchg(sem,ptr,old,new,size) \
126 case 1: _o_ = (__u8 ) (long) (old); break; \
127 case 2: _o_ = (__u16) (long) (old); break; \
128 case 4: _o_ = (__u32) (long) (old); break; \
129 case 8: _o_ = (__u64) (long) (old); break; \
134 _r_ = ia64_cmpxchg1_##sem((__u8 *) ptr, new, _o_); \
138 _r_ = ia64_cmpxchg2_##sem((__u16 *) ptr, new, _o_); \
142 _r_ = ia64_cmpxchg4_##sem((__u32 *) ptr, new, _o_); \
146 _r_ = ia64_cmpxchg8_##sem((__u64 *) ptr, new, _o_); \
150 _r_ = ia64_cmpxchg_called_with_bad_pointer(); \
153 (__typeof__(old)) _r_; \
156 #define cmpxchg_acq(ptr,o,n) ia64_cmpxchg(acq, (ptr), (o), (n), sizeof(*(ptr)))
157 #define cmpxchg_rel(ptr,o,n) ia64_cmpxchg(rel, (ptr), (o), (n), sizeof(*(ptr)))
159 /* for compatibility with other platforms: */
160 #define cmpxchg(ptr,o,n) cmpxchg_acq(ptr,o,n)
162 #ifdef CONFIG_IA64_DEBUG_CMPXCHG
163 # define CMPXCHG_BUGCHECK_DECL int _cmpxchg_bugcheck_count = 128;
164 # define CMPXCHG_BUGCHECK(v) \
166 if (_cmpxchg_bugcheck_count-- <= 0) { \
168 extern int printk(const char *fmt, ...); \
169 ip = (void *) ia64_getreg(_IA64_REG_IP); \
170 printk("CMPXCHG_BUGCHECK: stuck at %p on word %p\n", ip, (v)); \
174 #else /* !CONFIG_IA64_DEBUG_CMPXCHG */
175 # define CMPXCHG_BUGCHECK_DECL
176 # define CMPXCHG_BUGCHECK(v)
177 #endif /* !CONFIG_IA64_DEBUG_CMPXCHG */
180 #endif /* _ASM_IA64_INTRINSICS_H */