]> git.saurik.com Git - bison.git/blame - lib/lbitset.c
No longer needed, since we're not using the stage stuff.
[bison.git] / lib / lbitset.c
CommitLineData
7086e707
AD
1/* Functions to support link list bitsets.
2 Copyright (C) 2002 Free Software Foundation, Inc.
3 Contributed by Michael Hayes (m.hayes@elec.canterbury.ac.nz).
4
ef017502
AD
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 2 of the License, or
8 (at your option) any later version.
7086e707 9
ef017502
AD
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.
7086e707 14
ef017502
AD
15 You should have received a copy of the GNU General Public License
16 along with this program; if not, write to the Free Software
345cea78
AD
17 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18*/
7086e707
AD
19
20#ifdef HAVE_CONFIG_H
21#include "config.h"
22#endif
23
345cea78 24#include "lbitset.h"
7086e707
AD
25#include "obstack.h"
26#include <stdlib.h>
27
7086e707
AD
28/* This file implements linked-list bitsets. These bitsets can be of
29 arbitrary length and are more efficient than arrays of bits for
30 large sparse sets.
31
ef017502
AD
32 Usually if all the bits in an element are zero we remove the element
33 from the list. However, a side effect of the bit caching is that we
34 do not always notice when an element becomes zero. Hence the
35 lbitset_weed function which removes zero elements. */
36
37
38/* Number of words to use for each element. The larger the value the
39 greater the size of the cache and the shorter the time to find a given bit
40 but the more memory wasted for sparse bitsets and the longer the time
41 to search for set bits. */
42
ef017502 43#define LBITSET_ELT_WORDS 2
ef017502
AD
44
45typedef bitset_word lbitset_word;
46
47#define LBITSET_WORD_BITS BITSET_WORD_BITS
48
49/* Number of bits stored in each element. */
50#define LBITSET_ELT_BITS \
51 ((unsigned) (LBITSET_ELT_WORDS * LBITSET_WORD_BITS))
52
53/* Lbitset element. We use an array of bits for each element.
54 These are linked together in a doubly-linked list. */
55typedef struct lbitset_elt_struct
56{
57 struct lbitset_elt_struct *next; /* Next element. */
58 struct lbitset_elt_struct *prev; /* Previous element. */
59 bitset_windex index; /* bitno / BITSET_WORD_BITS. */
60 bitset_word words[LBITSET_ELT_WORDS]; /* Bits that are set. */
61}
62lbitset_elt;
63
64
65/* Head of lbitset linked list. */
66typedef struct lbitset_struct
67{
68 lbitset_elt *head; /* First element in linked list. */
69 lbitset_elt *tail; /* Last element in linked list. */
70}
71*lbitset;
72
7086e707 73
ef017502
AD
74struct bitset_struct
75{
76 struct bbitset_struct b;
77 struct lbitset_struct l;
78};
7086e707 79
ef017502
AD
80
81enum lbitset_find_mode
82 { LBITSET_FIND, LBITSET_CREATE, LBITSET_SUBST };
83
345cea78 84static lbitset_elt lbitset_zero_elts[3]; /* Elements of all zero bits. */
7086e707
AD
85
86/* Obstack to allocate bitset elements from. */
87static struct obstack lbitset_obstack;
88static int lbitset_obstack_init = 0;
ef017502 89static lbitset_elt *lbitset_free_list; /* Free list of bitset elements. */
7086e707
AD
90
91static lbitset_elt *lbitset_elt_alloc PARAMS ((void));
92static lbitset_elt *lbitset_elt_calloc PARAMS ((void));
93static void lbitset_elt_link PARAMS ((bitset, lbitset_elt *));
94static void lbitset_elt_unlink PARAMS ((bitset, lbitset_elt *));
95static void lbitset_elt_free PARAMS ((lbitset_elt *));
96static lbitset_elt *lbitset_elt_find PARAMS ((bitset, bitset_windex,
97 enum lbitset_find_mode));
98static int lbitset_elt_zero_p PARAMS ((lbitset_elt *));
99
100static void lbitset_prune PARAMS ((bitset, lbitset_elt *));
101static void lbitset_weed PARAMS ((bitset));
ef017502
AD
102static void lbitset_zero PARAMS ((bitset));
103static int lbitset_equal_p PARAMS ((bitset, bitset));
104static void lbitset_copy PARAMS ((bitset, bitset));
105static int lbitset_copy_compare PARAMS ((bitset, bitset));
106static void lbitset_set PARAMS ((bitset, bitset_bindex));
107static void lbitset_reset PARAMS ((bitset, bitset_bindex));
108static int lbitset_test PARAMS ((bitset, bitset_bindex));
109static int lbitset_size PARAMS ((bitset));
110static int lbitset_op1 PARAMS ((bitset, enum bitset_ops));
111static int lbitset_op2 PARAMS ((bitset, bitset, enum bitset_ops));
112static int lbitset_op3 PARAMS ((bitset, bitset, bitset, enum bitset_ops));
113static int lbitset_list PARAMS ((bitset, bitset_bindex *, bitset_bindex,
114 bitset_bindex *));
115static int lbitset_reverse_list
116PARAMS ((bitset, bitset_bindex *, bitset_bindex, bitset_bindex *));
117static void lbitset_free PARAMS ((bitset));
7086e707
AD
118
119
120#define LBITSET_CURRENT1(X) (lbitset_elt *)((char *)(X) + ((char *)&(((lbitset_elt *)(X))->next) - (char *)&(((lbitset_elt *)(X))->words)))
121
ef017502 122#define LBITSET_CURRENT(X) LBITSET_CURRENT1((X)->b.cdata)
7086e707 123
ef017502
AD
124#define LBITSET_HEAD(X) ((X)->l.head)
125#define LBITSET_TAIL(X) ((X)->l.tail)
7086e707
AD
126
127/* Allocate a lbitset element. The bits are not cleared. */
128static inline lbitset_elt *
129lbitset_elt_alloc ()
130{
131 lbitset_elt *elt;
132
133 if (lbitset_free_list != 0)
134 {
135 elt = lbitset_free_list;
136 lbitset_free_list = elt->next;
137 }
138 else
139 {
7086e707
AD
140 if (!lbitset_obstack_init)
141 {
142 lbitset_obstack_init = 1;
143
144 /* Let particular systems override the size of a chunk. */
ef017502 145
7086e707
AD
146#ifndef OBSTACK_CHUNK_SIZE
147#define OBSTACK_CHUNK_SIZE 0
148#endif
ef017502 149
7086e707 150 /* Let them override the alloc and free routines too. */
ef017502 151
7086e707
AD
152#ifndef OBSTACK_CHUNK_ALLOC
153#define OBSTACK_CHUNK_ALLOC xmalloc
154#endif
ef017502 155
7086e707
AD
156#ifndef OBSTACK_CHUNK_FREE
157#define OBSTACK_CHUNK_FREE free
158#endif
159
160#if !defined(__GNUC__) || (__GNUC__ < 2)
161#define __alignof__(type) 0
162#endif
163
164 obstack_specify_allocation (&lbitset_obstack, OBSTACK_CHUNK_SIZE,
165 __alignof__ (lbitset_elt),
ef017502
AD
166 (void *(*)PARAMS ((long)))
167 OBSTACK_CHUNK_ALLOC,
168 (void (*)PARAMS ((void *)))
169 OBSTACK_CHUNK_FREE);
7086e707
AD
170 }
171
172 /* Perhaps we should add a number of new elements to the free
ef017502 173 list. */
7086e707
AD
174 elt = (lbitset_elt *) obstack_alloc (&lbitset_obstack,
175 sizeof (lbitset_elt));
176 }
177
178 return elt;
179}
180
181
613f5e1a 182/* Allocate a lbitset element. The bits are cleared. */
7086e707
AD
183static inline lbitset_elt *
184lbitset_elt_calloc ()
185{
186 lbitset_elt *elt;
187
188 elt = lbitset_elt_alloc ();
189 memset (elt->words, 0, sizeof (elt->words));
190 return elt;
191}
192
193
194static inline void
195lbitset_elt_free (elt)
196 lbitset_elt *elt;
197{
198 elt->next = lbitset_free_list;
199 lbitset_free_list = elt;
200}
201
202
203/* Unlink element ELT from bitset BSET. */
204static inline void
205lbitset_elt_unlink (bset, elt)
206 bitset bset;
207 lbitset_elt *elt;
208{
209 lbitset_elt *next = elt->next;
210 lbitset_elt *prev = elt->prev;
211
212 if (prev)
213 prev->next = next;
214
215 if (next)
216 next->prev = prev;
217
218 if (LBITSET_HEAD (bset) == elt)
219 LBITSET_HEAD (bset) = next;
220 if (LBITSET_TAIL (bset) == elt)
221 LBITSET_TAIL (bset) = prev;
222
223 /* Update cache pointer. Since the first thing we try is to insert
224 before current, make current the next entry in preference to the
225 previous. */
226 if (LBITSET_CURRENT (bset) == elt)
227 {
228 if (next)
229 {
ef017502
AD
230 bset->b.cdata = next->words;
231 bset->b.cindex = next->index;
7086e707
AD
232 }
233 else if (prev)
234 {
ef017502
AD
235 bset->b.cdata = prev->words;
236 bset->b.cindex = prev->index;
7086e707
AD
237 }
238 else
239 {
ef017502
AD
240 bset->b.csize = 0;
241 bset->b.cdata = 0;
7086e707
AD
242 }
243 }
244
245 lbitset_elt_free (elt);
246}
247
248
249/* Cut the chain of bitset BSET before element ELT and free the
250 elements. */
251static inline void
252lbitset_prune (bset, elt)
253 bitset bset;
254 lbitset_elt *elt;
255{
256 lbitset_elt *next;
257
258 if (!elt)
ef017502 259 return;
7086e707
AD
260
261 if (elt->prev)
ef017502 262 {
7086e707 263 LBITSET_TAIL (bset) = elt->prev;
ef017502
AD
264 bset->b.cdata = elt->prev->words;
265 bset->b.cindex = elt->prev->index;
7086e707 266 elt->prev->next = 0;
ef017502 267 }
7086e707 268 else
ef017502 269 {
7086e707
AD
270 LBITSET_HEAD (bset) = 0;
271 LBITSET_TAIL (bset) = 0;
ef017502
AD
272 bset->b.cdata = 0;
273 bset->b.csize = 0;
274 }
7086e707
AD
275
276 for (; elt; elt = next)
277 {
278 next = elt->next;
279 lbitset_elt_free (elt);
280 }
281}
282
283
284/* Return nonzero if all bits in an element are zero. */
285static inline int
286lbitset_elt_zero_p (elt)
287 lbitset_elt *elt;
288{
289 int i;
290
291 for (i = 0; i < LBITSET_ELT_WORDS; i++)
292 if (elt->words[i])
293 return 0;
294
295 return 1;
296}
297
298
299/* Link the bitset element into the current bitset linked list. */
300static inline void
301lbitset_elt_link (bset, elt)
302 bitset bset;
303 lbitset_elt *elt;
304{
345cea78 305 bitset_windex windex = elt->index;
7086e707
AD
306 lbitset_elt *ptr;
307 lbitset_elt *current;
308
ef017502
AD
309 if (bset->b.csize)
310 current = LBITSET_CURRENT (bset);
7086e707 311 else
ef017502 312 current = LBITSET_HEAD (bset);
7086e707
AD
313
314 /* If this is the first and only element, add it in. */
315 if (LBITSET_HEAD (bset) == 0)
316 {
317 elt->next = elt->prev = 0;
318 LBITSET_HEAD (bset) = elt;
319 LBITSET_TAIL (bset) = elt;
320 }
321
322 /* If this index is less than that of the current element, it goes
323 somewhere before the current element. */
345cea78 324 else if (windex < bset->b.cindex)
7086e707
AD
325 {
326 for (ptr = current;
345cea78 327 ptr->prev && ptr->prev->index > windex; ptr = ptr->prev)
7086e707
AD
328 continue;
329
330 if (ptr->prev)
331 ptr->prev->next = elt;
332 else
333 LBITSET_HEAD (bset) = elt;
334
335 elt->prev = ptr->prev;
336 elt->next = ptr;
337 ptr->prev = elt;
338 }
339
340 /* Otherwise, it must go somewhere after the current element. */
341 else
342 {
343 for (ptr = current;
345cea78 344 ptr->next && ptr->next->index < windex; ptr = ptr->next)
7086e707
AD
345 continue;
346
347 if (ptr->next)
348 ptr->next->prev = elt;
349 else
350 LBITSET_TAIL (bset) = elt;
351
352 elt->next = ptr->next;
353 elt->prev = ptr;
354 ptr->next = elt;
355 }
356
357 /* Set up so this is the first element searched. */
345cea78 358 bset->b.cindex = windex;
ef017502
AD
359 bset->b.csize = LBITSET_ELT_WORDS;
360 bset->b.cdata = elt->words;
7086e707
AD
361}
362
363
364static lbitset_elt *
345cea78 365lbitset_elt_find (bset, windex, mode)
7086e707 366 bitset bset;
345cea78 367 bitset_windex windex;
7086e707
AD
368 enum lbitset_find_mode mode;
369{
370 lbitset_elt *elt;
371 lbitset_elt *current;
372
ef017502 373 if (bset->b.csize)
7086e707
AD
374 {
375 current = LBITSET_CURRENT (bset);
376 /* Check if element is the cached element. */
345cea78 377 if ((windex - bset->b.cindex) < bset->b.csize)
7086e707
AD
378 return current;
379 }
380 else
381 {
382 current = LBITSET_HEAD (bset);
383 }
384
385 if (current)
386 {
345cea78 387 if (windex < bset->b.cindex)
7086e707
AD
388 {
389 for (elt = current;
345cea78 390 elt->prev && elt->index > windex; elt = elt->prev)
7086e707
AD
391 continue;
392 }
393 else
394 {
395 for (elt = current;
345cea78 396 elt->next && (elt->index + LBITSET_ELT_WORDS - 1) < windex;
7086e707
AD
397 elt = elt->next)
398 continue;
399 }
400
401 /* `element' is the nearest to the one we want. If it's not the one
402 we want, the one we want does not exist. */
345cea78 403 if (elt && (windex - elt->index) < LBITSET_ELT_WORDS)
7086e707 404 {
ef017502
AD
405 bset->b.cindex = elt->index;
406 bset->b.csize = LBITSET_ELT_WORDS;
407 bset->b.cdata = elt->words;
7086e707
AD
408 return elt;
409 }
410 }
411
412 switch (mode)
413 {
414 case LBITSET_FIND:
415 return 0;
416
417 case LBITSET_CREATE:
345cea78 418 windex = (windex / (unsigned) LBITSET_ELT_WORDS) * LBITSET_ELT_WORDS;
7086e707
AD
419
420 elt = lbitset_elt_calloc ();
345cea78 421 elt->index = windex;
7086e707
AD
422 lbitset_elt_link (bset, elt);
423 return elt;
424
425 case LBITSET_SUBST:
426 return &lbitset_zero_elts[0];
427
428 default:
429 abort ();
430 }
431}
432
433
434/* Weed out the zero elements from the list. */
435static inline void
436lbitset_weed (bset)
437 bitset bset;
438{
439 lbitset_elt *elt;
440 lbitset_elt *next;
441
442 for (elt = LBITSET_HEAD (bset); elt; elt = next)
443 {
444 next = elt->next;
445 if (lbitset_elt_zero_p (elt))
446 lbitset_elt_unlink (bset, elt);
447 }
448}
449
450
451/* Set all bits in the bitset to zero. */
452static inline void
453lbitset_zero (bset)
454 bitset bset;
455{
456 lbitset_elt *head;
457
458 head = LBITSET_HEAD (bset);
459 if (!head)
460 return;
461
462 /* Clear a bitset by freeing the linked list at the head element. */
463 lbitset_prune (bset, head);
464}
465
466
467static inline int
468lbitset_equal_p (dst, src)
469 bitset dst;
470 bitset src;
471{
472 lbitset_elt *selt;
473 lbitset_elt *delt;
474 int j;
475
476 if (src == dst)
477 return 1;
478
479 lbitset_weed (src);
480 lbitset_weed (dst);
481 for (selt = LBITSET_HEAD (src), delt = LBITSET_HEAD (dst);
482 selt && delt; selt = selt->next, delt = delt->next)
483 {
484 if (selt->index != delt->index)
485 return 0;
486
487 for (j = 0; j < LBITSET_ELT_WORDS; j++)
488 if (delt->words[j] != selt->words[j])
489 return 0;
490 }
ef017502 491 return !selt && !delt;
7086e707
AD
492}
493
494
495/* Copy bits from bitset SRC to bitset DST. */
496static inline void
497lbitset_copy (dst, src)
498 bitset dst;
499 bitset src;
500{
501 lbitset_elt *elt;
502 lbitset_elt *head;
503 lbitset_elt *prev;
504 lbitset_elt *tmp;
505
506 if (src == dst)
507 return;
508
509 lbitset_zero (dst);
510
511 head = LBITSET_HEAD (src);
512 if (!head)
513 return;
514
515 prev = 0;
516 for (elt = head; elt; elt = elt->next)
517 {
518 tmp = lbitset_elt_alloc ();
519 tmp->index = elt->index;
520 tmp->prev = prev;
521 tmp->next = 0;
522 if (prev)
523 prev->next = tmp;
524 else
525 LBITSET_HEAD (dst) = tmp;
526 prev = tmp;
527
528 memcpy (tmp->words, elt->words, sizeof (elt->words));
529 }
530 LBITSET_TAIL (dst) = tmp;
531
ef017502
AD
532 dst->b.csize = LBITSET_ELT_WORDS;
533 dst->b.cdata = LBITSET_HEAD (dst)->words;
534 dst->b.cindex = LBITSET_HEAD (dst)->index;
7086e707
AD
535}
536
537
538/* Copy bits from bitset SRC to bitset DST. Return non-zero if
539 bitsets different. */
540static inline int
541lbitset_copy_compare (dst, src)
542 bitset dst;
543 bitset src;
544{
545 if (src == dst)
546 return 0;
547
ef017502 548 if (!LBITSET_HEAD (dst))
7086e707
AD
549 {
550 lbitset_copy (dst, src);
551 return LBITSET_HEAD (src) != 0;
552 }
553
554 if (lbitset_equal_p (dst, src))
555 return 0;
556
557 lbitset_copy (dst, src);
558 return 1;
559}
560
561
562/* Return size in bits of bitset SRC. */
563static int
564lbitset_size (src)
565 bitset src;
566{
567 lbitset_elt *elt;
568
569 elt = LBITSET_TAIL (src);
570 if (!elt)
ef017502 571 return 0;
7086e707
AD
572
573 /* Return current size of bitset in bits. */
574 return (elt->index + LBITSET_ELT_WORDS) * BITSET_WORD_BITS;
575}
576
577
578/* Set bit BITNO in bitset DST. */
579static void
580lbitset_set (dst, bitno)
581 bitset dst;
582 bitset_bindex bitno;
583{
345cea78 584 bitset_windex windex = bitno / BITSET_WORD_BITS;
7086e707 585
345cea78 586 lbitset_elt_find (dst, windex, LBITSET_CREATE);
7086e707 587
c340180d
PE
588 dst->b.cdata[windex - dst->b.cindex] |=
589 (bitset_word) 1 << (bitno % BITSET_WORD_BITS);
7086e707
AD
590}
591
592
593/* Reset bit BITNO in bitset DST. */
594static void
595lbitset_reset (dst, bitno)
596 bitset dst;
597 bitset_bindex bitno;
598{
345cea78 599 bitset_windex windex = bitno / BITSET_WORD_BITS;
7086e707 600
345cea78 601 if (!lbitset_elt_find (dst, windex, LBITSET_FIND))
ef017502 602 return;
7086e707 603
c340180d
PE
604 dst->b.cdata[windex - dst->b.cindex] &=
605 ~((bitset_word) 1 << (bitno % BITSET_WORD_BITS));
7086e707
AD
606
607 /* If all the data is zero, perhaps we should unlink it now... */
608}
609
610
611/* Test bit BITNO in bitset SRC. */
612static int
613lbitset_test (src, bitno)
614 bitset src;
615 bitset_bindex bitno;
616{
345cea78 617 bitset_windex windex = bitno / BITSET_WORD_BITS;
7086e707 618
345cea78 619 if (!lbitset_elt_find (src, windex, LBITSET_FIND))
7086e707
AD
620 return 0;
621
345cea78
AD
622 return (src->b.cdata[windex - src->b.cindex]
623 >> (bitno % BITSET_WORD_BITS)) & 1;
7086e707
AD
624}
625
626
627static void
628lbitset_free (bset)
629 bitset bset;
630{
631 lbitset_zero (bset);
632}
633
634
635/* Find list of up to NUM bits set in BSET starting from and including
ef017502
AD
636 *NEXT and store in array LIST. Return with actual number of bits
637 found and with *NEXT indicating where search stopped. */
7086e707
AD
638static int
639lbitset_reverse_list (bset, list, num, next)
640 bitset bset;
641 bitset_bindex *list;
642 bitset_bindex num;
643 bitset_bindex *next;
644{
645 bitset_bindex rbitno;
646 bitset_bindex bitno;
345cea78
AD
647 unsigned int bcount;
648 bitset_bindex boffset;
649 bitset_windex windex;
7086e707
AD
650 bitset_bindex count;
651 lbitset_elt *elt;
652 bitset_word word;
653 bitset_bindex n_bits;
654
655 elt = LBITSET_TAIL (bset);
656 if (!elt)
657 return 0;
658
659 n_bits = (elt->index + LBITSET_ELT_WORDS) * BITSET_WORD_BITS;
660 rbitno = *next;
661
662 if (rbitno >= n_bits)
ef017502 663 return 0;
7086e707
AD
664
665 bitno = n_bits - (rbitno + 1);
666
345cea78 667 windex = bitno / BITSET_WORD_BITS;
7086e707
AD
668
669 /* Skip back to starting element. */
345cea78 670 for (; elt && elt->index > windex; elt = elt->prev)
7086e707
AD
671 continue;
672
673 if (!elt)
674 return 0;
675
676 /* If num is 1, we could speed things up with a binary search
677 of the word of interest. */
678
679 count = 0;
345cea78
AD
680 bcount = bitno % BITSET_WORD_BITS;
681 boffset = windex * BITSET_WORD_BITS;
7086e707
AD
682
683 while (elt)
684 {
685 bitset_word *srcp = elt->words;
686
345cea78
AD
687 for (; (windex - elt->index) < LBITSET_ELT_WORDS;
688 windex--, boffset -= BITSET_WORD_BITS,
689 bcount = BITSET_WORD_BITS - 1)
7086e707 690 {
ef017502 691 word =
345cea78 692 srcp[windex - elt->index] << (BITSET_WORD_BITS - 1 - bcount);
7086e707 693
345cea78 694 for (; word; bcount--)
7086e707
AD
695 {
696 if (word & BITSET_MSB)
697 {
345cea78 698 list[count++] = boffset + bcount;
7086e707
AD
699 if (count >= num)
700 {
345cea78 701 *next = n_bits - (boffset + bcount);
7086e707
AD
702 return count;
703 }
704 }
705 word <<= 1;
706 }
707 }
708
709 elt = elt->prev;
710 if (elt)
711 {
345cea78
AD
712 windex = elt->index + LBITSET_ELT_WORDS - 1;
713 boffset = windex * BITSET_WORD_BITS;
7086e707
AD
714 }
715 }
716
345cea78 717 *next = n_bits - (boffset + 1);
7086e707
AD
718 return count;
719}
720
721
722/* Find list of up to NUM bits set in BSET starting from and including
ef017502
AD
723 *NEXT and store in array LIST. Return with actual number of bits
724 found and with *NEXT indicating where search stopped. */
7086e707
AD
725static int
726lbitset_list (bset, list, num, next)
727 bitset bset;
728 bitset_bindex *list;
729 bitset_bindex num;
730 bitset_bindex *next;
731{
732 bitset_bindex bitno;
345cea78 733 bitset_windex windex;
7086e707
AD
734 bitset_bindex count;
735 lbitset_elt *elt;
736 lbitset_elt *head;
737 bitset_word word;
738
739 head = LBITSET_HEAD (bset);
740 if (!head)
ef017502 741 return 0;
7086e707
AD
742
743 bitno = *next;
744 count = 0;
745
746 if (!bitno)
747 {
748 /* This is the most common case. */
749
750 /* Start with the first element. */
751 elt = head;
345cea78
AD
752 windex = elt->index;
753 bitno = windex * BITSET_WORD_BITS;
7086e707
AD
754 }
755 else
756 {
345cea78 757 windex = bitno / BITSET_WORD_BITS;
7086e707
AD
758
759 /* Skip to starting element. */
760 for (elt = head;
345cea78 761 elt && (elt->index + LBITSET_ELT_WORDS - 1) < windex;
7086e707
AD
762 elt = elt->next)
763 continue;
764
765 if (!elt)
766 return 0;
767
345cea78 768 if (windex < elt->index)
7086e707 769 {
345cea78
AD
770 windex = elt->index;
771 bitno = windex * BITSET_WORD_BITS;
7086e707
AD
772 }
773 else
774 {
775 bitset_word *srcp = elt->words;
776
777 /* We are starting within an element. */
778
345cea78 779 for (; (windex - elt->index) < LBITSET_ELT_WORDS; windex++)
7086e707 780 {
345cea78 781 word = srcp[windex - elt->index] >> (bitno % BITSET_WORD_BITS);
7086e707
AD
782
783 for (; word; bitno++)
784 {
785 if (word & 1)
786 {
787 list[count++] = bitno;
788 if (count >= num)
789 {
790 *next = bitno + 1;
791 return count;
792 }
793 }
794 word >>= 1;
795 }
345cea78 796 bitno = (windex + 1) * BITSET_WORD_BITS;
7086e707
AD
797 }
798
799 elt = elt->next;
800 if (elt)
801 {
345cea78
AD
802 windex = elt->index;
803 bitno = windex * BITSET_WORD_BITS;
7086e707
AD
804 }
805 }
806 }
807
808
809 /* If num is 1, we could speed things up with a binary search
810 of the word of interest. */
811
812 while (elt)
813 {
814 int i;
815 bitset_word *srcp = elt->words;
816
817 if ((count + LBITSET_ELT_BITS) < num)
818 {
819 /* The coast is clear, plant boot! */
820
821#if LBITSET_ELT_WORDS == 2
822 word = srcp[0];
823 if (word)
824 {
ef017502 825 if (!(word & 0xffff))
7086e707
AD
826 {
827 word >>= 16;
828 bitno += 16;
829 }
ef017502 830 if (!(word & 0xff))
7086e707
AD
831 {
832 word >>= 8;
833 bitno += 8;
834 }
835 for (; word; bitno++)
836 {
837 if (word & 1)
838 list[count++] = bitno;
839 word >>= 1;
840 }
841 }
345cea78
AD
842 windex++;
843 bitno = windex * BITSET_WORD_BITS;
7086e707
AD
844
845 word = srcp[1];
846 if (word)
847 {
ef017502 848 if (!(word & 0xffff))
7086e707
AD
849 {
850 word >>= 16;
851 bitno += 16;
852 }
853 for (; word; bitno++)
854 {
855 if (word & 1)
856 list[count++] = bitno;
857 word >>= 1;
858 }
859 }
345cea78
AD
860 windex++;
861 bitno = windex * BITSET_WORD_BITS;
7086e707
AD
862#else
863 for (i = 0; i < LBITSET_ELT_WORDS; i++)
864 {
865 word = srcp[i];
866 if (word)
867 {
ef017502 868 if (!(word & 0xffff))
7086e707
AD
869 {
870 word >>= 16;
871 bitno += 16;
872 }
ef017502 873 if (!(word & 0xff))
7086e707
AD
874 {
875 word >>= 8;
876 bitno += 8;
877 }
878 for (; word; bitno++)
879 {
880 if (word & 1)
881 list[count++] = bitno;
882 word >>= 1;
883 }
884 }
345cea78
AD
885 windex++;
886 bitno = windex * BITSET_WORD_BITS;
7086e707
AD
887 }
888#endif
889 }
890 else
891 {
892 /* Tread more carefully since we need to check
893 if array overflows. */
894
895 for (i = 0; i < LBITSET_ELT_WORDS; i++)
896 {
897 for (word = srcp[i]; word; bitno++)
898 {
899 if (word & 1)
900 {
901 list[count++] = bitno;
902 if (count >= num)
903 {
904 *next = bitno + 1;
905 return count;
906 }
907 }
908 word >>= 1;
909 }
345cea78
AD
910 windex++;
911 bitno = windex * BITSET_WORD_BITS;
7086e707
AD
912 }
913 }
914
915 elt = elt->next;
916 if (elt)
917 {
345cea78
AD
918 windex = elt->index;
919 bitno = windex * BITSET_WORD_BITS;
7086e707
AD
920 }
921 }
922
923 *next = bitno;
924 return count;
925}
926
927
928static int
929lbitset_op1 (dst, op)
930 bitset dst;
931 enum bitset_ops op;
932{
933 unsigned int i;
345cea78 934 bitset_windex windex;
7086e707
AD
935 lbitset_elt *elt;
936
937 switch (op)
938 {
ef017502 939 case BITSET_OP_ZERO:
7086e707
AD
940 lbitset_zero (dst);
941 break;
942
ef017502 943 case BITSET_OP_ONES:
7086e707
AD
944 /* This is a decidedly unfriendly operation for a linked list
945 bitset! */
946 elt = LBITSET_TAIL (dst);
947 /* Ignore empty set. */
948 if (!elt)
949 return 0;
950
345cea78
AD
951 windex = elt->index;
952 for (i = 0; i < windex; i += LBITSET_ELT_WORDS)
7086e707
AD
953 {
954 /* Create new elements if they cannot be found. */
955 elt = lbitset_elt_find (dst, i, LBITSET_CREATE);
c340180d 956 memset (elt->words, -1, sizeof (elt->words));
7086e707
AD
957 }
958 break;
959
ef017502 960 case BITSET_OP_EMPTY_P:
7086e707
AD
961 lbitset_weed (dst);
962 if (LBITSET_HEAD (dst))
963 return 0;
964 break;
965
966 default:
967 abort ();
968 }
969
970 return 1;
971}
972
973
974static int
975lbitset_op2 (dst, src, op)
976 bitset dst;
977 bitset src;
978 enum bitset_ops op;
979{
980 lbitset_elt *elt;
981 lbitset_elt *selt;
982 lbitset_elt *delt;
983 unsigned int i;
984 unsigned int j;
345cea78 985 bitset_windex windex;
7086e707
AD
986
987 switch (op)
988 {
ef017502 989 case BITSET_OP_COPY:
7086e707
AD
990 lbitset_copy (dst, src);
991 break;
992
ef017502 993 case BITSET_OP_NOT:
7086e707
AD
994 /* This is another unfriendly operation for a linked list
995 bitset! */
996 elt = LBITSET_TAIL (dst);
997 /* Ignore empty set. */
998 if (!elt)
999 return 0;
1000
345cea78
AD
1001 windex = elt->index;
1002 for (i = 0; i < windex; i += LBITSET_ELT_WORDS)
7086e707
AD
1003 {
1004 /* Create new elements for dst if they cannot be found
1005 or substitute zero elements if src elements not found. */
1006 selt = lbitset_elt_find (dst, i, LBITSET_SUBST);
1007 delt = lbitset_elt_find (dst, i, LBITSET_CREATE);
1008
1009 for (j = 0; j < LBITSET_ELT_WORDS; j++)
1010 delt->words[j] = ~selt->words[j];
1011 }
1012 lbitset_weed (dst);
1013 break;
1014
ef017502
AD
1015 /* Return 1 if DST == SRC. */
1016 case BITSET_OP_EQUAL_P:
7086e707
AD
1017 return lbitset_equal_p (dst, src);
1018 break;
1019
ef017502
AD
1020 /* Return 1 if DST == DST | SRC. */
1021 case BITSET_OP_SUBSET_P:
7086e707
AD
1022 for (selt = LBITSET_HEAD (src), delt = LBITSET_HEAD (dst);
1023 selt || delt; selt = selt->next, delt = delt->next)
1024 {
1025 if (!selt)
1026 selt = &lbitset_zero_elts[0];
1027 else if (!delt)
1028 delt = &lbitset_zero_elts[0];
1029 else if (selt->index != delt->index)
1030 {
1031 if (selt->index < delt->index)
1032 {
1033 lbitset_zero_elts[2].next = delt;
1034 delt = &lbitset_zero_elts[2];
1035 }
1036 else
1037 {
1038 lbitset_zero_elts[1].next = selt;
1039 selt = &lbitset_zero_elts[1];
1040 }
1041 }
1042
1043 for (j = 0; j < LBITSET_ELT_WORDS; j++)
1044 if (delt->words[j] != (selt->words[j] | delt->words[j]))
1045 return 0;
1046 }
1047 break;
1048
ef017502
AD
1049 /* Return 1 if DST & SRC == 0. */
1050 case BITSET_OP_DISJOINT_P:
1051 for (selt = LBITSET_HEAD (src), delt = LBITSET_HEAD (dst);
1052 selt && delt; selt = selt->next, delt = delt->next)
1053 {
1054 if (selt->index != delt->index)
1055 {
1056 if (selt->index < delt->index)
1057 {
1058 lbitset_zero_elts[2].next = delt;
1059 delt = &lbitset_zero_elts[2];
1060 }
1061 else
1062 {
1063 lbitset_zero_elts[1].next = selt;
1064 selt = &lbitset_zero_elts[1];
1065 }
345cea78
AD
1066 /* Since the elements are different, there is no
1067 intersection of these elements. */
1068 continue;
ef017502
AD
1069 }
1070
1071 for (j = 0; j < LBITSET_ELT_WORDS; j++)
1072 if (selt->words[j] & delt->words[j])
1073 return 0;
1074 }
1075 break;
1076
7086e707
AD
1077 default:
1078 abort ();
1079 }
1080
1081 return 1;
1082}
1083
1084
1085static int
1086lbitset_op3 (dst, src1, src2, op)
1087 bitset dst;
1088 bitset src1;
1089 bitset src2;
1090 enum bitset_ops op;
1091{
1092 lbitset_elt *selt1 = LBITSET_HEAD (src1);
1093 lbitset_elt *selt2 = LBITSET_HEAD (src2);
1094 lbitset_elt *delt = LBITSET_HEAD (dst);
345cea78
AD
1095 bitset_windex windex1;
1096 bitset_windex windex2;
1097 bitset_windex windex;
7086e707
AD
1098 lbitset_elt *stmp1;
1099 lbitset_elt *stmp2;
1100 lbitset_elt *dtmp;
1101 bitset_word *srcp1;
1102 bitset_word *srcp2;
1103 bitset_word *dstp;
1104 int changed = 0;
1105 unsigned int i;
1106
1107 /* Fast track common, simple cases. */
1108 if (!selt2)
1109 {
ef017502 1110 if (op == BITSET_OP_AND)
7086e707
AD
1111 {
1112 lbitset_weed (dst);
ef017502 1113 changed = !LBITSET_HEAD (dst);
7086e707
AD
1114 lbitset_zero (dst);
1115 return changed;
1116 }
ef017502
AD
1117 else if (op == BITSET_OP_ANDN || op == BITSET_OP_OR
1118 || op == BITSET_OP_XOR)
7086e707
AD
1119 {
1120 return lbitset_copy_compare (dst, src1);
1121 }
1122 }
1123 else if (!selt1)
1124 {
ef017502 1125 if (op == BITSET_OP_AND || op == BITSET_OP_ANDN)
7086e707
AD
1126 {
1127 lbitset_weed (dst);
ef017502 1128 changed = !LBITSET_HEAD (dst);
7086e707
AD
1129 lbitset_zero (dst);
1130 return changed;
1131 }
ef017502 1132 else if (op == BITSET_OP_OR || op == BITSET_OP_XOR)
7086e707
AD
1133 {
1134 return lbitset_copy_compare (dst, src2);
1135 }
1136 }
1137
7086e707 1138 LBITSET_HEAD (dst) = 0;
ef017502 1139 dst->b.csize = 0;
7086e707 1140
345cea78
AD
1141 windex1 = (selt1) ? selt1->index : BITSET_INDEX_MAX;
1142 windex2 = (selt2) ? selt2->index : BITSET_INDEX_MAX;
7086e707
AD
1143
1144 while (selt1 || selt2)
1145 {
1146 /* Figure out whether we need to substitute zero elements for
1147 missing links. */
345cea78 1148 if (windex1 == windex2)
7086e707 1149 {
345cea78 1150 windex = windex1;
7086e707
AD
1151 stmp1 = selt1;
1152 stmp2 = selt2;
1153 selt1 = selt1->next;
345cea78 1154 windex1 = (selt1) ? selt1->index : BITSET_INDEX_MAX;
7086e707 1155 selt2 = selt2->next;
345cea78 1156 windex2 = (selt2) ? selt2->index : BITSET_INDEX_MAX;
7086e707 1157 }
345cea78 1158 else if (windex1 < windex2)
7086e707 1159 {
345cea78 1160 windex = windex1;
7086e707
AD
1161 stmp1 = selt1;
1162 stmp2 = &lbitset_zero_elts[0];
1163 selt1 = selt1->next;
345cea78 1164 windex1 = (selt1) ? selt1->index : BITSET_INDEX_MAX;
7086e707
AD
1165 }
1166 else
1167 {
345cea78 1168 windex = windex2;
7086e707
AD
1169 stmp1 = &lbitset_zero_elts[0];
1170 stmp2 = selt2;
1171 selt2 = selt2->next;
345cea78 1172 windex2 = (selt2) ? selt2->index : BITSET_INDEX_MAX;
7086e707
AD
1173 }
1174
1175 /* Find the appropriate element from DST. Begin by discarding
1176 elements that we've skipped. */
345cea78 1177 while (delt && delt->index < windex)
7086e707
AD
1178 {
1179 changed = 1;
1180 dtmp = delt;
1181 delt = delt->next;
1182 lbitset_elt_free (dtmp);
1183 }
345cea78 1184 if (delt && delt->index == windex)
7086e707
AD
1185 {
1186 dtmp = delt;
1187 delt = delt->next;
1188 }
1189 else
1190 dtmp = lbitset_elt_calloc ();
1191
1192 /* Do the operation, and if any bits are set, link it into the
1193 linked list. */
1194 srcp1 = stmp1->words;
1195 srcp2 = stmp2->words;
1196 dstp = dtmp->words;
1197 switch (op)
1198 {
ef017502 1199 case BITSET_OP_OR:
7086e707
AD
1200 for (i = 0; i < LBITSET_ELT_WORDS; i++, dstp++)
1201 {
1202 bitset_word tmp = *srcp1++ | *srcp2++;
1203
1204 if (*dstp != tmp)
1205 {
1206 changed = 1;
1207 *dstp = tmp;
1208 }
1209 }
1210 break;
1211
ef017502 1212 case BITSET_OP_AND:
7086e707
AD
1213 for (i = 0; i < LBITSET_ELT_WORDS; i++, dstp++)
1214 {
1215 bitset_word tmp = *srcp1++ & *srcp2++;
1216
1217 if (*dstp != tmp)
1218 {
1219 changed = 1;
1220 *dstp = tmp;
1221 }
1222 }
1223 break;
1224
ef017502 1225 case BITSET_OP_XOR:
7086e707
AD
1226 for (i = 0; i < LBITSET_ELT_WORDS; i++, dstp++)
1227 {
1228 bitset_word tmp = *srcp1++ ^ *srcp2++;
1229
1230 if (*dstp != tmp)
1231 {
1232 changed = 1;
1233 *dstp = tmp;
1234 }
1235 }
1236 break;
1237
ef017502 1238 case BITSET_OP_ANDN:
7086e707
AD
1239 for (i = 0; i < LBITSET_ELT_WORDS; i++, dstp++)
1240 {
1241 bitset_word tmp = *srcp1++ & ~(*srcp2++);
1242
1243 if (*dstp != tmp)
1244 {
1245 changed = 1;
1246 *dstp = tmp;
1247 }
1248 }
1249 break;
1250
7086e707
AD
1251 default:
1252 abort ();
1253 }
1254
ef017502 1255 if (!lbitset_elt_zero_p (dtmp))
7086e707 1256 {
345cea78 1257 dtmp->index = windex;
7086e707
AD
1258 /* Perhaps this could be optimised... */
1259 lbitset_elt_link (dst, dtmp);
1260 }
1261 else
1262 {
1263 lbitset_elt_free (dtmp);
1264 }
1265 }
1266
1267 /* If we have elements of DST left over, free them all. */
1268 if (delt)
1269 {
1270 changed = 1;
1271 lbitset_prune (dst, delt);
1272 }
1273
1274 return changed;
1275}
1276
1277
7086e707 1278/* Vector of operations for linked-list bitsets. */
ef017502
AD
1279struct bitset_ops_struct lbitset_ops = {
1280 lbitset_set,
1281 lbitset_reset,
1282 lbitset_test,
1283 lbitset_size,
1284 lbitset_op1,
1285 lbitset_op2,
1286 lbitset_op3,
1287 bitset_op4,
1288 lbitset_list,
1289 lbitset_reverse_list,
1290 lbitset_free,
1291 BITSET_LIST
1292};
7086e707
AD
1293
1294
1295/* Return size of initial structure. */
1296int
1297lbitset_bytes (n_bits)
1298 bitset_bindex n_bits ATTRIBUTE_UNUSED;
1299{
1300 return sizeof (struct bitset_struct);
1301}
1302
1303
1304/* Initialize a bitset. */
1305
1306bitset
1307lbitset_init (bset, n_bits)
1308 bitset bset;
1309 bitset_bindex n_bits ATTRIBUTE_UNUSED;
1310{
ef017502 1311 bset->b.ops = &lbitset_ops;
7086e707
AD
1312 return bset;
1313}
1314
1315
1316void
1317lbitset_release_memory ()
1318{
1319 lbitset_free_list = 0;
1320 if (lbitset_obstack_init)
1321 {
1322 lbitset_obstack_init = 0;
1323 obstack_free (&lbitset_obstack, NULL);
1324 }
1325}