1 #ifndef _ALPHA_BITOPS_H
2 #define _ALPHA_BITOPS_H
4 #include <linux/config.h>
5 #include <asm/compiler.h>
8 * Copyright 1994, Linus Torvalds.
12 * These have to be done with inline assembly: that way the bit-setting
13 * is guaranteed to be atomic. All bit operations return 0 if the bit
14 * was cleared before the operation and != 0 if it was not.
16 * To get proper branch prediction for the main line, we must branch
17 * forward to code at the end of this object's .text section, then
18 * branch back to restart the operation.
20 * bit 0 is the LSB of addr; bit 64 is the LSB of (addr+1).
24 set_bit(unsigned long nr, volatile void * addr)
27 int *m = ((int *) addr) + (nr >> 5);
37 :"=&r" (temp), "=m" (*m)
38 :"Ir" (1UL << (nr & 31)), "m" (*m));
42 * WARNING: non atomic version.
45 __set_bit(unsigned long nr, volatile void * addr)
47 int *m = ((int *) addr) + (nr >> 5);
52 #define smp_mb__before_clear_bit() smp_mb()
53 #define smp_mb__after_clear_bit() smp_mb()
56 clear_bit(unsigned long nr, volatile void * addr)
59 int *m = ((int *) addr) + (nr >> 5);
69 :"=&r" (temp), "=m" (*m)
70 :"Ir" (1UL << (nr & 31)), "m" (*m));
74 * WARNING: non atomic version.
76 static __inline__ void
77 __clear_bit(unsigned long nr, volatile void * addr)
79 int *m = ((int *) addr) + (nr >> 5);
81 *m &= ~(1 << (nr & 31));
85 change_bit(unsigned long nr, volatile void * addr)
88 int *m = ((int *) addr) + (nr >> 5);
98 :"=&r" (temp), "=m" (*m)
99 :"Ir" (1UL << (nr & 31)), "m" (*m));
103 * WARNING: non atomic version.
105 static __inline__ void
106 __change_bit(unsigned long nr, volatile void * addr)
108 int *m = ((int *) addr) + (nr >> 5);
110 *m ^= 1 << (nr & 31);
114 test_and_set_bit(unsigned long nr, volatile void *addr)
116 unsigned long oldbit;
118 int *m = ((int *) addr) + (nr >> 5);
120 __asm__ __volatile__(
134 :"=&r" (temp), "=m" (*m), "=&r" (oldbit)
135 :"Ir" (1UL << (nr & 31)), "m" (*m) : "memory");
141 * WARNING: non atomic version.
144 __test_and_set_bit(unsigned long nr, volatile void * addr)
146 unsigned long mask = 1 << (nr & 0x1f);
147 int *m = ((int *) addr) + (nr >> 5);
151 return (old & mask) != 0;
155 test_and_clear_bit(unsigned long nr, volatile void * addr)
157 unsigned long oldbit;
159 int *m = ((int *) addr) + (nr >> 5);
161 __asm__ __volatile__(
175 :"=&r" (temp), "=m" (*m), "=&r" (oldbit)
176 :"Ir" (1UL << (nr & 31)), "m" (*m) : "memory");
182 * WARNING: non atomic version.
185 __test_and_clear_bit(unsigned long nr, volatile void * addr)
187 unsigned long mask = 1 << (nr & 0x1f);
188 int *m = ((int *) addr) + (nr >> 5);
192 return (old & mask) != 0;
196 test_and_change_bit(unsigned long nr, volatile void * addr)
198 unsigned long oldbit;
200 int *m = ((int *) addr) + (nr >> 5);
202 __asm__ __volatile__(
214 :"=&r" (temp), "=m" (*m), "=&r" (oldbit)
215 :"Ir" (1UL << (nr & 31)), "m" (*m) : "memory");
221 * WARNING: non atomic version.
223 static __inline__ int
224 __test_and_change_bit(unsigned long nr, volatile void * addr)
226 unsigned long mask = 1 << (nr & 0x1f);
227 int *m = ((int *) addr) + (nr >> 5);
231 return (old & mask) != 0;
235 test_bit(int nr, const volatile void * addr)
237 return (1UL & (((const int *) addr)[nr >> 5] >> (nr & 31))) != 0UL;
241 * ffz = Find First Zero in word. Undefined if no zero exists,
242 * so code should check against ~0UL first..
244 * Do a binary search on the bits. Due to the nature of large
245 * constants on the alpha, it is worthwhile to split the search.
247 static inline unsigned long ffz_b(unsigned long x)
249 unsigned long sum, x1, x2, x4;
251 x = ~x & -~x; /* set first 0 bit, clear others */
256 sum += (x4 != 0) * 4;
262 static inline unsigned long ffz(unsigned long word)
264 #if defined(CONFIG_ALPHA_EV6) && defined(CONFIG_ALPHA_EV67)
265 /* Whee. EV67 can calculate it directly. */
266 return __kernel_cttz(~word);
268 unsigned long bits, qofs, bofs;
270 bits = __kernel_cmpbge(word, ~0UL);
272 bits = __kernel_extbl(word, qofs);
275 return qofs*8 + bofs;
280 * __ffs = Find First set bit in word. Undefined if no set bit exists.
282 static inline unsigned long __ffs(unsigned long word)
284 #if defined(CONFIG_ALPHA_EV6) && defined(CONFIG_ALPHA_EV67)
285 /* Whee. EV67 can calculate it directly. */
286 return __kernel_cttz(word);
288 unsigned long bits, qofs, bofs;
290 bits = __kernel_cmpbge(0, word);
292 bits = __kernel_extbl(word, qofs);
295 return qofs*8 + bofs;
302 * ffs: find first bit set. This is defined the same way as
303 * the libc and compiler builtin ffs routines, therefore
304 * differs in spirit from the above __ffs.
307 static inline int ffs(int word)
309 int result = __ffs(word) + 1;
310 return word ? result : 0;
314 * fls: find last bit set.
316 #if defined(CONFIG_ALPHA_EV6) && defined(CONFIG_ALPHA_EV67)
317 static inline int fls(int word)
319 return 64 - __kernel_ctlz(word & 0xffffffff);
322 #include <asm-generic/bitops/fls.h>
324 #include <asm-generic/bitops/fls64.h>
326 /* Compute powers of two for the given integer. */
327 static inline long floor_log2(unsigned long word)
329 #if defined(CONFIG_ALPHA_EV6) && defined(CONFIG_ALPHA_EV67)
330 return 63 - __kernel_ctlz(word);
333 for (bit = -1; word ; bit++)
339 static inline long ceil_log2(unsigned long word)
341 long bit = floor_log2(word);
342 return bit + (word > (1UL << bit));
346 * hweightN: returns the hamming weight (i.e. the number
347 * of bits set) of a N-bit word
350 #if defined(CONFIG_ALPHA_EV6) && defined(CONFIG_ALPHA_EV67)
351 /* Whee. EV67 can calculate it directly. */
352 static inline unsigned long hweight64(unsigned long w)
354 return __kernel_ctpop(w);
357 #define hweight32(x) (unsigned int) hweight64((x) & 0xfffffffful)
358 #define hweight16(x) (unsigned int) hweight64((x) & 0xfffful)
359 #define hweight8(x) (unsigned int) hweight64((x) & 0xfful)
361 #include <asm-generic/bitops/hweight.h>
364 #endif /* __KERNEL__ */
366 #include <asm-generic/bitops/find.h>
371 * Every architecture must define this function. It's the fastest
372 * way of searching a 140-bit bitmap where the first 100 bits are
373 * unlikely to be set. It's guaranteed that at least one of the 140
376 static inline unsigned long
377 sched_find_first_bit(unsigned long b[3])
379 unsigned long b0 = b[0], b1 = b[1], b2 = b[2];
382 ofs = (b1 ? 64 : 128);
384 ofs = (b0 ? 0 : ofs);
387 return __ffs(b0) + ofs;
390 #include <asm-generic/bitops/ext2-non-atomic.h>
392 #define ext2_set_bit_atomic(l,n,a) test_and_set_bit(n,a)
393 #define ext2_clear_bit_atomic(l,n,a) test_and_clear_bit(n,a)
395 #include <asm-generic/bitops/minix.h>
397 #endif /* __KERNEL__ */
399 #endif /* _ALPHA_BITOPS_H */