1 #ifndef _X86_64_BITOPS_H
2 #define _X86_64_BITOPS_H
5 * Copyright 1992, Linus Torvalds.
8 extern long find_first_zero_bit(const unsigned long *addr, unsigned long size);
9 extern long find_next_zero_bit(const unsigned long *addr, long size, long offset);
10 extern long find_first_bit(const unsigned long *addr, unsigned long size);
11 extern long find_next_bit(const unsigned long *addr, long size, long offset);
13 /* return index of first bet set in val or max when no bit is set */
14 static inline long __scanbit(unsigned long val, unsigned long max)
16 asm("bsfq %1,%0 ; cmovz %2,%0" : "=&r" (val) : "r" (val), "r" (max));
20 #define find_first_bit(addr,size) \
21 ((__builtin_constant_p(size) && (size) <= BITS_PER_LONG ? \
22 (__scanbit(*(unsigned long *)addr,(size))) : \
23 find_first_bit(addr,size)))
25 #define find_next_bit(addr,size,off) \
26 ((__builtin_constant_p(size) && (size) <= BITS_PER_LONG ? \
27 ((off) + (__scanbit((*(unsigned long *)addr) >> (off),(size)-(off)))) : \
28 find_next_bit(addr,size,off)))
30 #define find_first_zero_bit(addr,size) \
31 ((__builtin_constant_p(size) && (size) <= BITS_PER_LONG ? \
32 (__scanbit(~*(unsigned long *)addr,(size))) : \
33 find_first_zero_bit(addr,size)))
35 #define find_next_zero_bit(addr,size,off) \
36 ((__builtin_constant_p(size) && (size) <= BITS_PER_LONG ? \
37 ((off)+(__scanbit(~(((*(unsigned long *)addr)) >> (off)),(size)-(off)))) : \
38 find_next_zero_bit(addr,size,off)))
40 static inline void set_bit_string(unsigned long *bitmap, unsigned long i,
43 unsigned long end = i + len;
51 * ffz - find first zero in word.
52 * @word: The word to search
54 * Undefined if no zero exists, so code should check against ~0UL first.
56 static inline unsigned long ffz(unsigned long word)
65 * __ffs - find first bit in word.
66 * @word: The word to search
68 * Undefined if no bit exists, so code should check against 0 first.
70 static inline unsigned long __ffs(unsigned long word)
79 * __fls: find last bit set.
80 * @word: The word to search
82 * Undefined if no zero exists, so code should check against ~0UL first.
84 static inline unsigned long __fls(unsigned long word)
94 #include <asm-generic/bitops/sched.h>
97 * ffs - find first bit set
98 * @x: the word to search
100 * This is defined the same way as
101 * the libc and compiler builtin ffs routines, therefore
102 * differs in spirit from the above ffz (man ffs).
104 static inline int ffs(int x)
108 __asm__("bsfl %1,%0\n\t"
110 : "=r" (r) : "rm" (x), "r" (-1));
115 * fls64 - find last bit set in 64 bit word
116 * @x: the word to search
118 * This is defined the same way as fls.
120 static inline int fls64(__u64 x)
128 * fls - find last bit set
129 * @x: the word to search
131 * This is defined the same way as ffs.
133 static inline int fls(int x)
137 __asm__("bsrl %1,%0\n\t"
139 : "=&r" (r) : "rm" (x), "rm" (-1));
143 #define ARCH_HAS_FAST_MULTIPLIER 1
145 #include <asm-generic/bitops/hweight.h>
147 #endif /* __KERNEL__ */
151 #include <asm-generic/bitops/ext2-non-atomic.h>
153 #define ext2_set_bit_atomic(lock,nr,addr) \
154 test_and_set_bit((nr),(unsigned long*)addr)
155 #define ext2_clear_bit_atomic(lock,nr,addr) \
156 test_and_clear_bit((nr),(unsigned long*)addr)
158 #include <asm-generic/bitops/minix.h>
160 #endif /* __KERNEL__ */
162 #endif /* _X86_64_BITOPS_H */