x86: generic versions of find_first_(zero_)bit, convert i386
[linux-2.6-block.git] / include / asm-x86 / bitops_32.h
1 #ifndef _I386_BITOPS_H
2 #define _I386_BITOPS_H
3
4 /*
5  * Copyright 1992, Linus Torvalds.
6  */
7
8 #ifndef CONFIG_GENERIC_FIND_FIRST_BIT
9 /**
10  * find_first_zero_bit - find the first zero bit in a memory region
11  * @addr: The address to start the search at
12  * @size: The maximum size to search
13  *
14  * Returns the bit number of the first zero bit, not the number of the byte
15  * containing a bit.
16  */
17 static inline int find_first_zero_bit(const unsigned long *addr, unsigned size)
18 {
19         int d0, d1, d2;
20         int res;
21
22         if (!size)
23                 return 0;
24         /* This looks at memory.
25          * Mark it volatile to tell gcc not to move it around
26          */
27         asm volatile("movl $-1,%%eax\n\t"
28                      "xorl %%edx,%%edx\n\t"
29                      "repe; scasl\n\t"
30                      "je 1f\n\t"
31                      "xorl -4(%%edi),%%eax\n\t"
32                      "subl $4,%%edi\n\t"
33                      "bsfl %%eax,%%edx\n"
34                      "1:\tsubl %%ebx,%%edi\n\t"
35                      "shll $3,%%edi\n\t"
36                      "addl %%edi,%%edx"
37                      : "=d" (res), "=&c" (d0), "=&D" (d1), "=&a" (d2)
38                      : "1" ((size + 31) >> 5), "2" (addr),
39                        "b" (addr) : "memory");
40         return res;
41 }
42
43 /**
44  * find_first_bit - find the first set bit in a memory region
45  * @addr: The address to start the search at
46  * @size: The maximum size to search
47  *
48  * Returns the bit number of the first set bit, not the number of the byte
49  * containing a bit.
50  */
51 static inline unsigned find_first_bit(const unsigned long *addr, unsigned size)
52 {
53         unsigned x = 0;
54
55         while (x < size) {
56                 unsigned long val = *addr++;
57                 if (val)
58                         return __ffs(val) + x;
59                 x += sizeof(*addr) << 3;
60         }
61         return x;
62 }
63 #endif
64
65 #ifdef __KERNEL__
66
67 #include <asm-generic/bitops/sched.h>
68
69 #include <asm-generic/bitops/hweight.h>
70
71 #endif /* __KERNEL__ */
72
73 #include <asm-generic/bitops/fls64.h>
74
75 #ifdef __KERNEL__
76
77 #include <asm-generic/bitops/ext2-non-atomic.h>
78
79 #define ext2_set_bit_atomic(lock, nr, addr)                     \
80         test_and_set_bit((nr), (unsigned long *)(addr))
81 #define ext2_clear_bit_atomic(lock, nr, addr)                   \
82         test_and_clear_bit((nr), (unsigned long *)(addr))
83
84 #include <asm-generic/bitops/minix.h>
85
86 #endif /* __KERNEL__ */
87
88 #endif /* _I386_BITOPS_H */