Added util.h, removed offset.h
[libfirm] / ir / adt / bitset.h
1 /**
2  * @file bitset.h
3  * @date 15.10.2004
4  * @author Sebastian Hack
5  * @brief A bitset implementation.
6  */
7
8 #ifndef __FIRM_BITSET_H
9 #define __FIRM_BITSET_H
10
11 #include <stdlib.h>
12 #include <stdio.h>
13 #include <assert.h>
14 #include <string.h>
15
16 #include "firm_config.h"
17 #include "bitfiddle.h"
18
19 typedef unsigned int bitset_pos_t;
20
21 #include "bitset_std.h"
22
23 /*
24 #if defined(__GNUC__) && defined(__i386__)
25 #include "bitset_ia32.h"
26 #endif
27 */
28
29 typedef struct _bitset_t {
30         bitset_pos_t units;
31   bitset_pos_t size;
32         bitset_unit_t *data;
33 } bitset_t;
34
35 #define BS_UNIT_SIZE sizeof(bitset_unit_t)
36 #define BS_UNIT_SIZE_BITS (BS_UNIT_SIZE * 8)
37 #define BS_UNIT_MASK (BS_UNIT_SIZE_BITS - 1)
38
39 /**
40  * Initialize a bitset.
41  * This functions should not be called.
42  *
43  * Note that this function needs three macros which must be provided by the
44  * bitfield implementor:
45  * - _bitset_overall_size(size) The overall size that must be
46  *   allocated for the bitfield in bytes.
47  * - _bitset_units(size) The number of units that will be
48  *   present in the bitfield for a given highest bit.
49  * - _bitset_data_ptr(data, size) This produces as pointer to the
50  *   first unit in the allocated memory area. The main reason for this
51  *   macro is, that some bitset implementors want control over memory
52  *   alignment.
53  *
54  * @param area A pointer to memory reserved for the bitset.
55  * @param size The size of the bitset in bits.
56  * @return A pointer to the initialized bitset.
57  */
58 static INLINE bitset_t *_bitset_prepare(void *area, bitset_pos_t size)
59 {
60         bitset_t *ptr = area;
61         memset(area, 0, _bitset_overall_size(sizeof(bitset_t), size));
62         ptr->units = _bitset_units(size);
63   ptr->size = size;
64         ptr->data = _bitset_data_ptr(area, sizeof(bitset_t), size);
65         return ptr;
66 }
67
68 /**
69  * Mask out all bits, which are only there, because the number
70  * of bits in the set didn't match a unit size boundary.
71  * @param bs The bitset.
72  * @return The masked bitset.
73  */
74 static INLINE bitset_t *_bitset_mask_highest(bitset_t *bs)
75 {
76   bs->data[bs->units - 1] &= (bs->size & BS_UNIT_MASK) - 1;
77   return bs;
78 }
79
80 /**
81  * Get the capacity of the bitset in bits.
82  * @param bs The bitset.
83  * @return The capacity in bits of the bitset.
84  */
85 #define bitset_capacity(bs) ((bs)->units * BS_UNIT_SIZE_BITS)
86
87 /**
88  * Get the size of the bitset in bits.
89  * @note Note the difference between capacity and size.
90  * @param bs The bitset.
91  * @return The highest bit which can be set or cleared plus 1.
92  */
93 #define bistet_size(bs)  ((bs)->size)
94
95 /**
96  * Allocate a bitset on an obstack.
97  * @param obst The obstack.
98  * @param size The greatest bit that shall be stored in the set.
99  * @return A pointer to an empty initialized bitset.
100  */
101 #define bitset_obstack_alloc(obst,size) \
102   _bitset_prepare(obstack_alloc(obst, _bitset_overall_size(sizeof(bitset_t), size)), size)
103
104 /**
105  * Allocate a bitset via malloc.
106  * @param size The greatest bit that shall be stored in the set.
107  * @return A pointer to an empty initialized bitset.
108  */
109 #define bitset_malloc(size) \
110         _bitset_prepare(malloc(_bitset_overall_size(sizeof(bitset_t), size)), size)
111
112 /**
113  * Free a bitset allocated with bitset_malloc().
114  * @param bs The bitset.
115  */
116 #define bitset_free(bs) free(bs)
117
118 /**
119  * Allocate a bitset on the stack via alloca.
120  * @param size The greatest bit that shall be stored in the set.
121  * @return A pointer to an empty initialized bitset.
122  */
123 #define bitset_alloca(size) \
124         _bitset_prepare(alloca(_bitset_overall_size(sizeof(bitset_t), size)), size)
125
126
127 /**
128  * Get the unit which contains a specific bit.
129  * This function is internal.
130  * @param bs The bitset.
131  * @param bit The bit.
132  * @return A pointer to the unit containing the bit.
133  */
134 static INLINE bitset_unit_t *_bitset_get_unit(const bitset_t *bs, bitset_pos_t bit)
135 {
136         /* assert(bit < bs->units * BS_UNIT_SIZE_BITS && "Bit too large"); */
137   assert(bit <= bs->size && "Bit to large");
138         return bs->data + bit / BS_UNIT_SIZE_BITS;
139 }
140
141 /**
142  * Set a bit in the bitset.
143  * @param bs The bitset.
144  * @param bit The bit to set.
145  */
146 static INLINE void bitset_set(bitset_t *bs, bitset_pos_t bit)
147 {
148         bitset_unit_t *unit = _bitset_get_unit(bs, bit);
149         _bitset_inside_set(unit, bit & BS_UNIT_MASK);
150 }
151
152 /**
153  * Clear a bit in the bitset.
154  * @param bs The bitset.
155  * @param bit The bit to clear.
156  */
157 static INLINE void bitset_clear(bitset_t *bs, bitset_pos_t bit)
158 {
159         bitset_unit_t *unit = _bitset_get_unit(bs, bit);
160         _bitset_inside_clear(unit, bit & BS_UNIT_MASK);
161 }
162
163 /**
164  * Check, if a bit is set.
165  * @param bs The bitset.
166  * @param bit The bit to check for.
167  * @return 1, if the bit was set, 0 if not.
168  */
169 static INLINE int bitset_is_set(const bitset_t *bs, bitset_pos_t bit)
170 {
171         bitset_unit_t *unit = _bitset_get_unit(bs, bit);
172         return _bitset_inside_is_set(unit, bit & BS_UNIT_MASK);
173 }
174
175 /**
176  * Flip a bit in a bitset.
177  * @param bs The bitset.
178  * @param bit The bit to flip.
179  */
180 static INLINE void bitset_flip(bitset_t *bs, bitset_pos_t bit)
181 {
182         bitset_unit_t *unit = _bitset_get_unit(bs, bit);
183         _bitset_inside_flip(unit, bit & BS_UNIT_MASK);
184 }
185
186 /**
187  * Copy a bitset to another.
188  * @param tgt The target bitset.
189  * @param src The source bitset.
190  * @return The target bitset.
191  */
192 static INLINE bitset_t *bitset_copy(bitset_t *tgt, const bitset_t *src)
193 {
194         bitset_pos_t tu = tgt->units;
195         bitset_pos_t su = src->units;
196         bitset_pos_t min_units = tu < su ? tu : su;
197         memcpy(tgt->data, src->data, min_units * BS_UNIT_SIZE);
198         if(tu > min_units)
199                 memset(tgt->data + min_units, 0, BS_UNIT_SIZE * (tu - min_units));
200         return _bitset_mask_highest(tgt);
201 }
202
203 /**
204  * Find the smallest bit set in the bitset.
205  * @param bs The bitset.
206  * @return The smallest bit set in the bitset.
207  */
208 static INLINE bitset_pos_t bitset_min(const bitset_t *bs)
209 {
210         bitset_pos_t i, ofs = 0;
211
212         for(i = 0; i < bs->units; ++i) {
213                 bitset_unit_t *unit = &bs->data[i];
214                 bitset_pos_t pos = _bitset_inside_ntz(unit);
215                 if(pos > 0)
216                         return ofs + pos;
217                 ofs += BS_UNIT_SIZE_BITS;
218         }
219
220         return 0;
221 }
222
223 /**
224  * Find the greatest bit set in the bitset.
225  * @param bs The bitset.
226  * @return The greatest bit set in the bitset.
227  */
228 static INLINE bitset_pos_t bitset_max(const bitset_t *bs)
229 {
230         bitset_pos_t i, max = 0, ofs = 0;
231
232         for(i = 0; i < bs->units; ++i) {
233                 bitset_unit_t *unit = &bs->data[i];
234                 bitset_pos_t pos = _bitset_inside_nlz(unit);
235                 if(pos > 0)
236                         max = ofs + pos;
237                 ofs += BS_UNIT_SIZE_BITS;
238         }
239
240         return max;
241 }
242
243 /**
244  * Find the next set bit from a given bit.
245  * @note Note that if pos is set, pos is returned.
246  * @param bs The bitset.
247  * @param pos The bit from which to search for the next set bit.
248  * @param set if 1, serach for set bits, else for unset bits
249  * @return The next set bit from pos on, or -1, if no set bit was found
250  * after pos.
251  */
252 static INLINE bitset_pos_t _bitset_next(const bitset_t *bs,
253                 bitset_pos_t pos, int set)
254 {
255         bitset_pos_t unit_number = pos / BS_UNIT_SIZE_BITS;
256
257         if(unit_number >= bs->units)
258                 return -1;
259
260         {
261                 bitset_pos_t bit_in_unit = pos & BS_UNIT_MASK;
262                 bitset_pos_t in_unit_mask = (1 << bit_in_unit) - 1;
263
264                 /*
265                  * Mask out the bits smaller than pos in the current unit.
266                  * We are only interested in bits set higher than pos.
267                  */
268                 bitset_unit_t curr_unit = bs->data[unit_number];
269
270                 /*
271                  * Find the next bit set in the unit.
272                  * Mind that this function returns 0, if the unit is -1 and
273                  * counts the bits from 1 on.
274                  */
275                 bitset_pos_t next_in_this_unit =
276                         _bitset_inside_ntz_value((set ? curr_unit : ~curr_unit) & ~in_unit_mask);
277
278                 /* If there is a bit set in the current unit, exit. */
279                 if(next_in_this_unit < BS_UNIT_SIZE_BITS)
280                         return next_in_this_unit + unit_number * BS_UNIT_SIZE_BITS;
281
282                 /* Else search for set bits in the next units. */
283                 else {
284                         bitset_pos_t i;
285                         for(i = unit_number + 1; i < bs->units; ++i) {
286                                 bitset_unit_t data = bs->data[i];
287                                 bitset_pos_t first_set =
288                                         _bitset_inside_ntz_value(set ? data : ~data);
289
290                                 if(first_set < BS_UNIT_SIZE_BITS)
291                                         return first_set + i * BS_UNIT_SIZE_BITS;
292                         }
293                 }
294         }
295
296         return -1;
297 }
298
299 #define bitset_next_clear(bs,pos) _bitset_next((bs), (pos), 0)
300 #define bitset_next_set(bs,pos) _bitset_next((bs), (pos), 1)
301
302 /**
303  * Convenience macro for bitset iteration.
304  * @param bitset The bitset.
305  * @param elm A unsigned long variable.
306  */
307 #define bitset_foreach(bitset,elm) \
308   for(elm = bitset_next_set(bitset,0); elm != -1; elm = bitset_next_set(bitset,elm+1))
309
310
311 #define bitset_foreach_clear(bitset,elm) \
312   for(elm = bitset_next_clear(bitset,0); elm != -1; elm = bitset_next_clear(bitset,elm+1))
313
314 /**
315  * Count the bits set.
316  * This can also be seen as the cardinality of the set.
317  * @param bs The bitset.
318  * @return The number of bits set in the bitset.
319  */
320 static INLINE bitset_pos_t bitset_popcnt(const bitset_t *bs)
321 {
322         bitset_pos_t i, pop = 0;
323         bitset_unit_t *unit;
324
325         for(i = 0, unit = bs->data; i < bs->units; ++i, ++unit)
326                 pop += _bitset_inside_pop(unit);
327
328         return pop;
329 }
330
331 /**
332  * Clear the bitset.
333  * This sets all bits to zero.
334  * @param bs The bitset.
335  */
336 static INLINE bitset_t *bitset_clear_all(bitset_t *bs)
337 {
338         memset(bs->data, 0, BS_UNIT_SIZE * bs->units);
339   return bs;
340 }
341
342 /**
343  * Set the bitset.
344  * This sets all bits to one.
345  * @param bs The bitset.
346  */
347 static INLINE bitset_t *bitset_set_all(bitset_t *bs)
348 {
349         memset(bs->data, -1, BS_UNIT_SIZE * bs->units);
350   return bs;
351 }
352
353 /**
354  * Check, if one bitset is contained by another.
355  * That is, each bit set in lhs is also set in rhs.
356  * @param lhs A bitset.
357  * @param rhs Another bitset.
358  * @return 1, if all bits in lhs are also set in rhs, 0 otherwise.
359  */
360 static INLINE int bitset_contains(const bitset_t *lhs, const bitset_t *rhs)
361 {
362         bitset_pos_t n = lhs->units < rhs->units ? lhs->units : rhs->units;
363         bitset_pos_t i;
364
365         for(i = 0; i < n; ++i) {
366                 bitset_unit_t lu = lhs->data[i];
367                 bitset_unit_t ru = rhs->data[i];
368
369                 if((lu | ru) & ~ru)
370                         return 0;
371         }
372
373         /*
374          * If the left hand sinde is a larger bitset than rhs,
375          * we have to check, that all extra bits in lhs are 0
376          */
377         if(lhs->units > n) {
378                 for(i = n; i < lhs->units; ++i) {
379                         if(lhs->data[i] != 0)
380                                 return 0;
381                 }
382         }
383
384         return 1;
385 }
386
387 /**
388  * Print a bitset to a stream.
389  * The bitset is printed as a comma seperated list of bits set.
390  * @param file The stream.
391  * @param bs The bitset.
392  */
393 static INLINE void bitset_fprint(FILE *file, const bitset_t *bs)
394 {
395         const char *prefix = "";
396         int i;
397
398         putc('[', file);
399         for(i = bitset_next_set(bs, 0); i != -1; i = bitset_next_set(bs, i + 1)) {
400                 fprintf(file, "%s%u", prefix, i);
401                 prefix = ",";
402         }
403         putc(']', file);
404 }
405
406 static INLINE void bitset_debug_fprint(FILE *file, const bitset_t *bs)
407 {
408         bitset_pos_t i;
409
410         fprintf(file, "%u:", bs->units);
411         for(i = 0; i < bs->units; ++i)
412                 fprintf(file, " " BITSET_UNIT_FMT, bs->data[i]);
413 }
414
415 /*
416  * Here, the binary operations follow.
417  * And, Or, And Not, Xor are available.
418  */
419 #define BINARY_OP(op) \
420 static INLINE bitset_t *bitset_ ## op(bitset_t *tgt, const bitset_t *src) \
421 { \
422         bitset_pos_t i; \
423         bitset_pos_t n = tgt->units > src->units ? src->units : tgt->units; \
424         for(i = 0; i < n; i += _BITSET_BINOP_UNITS_INC) \
425                 _bitset_inside_binop_ ## op(&tgt->data[i], &src->data[i]); \
426         if(n < tgt->units) \
427                 _bitset_clear_rest(&tgt->data[i], tgt->units - i); \
428         return _bitset_mask_highest(tgt); \
429 }
430
431 /*
432  * Define the clear rest macro for the and, since it is the only case,
433  * were non existed (treated as 0) units in the src must be handled.
434  * For all other operations holds: x Op 0 = x for Op in { Andnot, Or, Xor }
435  *
436  * For and, each bitset implementer has to provide the macro
437  * _bitset_clear_units(data, n), which clears n units from the pointer
438  * data on.
439  */
440 #define _bitset_clear_rest(data,n) _bitset_inside_clear_units(data, n)
441 BINARY_OP(and)
442 #undef _bitset_clear_rest
443 #define _bitset_clear_rest(data,n)
444
445 BINARY_OP(andnot)
446 BINARY_OP(or)
447 BINARY_OP(xor)
448
449 #endif