1 #ifndef _ALPHA_BITOPS_H
2 #define _ALPHA_BITOPS_H
4 #include <asm/compiler.h>
7 * Copyright 1994, Linus Torvalds.
11 * These have to be done with inline assembly: that way the bit-setting
12 * is guaranteed to be atomic. All bit operations return 0 if the bit
13 * was cleared before the operation and != 0 if it was not.
15 * To get proper branch prediction for the main line, we must branch
16 * forward to code at the end of this object's .text section, then
17 * branch back to restart the operation.
19 * bit 0 is the LSB of addr; bit 64 is the LSB of (addr+1).
23 set_bit(unsigned long nr
, volatile void * addr
)
26 int *m
= ((int *) addr
) + (nr
>> 5);
36 :"=&r" (temp
), "=m" (*m
)
37 :"Ir" (1UL << (nr
& 31)), "m" (*m
));
41 * WARNING: non atomic version.
44 __set_bit(unsigned long nr
, volatile void * addr
)
46 int *m
= ((int *) addr
) + (nr
>> 5);
51 #define smp_mb__before_clear_bit() smp_mb()
52 #define smp_mb__after_clear_bit() smp_mb()
55 clear_bit(unsigned long nr
, volatile void * addr
)
58 int *m
= ((int *) addr
) + (nr
>> 5);
68 :"=&r" (temp
), "=m" (*m
)
69 :"Ir" (1UL << (nr
& 31)), "m" (*m
));
73 * WARNING: non atomic version.
75 static __inline__
void
76 __clear_bit(unsigned long nr
, volatile void * addr
)
78 int *m
= ((int *) addr
) + (nr
>> 5);
80 *m
&= ~(1 << (nr
& 31));
84 change_bit(unsigned long nr
, volatile void * addr
)
87 int *m
= ((int *) addr
) + (nr
>> 5);
97 :"=&r" (temp
), "=m" (*m
)
98 :"Ir" (1UL << (nr
& 31)), "m" (*m
));
102 * WARNING: non atomic version.
104 static __inline__
void
105 __change_bit(unsigned long nr
, volatile void * addr
)
107 int *m
= ((int *) addr
) + (nr
>> 5);
109 *m
^= 1 << (nr
& 31);
113 test_and_set_bit(unsigned long nr
, volatile void *addr
)
115 unsigned long oldbit
;
117 int *m
= ((int *) addr
) + (nr
>> 5);
119 __asm__
__volatile__(
133 :"=&r" (temp
), "=m" (*m
), "=&r" (oldbit
)
134 :"Ir" (1UL << (nr
& 31)), "m" (*m
) : "memory");
140 * WARNING: non atomic version.
143 __test_and_set_bit(unsigned long nr
, volatile void * addr
)
145 unsigned long mask
= 1 << (nr
& 0x1f);
146 int *m
= ((int *) addr
) + (nr
>> 5);
150 return (old
& mask
) != 0;
154 test_and_clear_bit(unsigned long nr
, volatile void * addr
)
156 unsigned long oldbit
;
158 int *m
= ((int *) addr
) + (nr
>> 5);
160 __asm__
__volatile__(
174 :"=&r" (temp
), "=m" (*m
), "=&r" (oldbit
)
175 :"Ir" (1UL << (nr
& 31)), "m" (*m
) : "memory");
181 * WARNING: non atomic version.
184 __test_and_clear_bit(unsigned long nr
, volatile void * addr
)
186 unsigned long mask
= 1 << (nr
& 0x1f);
187 int *m
= ((int *) addr
) + (nr
>> 5);
191 return (old
& mask
) != 0;
195 test_and_change_bit(unsigned long nr
, volatile void * addr
)
197 unsigned long oldbit
;
199 int *m
= ((int *) addr
) + (nr
>> 5);
201 __asm__
__volatile__(
213 :"=&r" (temp
), "=m" (*m
), "=&r" (oldbit
)
214 :"Ir" (1UL << (nr
& 31)), "m" (*m
) : "memory");
220 * WARNING: non atomic version.
222 static __inline__
int
223 __test_and_change_bit(unsigned long nr
, volatile void * addr
)
225 unsigned long mask
= 1 << (nr
& 0x1f);
226 int *m
= ((int *) addr
) + (nr
>> 5);
230 return (old
& mask
) != 0;
234 test_bit(int nr
, const volatile void * addr
)
236 return (1UL & (((const int *) addr
)[nr
>> 5] >> (nr
& 31))) != 0UL;
240 * ffz = Find First Zero in word. Undefined if no zero exists,
241 * so code should check against ~0UL first..
243 * Do a binary search on the bits. Due to the nature of large
244 * constants on the alpha, it is worthwhile to split the search.
246 static inline unsigned long ffz_b(unsigned long x
)
248 unsigned long sum
, x1
, x2
, x4
;
250 x
= ~x
& -~x
; /* set first 0 bit, clear others */
255 sum
+= (x4
!= 0) * 4;
261 static inline unsigned long ffz(unsigned long word
)
263 #if defined(CONFIG_ALPHA_EV6) && defined(CONFIG_ALPHA_EV67)
264 /* Whee. EV67 can calculate it directly. */
265 return __kernel_cttz(~word
);
267 unsigned long bits
, qofs
, bofs
;
269 bits
= __kernel_cmpbge(word
, ~0UL);
271 bits
= __kernel_extbl(word
, qofs
);
274 return qofs
*8 + bofs
;
279 * __ffs = Find First set bit in word. Undefined if no set bit exists.
281 static inline unsigned long __ffs(unsigned long word
)
283 #if defined(CONFIG_ALPHA_EV6) && defined(CONFIG_ALPHA_EV67)
284 /* Whee. EV67 can calculate it directly. */
285 return __kernel_cttz(word
);
287 unsigned long bits
, qofs
, bofs
;
289 bits
= __kernel_cmpbge(0, word
);
291 bits
= __kernel_extbl(word
, qofs
);
294 return qofs
*8 + bofs
;
301 * ffs: find first bit set. This is defined the same way as
302 * the libc and compiler builtin ffs routines, therefore
303 * differs in spirit from the above __ffs.
306 static inline int ffs(int word
)
308 int result
= __ffs(word
) + 1;
309 return word
? result
: 0;
313 * fls: find last bit set.
315 #if defined(CONFIG_ALPHA_EV6) && defined(CONFIG_ALPHA_EV67)
316 static inline int fls(int word
)
318 return 64 - __kernel_ctlz(word
& 0xffffffff);
321 #include <asm-generic/bitops/fls.h>
323 #include <asm-generic/bitops/fls64.h>
325 /* Compute powers of two for the given integer. */
326 static inline long floor_log2(unsigned long word
)
328 #if defined(CONFIG_ALPHA_EV6) && defined(CONFIG_ALPHA_EV67)
329 return 63 - __kernel_ctlz(word
);
332 for (bit
= -1; word
; bit
++)
338 static inline long ceil_log2(unsigned long word
)
340 long bit
= floor_log2(word
);
341 return bit
+ (word
> (1UL << bit
));
345 * hweightN: returns the hamming weight (i.e. the number
346 * of bits set) of a N-bit word
349 #if defined(CONFIG_ALPHA_EV6) && defined(CONFIG_ALPHA_EV67)
350 /* Whee. EV67 can calculate it directly. */
351 static inline unsigned long hweight64(unsigned long w
)
353 return __kernel_ctpop(w
);
356 #define hweight32(x) (unsigned int) hweight64((x) & 0xfffffffful)
357 #define hweight16(x) (unsigned int) hweight64((x) & 0xfffful)
358 #define hweight8(x) (unsigned int) hweight64((x) & 0xfful)
360 #include <asm-generic/bitops/hweight.h>
363 #endif /* __KERNEL__ */
365 #include <asm-generic/bitops/find.h>
370 * Every architecture must define this function. It's the fastest
371 * way of searching a 140-bit bitmap where the first 100 bits are
372 * unlikely to be set. It's guaranteed that at least one of the 140
375 static inline unsigned long
376 sched_find_first_bit(unsigned long b
[3])
378 unsigned long b0
= b
[0], b1
= b
[1], b2
= b
[2];
381 ofs
= (b1
? 64 : 128);
383 ofs
= (b0
? 0 : ofs
);
386 return __ffs(b0
) + ofs
;
389 #include <asm-generic/bitops/ext2-non-atomic.h>
391 #define ext2_set_bit_atomic(l,n,a) test_and_set_bit(n,a)
392 #define ext2_clear_bit_atomic(l,n,a) test_and_clear_bit(n,a)
394 #include <asm-generic/bitops/minix.h>
396 #endif /* __KERNEL__ */
398 #endif /* _ALPHA_BITOPS_H */