Regen.
[bison/ericb.git] / lib / bitset.c
blobef4c6b2758b2eb193fb91aa90dc245d1c6beb36b
1 /* General bitsets.
2 Copyright (C) 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
3 Contributed by Michael Hayes (m.hayes@elec.canterbury.ac.nz).
5 This program is free software: you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation, either version 3 of the License, or
8 (at your option) any later version.
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
15 You should have received a copy of the GNU General Public License
16 along with this program. If not, see <http://www.gnu.org/licenses/>. */
18 #include <config.h>
20 #include "bitset.h"
22 #include <stdlib.h>
23 #include <string.h>
24 #include "abitset.h"
25 #include "lbitset.h"
26 #include "ebitset.h"
27 #include "vbitset.h"
28 #include "bitset_stats.h"
29 #include "obstack.h"
31 const char * const bitset_type_names[] = BITSET_TYPE_NAMES;
34 /* Return number of bytes required to create a N_BIT bitset
35 of TYPE. The bitset may grow to require more bytes than this. */
36 size_t
37 bitset_bytes (enum bitset_type type, bitset_bindex n_bits)
39 size_t bytes;
41 if (bitset_stats_enabled)
42 return bitset_stats_bytes ();
44 switch (type)
46 default:
47 abort ();
49 case BITSET_ARRAY:
50 bytes = abitset_bytes (n_bits);
51 break;
53 case BITSET_LIST:
54 bytes = lbitset_bytes (n_bits);
55 break;
57 case BITSET_TABLE:
58 bytes = ebitset_bytes (n_bits);
59 break;
61 case BITSET_VARRAY:
62 bytes = vbitset_bytes (n_bits);
63 break;
66 return bytes;
70 /* Initialise bitset BSET of TYPE for N_BITS. */
71 bitset
72 bitset_init (bitset bset, bitset_bindex n_bits, enum bitset_type type)
74 if (bitset_stats_enabled)
75 return bitset_stats_init (bset, n_bits, type);
77 switch (type)
79 default:
80 abort ();
82 case BITSET_ARRAY:
83 return abitset_init (bset, n_bits);
85 case BITSET_LIST:
86 return lbitset_init (bset, n_bits);
88 case BITSET_TABLE:
89 return ebitset_init (bset, n_bits);
91 case BITSET_VARRAY:
92 return vbitset_init (bset, n_bits);
97 /* Select a bitset type for a set of N_BITS and with attribute hints
98 specified by ATTR. For variable size bitsets, N_BITS is only a
99 hint and may be zero. */
100 enum bitset_type
101 bitset_type_choose (bitset_bindex n_bits ATTRIBUTE_UNUSED, unsigned int attr)
103 /* Check attributes. */
104 if (attr & BITSET_FIXED && attr & BITSET_VARIABLE)
105 abort ();
106 if (attr & BITSET_SPARSE && attr & BITSET_DENSE)
107 abort ();
109 /* Choose the type of bitset. Note that sometimes we will be asked
110 for a zero length fixed size bitset. */
113 /* If no attributes selected, choose a good compromise. */
114 if (!attr)
115 return BITSET_VARRAY;
117 if (attr & BITSET_SPARSE)
118 return BITSET_LIST;
120 if (attr & BITSET_FIXED)
121 return BITSET_ARRAY;
123 if (attr & BITSET_GREEDY)
124 return BITSET_TABLE;
126 return BITSET_VARRAY;
130 /* Create a bitset of N_BITS of type TYPE. */
131 bitset
132 bitset_alloc (bitset_bindex n_bits, enum bitset_type type)
134 size_t bytes;
135 bitset bset;
137 bytes = bitset_bytes (type, n_bits);
139 bset = xcalloc (1, bytes);
141 /* The cache is disabled until some elements are allocated. If we
142 have variable length arrays, then we may need to allocate a dummy
143 element. */
145 return bitset_init (bset, n_bits, type);
149 /* Create a bitset of N_BITS of type TYPE. */
150 bitset
151 bitset_obstack_alloc (struct obstack *bobstack,
152 bitset_bindex n_bits, enum bitset_type type)
154 size_t bytes;
155 bitset bset;
157 bytes = bitset_bytes (type, n_bits);
159 bset = obstack_alloc (bobstack, bytes);
160 memset (bset, 0, bytes);
162 return bitset_init (bset, n_bits, type);
166 /* Create a bitset of N_BITS and with attribute hints specified by
167 ATTR. */
168 bitset
169 bitset_create (bitset_bindex n_bits, unsigned int attr)
171 enum bitset_type type;
173 type = bitset_type_choose (n_bits, attr);
175 return bitset_alloc (n_bits, type);
179 /* Free bitset BSET. */
180 void
181 bitset_free (bitset bset)
183 BITSET_FREE_ (bset);
184 free (bset);
188 /* Free bitset BSET allocated on obstack. */
189 void
190 bitset_obstack_free (bitset bset)
192 BITSET_FREE_ (bset);
196 /* Return bitset type. */
197 enum bitset_type
198 bitset_type_get (bitset bset)
200 enum bitset_type type;
202 type = BITSET_TYPE_ (bset);
203 if (type != BITSET_STATS)
204 return type;
206 return bitset_stats_type_get (bset);
210 /* Return name of bitset type. */
211 const char *
212 bitset_type_name_get (bitset bset)
214 enum bitset_type type;
216 type = bitset_type_get (bset);
218 return bitset_type_names[type];
222 /* Find next bit set in SRC starting from and including BITNO.
223 Return BITSET_BINDEX_MAX if SRC empty. */
224 bitset_bindex
225 bitset_next (bitset src, bitset_bindex bitno)
227 bitset_bindex val;
228 bitset_bindex next = bitno;
230 if (!bitset_list (src, &val, 1, &next))
231 return BITSET_BINDEX_MAX;
232 return val;
236 /* Return true if both bitsets are of the same type and size. */
237 extern bool
238 bitset_compatible_p (bitset bset1, bitset bset2)
240 return BITSET_COMPATIBLE_ (bset1, bset2);
244 /* Find previous bit set in SRC starting from and including BITNO.
245 Return BITSET_BINDEX_MAX if SRC empty. */
246 bitset_bindex
247 bitset_prev (bitset src, bitset_bindex bitno)
249 bitset_bindex val;
250 bitset_bindex next = bitno;
252 if (!bitset_list_reverse (src, &val, 1, &next))
253 return BITSET_BINDEX_MAX;
254 return val;
258 /* Find first set bit. */
259 bitset_bindex
260 bitset_first (bitset src)
262 return bitset_next (src, 0);
266 /* Find last set bit. */
267 bitset_bindex
268 bitset_last (bitset src)
270 return bitset_prev (src, 0);
274 /* Is BITNO in SRC the only set bit? */
275 bool
276 bitset_only_set_p (bitset src, bitset_bindex bitno)
278 bitset_bindex val[2];
279 bitset_bindex next = 0;
281 if (bitset_list (src, val, 2, &next) != 1)
282 return false;
283 return val[0] == bitno;
287 /* Print contents of bitset BSET to FILE. */
288 static void
289 bitset_print (FILE *file, bitset bset, bool verbose)
291 unsigned int pos;
292 bitset_bindex i;
293 bitset_iterator iter;
295 if (verbose)
296 fprintf (file, "n_bits = %lu, set = {",
297 (unsigned long int) bitset_size (bset));
299 pos = 30;
300 BITSET_FOR_EACH (iter, bset, i, 0)
302 if (pos > 70)
304 fprintf (file, "\n");
305 pos = 0;
308 fprintf (file, "%lu ", (unsigned long int) i);
309 pos += 1 + (i >= 10) + (i >= 100);
312 if (verbose)
313 fprintf (file, "}\n");
317 /* Dump bitset BSET to FILE. */
318 void
319 bitset_dump (FILE *file, bitset bset)
321 bitset_print (file, bset, false);
325 /* Release memory associated with bitsets. */
326 void
327 bitset_release_memory (void)
329 lbitset_release_memory ();
330 ebitset_release_memory ();
334 /* Toggle bit BITNO in bitset BSET and the new value of the bit. */
335 bool
336 bitset_toggle_ (bitset bset, bitset_bindex bitno)
338 /* This routine is for completeness. It could be optimized if
339 required. */
340 if (bitset_test (bset, bitno))
342 bitset_reset (bset, bitno);
343 return false;
345 else
347 bitset_set (bset, bitno);
348 return true;
353 /* Return number of bits in bitset SRC. */
354 bitset_bindex
355 bitset_size_ (bitset src)
357 return BITSET_NBITS_ (src);
361 /* Return number of bits set in bitset SRC. */
362 bitset_bindex
363 bitset_count_ (bitset src)
365 bitset_bindex list[BITSET_LIST_SIZE];
366 bitset_bindex next;
367 bitset_bindex num;
368 bitset_bindex count;
370 /* This could be greatly sped up by adding a count method for each
371 bitset implementation that uses a direct technique (based on
372 masks) for counting the number of bits set in a word. */
374 next = 0;
375 for (count = 0; (num = bitset_list (src, list, BITSET_LIST_SIZE, &next));
376 count += num)
377 continue;
379 return count;
383 /* DST = SRC. Return true if DST != SRC.
384 This is a fallback for the case where SRC and DST are different
385 bitset types. */
386 bool
387 bitset_copy_ (bitset dst, bitset src)
389 bitset_bindex i;
390 bitset_iterator iter;
392 /* Convert bitset types. We assume that the DST bitset
393 is large enough to hold the SRC bitset. */
394 bitset_zero (dst);
395 BITSET_FOR_EACH (iter, src, i, 0)
397 bitset_set (dst, i);
400 return true;
404 /* This is a fallback for implementations that do not support
405 four operand operations. */
406 static inline bool
407 bitset_op4_cmp (bitset dst, bitset src1, bitset src2, bitset src3,
408 enum bitset_ops op)
410 bool changed = false;
411 bool stats_enabled_save;
412 bitset tmp;
414 /* Create temporary bitset. */
415 stats_enabled_save = bitset_stats_enabled;
416 bitset_stats_enabled = false;
417 tmp = bitset_alloc (0, bitset_type_get (dst));
418 bitset_stats_enabled = stats_enabled_save;
420 switch (op)
422 default:
423 abort ();
425 case BITSET_OP_OR_AND:
426 bitset_or (tmp, src1, src2);
427 changed = bitset_and_cmp (dst, src3, tmp);
428 break;
430 case BITSET_OP_AND_OR:
431 bitset_and (tmp, src1, src2);
432 changed = bitset_or_cmp (dst, src3, tmp);
433 break;
435 case BITSET_OP_ANDN_OR:
436 bitset_andn (tmp, src1, src2);
437 changed = bitset_or_cmp (dst, src3, tmp);
438 break;
441 bitset_free (tmp);
442 return changed;
446 /* DST = (SRC1 & SRC2) | SRC3. */
447 void
448 bitset_and_or_ (bitset dst, bitset src1, bitset src2, bitset src3)
450 bitset_and_or_cmp_ (dst, src1, src2, src3);
454 /* DST = (SRC1 & SRC2) | SRC3. Return non-zero if
455 DST != (SRC1 & SRC2) | SRC3. */
456 bool
457 bitset_and_or_cmp_ (bitset dst, bitset src1, bitset src2, bitset src3)
459 return bitset_op4_cmp (dst, src1, src2, src3, BITSET_OP_AND_OR);
463 /* DST = (SRC1 & ~SRC2) | SRC3. */
464 void
465 bitset_andn_or_ (bitset dst, bitset src1, bitset src2, bitset src3)
467 bitset_andn_or_cmp_ (dst, src1, src2, src3);
471 /* DST = (SRC1 & ~SRC2) | SRC3. Return non-zero if
472 DST != (SRC1 & ~SRC2) | SRC3. */
473 bool
474 bitset_andn_or_cmp_ (bitset dst, bitset src1, bitset src2, bitset src3)
476 return bitset_op4_cmp (dst, src1, src2, src3, BITSET_OP_ANDN_OR);
480 /* DST = (SRC1 | SRC2) & SRC3. */
481 void
482 bitset_or_and_ (bitset dst, bitset src1, bitset src2, bitset src3)
484 bitset_or_and_cmp_ (dst, src1, src2, src3);
488 /* DST = (SRC1 | SRC2) & SRC3. Return non-zero if
489 DST != (SRC1 | SRC2) & SRC3. */
490 bool
491 bitset_or_and_cmp_ (bitset dst, bitset src1, bitset src2, bitset src3)
493 return bitset_op4_cmp (dst, src1, src2, src3, BITSET_OP_OR_AND);
497 /* Function to be called from debugger to print bitset. */
498 void
499 debug_bitset (bitset bset)
501 if (bset)
502 bitset_print (stderr, bset, true);