VServer 1.9.2 (patch-2.6.8.1-vs1.9.2.diff)
[linux-2.6.git] / include / linux / bitmap.h
1 #ifndef __LINUX_BITMAP_H
2 #define __LINUX_BITMAP_H
3
4 #ifndef __ASSEMBLY__
5
6 #include <linux/types.h>
7 #include <linux/bitops.h>
8 #include <linux/string.h>
9
10 /*
11  * bitmaps provide bit arrays that consume one or more unsigned
12  * longs.  The bitmap interface and available operations are listed
13  * here, in bitmap.h
14  *
15  * Function implementations generic to all architectures are in
16  * lib/bitmap.c.  Functions implementations that are architecture
17  * specific are in various include/asm-<arch>/bitops.h headers
18  * and other arch/<arch> specific files.
19  *
20  * See lib/bitmap.c for more details.
21  */
22
23 /*
24  * The available bitmap operations and their rough meaning in the
25  * case that the bitmap is a single unsigned long are thus:
26  *
27  * bitmap_zero(dst, nbits)                      *dst = 0UL
28  * bitmap_fill(dst, nbits)                      *dst = ~0UL
29  * bitmap_copy(dst, src, nbits)                 *dst = *src
30  * bitmap_and(dst, src1, src2, nbits)           *dst = *src1 & *src2
31  * bitmap_or(dst, src1, src2, nbits)            *dst = *src1 | *src2
32  * bitmap_xor(dst, src1, src2, nbits)           *dst = *src1 ^ *src2
33  * bitmap_andnot(dst, src1, src2, nbits)        *dst = *src1 & ~(*src2)
34  * bitmap_complement(dst, src, nbits)           *dst = ~(*src)
35  * bitmap_equal(src1, src2, nbits)              Are *src1 and *src2 equal?
36  * bitmap_intersects(src1, src2, nbits)         Do *src1 and *src2 overlap?
37  * bitmap_subset(src1, src2, nbits)             Is *src1 a subset of *src2?
38  * bitmap_empty(src, nbits)                     Are all bits zero in *src?
39  * bitmap_full(src, nbits)                      Are all bits set in *src?
40  * bitmap_weight(src, nbits)                    Hamming Weight: number set bits
41  * bitmap_shift_right(dst, src, n, nbits)       *dst = *src >> n
42  * bitmap_shift_left(dst, src, n, nbits)        *dst = *src << n
43  * bitmap_scnprintf(buf, len, src, nbits)       Print bitmap src to buf
44  * bitmap_parse(ubuf, ulen, dst, nbits)         Parse bitmap dst from buf
45  */
46
47 /*
48  * Also the following operations in asm/bitops.h apply to bitmaps.
49  *
50  * set_bit(bit, addr)                   *addr |= bit
51  * clear_bit(bit, addr)                 *addr &= ~bit
52  * change_bit(bit, addr)                *addr ^= bit
53  * test_bit(bit, addr)                  Is bit set in *addr?
54  * test_and_set_bit(bit, addr)          Set bit and return old value
55  * test_and_clear_bit(bit, addr)        Clear bit and return old value
56  * test_and_change_bit(bit, addr)       Change bit and return old value
57  * find_first_zero_bit(addr, nbits)     Position first zero bit in *addr
58  * find_first_bit(addr, nbits)          Position first set bit in *addr
59  * find_next_zero_bit(addr, nbits, bit) Position next zero bit in *addr >= bit
60  * find_next_bit(addr, nbits, bit)      Position next set bit in *addr >= bit
61  */
62
63 /*
64  * The DECLARE_BITMAP(name,bits) macro, in linux/types.h, can be used
65  * to declare an array named 'name' of just enough unsigned longs to
66  * contain all bit positions from 0 to 'bits' - 1.
67  */
68
69 /*
70  * lib/bitmap.c provides these functions:
71  */
72
73 extern int __bitmap_empty(const unsigned long *bitmap, int bits);
74 extern int __bitmap_full(const unsigned long *bitmap, int bits);
75 extern int __bitmap_equal(const unsigned long *bitmap1,
76                         const unsigned long *bitmap2, int bits);
77 extern void __bitmap_complement(unsigned long *dst, const unsigned long *src,
78                         int bits);
79 extern void __bitmap_shift_right(unsigned long *dst,
80                         const unsigned long *src, int shift, int bits);
81 extern void __bitmap_shift_left(unsigned long *dst,
82                         const unsigned long *src, int shift, int bits);
83 extern void __bitmap_and(unsigned long *dst, const unsigned long *bitmap1,
84                         const unsigned long *bitmap2, int bits);
85 extern void __bitmap_or(unsigned long *dst, const unsigned long *bitmap1,
86                         const unsigned long *bitmap2, int bits);
87 extern void __bitmap_xor(unsigned long *dst, const unsigned long *bitmap1,
88                         const unsigned long *bitmap2, int bits);
89 extern void __bitmap_andnot(unsigned long *dst, const unsigned long *bitmap1,
90                         const unsigned long *bitmap2, int bits);
91 extern int __bitmap_intersects(const unsigned long *bitmap1,
92                         const unsigned long *bitmap2, int bits);
93 extern int __bitmap_subset(const unsigned long *bitmap1,
94                         const unsigned long *bitmap2, int bits);
95 extern int __bitmap_weight(const unsigned long *bitmap, int bits);
96
97 extern int bitmap_scnprintf(char *buf, unsigned int len,
98                         const unsigned long *src, int nbits);
99 extern int bitmap_parse(const char __user *ubuf, unsigned int ulen,
100                         unsigned long *dst, int nbits);
101
102 #define BITMAP_LAST_WORD_MASK(nbits)                                    \
103 (                                                                       \
104         ((nbits) % BITS_PER_LONG) ?                                     \
105                 (1UL<<((nbits) % BITS_PER_LONG))-1 : ~0UL               \
106 )
107
108 static inline void bitmap_zero(unsigned long *dst, int nbits)
109 {
110         if (nbits <= BITS_PER_LONG)
111                 *dst = 0UL;
112         else {
113                 int len = BITS_TO_LONGS(nbits) * sizeof(unsigned long);
114                 memset(dst, 0, len);
115         }
116 }
117
118 static inline void bitmap_fill(unsigned long *dst, int nbits)
119 {
120         size_t nlongs = BITS_TO_LONGS(nbits);
121         if (nlongs > 1) {
122                 int len = (nlongs - 1) * sizeof(unsigned long);
123                 memset(dst, 0xff,  len);
124         }
125         dst[nlongs - 1] = BITMAP_LAST_WORD_MASK(nbits);
126 }
127
128 static inline void bitmap_copy(unsigned long *dst, const unsigned long *src,
129                         int nbits)
130 {
131         if (nbits <= BITS_PER_LONG)
132                 *dst = *src;
133         else {
134                 int len = BITS_TO_LONGS(nbits) * sizeof(unsigned long);
135                 memcpy(dst, src, len);
136         }
137 }
138
139 static inline void bitmap_and(unsigned long *dst, const unsigned long *src1,
140                         const unsigned long *src2, int nbits)
141 {
142         if (nbits <= BITS_PER_LONG)
143                 *dst = *src1 & *src2;
144         else
145                 __bitmap_and(dst, src1, src2, nbits);
146 }
147
148 static inline void bitmap_or(unsigned long *dst, const unsigned long *src1,
149                         const unsigned long *src2, int nbits)
150 {
151         if (nbits <= BITS_PER_LONG)
152                 *dst = *src1 | *src2;
153         else
154                 __bitmap_or(dst, src1, src2, nbits);
155 }
156
157 static inline void bitmap_xor(unsigned long *dst, const unsigned long *src1,
158                         const unsigned long *src2, int nbits)
159 {
160         if (nbits <= BITS_PER_LONG)
161                 *dst = *src1 ^ *src2;
162         else
163                 __bitmap_xor(dst, src1, src2, nbits);
164 }
165
166 static inline void bitmap_andnot(unsigned long *dst, const unsigned long *src1,
167                         const unsigned long *src2, int nbits)
168 {
169         if (nbits <= BITS_PER_LONG)
170                 *dst = *src1 & ~(*src2);
171         else
172                 __bitmap_andnot(dst, src1, src2, nbits);
173 }
174
175 static inline void bitmap_complement(unsigned long *dst, const unsigned long *src,
176                         int nbits)
177 {
178         if (nbits <= BITS_PER_LONG)
179                 *dst = ~(*src) & BITMAP_LAST_WORD_MASK(nbits);
180         else
181                 __bitmap_complement(dst, src, nbits);
182 }
183
184 static inline int bitmap_equal(const unsigned long *src1,
185                         const unsigned long *src2, int nbits)
186 {
187         if (nbits <= BITS_PER_LONG)
188                 return ! ((*src1 ^ *src2) & BITMAP_LAST_WORD_MASK(nbits));
189         else
190                 return __bitmap_equal(src1, src2, nbits);
191 }
192
193 static inline int bitmap_intersects(const unsigned long *src1,
194                         const unsigned long *src2, int nbits)
195 {
196         if (nbits <= BITS_PER_LONG)
197                 return ((*src1 & *src2) & BITMAP_LAST_WORD_MASK(nbits)) != 0;
198         else
199                 return __bitmap_intersects(src1, src2, nbits);
200 }
201
202 static inline int bitmap_subset(const unsigned long *src1,
203                         const unsigned long *src2, int nbits)
204 {
205         if (nbits <= BITS_PER_LONG)
206                 return ! ((*src1 & ~(*src2)) & BITMAP_LAST_WORD_MASK(nbits));
207         else
208                 return __bitmap_subset(src1, src2, nbits);
209 }
210
211 static inline int bitmap_empty(const unsigned long *src, int nbits)
212 {
213         if (nbits <= BITS_PER_LONG)
214                 return ! (*src & BITMAP_LAST_WORD_MASK(nbits));
215         else
216                 return __bitmap_empty(src, nbits);
217 }
218
219 static inline int bitmap_full(const unsigned long *src, int nbits)
220 {
221         if (nbits <= BITS_PER_LONG)
222                 return ! (~(*src) & BITMAP_LAST_WORD_MASK(nbits));
223         else
224                 return __bitmap_full(src, nbits);
225 }
226
227 static inline int bitmap_weight(const unsigned long *src, int nbits)
228 {
229         return __bitmap_weight(src, nbits);
230 }
231
232 static inline void bitmap_shift_right(unsigned long *dst,
233                         const unsigned long *src, int n, int nbits)
234 {
235         if (nbits <= BITS_PER_LONG)
236                 *dst = *src >> n;
237         else
238                 __bitmap_shift_right(dst, src, n, nbits);
239 }
240
241 static inline void bitmap_shift_left(unsigned long *dst,
242                         const unsigned long *src, int n, int nbits)
243 {
244         if (nbits <= BITS_PER_LONG)
245                 *dst = (*src << n) & BITMAP_LAST_WORD_MASK(nbits);
246         else
247                 __bitmap_shift_left(dst, src, n, nbits);
248 }
249
250 #endif /* __ASSEMBLY__ */
251
252 #endif /* __LINUX_BITMAP_H */