added missing include
[libfirm] / ir / adt / bitset.h
index 528a5bb..9ae1637 100644 (file)
 #include <assert.h>
 #include <string.h>
 
+#include "firm_config.h"
+#include "bitfiddle.h"
+
 #ifdef _WIN32
 #include <malloc.h>
 #else
 #include <alloca.h>
 #endif
 
-#include "firm_config.h"
-#include "bitfiddle.h"
-
 typedef unsigned int bitset_pos_t;
 
 #include "bitset_std.h"
@@ -66,7 +66,7 @@ static INLINE bitset_t *_bitset_prepare(void *area, bitset_pos_t size)
        bitset_t *ptr = area;
        memset(area, 0, _bitset_overall_size(sizeof(bitset_t), size));
        ptr->units = _bitset_units(size);
-  ptr->size = size;
+       ptr->size = size;
        ptr->data = _bitset_data_ptr(area, sizeof(bitset_t), size);
        return ptr;
 }
@@ -271,42 +271,48 @@ static INLINE bitset_pos_t bitset_max(const bitset_t *bs)
 static INLINE bitset_pos_t _bitset_next(const bitset_t *bs,
                bitset_pos_t pos, int set)
 {
+       bitset_pos_t unit_number = pos / BS_UNIT_SIZE_BITS;
+       bitset_pos_t res;
+
        if(pos >= bs->size)
                return -1;
 
        {
-               lc_bitset_pos_t unit_number = pos / LC_BS_UNIT_SIZE_BITS;
-               lc_bitset_unit_t set_mask   = -set;
-               lc_bitset_pos_t bit_in_unit = pos & LC_BS_UNIT_MASK;
-               lc_bitset_pos_t in_unit_mask = (1 << bit_in_unit) - 1;
+               bitset_pos_t bit_in_unit = pos & BS_UNIT_MASK;
+               bitset_pos_t in_unit_mask = (1 << bit_in_unit) - 1;
 
                /*
                 * Mask out the bits smaller than pos in the current unit.
                 * We are only interested in bits set higher than pos.
                 */
-               lc_bitset_unit_t curr_unit = bs->data[unit_number];
+               bitset_unit_t curr_unit = bs->data[unit_number];
 
                /*
                 * Find the next bit set in the unit.
                 * Mind that this function returns 0, if the unit is -1 and
                 * counts the bits from 1 on.
                 */
-               lc_bitset_pos_t next_in_this_unit =
-                       _lc_bitset_inside_ntz_value((set_mask ^ curr_unit) & ~in_unit_mask);
+               bitset_pos_t next_in_this_unit =
+                       _bitset_inside_ntz_value((set ? curr_unit : ~curr_unit) & ~in_unit_mask);
 
                /* If there is a bit set in the current unit, exit. */
-               if(next_in_this_unit < LC_BS_UNIT_SIZE_BITS)
-                       return next_in_this_unit + unit_number * LC_BS_UNIT_SIZE_BITS;
+               if (next_in_this_unit < BS_UNIT_SIZE_BITS) {
+                       res = next_in_this_unit + unit_number * BS_UNIT_SIZE_BITS;
+                       return res < bs->size ? res : -1;
+               }
 
                /* Else search for set bits in the next units. */
                else {
-                       lc_bitset_pos_t i;
+                       bitset_pos_t i;
                        for(i = unit_number + 1; i < bs->units; ++i) {
-                               lc_bitset_unit_t data = bs->data[i];
-                               lc_bitset_pos_t first_set = _lc_bitset_inside_ntz_value(set_mask ^ data);
-
-                               if(first_set < LC_BS_UNIT_SIZE_BITS)
-                                       return first_set + i * LC_BS_UNIT_SIZE_BITS;
+                               bitset_unit_t data = bs->data[i];
+                               bitset_pos_t first_set =
+                                       _bitset_inside_ntz_value(set ? data : ~data);
+
+                               if (first_set < BS_UNIT_SIZE_BITS) {
+                                       res = first_set + i * BS_UNIT_SIZE_BITS;
+                                       return res < bs->size ? res : -1;
+                               }
                        }
                }
        }