|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#include <config.h> |
|
|
|
|
|
#include "bitset/vector.h" |
|
|
|
|
|
#include <stdlib.h> |
|
|
#include <string.h> |
|
|
|
|
|
#include "xalloc.h" |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
static void vbitset_unused_clear (bitset); |
|
|
|
|
|
static void vbitset_set (bitset, bitset_bindex); |
|
|
static void vbitset_reset (bitset, bitset_bindex); |
|
|
static bool vbitset_test (bitset, bitset_bindex); |
|
|
static bitset_bindex vbitset_list (bitset, bitset_bindex *, |
|
|
bitset_bindex, bitset_bindex *); |
|
|
static bitset_bindex vbitset_list_reverse (bitset, bitset_bindex *, |
|
|
bitset_bindex, bitset_bindex *); |
|
|
|
|
|
#define VBITSET_N_WORDS(N) (((N) + BITSET_WORD_BITS - 1) / BITSET_WORD_BITS) |
|
|
#define VBITSET_WORDS(X) ((X)->b.cdata) |
|
|
#define VBITSET_SIZE(X) ((X)->b.csize) |
|
|
#define VBITSET_ASIZE(X) ((X)->v.size) |
|
|
|
|
|
#undef min |
|
|
#undef max |
|
|
#define min(a, b) ((a) > (b) ? (b) : (a)) |
|
|
#define max(a, b) ((a) > (b) ? (a) : (b)) |
|
|
|
|
|
static bitset_bindex |
|
|
vbitset_resize (bitset src, bitset_bindex n_bits) |
|
|
{ |
|
|
if (n_bits == BITSET_NBITS_ (src)) |
|
|
return n_bits; |
|
|
|
|
|
bitset_windex oldsize = VBITSET_SIZE (src); |
|
|
bitset_windex newsize = VBITSET_N_WORDS (n_bits); |
|
|
|
|
|
if (oldsize < newsize) |
|
|
{ |
|
|
|
|
|
|
|
|
if (newsize > VBITSET_ASIZE (src)) |
|
|
{ |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
bitset_windex size = oldsize == 0 ? newsize : newsize + newsize / 4; |
|
|
VBITSET_WORDS (src) |
|
|
= xrealloc (VBITSET_WORDS (src), size * sizeof (bitset_word)); |
|
|
VBITSET_ASIZE (src) = size; |
|
|
} |
|
|
|
|
|
memset (VBITSET_WORDS (src) + oldsize, 0, |
|
|
(newsize - oldsize) * sizeof (bitset_word)); |
|
|
} |
|
|
else |
|
|
{ |
|
|
|
|
|
|
|
|
if ((oldsize - newsize) >= oldsize / 2) |
|
|
{ |
|
|
void *p |
|
|
= realloc (VBITSET_WORDS (src), newsize * sizeof (bitset_word)); |
|
|
if (p) |
|
|
{ |
|
|
VBITSET_WORDS (src) = p; |
|
|
VBITSET_ASIZE (src) = newsize; |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
VBITSET_SIZE (src) = newsize; |
|
|
BITSET_NBITS_ (src) = n_bits; |
|
|
return n_bits; |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
static void |
|
|
vbitset_set (bitset dst, bitset_bindex bitno) |
|
|
{ |
|
|
bitset_windex windex = bitno / BITSET_WORD_BITS; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
vbitset_resize (dst, bitno); |
|
|
|
|
|
dst->b.cdata[windex - dst->b.cindex] |= |
|
|
(bitset_word) 1 << (bitno % BITSET_WORD_BITS); |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
static void |
|
|
vbitset_reset (MAYBE_UNUSED bitset dst, MAYBE_UNUSED bitset_bindex bitno) |
|
|
{ |
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
static bool |
|
|
vbitset_test (MAYBE_UNUSED bitset src, |
|
|
MAYBE_UNUSED bitset_bindex bitno) |
|
|
{ |
|
|
|
|
|
|
|
|
return false; |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
static bitset_bindex |
|
|
vbitset_list_reverse (bitset src, bitset_bindex *list, |
|
|
bitset_bindex num, bitset_bindex *next) |
|
|
{ |
|
|
|
|
|
bitset_bindex rbitno = *next; |
|
|
bitset_word *srcp = VBITSET_WORDS (src); |
|
|
bitset_bindex n_bits = BITSET_SIZE_ (src); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (rbitno >= n_bits) |
|
|
return 0; |
|
|
|
|
|
bitset_bindex count = 0; |
|
|
|
|
|
bitset_bindex bitno = n_bits - (rbitno + 1); |
|
|
|
|
|
bitset_windex windex = bitno / BITSET_WORD_BITS; |
|
|
unsigned bitcnt = bitno % BITSET_WORD_BITS; |
|
|
bitset_bindex bitoff = windex * BITSET_WORD_BITS; |
|
|
|
|
|
do |
|
|
{ |
|
|
bitset_word word = srcp[windex]; |
|
|
if (bitcnt + 1 < BITSET_WORD_BITS) |
|
|
|
|
|
word &= ((bitset_word) 1 << (bitcnt + 1)) - 1; |
|
|
BITSET_FOR_EACH_BIT_REVERSE(pos, word) |
|
|
{ |
|
|
list[count++] = bitoff + pos; |
|
|
if (count >= num) |
|
|
{ |
|
|
*next = n_bits - (bitoff + pos); |
|
|
return count; |
|
|
} |
|
|
} |
|
|
bitoff -= BITSET_WORD_BITS; |
|
|
bitcnt = BITSET_WORD_BITS - 1; |
|
|
} |
|
|
while (windex--); |
|
|
|
|
|
*next = n_bits - (bitoff + 1); |
|
|
return count; |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
static bitset_bindex |
|
|
vbitset_list (bitset src, bitset_bindex *list, |
|
|
bitset_bindex num, bitset_bindex *next) |
|
|
{ |
|
|
|
|
|
bitset_windex size = VBITSET_SIZE (src); |
|
|
bitset_word *srcp = VBITSET_WORDS (src); |
|
|
bitset_bindex bitno = *next; |
|
|
bitset_bindex count = 0; |
|
|
|
|
|
bitset_windex windex; |
|
|
bitset_bindex bitoff; |
|
|
|
|
|
if (!bitno) |
|
|
{ |
|
|
|
|
|
for (windex = 0; windex < size && !srcp[windex]; windex++) |
|
|
continue; |
|
|
if (windex >= size) |
|
|
return 0; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
bitoff = windex * BITSET_WORD_BITS; |
|
|
} |
|
|
else |
|
|
{ |
|
|
if (bitno >= BITSET_SIZE_ (src)) |
|
|
return 0; |
|
|
|
|
|
windex = bitno / BITSET_WORD_BITS; |
|
|
bitno = bitno % BITSET_WORD_BITS; |
|
|
|
|
|
if (bitno) |
|
|
{ |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
bitoff = windex * BITSET_WORD_BITS; |
|
|
bitset_word word = srcp[windex] >> bitno; |
|
|
bitno = bitoff + bitno; |
|
|
BITSET_FOR_EACH_BIT (pos, word) |
|
|
{ |
|
|
list[count++] = bitno + pos; |
|
|
if (count >= num) |
|
|
{ |
|
|
*next = bitno + pos + 1; |
|
|
return count; |
|
|
} |
|
|
} |
|
|
windex++; |
|
|
} |
|
|
bitoff = windex * BITSET_WORD_BITS; |
|
|
} |
|
|
|
|
|
for (; windex < size; windex++, bitoff += BITSET_WORD_BITS) |
|
|
{ |
|
|
bitset_word word = srcp[windex]; |
|
|
if (!word) |
|
|
continue; |
|
|
|
|
|
|
|
|
if ((count + BITSET_WORD_BITS) < num) |
|
|
BITSET_FOR_EACH_BIT (pos, word) |
|
|
list[count++] = bitoff + pos; |
|
|
else |
|
|
BITSET_FOR_EACH_BIT (pos, word) |
|
|
{ |
|
|
list[count++] = bitoff + pos; |
|
|
if (count >= num) |
|
|
{ |
|
|
*next = bitoff + pos + 1; |
|
|
return count; |
|
|
} |
|
|
} |
|
|
} |
|
|
|
|
|
*next = bitoff; |
|
|
return count; |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
static inline void |
|
|
vbitset_unused_clear (bitset dst) |
|
|
{ |
|
|
unsigned last_bit = BITSET_SIZE_ (dst) % BITSET_WORD_BITS; |
|
|
if (last_bit) |
|
|
VBITSET_WORDS (dst)[VBITSET_SIZE (dst) - 1] &= |
|
|
((bitset_word) 1 << last_bit) - 1; |
|
|
} |
|
|
|
|
|
|
|
|
static void |
|
|
vbitset_ones (bitset dst) |
|
|
{ |
|
|
bitset_word *dstp = VBITSET_WORDS (dst); |
|
|
unsigned bytes = sizeof (bitset_word) * VBITSET_SIZE (dst); |
|
|
|
|
|
memset (dstp, -1, bytes); |
|
|
vbitset_unused_clear (dst); |
|
|
} |
|
|
|
|
|
|
|
|
static void |
|
|
vbitset_zero (bitset dst) |
|
|
{ |
|
|
bitset_word *dstp = VBITSET_WORDS (dst); |
|
|
unsigned bytes = sizeof (bitset_word) * VBITSET_SIZE (dst); |
|
|
|
|
|
memset (dstp, 0, bytes); |
|
|
} |
|
|
|
|
|
|
|
|
static bool |
|
|
vbitset_empty_p (bitset dst) |
|
|
{ |
|
|
bitset_word *dstp = VBITSET_WORDS (dst); |
|
|
|
|
|
for (unsigned i = 0; i < VBITSET_SIZE (dst); i++) |
|
|
if (dstp[i]) |
|
|
return false; |
|
|
return true; |
|
|
} |
|
|
|
|
|
|
|
|
static void |
|
|
vbitset_copy1 (bitset dst, bitset src) |
|
|
{ |
|
|
if (src == dst) |
|
|
return; |
|
|
|
|
|
vbitset_resize (dst, BITSET_SIZE_ (src)); |
|
|
|
|
|
bitset_word *srcp = VBITSET_WORDS (src); |
|
|
bitset_word *dstp = VBITSET_WORDS (dst); |
|
|
bitset_windex ssize = VBITSET_SIZE (src); |
|
|
bitset_windex dsize = VBITSET_SIZE (dst); |
|
|
|
|
|
memcpy (dstp, srcp, sizeof (bitset_word) * ssize); |
|
|
|
|
|
memset (dstp + sizeof (bitset_word) * ssize, 0, |
|
|
sizeof (bitset_word) * (dsize - ssize)); |
|
|
} |
|
|
|
|
|
|
|
|
static void |
|
|
vbitset_not (bitset dst, bitset src) |
|
|
{ |
|
|
vbitset_resize (dst, BITSET_SIZE_ (src)); |
|
|
|
|
|
bitset_word *srcp = VBITSET_WORDS (src); |
|
|
bitset_word *dstp = VBITSET_WORDS (dst); |
|
|
bitset_windex ssize = VBITSET_SIZE (src); |
|
|
bitset_windex dsize = VBITSET_SIZE (dst); |
|
|
|
|
|
for (unsigned i = 0; i < ssize; i++) |
|
|
*dstp++ = ~(*srcp++); |
|
|
|
|
|
vbitset_unused_clear (dst); |
|
|
memset (dstp + sizeof (bitset_word) * ssize, 0, |
|
|
sizeof (bitset_word) * (dsize - ssize)); |
|
|
} |
|
|
|
|
|
|
|
|
static bool |
|
|
vbitset_equal_p (bitset dst, bitset src) |
|
|
{ |
|
|
bitset_word *srcp = VBITSET_WORDS (src); |
|
|
bitset_word *dstp = VBITSET_WORDS (dst); |
|
|
bitset_windex ssize = VBITSET_SIZE (src); |
|
|
bitset_windex dsize = VBITSET_SIZE (dst); |
|
|
|
|
|
unsigned i; |
|
|
for (i = 0; i < min (ssize, dsize); i++) |
|
|
if (*srcp++ != *dstp++) |
|
|
return false; |
|
|
|
|
|
if (ssize > dsize) |
|
|
{ |
|
|
for (; i < ssize; i++) |
|
|
if (*srcp++) |
|
|
return false; |
|
|
} |
|
|
else |
|
|
{ |
|
|
for (; i < dsize; i++) |
|
|
if (*dstp++) |
|
|
return false; |
|
|
} |
|
|
|
|
|
return true; |
|
|
} |
|
|
|
|
|
|
|
|
static bool |
|
|
vbitset_subset_p (bitset dst, bitset src) |
|
|
{ |
|
|
bitset_word *srcp = VBITSET_WORDS (src); |
|
|
bitset_word *dstp = VBITSET_WORDS (dst); |
|
|
bitset_windex ssize = VBITSET_SIZE (src); |
|
|
bitset_windex dsize = VBITSET_SIZE (dst); |
|
|
|
|
|
unsigned i; |
|
|
for (i = 0; i < min (ssize, dsize); i++, dstp++, srcp++) |
|
|
if (*dstp != (*srcp | *dstp)) |
|
|
return false; |
|
|
|
|
|
if (ssize > dsize) |
|
|
for (; i < ssize; i++) |
|
|
if (*srcp++) |
|
|
return false; |
|
|
|
|
|
return true; |
|
|
} |
|
|
|
|
|
|
|
|
static bool |
|
|
vbitset_disjoint_p (bitset dst, bitset src) |
|
|
{ |
|
|
bitset_word *srcp = VBITSET_WORDS (src); |
|
|
bitset_word *dstp = VBITSET_WORDS (dst); |
|
|
bitset_windex ssize = VBITSET_SIZE (src); |
|
|
bitset_windex dsize = VBITSET_SIZE (dst); |
|
|
|
|
|
for (unsigned i = 0; i < min (ssize, dsize); i++) |
|
|
if (*srcp++ & *dstp++) |
|
|
return false; |
|
|
|
|
|
return true; |
|
|
} |
|
|
|
|
|
|
|
|
static void |
|
|
vbitset_and (bitset dst, bitset src1, bitset src2) |
|
|
{ |
|
|
vbitset_resize (dst, max (BITSET_SIZE_ (src1), BITSET_SIZE_ (src2))); |
|
|
|
|
|
bitset_windex dsize = VBITSET_SIZE (dst); |
|
|
bitset_windex ssize1 = VBITSET_SIZE (src1); |
|
|
bitset_windex ssize2 = VBITSET_SIZE (src2); |
|
|
bitset_word *dstp = VBITSET_WORDS (dst); |
|
|
bitset_word *src1p = VBITSET_WORDS (src1); |
|
|
bitset_word *src2p = VBITSET_WORDS (src2); |
|
|
|
|
|
for (unsigned i = 0; i < min (ssize1, ssize2); i++) |
|
|
*dstp++ = *src1p++ & *src2p++; |
|
|
|
|
|
memset (dstp, 0, sizeof (bitset_word) * (dsize - min (ssize1, ssize2))); |
|
|
} |
|
|
|
|
|
|
|
|
static bool |
|
|
vbitset_and_cmp (bitset dst, bitset src1, bitset src2) |
|
|
{ |
|
|
vbitset_resize (dst, max (BITSET_SIZE_ (src1), BITSET_SIZE_ (src2))); |
|
|
|
|
|
bitset_windex dsize = VBITSET_SIZE (dst); |
|
|
bitset_windex ssize1 = VBITSET_SIZE (src1); |
|
|
bitset_windex ssize2 = VBITSET_SIZE (src2); |
|
|
bitset_word *dstp = VBITSET_WORDS (dst); |
|
|
bitset_word *src1p = VBITSET_WORDS (src1); |
|
|
bitset_word *src2p = VBITSET_WORDS (src2); |
|
|
|
|
|
bool changed = false; |
|
|
unsigned i; |
|
|
for (i = 0; i < min (ssize1, ssize2); i++, dstp++) |
|
|
{ |
|
|
bitset_word tmp = *src1p++ & *src2p++; |
|
|
|
|
|
if (*dstp != tmp) |
|
|
{ |
|
|
changed = true; |
|
|
*dstp = tmp; |
|
|
} |
|
|
} |
|
|
|
|
|
if (ssize2 > ssize1) |
|
|
{ |
|
|
src1p = src2p; |
|
|
ssize1 = ssize2; |
|
|
} |
|
|
|
|
|
for (; i < ssize1; i++, dstp++) |
|
|
{ |
|
|
if (*dstp != 0) |
|
|
{ |
|
|
changed = true; |
|
|
*dstp = 0; |
|
|
} |
|
|
} |
|
|
|
|
|
memset (dstp, 0, sizeof (bitset_word) * (dsize - ssize1)); |
|
|
|
|
|
return changed; |
|
|
} |
|
|
|
|
|
|
|
|
static void |
|
|
vbitset_andn (bitset dst, bitset src1, bitset src2) |
|
|
{ |
|
|
vbitset_resize (dst, max (BITSET_SIZE_ (src1), BITSET_SIZE_ (src2))); |
|
|
|
|
|
bitset_windex dsize = VBITSET_SIZE (dst); |
|
|
bitset_windex ssize1 = VBITSET_SIZE (src1); |
|
|
bitset_windex ssize2 = VBITSET_SIZE (src2); |
|
|
bitset_word *dstp = VBITSET_WORDS (dst); |
|
|
bitset_word *src1p = VBITSET_WORDS (src1); |
|
|
bitset_word *src2p = VBITSET_WORDS (src2); |
|
|
|
|
|
unsigned i; |
|
|
for (i = 0; i < min (ssize1, ssize2); i++) |
|
|
*dstp++ = *src1p++ & ~(*src2p++); |
|
|
|
|
|
if (ssize2 > ssize1) |
|
|
{ |
|
|
for (; i < ssize2; i++) |
|
|
*dstp++ = 0; |
|
|
|
|
|
memset (dstp, 0, sizeof (bitset_word) * (dsize - ssize2)); |
|
|
} |
|
|
else |
|
|
{ |
|
|
for (; i < ssize1; i++) |
|
|
*dstp++ = *src1p++; |
|
|
|
|
|
memset (dstp, 0, sizeof (bitset_word) * (dsize - ssize1)); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
static bool |
|
|
vbitset_andn_cmp (bitset dst, bitset src1, bitset src2) |
|
|
{ |
|
|
vbitset_resize (dst, max (BITSET_SIZE_ (src1), BITSET_SIZE_ (src2))); |
|
|
|
|
|
bitset_windex dsize = VBITSET_SIZE (dst); |
|
|
bitset_windex ssize1 = VBITSET_SIZE (src1); |
|
|
bitset_windex ssize2 = VBITSET_SIZE (src2); |
|
|
bitset_word *dstp = VBITSET_WORDS (dst); |
|
|
bitset_word *src1p = VBITSET_WORDS (src1); |
|
|
bitset_word *src2p = VBITSET_WORDS (src2); |
|
|
|
|
|
bool changed = false; |
|
|
unsigned i; |
|
|
for (i = 0; i < min (ssize1, ssize2); i++, dstp++) |
|
|
{ |
|
|
bitset_word tmp = *src1p++ & ~(*src2p++); |
|
|
|
|
|
if (*dstp != tmp) |
|
|
{ |
|
|
changed = true; |
|
|
*dstp = tmp; |
|
|
} |
|
|
} |
|
|
|
|
|
if (ssize2 > ssize1) |
|
|
{ |
|
|
for (; i < ssize2; i++, dstp++) |
|
|
{ |
|
|
if (*dstp != 0) |
|
|
{ |
|
|
changed = true; |
|
|
*dstp = 0; |
|
|
} |
|
|
} |
|
|
|
|
|
memset (dstp, 0, sizeof (bitset_word) * (dsize - ssize2)); |
|
|
} |
|
|
else |
|
|
{ |
|
|
for (; i < ssize1; i++, dstp++) |
|
|
{ |
|
|
bitset_word tmp = *src1p++; |
|
|
|
|
|
if (*dstp != tmp) |
|
|
{ |
|
|
changed = true; |
|
|
*dstp = tmp; |
|
|
} |
|
|
} |
|
|
|
|
|
memset (dstp, 0, sizeof (bitset_word) * (dsize - ssize1)); |
|
|
} |
|
|
|
|
|
return changed; |
|
|
} |
|
|
|
|
|
|
|
|
static void |
|
|
vbitset_or (bitset dst, bitset src1, bitset src2) |
|
|
{ |
|
|
vbitset_resize (dst, max (BITSET_SIZE_ (src1), BITSET_SIZE_ (src2))); |
|
|
|
|
|
bitset_windex dsize = VBITSET_SIZE (dst); |
|
|
bitset_windex ssize1 = VBITSET_SIZE (src1); |
|
|
bitset_windex ssize2 = VBITSET_SIZE (src2); |
|
|
bitset_word *dstp = VBITSET_WORDS (dst); |
|
|
bitset_word *src1p = VBITSET_WORDS (src1); |
|
|
bitset_word *src2p = VBITSET_WORDS (src2); |
|
|
|
|
|
unsigned i; |
|
|
for (i = 0; i < min (ssize1, ssize2); i++) |
|
|
*dstp++ = *src1p++ | *src2p++; |
|
|
|
|
|
if (ssize2 > ssize1) |
|
|
{ |
|
|
src1p = src2p; |
|
|
ssize1 = ssize2; |
|
|
} |
|
|
|
|
|
for (; i < ssize1; i++) |
|
|
*dstp++ = *src1p++; |
|
|
|
|
|
memset (dstp, 0, sizeof (bitset_word) * (dsize - ssize1)); |
|
|
} |
|
|
|
|
|
|
|
|
static bool |
|
|
vbitset_or_cmp (bitset dst, bitset src1, bitset src2) |
|
|
{ |
|
|
vbitset_resize (dst, max (BITSET_SIZE_ (src1), BITSET_SIZE_ (src2))); |
|
|
|
|
|
bitset_windex dsize = VBITSET_SIZE (dst); |
|
|
bitset_windex ssize1 = VBITSET_SIZE (src1); |
|
|
bitset_windex ssize2 = VBITSET_SIZE (src2); |
|
|
bitset_word *dstp = VBITSET_WORDS (dst); |
|
|
bitset_word *src1p = VBITSET_WORDS (src1); |
|
|
bitset_word *src2p = VBITSET_WORDS (src2); |
|
|
|
|
|
bool changed = false; |
|
|
unsigned i; |
|
|
for (i = 0; i < min (ssize1, ssize2); i++, dstp++) |
|
|
{ |
|
|
bitset_word tmp = *src1p++ | *src2p++; |
|
|
|
|
|
if (*dstp != tmp) |
|
|
{ |
|
|
changed = true; |
|
|
*dstp = tmp; |
|
|
} |
|
|
} |
|
|
|
|
|
if (ssize2 > ssize1) |
|
|
{ |
|
|
src1p = src2p; |
|
|
ssize1 = ssize2; |
|
|
} |
|
|
|
|
|
for (; i < ssize1; i++, dstp++) |
|
|
{ |
|
|
bitset_word tmp = *src1p++; |
|
|
|
|
|
if (*dstp != tmp) |
|
|
{ |
|
|
changed = true; |
|
|
*dstp = tmp; |
|
|
} |
|
|
} |
|
|
|
|
|
memset (dstp, 0, sizeof (bitset_word) * (dsize - ssize1)); |
|
|
|
|
|
return changed; |
|
|
} |
|
|
|
|
|
|
|
|
static void |
|
|
vbitset_xor (bitset dst, bitset src1, bitset src2) |
|
|
{ |
|
|
vbitset_resize (dst, max (BITSET_SIZE_ (src1), BITSET_SIZE_ (src2))); |
|
|
|
|
|
bitset_windex dsize = VBITSET_SIZE (dst); |
|
|
bitset_windex ssize1 = VBITSET_SIZE (src1); |
|
|
bitset_windex ssize2 = VBITSET_SIZE (src2); |
|
|
bitset_word *dstp = VBITSET_WORDS (dst); |
|
|
bitset_word *src1p = VBITSET_WORDS (src1); |
|
|
bitset_word *src2p = VBITSET_WORDS (src2); |
|
|
|
|
|
unsigned i; |
|
|
for (i = 0; i < min (ssize1, ssize2); i++) |
|
|
*dstp++ = *src1p++ ^ *src2p++; |
|
|
|
|
|
if (ssize2 > ssize1) |
|
|
{ |
|
|
src1p = src2p; |
|
|
ssize1 = ssize2; |
|
|
} |
|
|
|
|
|
for (; i < ssize1; i++) |
|
|
*dstp++ = *src1p++; |
|
|
|
|
|
memset (dstp, 0, sizeof (bitset_word) * (dsize - ssize1)); |
|
|
} |
|
|
|
|
|
|
|
|
static bool |
|
|
vbitset_xor_cmp (bitset dst, bitset src1, bitset src2) |
|
|
{ |
|
|
vbitset_resize (dst, max (BITSET_SIZE_ (src1), BITSET_SIZE_ (src2))); |
|
|
|
|
|
bitset_windex dsize = VBITSET_SIZE (dst); |
|
|
bitset_windex ssize1 = VBITSET_SIZE (src1); |
|
|
bitset_windex ssize2 = VBITSET_SIZE (src2); |
|
|
bitset_word *dstp = VBITSET_WORDS (dst); |
|
|
bitset_word *src1p = VBITSET_WORDS (src1); |
|
|
bitset_word *src2p = VBITSET_WORDS (src2); |
|
|
|
|
|
bool changed = false; |
|
|
unsigned i; |
|
|
for (i = 0; i < min (ssize1, ssize2); i++, dstp++) |
|
|
{ |
|
|
bitset_word tmp = *src1p++ ^ *src2p++; |
|
|
|
|
|
if (*dstp != tmp) |
|
|
{ |
|
|
changed = true; |
|
|
*dstp = tmp; |
|
|
} |
|
|
} |
|
|
|
|
|
if (ssize2 > ssize1) |
|
|
{ |
|
|
src1p = src2p; |
|
|
ssize1 = ssize2; |
|
|
} |
|
|
|
|
|
for (; i < ssize1; i++, dstp++) |
|
|
{ |
|
|
bitset_word tmp = *src1p++; |
|
|
|
|
|
if (*dstp != tmp) |
|
|
{ |
|
|
changed = true; |
|
|
*dstp = tmp; |
|
|
} |
|
|
} |
|
|
|
|
|
memset (dstp, 0, sizeof (bitset_word) * (dsize - ssize1)); |
|
|
|
|
|
return changed; |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
static void |
|
|
vbitset_and_or (bitset dst, bitset src1, bitset src2, bitset src3) |
|
|
{ |
|
|
if (BITSET_NBITS_ (src1) != BITSET_NBITS_ (src2) |
|
|
|| BITSET_NBITS_ (src1) != BITSET_NBITS_ (src3)) |
|
|
{ |
|
|
bitset_and_or_ (dst, src1, src2, src3); |
|
|
return; |
|
|
} |
|
|
|
|
|
vbitset_resize (dst, BITSET_NBITS_ (src1)); |
|
|
|
|
|
bitset_word *src1p = VBITSET_WORDS (src1); |
|
|
bitset_word *src2p = VBITSET_WORDS (src2); |
|
|
bitset_word *src3p = VBITSET_WORDS (src3); |
|
|
bitset_word *dstp = VBITSET_WORDS (dst); |
|
|
bitset_windex size = VBITSET_SIZE (dst); |
|
|
|
|
|
for (unsigned i = 0; i < size; i++) |
|
|
*dstp++ = (*src1p++ & *src2p++) | *src3p++; |
|
|
} |
|
|
|
|
|
|
|
|
static bool |
|
|
vbitset_and_or_cmp (bitset dst, bitset src1, bitset src2, bitset src3) |
|
|
{ |
|
|
if (BITSET_NBITS_ (src1) != BITSET_NBITS_ (src2) |
|
|
|| BITSET_NBITS_ (src1) != BITSET_NBITS_ (src3)) |
|
|
return bitset_and_or_cmp_ (dst, src1, src2, src3); |
|
|
|
|
|
vbitset_resize (dst, BITSET_NBITS_ (src1)); |
|
|
|
|
|
bitset_word *src1p = VBITSET_WORDS (src1); |
|
|
bitset_word *src2p = VBITSET_WORDS (src2); |
|
|
bitset_word *src3p = VBITSET_WORDS (src3); |
|
|
bitset_word *dstp = VBITSET_WORDS (dst); |
|
|
bitset_windex size = VBITSET_SIZE (dst); |
|
|
|
|
|
bool changed = false; |
|
|
for (unsigned i = 0; i < size; i++, dstp++) |
|
|
{ |
|
|
bitset_word tmp = (*src1p++ & *src2p++) | *src3p++; |
|
|
|
|
|
if (*dstp != tmp) |
|
|
{ |
|
|
changed = true; |
|
|
*dstp = tmp; |
|
|
} |
|
|
} |
|
|
return changed; |
|
|
} |
|
|
|
|
|
|
|
|
static void |
|
|
vbitset_andn_or (bitset dst, bitset src1, bitset src2, bitset src3) |
|
|
{ |
|
|
if (BITSET_NBITS_ (src1) != BITSET_NBITS_ (src2) |
|
|
|| BITSET_NBITS_ (src1) != BITSET_NBITS_ (src3)) |
|
|
{ |
|
|
bitset_andn_or_ (dst, src1, src2, src3); |
|
|
return; |
|
|
} |
|
|
|
|
|
vbitset_resize (dst, BITSET_NBITS_ (src1)); |
|
|
|
|
|
bitset_word *src1p = VBITSET_WORDS (src1); |
|
|
bitset_word *src2p = VBITSET_WORDS (src2); |
|
|
bitset_word *src3p = VBITSET_WORDS (src3); |
|
|
bitset_word *dstp = VBITSET_WORDS (dst); |
|
|
bitset_windex size = VBITSET_SIZE (dst); |
|
|
|
|
|
for (unsigned i = 0; i < size; i++) |
|
|
*dstp++ = (*src1p++ & ~(*src2p++)) | *src3p++; |
|
|
} |
|
|
|
|
|
|
|
|
static bool |
|
|
vbitset_andn_or_cmp (bitset dst, bitset src1, bitset src2, bitset src3) |
|
|
{ |
|
|
if (BITSET_NBITS_ (src1) != BITSET_NBITS_ (src2) |
|
|
|| BITSET_NBITS_ (src1) != BITSET_NBITS_ (src3)) |
|
|
return bitset_andn_or_cmp_ (dst, src1, src2, src3); |
|
|
|
|
|
vbitset_resize (dst, BITSET_NBITS_ (src1)); |
|
|
|
|
|
bitset_word *src1p = VBITSET_WORDS (src1); |
|
|
bitset_word *src2p = VBITSET_WORDS (src2); |
|
|
bitset_word *src3p = VBITSET_WORDS (src3); |
|
|
bitset_word *dstp = VBITSET_WORDS (dst); |
|
|
bitset_windex size = VBITSET_SIZE (dst); |
|
|
|
|
|
bool changed = false; |
|
|
for (unsigned i = 0; i < size; i++, dstp++) |
|
|
{ |
|
|
bitset_word tmp = (*src1p++ & ~(*src2p++)) | *src3p++; |
|
|
|
|
|
if (*dstp != tmp) |
|
|
{ |
|
|
changed = true; |
|
|
*dstp = tmp; |
|
|
} |
|
|
} |
|
|
return changed; |
|
|
} |
|
|
|
|
|
|
|
|
static void |
|
|
vbitset_or_and (bitset dst, bitset src1, bitset src2, bitset src3) |
|
|
{ |
|
|
if (BITSET_NBITS_ (src1) != BITSET_NBITS_ (src2) |
|
|
|| BITSET_NBITS_ (src1) != BITSET_NBITS_ (src3)) |
|
|
{ |
|
|
bitset_or_and_ (dst, src1, src2, src3); |
|
|
return; |
|
|
} |
|
|
|
|
|
vbitset_resize (dst, BITSET_NBITS_ (src1)); |
|
|
|
|
|
bitset_word *src1p = VBITSET_WORDS (src1); |
|
|
bitset_word *src2p = VBITSET_WORDS (src2); |
|
|
bitset_word *src3p = VBITSET_WORDS (src3); |
|
|
bitset_word *dstp = VBITSET_WORDS (dst); |
|
|
bitset_windex size = VBITSET_SIZE (dst); |
|
|
|
|
|
for (unsigned i = 0; i < size; i++) |
|
|
*dstp++ = (*src1p++ | *src2p++) & *src3p++; |
|
|
} |
|
|
|
|
|
|
|
|
static bool |
|
|
vbitset_or_and_cmp (bitset dst, bitset src1, bitset src2, bitset src3) |
|
|
{ |
|
|
if (BITSET_NBITS_ (src1) != BITSET_NBITS_ (src2) |
|
|
|| BITSET_NBITS_ (src1) != BITSET_NBITS_ (src3)) |
|
|
return bitset_or_and_cmp_ (dst, src1, src2, src3); |
|
|
|
|
|
vbitset_resize (dst, BITSET_NBITS_ (src1)); |
|
|
|
|
|
bitset_word *src1p = VBITSET_WORDS (src1); |
|
|
bitset_word *src2p = VBITSET_WORDS (src2); |
|
|
bitset_word *src3p = VBITSET_WORDS (src3); |
|
|
bitset_word *dstp = VBITSET_WORDS (dst); |
|
|
bitset_windex size = VBITSET_SIZE (dst); |
|
|
|
|
|
bool changed = false; |
|
|
unsigned i; |
|
|
for (i = 0; i < size; i++, dstp++) |
|
|
{ |
|
|
bitset_word tmp = (*src1p++ | *src2p++) & *src3p++; |
|
|
|
|
|
if (*dstp != tmp) |
|
|
{ |
|
|
changed = true; |
|
|
*dstp = tmp; |
|
|
} |
|
|
} |
|
|
return changed; |
|
|
} |
|
|
|
|
|
|
|
|
static void |
|
|
vbitset_copy (bitset dst, bitset src) |
|
|
{ |
|
|
if (BITSET_COMPATIBLE_ (dst, src)) |
|
|
vbitset_copy1 (dst, src); |
|
|
else |
|
|
bitset_copy_ (dst, src); |
|
|
} |
|
|
|
|
|
|
|
|
static void |
|
|
vbitset_free (bitset bset) |
|
|
{ |
|
|
free (VBITSET_WORDS (bset)); |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
static struct bitset_vtable vbitset_vtable = { |
|
|
vbitset_set, |
|
|
vbitset_reset, |
|
|
bitset_toggle_, |
|
|
vbitset_test, |
|
|
vbitset_resize, |
|
|
bitset_size_, |
|
|
bitset_count_, |
|
|
vbitset_empty_p, |
|
|
vbitset_ones, |
|
|
vbitset_zero, |
|
|
vbitset_copy, |
|
|
vbitset_disjoint_p, |
|
|
vbitset_equal_p, |
|
|
vbitset_not, |
|
|
vbitset_subset_p, |
|
|
vbitset_and, |
|
|
vbitset_and_cmp, |
|
|
vbitset_andn, |
|
|
vbitset_andn_cmp, |
|
|
vbitset_or, |
|
|
vbitset_or_cmp, |
|
|
vbitset_xor, |
|
|
vbitset_xor_cmp, |
|
|
vbitset_and_or, |
|
|
vbitset_and_or_cmp, |
|
|
vbitset_andn_or, |
|
|
vbitset_andn_or_cmp, |
|
|
vbitset_or_and, |
|
|
vbitset_or_and_cmp, |
|
|
vbitset_list, |
|
|
vbitset_list_reverse, |
|
|
vbitset_free, |
|
|
BITSET_VECTOR |
|
|
}; |
|
|
|
|
|
|
|
|
size_t |
|
|
vbitset_bytes (MAYBE_UNUSED bitset_bindex n_bits) |
|
|
{ |
|
|
return sizeof (struct vbitset_struct); |
|
|
} |
|
|
|
|
|
|
|
|
bitset |
|
|
vbitset_init (bitset bset, bitset_bindex n_bits) |
|
|
{ |
|
|
bset->b.vtable = &vbitset_vtable; |
|
|
bset->b.cindex = 0; |
|
|
VBITSET_SIZE (bset) = 0; |
|
|
vbitset_resize (bset, n_bits); |
|
|
return bset; |
|
|
} |
|
|
|