add dbg_dead_code case
[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         bitset_pos_t rest = bs->size & BS_UNIT_MASK;
77         if (rest)
78                 bs->data[bs->units - 1] &= (1 << rest) - 1;
79         return bs;
80 }
81
82 /**
83  * Get the capacity of the bitset in bits.
84  * @param bs The bitset.
85  * @return The capacity in bits of the bitset.
86  */
87 #define bitset_capacity(bs) ((bs)->units * BS_UNIT_SIZE_BITS)
88
89 /**
90  * Get the size of the bitset in bits.
91  * @note Note the difference between capacity and size.
92  * @param bs The bitset.
93  * @return The highest bit which can be set or cleared plus 1.
94  */
95 #define bistet_size(bs)  ((bs)->size)
96
97 /**
98  * Allocate a bitset on an obstack.
99  * @param obst The obstack.
100  * @param size The greatest bit that shall be stored in the set.
101  * @return A pointer to an empty initialized bitset.
102  */
103 #define bitset_obstack_alloc(obst,size) \
104   _bitset_prepare(obstack_alloc(obst, _bitset_overall_size(sizeof(bitset_t), size)), size)
105
106 /**
107  * Allocate a bitset via malloc.
108  * @param size The greatest bit that shall be stored in the set.
109  * @return A pointer to an empty initialized bitset.
110  */
111 #define bitset_malloc(size) \
112         _bitset_prepare(malloc(_bitset_overall_size(sizeof(bitset_t), size)), size)
113
114 /**
115  * Free a bitset allocated with bitset_malloc().
116  * @param bs The bitset.
117  */
118 #define bitset_free(bs) free(bs)
119
120 /**
121  * Allocate a bitset on the stack via alloca.
122  * @param size The greatest bit that shall be stored in the set.
123  * @return A pointer to an empty initialized bitset.
124  */
125 #define bitset_alloca(size) \
126         _bitset_prepare(alloca(_bitset_overall_size(sizeof(bitset_t), size)), size)
127
128
129 /**
130  * Get the unit which contains a specific bit.
131  * This function is internal.
132  * @param bs The bitset.
133  * @param bit The bit.
134  * @return A pointer to the unit containing the bit.
135  */
136 static INLINE bitset_unit_t *_bitset_get_unit(const bitset_t *bs, bitset_pos_t bit)
137 {
138         /* assert(bit < bs->units * BS_UNIT_SIZE_BITS && "Bit too large"); */
139   assert(bit <= bs->size && "Bit to large");
140         return bs->data + bit / BS_UNIT_SIZE_BITS;
141 }
142
143 /**
144  * Set a bit in the bitset.
145  * @param bs The bitset.
146  * @param bit The bit to set.
147  */
148 static INLINE void bitset_set(bitset_t *bs, bitset_pos_t bit)
149 {
150         bitset_unit_t *unit = _bitset_get_unit(bs, bit);
151         _bitset_inside_set(unit, bit & BS_UNIT_MASK);
152 }
153
154 /**
155  * Clear a bit in the bitset.
156  * @param bs The bitset.
157  * @param bit The bit to clear.
158  */
159 static INLINE void bitset_clear(bitset_t *bs, bitset_pos_t bit)
160 {
161         bitset_unit_t *unit = _bitset_get_unit(bs, bit);
162         _bitset_inside_clear(unit, bit & BS_UNIT_MASK);
163 }
164
165 /**
166  * Check, if a bit is set.
167  * @param bs The bitset.
168  * @param bit The bit to check for.
169  * @return 1, if the bit was set, 0 if not.
170  */
171 static INLINE int bitset_is_set(const bitset_t *bs, bitset_pos_t bit)
172 {
173         bitset_unit_t *unit = _bitset_get_unit(bs, bit);
174         return _bitset_inside_is_set(unit, bit & BS_UNIT_MASK);
175 }
176
177 /**
178  * Flip a bit in a bitset.
179  * @param bs The bitset.
180  * @param bit The bit to flip.
181  */
182 static INLINE void bitset_flip(bitset_t *bs, bitset_pos_t bit)
183 {
184         bitset_unit_t *unit = _bitset_get_unit(bs, bit);
185         _bitset_inside_flip(unit, bit & BS_UNIT_MASK);
186 }
187
188 /**
189  * Copy a bitset to another.
190  * @param tgt The target bitset.
191  * @param src The source bitset.
192  * @return The target bitset.
193  */
194 static INLINE bitset_t *bitset_copy(bitset_t *tgt, const bitset_t *src)
195 {
196         bitset_pos_t tu = tgt->units;
197         bitset_pos_t su = src->units;
198         bitset_pos_t min_units = tu < su ? tu : su;
199         memcpy(tgt->data, src->data, min_units * BS_UNIT_SIZE);
200         if(tu > min_units)
201                 memset(tgt->data + min_units, 0, BS_UNIT_SIZE * (tu - min_units));
202         return _bitset_mask_highest(tgt);
203 }
204
205 /**
206  * Find the smallest bit set in the bitset.
207  * @param bs The bitset.
208  * @return The smallest bit set in the bitset.
209  */
210 static INLINE bitset_pos_t bitset_min(const bitset_t *bs)
211 {
212         bitset_pos_t i, ofs = 0;
213
214         for(i = 0; i < bs->units; ++i) {
215                 bitset_unit_t *unit = &bs->data[i];
216                 bitset_pos_t pos = _bitset_inside_ntz(unit);
217                 if(pos > 0)
218                         return ofs + pos;
219                 ofs += BS_UNIT_SIZE_BITS;
220         }
221
222         return 0;
223 }
224
225 /**
226  * Find the greatest bit set in the bitset.
227  * @param bs The bitset.
228  * @return The greatest bit set in the bitset.
229  */
230 static INLINE bitset_pos_t bitset_max(const bitset_t *bs)
231 {
232         bitset_pos_t i, max = 0, ofs = 0;
233
234         for(i = 0; i < bs->units; ++i) {
235                 bitset_unit_t *unit = &bs->data[i];
236                 bitset_pos_t pos = _bitset_inside_nlz(unit);
237                 if(pos > 0)
238                         max = ofs + pos;
239                 ofs += BS_UNIT_SIZE_BITS;
240         }
241
242         return max;
243 }
244
245 /**
246  * Find the next set bit from a given bit.
247  * @note Note that if pos is set, pos is returned.
248  * @param bs The bitset.
249  * @param pos The bit from which to search for the next set bit.
250  * @return The next set bit from pos on, or -1, if no set bit was found
251  * after pos.
252  */
253 static INLINE bitset_pos_t _bitset_next(const bitset_t *bs,
254                 bitset_pos_t pos, int set)
255 {
256         bitset_pos_t unit_number = pos / BS_UNIT_SIZE_BITS;
257
258         if(unit_number >= bs->units)
259                 return -1;
260
261         {
262                 bitset_pos_t bit_in_unit = pos & BS_UNIT_MASK;
263                 bitset_pos_t in_unit_mask = (1 << bit_in_unit) - 1;
264
265                 /*
266                  * Mask out the bits smaller than pos in the current unit.
267                  * We are only interested in bits set higher than pos.
268                  */
269                 bitset_unit_t curr_unit = bs->data[unit_number];
270
271                 /*
272                  * Find the next bit set in the unit.
273                  * Mind that this function returns 0, if the unit is -1 and
274                  * counts the bits from 1 on.
275                  */
276                 bitset_pos_t next_in_this_unit =
277                         _bitset_inside_ntz_value((set ? curr_unit : ~curr_unit) & ~in_unit_mask);
278
279                 /* If there is a bit set in the current unit, exit. */
280                 if(next_in_this_unit < BS_UNIT_SIZE_BITS)
281                         return next_in_this_unit + unit_number * BS_UNIT_SIZE_BITS;
282
283                 /* Else search for set bits in the next units. */
284                 else {
285                         bitset_pos_t i;
286                         for(i = unit_number + 1; i < bs->units; ++i) {
287                                 bitset_unit_t data = bs->data[i];
288                                 bitset_pos_t first_set =
289                                         _bitset_inside_ntz_value(set ? data : ~data);
290
291                                 if(first_set < BS_UNIT_SIZE_BITS)
292                                         return first_set + i * BS_UNIT_SIZE_BITS;
293                         }
294                 }
295         }
296
297         return -1;
298 }
299
300 #define bitset_next_clear(bs,pos) _bitset_next((bs), (pos), 0)
301 #define bitset_next_set(bs,pos) _bitset_next((bs), (pos), 1)
302
303 /**
304  * Convenience macro for bitset iteration.
305  * @param bitset The bitset.
306  * @param elm A unsigned long variable.
307  */
308 #define bitset_foreach(bitset,elm) \
309   for(elm = bitset_next_set(bitset,0); elm != -1; elm = bitset_next_set(bitset,elm+1))
310
311
312 #define bitset_foreach_clear(bitset,elm) \
313   for(elm = bitset_next_clear(bitset,0); elm != -1; elm = bitset_next_clear(bitset,elm+1))
314
315 /**
316  * Count the bits set.
317  * This can also be seen as the cardinality of the set.
318  * @param bs The bitset.
319  * @return The number of bits set in the bitset.
320  */
321 static INLINE bitset_pos_t bitset_popcnt(const bitset_t *bs)
322 {
323         bitset_pos_t i, pop = 0;
324         bitset_unit_t *unit;
325
326         for(i = 0, unit = bs->data; i < bs->units; ++i, ++unit)
327                 pop += _bitset_inside_pop(unit);
328
329         return pop;
330 }
331
332 /**
333  * Clear the bitset.
334  * This sets all bits to zero.
335  * @param bs The bitset.
336  */
337 static INLINE bitset_t *bitset_clear_all(bitset_t *bs)
338 {
339         memset(bs->data, 0, BS_UNIT_SIZE * bs->units);
340   return bs;
341 }
342
343 /**
344  * Set the bitset.
345  * This sets all bits to one.
346  * @param bs The bitset.
347  */
348 static INLINE bitset_t *bitset_set_all(bitset_t *bs)
349 {
350         memset(bs->data, -1, bs->units * BS_UNIT_SIZE);
351   return _bitset_mask_highest(bs);
352 }
353
354 /**
355  * Check, if one bitset is contained by another.
356  * That is, each bit set in lhs is also set in rhs.
357  * @param lhs A bitset.
358  * @param rhs Another bitset.
359  * @return 1, if all bits in lhs are also set in rhs, 0 otherwise.
360  */
361 static INLINE int bitset_contains(const bitset_t *lhs, const bitset_t *rhs)
362 {
363         bitset_pos_t n = lhs->units < rhs->units ? lhs->units : rhs->units;
364         bitset_pos_t i;
365
366         for(i = 0; i < n; ++i) {
367                 bitset_unit_t lu = lhs->data[i];
368                 bitset_unit_t ru = rhs->data[i];
369
370                 if((lu | ru) & ~ru)
371                         return 0;
372         }
373
374         /*
375          * If the left hand sinde is a larger bitset than rhs,
376          * we have to check, that all extra bits in lhs are 0
377          */
378         if(lhs->units > n) {
379                 for(i = n; i < lhs->units; ++i) {
380                         if(lhs->data[i] != 0)
381                                 return 0;
382                 }
383         }
384
385         return 1;
386 }
387
388 /**
389  * Treat the bitset as a number and subtract 1.
390  * @param bs The bitset.
391  * @return The same bitset.
392  */
393 static INLINE void bitset_minus1(bitset_t *bs)
394 {
395 #define _SH (sizeof(bitset_unit_t) * 8 - 1)
396
397   bitset_pos_t i;
398
399   for(i = 0; i < bs->units; ++i) {
400     bitset_unit_t unit = bs->data[i];
401     bitset_unit_t um1  = unit - 1;
402
403     bs->data[i] = um1;
404
405     if(((unit >> _SH) ^ (um1 >> _SH)) == 0)
406       break;
407   }
408 #undef _SH
409 }
410
411 /**
412  * Print a bitset to a stream.
413  * The bitset is printed as a comma seperated list of bits set.
414  * @param file The stream.
415  * @param bs The bitset.
416  */
417 static INLINE void bitset_fprint(FILE *file, const bitset_t *bs)
418 {
419         const char *prefix = "";
420         int i;
421
422         putc('[', file);
423         for(i = bitset_next_set(bs, 0); i != -1; i = bitset_next_set(bs, i + 1)) {
424                 fprintf(file, "%s%u", prefix, i);
425                 prefix = ",";
426         }
427         putc(']', file);
428 }
429
430 static INLINE void bitset_debug_fprint(FILE *file, const bitset_t *bs)
431 {
432         bitset_pos_t i;
433
434         fprintf(file, "%u:", bs->units);
435         for(i = 0; i < bs->units; ++i)
436                 fprintf(file, " " BITSET_UNIT_FMT, bs->data[i]);
437 }
438
439 /*
440  * Here, the binary operations follow.
441  * And, Or, And Not, Xor are available.
442  */
443 #define BINARY_OP(op) \
444 static INLINE bitset_t *bitset_ ## op(bitset_t *tgt, const bitset_t *src) \
445 { \
446         bitset_pos_t i; \
447         bitset_pos_t n = tgt->units > src->units ? src->units : tgt->units; \
448         for(i = 0; i < n; i += _BITSET_BINOP_UNITS_INC) \
449                 _bitset_inside_binop_ ## op(&tgt->data[i], &src->data[i]); \
450         if(n < tgt->units) \
451                 _bitset_clear_rest(&tgt->data[i], tgt->units - i); \
452         return _bitset_mask_highest(tgt); \
453 }
454
455 /*
456  * Define the clear rest macro for the and, since it is the only case,
457  * were non existed (treated as 0) units in the src must be handled.
458  * For all other operations holds: x Op 0 = x for Op in { Andnot, Or, Xor }
459  *
460  * For and, each bitset implementer has to provide the macro
461  * _bitset_clear_units(data, n), which clears n units from the pointer
462  * data on.
463  */
464 #define _bitset_clear_rest(data,n) _bitset_inside_clear_units(data, n)
465 BINARY_OP(and)
466 #undef _bitset_clear_rest
467 #define _bitset_clear_rest(data,n)
468
469 BINARY_OP(andnot)
470 BINARY_OP(or)
471 BINARY_OP(xor)
472
473 #endif