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).
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.
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, write to the Free Software
17 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
28 /* This file implements linked-list bitsets. These bitsets can be of
29 arbitrary length and are more efficient than arrays of bits for
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. */
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. */
43 #define LBITSET_ELT_WORDS 2
45 typedef bitset_word lbitset_word
;
47 #define LBITSET_WORD_BITS BITSET_WORD_BITS
49 /* Number of bits stored in each element. */
50 #define LBITSET_ELT_BITS \
51 ((unsigned) (LBITSET_ELT_WORDS * LBITSET_WORD_BITS))
53 /* Lbitset element. We use an array of bits for each element.
54 These are linked together in a doubly-linked list. */
55 typedef struct lbitset_elt_struct
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. */
65 /* Head of lbitset linked list. */
66 typedef struct lbitset_struct
68 lbitset_elt
*head
; /* First element in linked list. */
69 lbitset_elt
*tail
; /* Last element in linked list. */
76 struct bbitset_struct b
;
77 struct lbitset_struct l
;
81 enum lbitset_find_mode
82 { LBITSET_FIND
, LBITSET_CREATE
, LBITSET_SUBST
};
84 static lbitset_elt lbitset_zero_elts
[3]; /* Elements of all zero bits. */
86 /* Obstack to allocate bitset elements from. */
87 static struct obstack lbitset_obstack
;
88 static int lbitset_obstack_init
= 0;
89 static lbitset_elt
*lbitset_free_list
; /* Free list of bitset elements. */
91 static lbitset_elt
*lbitset_elt_alloc
PARAMS ((void));
92 static lbitset_elt
*lbitset_elt_calloc
PARAMS ((void));
93 static void lbitset_elt_link
PARAMS ((bitset
, lbitset_elt
*));
94 static void lbitset_elt_unlink
PARAMS ((bitset
, lbitset_elt
*));
95 static void lbitset_elt_free
PARAMS ((lbitset_elt
*));
96 static lbitset_elt
*lbitset_elt_find
PARAMS ((bitset
, bitset_windex
,
97 enum lbitset_find_mode
));
98 static int lbitset_elt_zero_p
PARAMS ((lbitset_elt
*));
100 static void lbitset_prune
PARAMS ((bitset
, lbitset_elt
*));
101 static void lbitset_weed
PARAMS ((bitset
));
102 static void lbitset_zero
PARAMS ((bitset
));
103 static int lbitset_equal_p
PARAMS ((bitset
, bitset
));
104 static void lbitset_copy
PARAMS ((bitset
, bitset
));
105 static int lbitset_copy_compare
PARAMS ((bitset
, bitset
));
106 static void lbitset_set
PARAMS ((bitset
, bitset_bindex
));
107 static void lbitset_reset
PARAMS ((bitset
, bitset_bindex
));
108 static int lbitset_test
PARAMS ((bitset
, bitset_bindex
));
109 static int lbitset_size
PARAMS ((bitset
));
110 static int lbitset_op1
PARAMS ((bitset
, enum bitset_ops
));
111 static int lbitset_op2
PARAMS ((bitset
, bitset
, enum bitset_ops
));
112 static int lbitset_op3
PARAMS ((bitset
, bitset
, bitset
, enum bitset_ops
));
113 static int lbitset_list
PARAMS ((bitset
, bitset_bindex
*, bitset_bindex
,
115 static int lbitset_reverse_list
116 PARAMS ((bitset
, bitset_bindex
*, bitset_bindex
, bitset_bindex
*));
117 static void lbitset_free
PARAMS ((bitset
));
120 #define LBITSET_CURRENT1(X) (lbitset_elt *)((char *)(X) + ((char *)&(((lbitset_elt *)(X))->next) - (char *)&(((lbitset_elt *)(X))->words)))
122 #define LBITSET_CURRENT(X) LBITSET_CURRENT1((X)->b.cdata)
124 #define LBITSET_HEAD(X) ((X)->l.head)
125 #define LBITSET_TAIL(X) ((X)->l.tail)
127 /* Allocate a lbitset element. The bits are not cleared. */
128 static inline lbitset_elt
*
133 if (lbitset_free_list
!= 0)
135 elt
= lbitset_free_list
;
136 lbitset_free_list
= elt
->next
;
140 if (!lbitset_obstack_init
)
142 lbitset_obstack_init
= 1;
144 /* Let particular systems override the size of a chunk. */
146 #ifndef OBSTACK_CHUNK_SIZE
147 #define OBSTACK_CHUNK_SIZE 0
150 /* Let them override the alloc and free routines too. */
152 #ifndef OBSTACK_CHUNK_ALLOC
153 #define OBSTACK_CHUNK_ALLOC xmalloc
156 #ifndef OBSTACK_CHUNK_FREE
157 #define OBSTACK_CHUNK_FREE free
160 #if !defined(__GNUC__) || (__GNUC__ < 2)
161 #define __alignof__(type) 0
164 obstack_specify_allocation (&lbitset_obstack
, OBSTACK_CHUNK_SIZE
,
165 __alignof__ (lbitset_elt
),
166 (void *(*)PARAMS ((long)))
168 (void (*)PARAMS ((void *)))
172 /* Perhaps we should add a number of new elements to the free
174 elt
= (lbitset_elt
*) obstack_alloc (&lbitset_obstack
,
175 sizeof (lbitset_elt
));
182 /* Allocate a lbitset element. The bits are cleared. */
183 static inline lbitset_elt
*
184 lbitset_elt_calloc ()
188 elt
= lbitset_elt_alloc ();
189 memset (elt
->words
, 0, sizeof (elt
->words
));
195 lbitset_elt_free (elt
)
198 elt
->next
= lbitset_free_list
;
199 lbitset_free_list
= elt
;
203 /* Unlink element ELT from bitset BSET. */
205 lbitset_elt_unlink (bset
, elt
)
209 lbitset_elt
*next
= elt
->next
;
210 lbitset_elt
*prev
= elt
->prev
;
218 if (LBITSET_HEAD (bset
) == elt
)
219 LBITSET_HEAD (bset
) = next
;
220 if (LBITSET_TAIL (bset
) == elt
)
221 LBITSET_TAIL (bset
) = prev
;
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
226 if (LBITSET_CURRENT (bset
) == elt
)
230 bset
->b
.cdata
= next
->words
;
231 bset
->b
.cindex
= next
->index
;
235 bset
->b
.cdata
= prev
->words
;
236 bset
->b
.cindex
= prev
->index
;
245 lbitset_elt_free (elt
);
249 /* Cut the chain of bitset BSET before element ELT and free the
252 lbitset_prune (bset
, elt
)
263 LBITSET_TAIL (bset
) = elt
->prev
;
264 bset
->b
.cdata
= elt
->prev
->words
;
265 bset
->b
.cindex
= elt
->prev
->index
;
270 LBITSET_HEAD (bset
) = 0;
271 LBITSET_TAIL (bset
) = 0;
276 for (; elt
; elt
= next
)
279 lbitset_elt_free (elt
);
284 /* Return nonzero if all bits in an element are zero. */
286 lbitset_elt_zero_p (elt
)
291 for (i
= 0; i
< LBITSET_ELT_WORDS
; i
++)
299 /* Link the bitset element into the current bitset linked list. */
301 lbitset_elt_link (bset
, elt
)
305 bitset_windex windex
= elt
->index
;
307 lbitset_elt
*current
;
310 current
= LBITSET_CURRENT (bset
);
312 current
= LBITSET_HEAD (bset
);
314 /* If this is the first and only element, add it in. */
315 if (LBITSET_HEAD (bset
) == 0)
317 elt
->next
= elt
->prev
= 0;
318 LBITSET_HEAD (bset
) = elt
;
319 LBITSET_TAIL (bset
) = elt
;
322 /* If this index is less than that of the current element, it goes
323 somewhere before the current element. */
324 else if (windex
< bset
->b
.cindex
)
327 ptr
->prev
&& ptr
->prev
->index
> windex
; ptr
= ptr
->prev
)
331 ptr
->prev
->next
= elt
;
333 LBITSET_HEAD (bset
) = elt
;
335 elt
->prev
= ptr
->prev
;
340 /* Otherwise, it must go somewhere after the current element. */
344 ptr
->next
&& ptr
->next
->index
< windex
; ptr
= ptr
->next
)
348 ptr
->next
->prev
= elt
;
350 LBITSET_TAIL (bset
) = elt
;
352 elt
->next
= ptr
->next
;
357 /* Set up so this is the first element searched. */
358 bset
->b
.cindex
= windex
;
359 bset
->b
.csize
= LBITSET_ELT_WORDS
;
360 bset
->b
.cdata
= elt
->words
;
365 lbitset_elt_find (bset
, windex
, mode
)
367 bitset_windex windex
;
368 enum lbitset_find_mode mode
;
371 lbitset_elt
*current
;
375 current
= LBITSET_CURRENT (bset
);
376 /* Check if element is the cached element. */
377 if ((windex
- bset
->b
.cindex
) < bset
->b
.csize
)
382 current
= LBITSET_HEAD (bset
);
387 if (windex
< bset
->b
.cindex
)
390 elt
->prev
&& elt
->index
> windex
; elt
= elt
->prev
)
396 elt
->next
&& (elt
->index
+ LBITSET_ELT_WORDS
- 1) < windex
;
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. */
403 if (elt
&& (windex
- elt
->index
) < LBITSET_ELT_WORDS
)
405 bset
->b
.cindex
= elt
->index
;
406 bset
->b
.csize
= LBITSET_ELT_WORDS
;
407 bset
->b
.cdata
= elt
->words
;
418 windex
= (windex
/ (unsigned) LBITSET_ELT_WORDS
) * LBITSET_ELT_WORDS
;
420 elt
= lbitset_elt_calloc ();
422 lbitset_elt_link (bset
, elt
);
426 return &lbitset_zero_elts
[0];
434 /* Weed out the zero elements from the list. */
442 for (elt
= LBITSET_HEAD (bset
); elt
; elt
= next
)
445 if (lbitset_elt_zero_p (elt
))
446 lbitset_elt_unlink (bset
, elt
);
451 /* Set all bits in the bitset to zero. */
458 head
= LBITSET_HEAD (bset
);
462 /* Clear a bitset by freeing the linked list at the head element. */
463 lbitset_prune (bset
, head
);
468 lbitset_equal_p (dst
, src
)
481 for (selt
= LBITSET_HEAD (src
), delt
= LBITSET_HEAD (dst
);
482 selt
&& delt
; selt
= selt
->next
, delt
= delt
->next
)
484 if (selt
->index
!= delt
->index
)
487 for (j
= 0; j
< LBITSET_ELT_WORDS
; j
++)
488 if (delt
->words
[j
] != selt
->words
[j
])
491 return !selt
&& !delt
;
495 /* Copy bits from bitset SRC to bitset DST. */
497 lbitset_copy (dst
, src
)
511 head
= LBITSET_HEAD (src
);
516 for (elt
= head
; elt
; elt
= elt
->next
)
518 tmp
= lbitset_elt_alloc ();
519 tmp
->index
= elt
->index
;
525 LBITSET_HEAD (dst
) = tmp
;
528 memcpy (tmp
->words
, elt
->words
, sizeof (elt
->words
));
530 LBITSET_TAIL (dst
) = tmp
;
532 dst
->b
.csize
= LBITSET_ELT_WORDS
;
533 dst
->b
.cdata
= LBITSET_HEAD (dst
)->words
;
534 dst
->b
.cindex
= LBITSET_HEAD (dst
)->index
;
538 /* Copy bits from bitset SRC to bitset DST. Return non-zero if
539 bitsets different. */
541 lbitset_copy_compare (dst
, src
)
548 if (!LBITSET_HEAD (dst
))
550 lbitset_copy (dst
, src
);
551 return LBITSET_HEAD (src
) != 0;
554 if (lbitset_equal_p (dst
, src
))
557 lbitset_copy (dst
, src
);
562 /* Return size in bits of bitset SRC. */
569 elt
= LBITSET_TAIL (src
);
573 /* Return current size of bitset in bits. */
574 return (elt
->index
+ LBITSET_ELT_WORDS
) * BITSET_WORD_BITS
;
578 /* Set bit BITNO in bitset DST. */
580 lbitset_set (dst
, bitno
)
584 bitset_windex windex
= bitno
/ BITSET_WORD_BITS
;
586 lbitset_elt_find (dst
, windex
, LBITSET_CREATE
);
588 dst
->b
.cdata
[windex
- dst
->b
.cindex
] |= (1 << (bitno
% BITSET_WORD_BITS
));
592 /* Reset bit BITNO in bitset DST. */
594 lbitset_reset (dst
, bitno
)
598 bitset_windex windex
= bitno
/ BITSET_WORD_BITS
;
600 if (!lbitset_elt_find (dst
, windex
, LBITSET_FIND
))
603 dst
->b
.cdata
[windex
- dst
->b
.cindex
] &= ~(1 << (bitno
% BITSET_WORD_BITS
));
605 /* If all the data is zero, perhaps we should unlink it now... */
609 /* Test bit BITNO in bitset SRC. */
611 lbitset_test (src
, bitno
)
615 bitset_windex windex
= bitno
/ BITSET_WORD_BITS
;
617 if (!lbitset_elt_find (src
, windex
, LBITSET_FIND
))
620 return (src
->b
.cdata
[windex
- src
->b
.cindex
]
621 >> (bitno
% BITSET_WORD_BITS
)) & 1;
633 /* Find list of up to NUM bits set in BSET starting from and including
634 *NEXT and store in array LIST. Return with actual number of bits
635 found and with *NEXT indicating where search stopped. */
637 lbitset_reverse_list (bset
, list
, num
, next
)
643 bitset_bindex rbitno
;
646 bitset_bindex boffset
;
647 bitset_windex windex
;
651 bitset_bindex n_bits
;
653 elt
= LBITSET_TAIL (bset
);
657 n_bits
= (elt
->index
+ LBITSET_ELT_WORDS
) * BITSET_WORD_BITS
;
660 if (rbitno
>= n_bits
)
663 bitno
= n_bits
- (rbitno
+ 1);
665 windex
= bitno
/ BITSET_WORD_BITS
;
667 /* Skip back to starting element. */
668 for (; elt
&& elt
->index
> windex
; elt
= elt
->prev
)
674 /* If num is 1, we could speed things up with a binary search
675 of the word of interest. */
678 bcount
= bitno
% BITSET_WORD_BITS
;
679 boffset
= windex
* BITSET_WORD_BITS
;
683 bitset_word
*srcp
= elt
->words
;
685 for (; (windex
- elt
->index
) < LBITSET_ELT_WORDS
;
686 windex
--, boffset
-= BITSET_WORD_BITS
,
687 bcount
= BITSET_WORD_BITS
- 1)
690 srcp
[windex
- elt
->index
] << (BITSET_WORD_BITS
- 1 - bcount
);
692 for (; word
; bcount
--)
694 if (word
& BITSET_MSB
)
696 list
[count
++] = boffset
+ bcount
;
699 *next
= n_bits
- (boffset
+ bcount
);
710 windex
= elt
->index
+ LBITSET_ELT_WORDS
- 1;
711 boffset
= windex
* BITSET_WORD_BITS
;
715 *next
= n_bits
- (boffset
+ 1);
720 /* Find list of up to NUM bits set in BSET starting from and including
721 *NEXT and store in array LIST. Return with actual number of bits
722 found and with *NEXT indicating where search stopped. */
724 lbitset_list (bset
, list
, num
, next
)
731 bitset_windex windex
;
737 head
= LBITSET_HEAD (bset
);
746 /* This is the most common case. */
748 /* Start with the first element. */
751 bitno
= windex
* BITSET_WORD_BITS
;
755 windex
= bitno
/ BITSET_WORD_BITS
;
757 /* Skip to starting element. */
759 elt
&& (elt
->index
+ LBITSET_ELT_WORDS
- 1) < windex
;
766 if (windex
< elt
->index
)
769 bitno
= windex
* BITSET_WORD_BITS
;
773 bitset_word
*srcp
= elt
->words
;
775 /* We are starting within an element. */
777 for (; (windex
- elt
->index
) < LBITSET_ELT_WORDS
; windex
++)
779 word
= srcp
[windex
- elt
->index
] >> (bitno
% BITSET_WORD_BITS
);
781 for (; word
; bitno
++)
785 list
[count
++] = bitno
;
794 bitno
= (windex
+ 1) * BITSET_WORD_BITS
;
801 bitno
= windex
* BITSET_WORD_BITS
;
807 /* If num is 1, we could speed things up with a binary search
808 of the word of interest. */
813 bitset_word
*srcp
= elt
->words
;
815 if ((count
+ LBITSET_ELT_BITS
) < num
)
817 /* The coast is clear, plant boot! */
819 #if LBITSET_ELT_WORDS == 2
823 if (!(word
& 0xffff))
833 for (; word
; bitno
++)
836 list
[count
++] = bitno
;
841 bitno
= windex
* BITSET_WORD_BITS
;
846 if (!(word
& 0xffff))
851 for (; word
; bitno
++)
854 list
[count
++] = bitno
;
859 bitno
= windex
* BITSET_WORD_BITS
;
861 for (i
= 0; i
< LBITSET_ELT_WORDS
; i
++)
866 if (!(word
& 0xffff))
876 for (; word
; bitno
++)
879 list
[count
++] = bitno
;
884 bitno
= windex
* BITSET_WORD_BITS
;
890 /* Tread more carefully since we need to check
891 if array overflows. */
893 for (i
= 0; i
< LBITSET_ELT_WORDS
; i
++)
895 for (word
= srcp
[i
]; word
; bitno
++)
899 list
[count
++] = bitno
;
909 bitno
= windex
* BITSET_WORD_BITS
;
917 bitno
= windex
* BITSET_WORD_BITS
;
927 lbitset_op1 (dst
, op
)
932 bitset_windex windex
;
942 /* This is a decidedly unfriendly operation for a linked list
944 elt
= LBITSET_TAIL (dst
);
945 /* Ignore empty set. */
950 for (i
= 0; i
< windex
; i
+= LBITSET_ELT_WORDS
)
952 /* Create new elements if they cannot be found. */
953 elt
= lbitset_elt_find (dst
, i
, LBITSET_CREATE
);
954 memset (elt
->words
, ~0, sizeof (elt
->words
));
958 case BITSET_OP_EMPTY_P
:
960 if (LBITSET_HEAD (dst
))
973 lbitset_op2 (dst
, src
, op
)
983 bitset_windex windex
;
988 lbitset_copy (dst
, src
);
992 /* This is another unfriendly operation for a linked list
994 elt
= LBITSET_TAIL (dst
);
995 /* Ignore empty set. */
1000 for (i
= 0; i
< windex
; i
+= LBITSET_ELT_WORDS
)
1002 /* Create new elements for dst if they cannot be found
1003 or substitute zero elements if src elements not found. */
1004 selt
= lbitset_elt_find (dst
, i
, LBITSET_SUBST
);
1005 delt
= lbitset_elt_find (dst
, i
, LBITSET_CREATE
);
1007 for (j
= 0; j
< LBITSET_ELT_WORDS
; j
++)
1008 delt
->words
[j
] = ~selt
->words
[j
];
1013 /* Return 1 if DST == SRC. */
1014 case BITSET_OP_EQUAL_P
:
1015 return lbitset_equal_p (dst
, src
);
1018 /* Return 1 if DST == DST | SRC. */
1019 case BITSET_OP_SUBSET_P
:
1020 for (selt
= LBITSET_HEAD (src
), delt
= LBITSET_HEAD (dst
);
1021 selt
|| delt
; selt
= selt
->next
, delt
= delt
->next
)
1024 selt
= &lbitset_zero_elts
[0];
1026 delt
= &lbitset_zero_elts
[0];
1027 else if (selt
->index
!= delt
->index
)
1029 if (selt
->index
< delt
->index
)
1031 lbitset_zero_elts
[2].next
= delt
;
1032 delt
= &lbitset_zero_elts
[2];
1036 lbitset_zero_elts
[1].next
= selt
;
1037 selt
= &lbitset_zero_elts
[1];
1041 for (j
= 0; j
< LBITSET_ELT_WORDS
; j
++)
1042 if (delt
->words
[j
] != (selt
->words
[j
] | delt
->words
[j
]))
1047 /* Return 1 if DST & SRC == 0. */
1048 case BITSET_OP_DISJOINT_P
:
1049 for (selt
= LBITSET_HEAD (src
), delt
= LBITSET_HEAD (dst
);
1050 selt
&& delt
; selt
= selt
->next
, delt
= delt
->next
)
1052 if (selt
->index
!= delt
->index
)
1054 if (selt
->index
< delt
->index
)
1056 lbitset_zero_elts
[2].next
= delt
;
1057 delt
= &lbitset_zero_elts
[2];
1061 lbitset_zero_elts
[1].next
= selt
;
1062 selt
= &lbitset_zero_elts
[1];
1064 /* Since the elements are different, there is no
1065 intersection of these elements. */
1069 for (j
= 0; j
< LBITSET_ELT_WORDS
; j
++)
1070 if (selt
->words
[j
] & delt
->words
[j
])
1084 lbitset_op3 (dst
, src1
, src2
, op
)
1090 lbitset_elt
*selt1
= LBITSET_HEAD (src1
);
1091 lbitset_elt
*selt2
= LBITSET_HEAD (src2
);
1092 lbitset_elt
*delt
= LBITSET_HEAD (dst
);
1093 bitset_windex windex1
;
1094 bitset_windex windex2
;
1095 bitset_windex windex
;
1105 /* Fast track common, simple cases. */
1108 if (op
== BITSET_OP_AND
)
1111 changed
= !LBITSET_HEAD (dst
);
1115 else if (op
== BITSET_OP_ANDN
|| op
== BITSET_OP_OR
1116 || op
== BITSET_OP_XOR
)
1118 return lbitset_copy_compare (dst
, src1
);
1123 if (op
== BITSET_OP_AND
|| op
== BITSET_OP_ANDN
)
1126 changed
= !LBITSET_HEAD (dst
);
1130 else if (op
== BITSET_OP_OR
|| op
== BITSET_OP_XOR
)
1132 return lbitset_copy_compare (dst
, src2
);
1136 LBITSET_HEAD (dst
) = 0;
1139 windex1
= (selt1
) ? selt1
->index
: BITSET_INDEX_MAX
;
1140 windex2
= (selt2
) ? selt2
->index
: BITSET_INDEX_MAX
;
1142 while (selt1
|| selt2
)
1144 /* Figure out whether we need to substitute zero elements for
1146 if (windex1
== windex2
)
1151 selt1
= selt1
->next
;
1152 windex1
= (selt1
) ? selt1
->index
: BITSET_INDEX_MAX
;
1153 selt2
= selt2
->next
;
1154 windex2
= (selt2
) ? selt2
->index
: BITSET_INDEX_MAX
;
1156 else if (windex1
< windex2
)
1160 stmp2
= &lbitset_zero_elts
[0];
1161 selt1
= selt1
->next
;
1162 windex1
= (selt1
) ? selt1
->index
: BITSET_INDEX_MAX
;
1167 stmp1
= &lbitset_zero_elts
[0];
1169 selt2
= selt2
->next
;
1170 windex2
= (selt2
) ? selt2
->index
: BITSET_INDEX_MAX
;
1173 /* Find the appropriate element from DST. Begin by discarding
1174 elements that we've skipped. */
1175 while (delt
&& delt
->index
< windex
)
1180 lbitset_elt_free (dtmp
);
1182 if (delt
&& delt
->index
== windex
)
1188 dtmp
= lbitset_elt_calloc ();
1190 /* Do the operation, and if any bits are set, link it into the
1192 srcp1
= stmp1
->words
;
1193 srcp2
= stmp2
->words
;
1198 for (i
= 0; i
< LBITSET_ELT_WORDS
; i
++, dstp
++)
1200 bitset_word tmp
= *srcp1
++ | *srcp2
++;
1211 for (i
= 0; i
< LBITSET_ELT_WORDS
; i
++, dstp
++)
1213 bitset_word tmp
= *srcp1
++ & *srcp2
++;
1224 for (i
= 0; i
< LBITSET_ELT_WORDS
; i
++, dstp
++)
1226 bitset_word tmp
= *srcp1
++ ^ *srcp2
++;
1236 case BITSET_OP_ANDN
:
1237 for (i
= 0; i
< LBITSET_ELT_WORDS
; i
++, dstp
++)
1239 bitset_word tmp
= *srcp1
++ & ~(*srcp2
++);
1253 if (!lbitset_elt_zero_p (dtmp
))
1255 dtmp
->index
= windex
;
1256 /* Perhaps this could be optimised... */
1257 lbitset_elt_link (dst
, dtmp
);
1261 lbitset_elt_free (dtmp
);
1265 /* If we have elements of DST left over, free them all. */
1269 lbitset_prune (dst
, delt
);
1276 /* Vector of operations for linked-list bitsets. */
1277 struct bitset_ops_struct lbitset_ops
= {
1287 lbitset_reverse_list
,
1293 /* Return size of initial structure. */
1295 lbitset_bytes (n_bits
)
1296 bitset_bindex n_bits ATTRIBUTE_UNUSED
;
1298 return sizeof (struct bitset_struct
);
1302 /* Initialize a bitset. */
1305 lbitset_init (bset
, n_bits
)
1307 bitset_bindex n_bits ATTRIBUTE_UNUSED
;
1309 bset
->b
.ops
= &lbitset_ops
;
1315 lbitset_release_memory ()
1317 lbitset_free_list
= 0;
1318 if (lbitset_obstack_init
)
1320 lbitset_obstack_init
= 0;
1321 obstack_free (&lbitset_obstack
, NULL
);