2 * Copyright (c) 2008, 2009, 2010, 2011 Nicira, Inc.
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at:
8 * http://www.apache.org/licenses/LICENSE-2.0
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
24 #define BITMAP_ULONG_BITS (sizeof(unsigned long) * CHAR_BIT)
26 static inline unsigned long *
27 bitmap_unit__(const unsigned long *bitmap, size_t offset)
29 return (unsigned long *) &bitmap[offset / BITMAP_ULONG_BITS];
32 static inline unsigned long
33 bitmap_bit__(size_t offset)
35 return 1UL << (offset % BITMAP_ULONG_BITS);
39 bitmap_n_longs(size_t n_bits)
41 return DIV_ROUND_UP(n_bits, BITMAP_ULONG_BITS);
45 bitmap_n_bytes(size_t n_bits)
47 return bitmap_n_longs(n_bits) * sizeof(unsigned long int);
50 static inline unsigned long *
51 bitmap_allocate(size_t n_bits)
53 return xzalloc(bitmap_n_bytes(n_bits));
56 unsigned long *bitmap_allocate1(size_t n_bits);
58 static inline unsigned long *
59 bitmap_clone(const unsigned long *bitmap, size_t n_bits)
61 return xmemdup(bitmap, bitmap_n_bytes(n_bits));
65 bitmap_free(unsigned long *bitmap)
71 bitmap_is_set(const unsigned long *bitmap, size_t offset)
73 return (*bitmap_unit__(bitmap, offset) & bitmap_bit__(offset)) != 0;
77 bitmap_set1(unsigned long *bitmap, size_t offset)
79 *bitmap_unit__(bitmap, offset) |= bitmap_bit__(offset);
83 bitmap_set0(unsigned long *bitmap, size_t offset)
85 *bitmap_unit__(bitmap, offset) &= ~bitmap_bit__(offset);
89 bitmap_set(unsigned long *bitmap, size_t offset, bool value)
92 bitmap_set1(bitmap, offset);
94 bitmap_set0(bitmap, offset);
98 void bitmap_set_multiple(unsigned long *, size_t start, size_t count,
100 bool bitmap_equal(const unsigned long *, const unsigned long *, size_t n);
101 size_t bitmap_scan(const unsigned long int *, size_t start, size_t end);
103 #define BITMAP_FOR_EACH_1(IDX, SIZE, BITMAP) \
104 for ((IDX) = bitmap_scan(BITMAP, 0, SIZE); (IDX) < (SIZE); \
105 (IDX) = bitmap_scan(BITMAP, (IDX) + 1, SIZE))
107 #endif /* bitmap.h */