Linux Kernel  3.7.1
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
atomic64_64.h
Go to the documentation of this file.
1 #ifndef _ASM_X86_ATOMIC64_64_H
2 #define _ASM_X86_ATOMIC64_64_H
3 
4 #include <linux/types.h>
5 #include <asm/alternative.h>
6 #include <asm/cmpxchg.h>
7 
8 /* The 64-bit atomic type */
9 
10 #define ATOMIC64_INIT(i) { (i) }
11 
19 static inline long atomic64_read(const atomic64_t *v)
20 {
21  return (*(volatile long *)&(v)->counter);
22 }
23 
31 static inline void atomic64_set(atomic64_t *v, long i)
32 {
33  v->counter = i;
34 }
35 
43 static inline void atomic64_add(long i, atomic64_t *v)
44 {
45  asm volatile(LOCK_PREFIX "addq %1,%0"
46  : "=m" (v->counter)
47  : "er" (i), "m" (v->counter));
48 }
49 
57 static inline void atomic64_sub(long i, atomic64_t *v)
58 {
59  asm volatile(LOCK_PREFIX "subq %1,%0"
60  : "=m" (v->counter)
61  : "er" (i), "m" (v->counter));
62 }
63 
73 static inline int atomic64_sub_and_test(long i, atomic64_t *v)
74 {
75  unsigned char c;
76 
77  asm volatile(LOCK_PREFIX "subq %2,%0; sete %1"
78  : "=m" (v->counter), "=qm" (c)
79  : "er" (i), "m" (v->counter) : "memory");
80  return c;
81 }
82 
89 static inline void atomic64_inc(atomic64_t *v)
90 {
91  asm volatile(LOCK_PREFIX "incq %0"
92  : "=m" (v->counter)
93  : "m" (v->counter));
94 }
95 
102 static inline void atomic64_dec(atomic64_t *v)
103 {
104  asm volatile(LOCK_PREFIX "decq %0"
105  : "=m" (v->counter)
106  : "m" (v->counter));
107 }
108 
117 static inline int atomic64_dec_and_test(atomic64_t *v)
118 {
119  unsigned char c;
120 
121  asm volatile(LOCK_PREFIX "decq %0; sete %1"
122  : "=m" (v->counter), "=qm" (c)
123  : "m" (v->counter) : "memory");
124  return c != 0;
125 }
126 
135 static inline int atomic64_inc_and_test(atomic64_t *v)
136 {
137  unsigned char c;
138 
139  asm volatile(LOCK_PREFIX "incq %0; sete %1"
140  : "=m" (v->counter), "=qm" (c)
141  : "m" (v->counter) : "memory");
142  return c != 0;
143 }
144 
154 static inline int atomic64_add_negative(long i, atomic64_t *v)
155 {
156  unsigned char c;
157 
158  asm volatile(LOCK_PREFIX "addq %2,%0; sets %1"
159  : "=m" (v->counter), "=qm" (c)
160  : "er" (i), "m" (v->counter) : "memory");
161  return c;
162 }
163 
171 static inline long atomic64_add_return(long i, atomic64_t *v)
172 {
173  return i + xadd(&v->counter, i);
174 }
175 
176 static inline long atomic64_sub_return(long i, atomic64_t *v)
177 {
178  return atomic64_add_return(-i, v);
179 }
180 
181 #define atomic64_inc_return(v) (atomic64_add_return(1, (v)))
182 #define atomic64_dec_return(v) (atomic64_sub_return(1, (v)))
183 
184 static inline long atomic64_cmpxchg(atomic64_t *v, long old, long new)
185 {
186  return cmpxchg(&v->counter, old, new);
187 }
188 
189 static inline long atomic64_xchg(atomic64_t *v, long new)
190 {
191  return xchg(&v->counter, new);
192 }
193 
203 static inline int atomic64_add_unless(atomic64_t *v, long a, long u)
204 {
205  long c, old;
206  c = atomic64_read(v);
207  for (;;) {
208  if (unlikely(c == (u)))
209  break;
210  old = atomic64_cmpxchg((v), c, c + (a));
211  if (likely(old == c))
212  break;
213  c = old;
214  }
215  return c != (u);
216 }
217 
218 #define atomic64_inc_not_zero(v) atomic64_add_unless((v), 1, 0)
219 
220 /*
221  * atomic64_dec_if_positive - decrement by 1 if old value positive
222  * @v: pointer of type atomic_t
223  *
224  * The function returns the old value of *v minus 1, even if
225  * the atomic variable, v, was not decremented.
226  */
227 static inline long atomic64_dec_if_positive(atomic64_t *v)
228 {
229  long c, old, dec;
230  c = atomic64_read(v);
231  for (;;) {
232  dec = c - 1;
233  if (unlikely(dec < 0))
234  break;
235  old = atomic64_cmpxchg((v), c, dec);
236  if (likely(old == c))
237  break;
238  c = old;
239  }
240  return dec;
241 }
242 
243 #endif /* _ASM_X86_ATOMIC64_64_H */