2 * Hierarchical Bitmap Data Type
4 * Copyright Red Hat, Inc., 2012
6 * Author: Paolo Bonzini <pbonzini@redhat.com>
8 * This work is licensed under the terms of the GNU GPL, version 2 or
9 * later. See the COPYING file in the top-level directory.
19 #include "host-utils.h"
21 typedef struct HBitmap HBitmap
;
22 typedef struct HBitmapIter HBitmapIter
;
24 #define BITS_PER_LEVEL (BITS_PER_LONG == 32 ? 5 : 6)
26 /* For 32-bit, the largest that fits in a 4 GiB address space.
27 * For 64-bit, the number of sectors in 1 PiB. Good luck, in
30 #define HBITMAP_LOG_MAX_SIZE (BITS_PER_LONG == 32 ? 34 : 41)
32 /* We need to place a sentinel in level 0 to speed up iteration. Thus,
33 * we do this instead of HBITMAP_LOG_MAX_SIZE / BITS_PER_LEVEL. The
34 * difference is that it allocates an extra level when HBITMAP_LOG_MAX_SIZE
35 * is an exact multiple of BITS_PER_LEVEL.
37 #define HBITMAP_LEVELS ((HBITMAP_LOG_MAX_SIZE / BITS_PER_LEVEL) + 1)
42 /* Copied from hb for access in the inline functions (hb is opaque). */
45 /* Entry offset into the last-level array of longs. */
48 /* The currently-active path in the tree. Each item of cur[i] stores
49 * the bits (i.e. the subtrees) yet to be processed under that node.
51 unsigned long cur
[HBITMAP_LEVELS
];
56 * @size: Number of bits in the bitmap.
57 * @granularity: Granularity of the bitmap. Aligned groups of 2^@granularity
58 * bits will be represented by a single bit. Each operation on a
59 * range of bits first rounds the bits to determine which group they land
60 * in, and then affect the entire set; iteration will only visit the first
63 * Allocate a new HBitmap.
65 HBitmap
*hbitmap_alloc(uint64_t size
, int granularity
);
69 * @hb: HBitmap to operate on.
71 * Return whether the bitmap is empty.
73 bool hbitmap_empty(const HBitmap
*hb
);
76 * hbitmap_granularity:
77 * @hb: HBitmap to operate on.
79 * Return the granularity of the HBitmap.
81 int hbitmap_granularity(const HBitmap
*hb
);
85 * @hb: HBitmap to operate on.
87 * Return the number of bits set in the HBitmap.
89 uint64_t hbitmap_count(const HBitmap
*hb
);
93 * @hb: HBitmap to operate on.
94 * @start: First bit to set (0-based).
95 * @count: Number of bits to set.
97 * Set a consecutive range of bits in an HBitmap.
99 void hbitmap_set(HBitmap
*hb
, uint64_t start
, uint64_t count
);
103 * @hb: HBitmap to operate on.
104 * @start: First bit to reset (0-based).
105 * @count: Number of bits to reset.
107 * Reset a consecutive range of bits in an HBitmap.
109 void hbitmap_reset(HBitmap
*hb
, uint64_t start
, uint64_t count
);
113 * @hb: HBitmap to operate on.
114 * @item: Bit to query (0-based).
116 * Return whether the @item-th bit in an HBitmap is set.
118 bool hbitmap_get(const HBitmap
*hb
, uint64_t item
);
122 * @hb: HBitmap to operate on.
124 * Free an HBitmap and all of its associated memory.
126 void hbitmap_free(HBitmap
*hb
);
130 * @hbi: HBitmapIter to initialize.
131 * @hb: HBitmap to iterate on.
132 * @first: First bit to visit (0-based, must be strictly less than the
133 * size of the bitmap).
135 * Set up @hbi to iterate on the HBitmap @hb. hbitmap_iter_next will return
136 * the lowest-numbered bit that is set in @hb, starting at @first.
138 * Concurrent setting of bits is acceptable, and will at worst cause the
139 * iteration to miss some of those bits. Resetting bits before the current
140 * position of the iterator is also okay. However, concurrent resetting of
141 * bits can lead to unexpected behavior if the iterator has not yet reached
144 void hbitmap_iter_init(HBitmapIter
*hbi
, const HBitmap
*hb
, uint64_t first
);
146 /* hbitmap_iter_skip_words:
147 * @hbi: HBitmapIter to operate on.
149 * Internal function used by hbitmap_iter_next and hbitmap_iter_next_word.
151 unsigned long hbitmap_iter_skip_words(HBitmapIter
*hbi
);
155 * @hbi: HBitmapIter to operate on.
157 * Return the next bit that is set in @hbi's associated HBitmap,
158 * or -1 if all remaining bits are zero.
160 static inline int64_t hbitmap_iter_next(HBitmapIter
*hbi
)
162 unsigned long cur
= hbi
->cur
[HBITMAP_LEVELS
- 1];
166 cur
= hbitmap_iter_skip_words(hbi
);
172 /* The next call will resume work from the next bit. */
173 hbi
->cur
[HBITMAP_LEVELS
- 1] = cur
& (cur
- 1);
174 item
= ((uint64_t)hbi
->pos
<< BITS_PER_LEVEL
) + ctzl(cur
);
176 return item
<< hbi
->granularity
;
180 * hbitmap_iter_next_word:
181 * @hbi: HBitmapIter to operate on.
182 * @p_cur: Location where to store the next non-zero word.
184 * Return the index of the next nonzero word that is set in @hbi's
185 * associated HBitmap, and set *p_cur to the content of that word
186 * (bits before the index that was passed to hbitmap_iter_init are
187 * trimmed on the first call). Return -1, and set *p_cur to zero,
188 * if all remaining words are zero.
190 static inline size_t hbitmap_iter_next_word(HBitmapIter
*hbi
, unsigned long *p_cur
)
192 unsigned long cur
= hbi
->cur
[HBITMAP_LEVELS
- 1];
195 cur
= hbitmap_iter_skip_words(hbi
);
202 /* The next call will resume work from the next word. */
203 hbi
->cur
[HBITMAP_LEVELS
- 1] = 0;