2009-04-21 Taras Glek <tglek@mozilla.com>
[official-gcc.git] / gcc / bitmap.h
blob54267c26fdc6bc1100012cd64e3c61d814390f03
1 /* Functions to support general ended bitmaps.
2 Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005,
3 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
5 This file is part of GCC.
7 GCC is free software; you can redistribute it and/or modify it under
8 the terms of the GNU General Public License as published by the Free
9 Software Foundation; either version 3, or (at your option) any later
10 version.
12 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
13 WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
15 for more details.
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING3. If not see
19 <http://www.gnu.org/licenses/>. */
21 #ifndef GCC_BITMAP_H
22 #define GCC_BITMAP_H
23 #include "hashtab.h"
24 #include "statistics.h"
25 #include "obstack.h"
27 /* Fundamental storage type for bitmap. */
29 typedef unsigned long BITMAP_WORD;
30 /* BITMAP_WORD_BITS needs to be unsigned, but cannot contain casts as
31 it is used in preprocessor directives -- hence the 1u. */
32 #define BITMAP_WORD_BITS (CHAR_BIT * SIZEOF_LONG * 1u)
34 /* Number of words to use for each element in the linked list. */
36 #ifndef BITMAP_ELEMENT_WORDS
37 #define BITMAP_ELEMENT_WORDS ((128 + BITMAP_WORD_BITS - 1) / BITMAP_WORD_BITS)
38 #endif
40 /* Number of bits in each actual element of a bitmap. */
42 #define BITMAP_ELEMENT_ALL_BITS (BITMAP_ELEMENT_WORDS * BITMAP_WORD_BITS)
44 /* Obstack for allocating bitmaps and elements from. */
45 typedef struct GTY (()) bitmap_obstack {
46 struct bitmap_element_def *elements;
47 struct bitmap_head_def *heads;
48 struct obstack GTY ((skip)) obstack;
49 } bitmap_obstack;
51 /* Bitmap set element. We use a linked list to hold only the bits that
52 are set. This allows for use to grow the bitset dynamically without
53 having to realloc and copy a giant bit array.
55 The free list is implemented as a list of lists. There is one
56 outer list connected together by prev fields. Each element of that
57 outer is an inner list (that may consist only of the outer list
58 element) that are connected by the next fields. The prev pointer
59 is undefined for interior elements. This allows
60 bitmap_elt_clear_from to be implemented in unit time rather than
61 linear in the number of elements to be freed. */
63 typedef struct GTY(()) bitmap_element_def {
64 struct bitmap_element_def *next; /* Next element. */
65 struct bitmap_element_def *prev; /* Previous element. */
66 unsigned int indx; /* regno/BITMAP_ELEMENT_ALL_BITS. */
67 BITMAP_WORD bits[BITMAP_ELEMENT_WORDS]; /* Bits that are set. */
68 } bitmap_element;
70 struct bitmap_descriptor;
71 /* Head of bitmap linked list. gengtype ignores ifdefs, but for
72 statistics we need to add a bitmap descriptor pointer. As it is
73 not collected, we can just GTY((skip)) it. */
75 typedef struct GTY(()) bitmap_head_def {
76 bitmap_element *first; /* First element in linked list. */
77 bitmap_element *current; /* Last element looked at. */
78 unsigned int indx; /* Index of last element looked at. */
79 bitmap_obstack *obstack; /* Obstack to allocate elements from.
80 If NULL, then use ggc_alloc. */
81 #ifdef GATHER_STATISTICS
82 struct bitmap_descriptor GTY((skip)) *desc;
83 #endif
84 } bitmap_head;
86 /* Global data */
87 extern bitmap_element bitmap_zero_bits; /* Zero bitmap element */
88 extern bitmap_obstack bitmap_default_obstack; /* Default bitmap obstack */
90 /* Clear a bitmap by freeing up the linked list. */
91 extern void bitmap_clear (bitmap);
93 /* Copy a bitmap to another bitmap. */
94 extern void bitmap_copy (bitmap, const_bitmap);
96 /* True if two bitmaps are identical. */
97 extern bool bitmap_equal_p (const_bitmap, const_bitmap);
99 /* True if the bitmaps intersect (their AND is non-empty). */
100 extern bool bitmap_intersect_p (const_bitmap, const_bitmap);
102 /* True if the complement of the second intersects the first (their
103 AND_COMPL is non-empty). */
104 extern bool bitmap_intersect_compl_p (const_bitmap, const_bitmap);
106 /* True if MAP is an empty bitmap. */
107 #define bitmap_empty_p(MAP) (!(MAP)->first)
109 /* True if the bitmap has only a single bit set. */
110 extern bool bitmap_single_bit_set_p (const_bitmap);
112 /* Count the number of bits set in the bitmap. */
113 extern unsigned long bitmap_count_bits (const_bitmap);
115 /* Boolean operations on bitmaps. The _into variants are two operand
116 versions that modify the first source operand. The other variants
117 are three operand versions that to not destroy the source bitmaps.
118 The operations supported are &, & ~, |, ^. */
119 extern void bitmap_and (bitmap, const_bitmap, const_bitmap);
120 extern void bitmap_and_into (bitmap, const_bitmap);
121 extern bool bitmap_and_compl (bitmap, const_bitmap, const_bitmap);
122 extern bool bitmap_and_compl_into (bitmap, const_bitmap);
123 #define bitmap_compl_and(DST, A, B) bitmap_and_compl (DST, B, A)
124 extern void bitmap_compl_and_into (bitmap, const_bitmap);
125 extern void bitmap_clear_range (bitmap, unsigned int, unsigned int);
126 extern void bitmap_set_range (bitmap, unsigned int, unsigned int);
127 extern bool bitmap_ior (bitmap, const_bitmap, const_bitmap);
128 extern bool bitmap_ior_into (bitmap, const_bitmap);
129 extern void bitmap_xor (bitmap, const_bitmap, const_bitmap);
130 extern void bitmap_xor_into (bitmap, const_bitmap);
132 /* DST = A | (B & ~C). Return true if DST changes. */
133 extern bool bitmap_ior_and_compl (bitmap DST, const_bitmap A, const_bitmap B, const_bitmap C);
134 /* A |= (B & ~C). Return true if A changes. */
135 extern bool bitmap_ior_and_compl_into (bitmap DST, const_bitmap B, const_bitmap C);
137 /* Clear a single bit in a bitmap. Return true if the bit changed. */
138 extern bool bitmap_clear_bit (bitmap, int);
140 /* Set a single bit in a bitmap. Return true if the bit changed. */
141 extern bool bitmap_set_bit (bitmap, int);
143 /* Return true if a register is set in a register set. */
144 extern int bitmap_bit_p (bitmap, int);
146 /* Debug functions to print a bitmap linked list. */
147 extern void debug_bitmap (const_bitmap);
148 extern void debug_bitmap_file (FILE *, const_bitmap);
150 /* Print a bitmap. */
151 extern void bitmap_print (FILE *, const_bitmap, const char *, const char *);
153 /* Initialize and release a bitmap obstack. */
154 extern void bitmap_obstack_initialize (bitmap_obstack *);
155 extern void bitmap_obstack_release (bitmap_obstack *);
156 extern void bitmap_register (bitmap MEM_STAT_DECL);
157 extern void dump_bitmap_statistics (void);
159 /* Initialize a bitmap header. OBSTACK indicates the bitmap obstack
160 to allocate from, NULL for GC'd bitmap. */
162 static inline void
163 bitmap_initialize_stat (bitmap head, bitmap_obstack *obstack MEM_STAT_DECL)
165 head->first = head->current = NULL;
166 head->obstack = obstack;
167 #ifdef GATHER_STATISTICS
168 bitmap_register (head PASS_MEM_STAT);
169 #endif
171 #define bitmap_initialize(h,o) bitmap_initialize_stat (h,o MEM_STAT_INFO)
173 /* Allocate and free bitmaps from obstack, malloc and gc'd memory. */
174 extern bitmap bitmap_obstack_alloc_stat (bitmap_obstack *obstack MEM_STAT_DECL);
175 #define bitmap_obstack_alloc(t) bitmap_obstack_alloc_stat (t MEM_STAT_INFO)
176 extern bitmap bitmap_gc_alloc_stat (ALONE_MEM_STAT_DECL);
177 #define bitmap_gc_alloc() bitmap_gc_alloc_stat (ALONE_MEM_STAT_INFO)
178 extern void bitmap_obstack_free (bitmap);
180 /* A few compatibility/functions macros for compatibility with sbitmaps */
181 #define dump_bitmap(file, bitmap) bitmap_print (file, bitmap, "", "\n")
182 #define bitmap_zero(a) bitmap_clear (a)
183 extern unsigned bitmap_first_set_bit (const_bitmap);
184 extern unsigned bitmap_last_set_bit (const_bitmap);
186 /* Compute bitmap hash (for purposes of hashing etc.) */
187 extern hashval_t bitmap_hash(const_bitmap);
189 /* Allocate a bitmap from a bit obstack. */
190 #define BITMAP_ALLOC(OBSTACK) bitmap_obstack_alloc (OBSTACK)
192 /* Allocate a gc'd bitmap. */
193 #define BITMAP_GGC_ALLOC() bitmap_gc_alloc ()
195 /* Do any cleanup needed on a bitmap when it is no longer used. */
196 #define BITMAP_FREE(BITMAP) \
197 ((void) (bitmap_obstack_free ((bitmap) BITMAP), (BITMAP) = (bitmap) NULL))
199 /* Iterator for bitmaps. */
201 typedef struct
203 /* Pointer to the current bitmap element. */
204 bitmap_element *elt1;
206 /* Pointer to 2nd bitmap element when two are involved. */
207 bitmap_element *elt2;
209 /* Word within the current element. */
210 unsigned word_no;
212 /* Contents of the actually processed word. When finding next bit
213 it is shifted right, so that the actual bit is always the least
214 significant bit of ACTUAL. */
215 BITMAP_WORD bits;
216 } bitmap_iterator;
218 /* Initialize a single bitmap iterator. START_BIT is the first bit to
219 iterate from. */
221 static inline void
222 bmp_iter_set_init (bitmap_iterator *bi, const_bitmap map,
223 unsigned start_bit, unsigned *bit_no)
225 bi->elt1 = map->first;
226 bi->elt2 = NULL;
228 /* Advance elt1 until it is not before the block containing start_bit. */
229 while (1)
231 if (!bi->elt1)
233 bi->elt1 = &bitmap_zero_bits;
234 break;
237 if (bi->elt1->indx >= start_bit / BITMAP_ELEMENT_ALL_BITS)
238 break;
239 bi->elt1 = bi->elt1->next;
242 /* We might have gone past the start bit, so reinitialize it. */
243 if (bi->elt1->indx != start_bit / BITMAP_ELEMENT_ALL_BITS)
244 start_bit = bi->elt1->indx * BITMAP_ELEMENT_ALL_BITS;
246 /* Initialize for what is now start_bit. */
247 bi->word_no = start_bit / BITMAP_WORD_BITS % BITMAP_ELEMENT_WORDS;
248 bi->bits = bi->elt1->bits[bi->word_no];
249 bi->bits >>= start_bit % BITMAP_WORD_BITS;
251 /* If this word is zero, we must make sure we're not pointing at the
252 first bit, otherwise our incrementing to the next word boundary
253 will fail. It won't matter if this increment moves us into the
254 next word. */
255 start_bit += !bi->bits;
257 *bit_no = start_bit;
260 /* Initialize an iterator to iterate over the intersection of two
261 bitmaps. START_BIT is the bit to commence from. */
263 static inline void
264 bmp_iter_and_init (bitmap_iterator *bi, const_bitmap map1, const_bitmap map2,
265 unsigned start_bit, unsigned *bit_no)
267 bi->elt1 = map1->first;
268 bi->elt2 = map2->first;
270 /* Advance elt1 until it is not before the block containing
271 start_bit. */
272 while (1)
274 if (!bi->elt1)
276 bi->elt2 = NULL;
277 break;
280 if (bi->elt1->indx >= start_bit / BITMAP_ELEMENT_ALL_BITS)
281 break;
282 bi->elt1 = bi->elt1->next;
285 /* Advance elt2 until it is not before elt1. */
286 while (1)
288 if (!bi->elt2)
290 bi->elt1 = bi->elt2 = &bitmap_zero_bits;
291 break;
294 if (bi->elt2->indx >= bi->elt1->indx)
295 break;
296 bi->elt2 = bi->elt2->next;
299 /* If we're at the same index, then we have some intersecting bits. */
300 if (bi->elt1->indx == bi->elt2->indx)
302 /* We might have advanced beyond the start_bit, so reinitialize
303 for that. */
304 if (bi->elt1->indx != start_bit / BITMAP_ELEMENT_ALL_BITS)
305 start_bit = bi->elt1->indx * BITMAP_ELEMENT_ALL_BITS;
307 bi->word_no = start_bit / BITMAP_WORD_BITS % BITMAP_ELEMENT_WORDS;
308 bi->bits = bi->elt1->bits[bi->word_no] & bi->elt2->bits[bi->word_no];
309 bi->bits >>= start_bit % BITMAP_WORD_BITS;
311 else
313 /* Otherwise we must immediately advance elt1, so initialize for
314 that. */
315 bi->word_no = BITMAP_ELEMENT_WORDS - 1;
316 bi->bits = 0;
319 /* If this word is zero, we must make sure we're not pointing at the
320 first bit, otherwise our incrementing to the next word boundary
321 will fail. It won't matter if this increment moves us into the
322 next word. */
323 start_bit += !bi->bits;
325 *bit_no = start_bit;
328 /* Initialize an iterator to iterate over the bits in MAP1 & ~MAP2.
331 static inline void
332 bmp_iter_and_compl_init (bitmap_iterator *bi, const_bitmap map1, const_bitmap map2,
333 unsigned start_bit, unsigned *bit_no)
335 bi->elt1 = map1->first;
336 bi->elt2 = map2->first;
338 /* Advance elt1 until it is not before the block containing start_bit. */
339 while (1)
341 if (!bi->elt1)
343 bi->elt1 = &bitmap_zero_bits;
344 break;
347 if (bi->elt1->indx >= start_bit / BITMAP_ELEMENT_ALL_BITS)
348 break;
349 bi->elt1 = bi->elt1->next;
352 /* Advance elt2 until it is not before elt1. */
353 while (bi->elt2 && bi->elt2->indx < bi->elt1->indx)
354 bi->elt2 = bi->elt2->next;
356 /* We might have advanced beyond the start_bit, so reinitialize for
357 that. */
358 if (bi->elt1->indx != start_bit / BITMAP_ELEMENT_ALL_BITS)
359 start_bit = bi->elt1->indx * BITMAP_ELEMENT_ALL_BITS;
361 bi->word_no = start_bit / BITMAP_WORD_BITS % BITMAP_ELEMENT_WORDS;
362 bi->bits = bi->elt1->bits[bi->word_no];
363 if (bi->elt2 && bi->elt1->indx == bi->elt2->indx)
364 bi->bits &= ~bi->elt2->bits[bi->word_no];
365 bi->bits >>= start_bit % BITMAP_WORD_BITS;
367 /* If this word is zero, we must make sure we're not pointing at the
368 first bit, otherwise our incrementing to the next word boundary
369 will fail. It won't matter if this increment moves us into the
370 next word. */
371 start_bit += !bi->bits;
373 *bit_no = start_bit;
376 /* Advance to the next bit in BI. We don't advance to the next
377 nonzero bit yet. */
379 static inline void
380 bmp_iter_next (bitmap_iterator *bi, unsigned *bit_no)
382 bi->bits >>= 1;
383 *bit_no += 1;
386 /* Advance to the next nonzero bit of a single bitmap, we will have
387 already advanced past the just iterated bit. Return true if there
388 is a bit to iterate. */
390 static inline bool
391 bmp_iter_set (bitmap_iterator *bi, unsigned *bit_no)
393 /* If our current word is nonzero, it contains the bit we want. */
394 if (bi->bits)
396 next_bit:
397 while (!(bi->bits & 1))
399 bi->bits >>= 1;
400 *bit_no += 1;
402 return true;
405 /* Round up to the word boundary. We might have just iterated past
406 the end of the last word, hence the -1. It is not possible for
407 bit_no to point at the beginning of the now last word. */
408 *bit_no = ((*bit_no + BITMAP_WORD_BITS - 1)
409 / BITMAP_WORD_BITS * BITMAP_WORD_BITS);
410 bi->word_no++;
412 while (1)
414 /* Find the next nonzero word in this elt. */
415 while (bi->word_no != BITMAP_ELEMENT_WORDS)
417 bi->bits = bi->elt1->bits[bi->word_no];
418 if (bi->bits)
419 goto next_bit;
420 *bit_no += BITMAP_WORD_BITS;
421 bi->word_no++;
424 /* Advance to the next element. */
425 bi->elt1 = bi->elt1->next;
426 if (!bi->elt1)
427 return false;
428 *bit_no = bi->elt1->indx * BITMAP_ELEMENT_ALL_BITS;
429 bi->word_no = 0;
433 /* Advance to the next nonzero bit of an intersecting pair of
434 bitmaps. We will have already advanced past the just iterated bit.
435 Return true if there is a bit to iterate. */
437 static inline bool
438 bmp_iter_and (bitmap_iterator *bi, unsigned *bit_no)
440 /* If our current word is nonzero, it contains the bit we want. */
441 if (bi->bits)
443 next_bit:
444 while (!(bi->bits & 1))
446 bi->bits >>= 1;
447 *bit_no += 1;
449 return true;
452 /* Round up to the word boundary. We might have just iterated past
453 the end of the last word, hence the -1. It is not possible for
454 bit_no to point at the beginning of the now last word. */
455 *bit_no = ((*bit_no + BITMAP_WORD_BITS - 1)
456 / BITMAP_WORD_BITS * BITMAP_WORD_BITS);
457 bi->word_no++;
459 while (1)
461 /* Find the next nonzero word in this elt. */
462 while (bi->word_no != BITMAP_ELEMENT_WORDS)
464 bi->bits = bi->elt1->bits[bi->word_no] & bi->elt2->bits[bi->word_no];
465 if (bi->bits)
466 goto next_bit;
467 *bit_no += BITMAP_WORD_BITS;
468 bi->word_no++;
471 /* Advance to the next identical element. */
474 /* Advance elt1 while it is less than elt2. We always want
475 to advance one elt. */
478 bi->elt1 = bi->elt1->next;
479 if (!bi->elt1)
480 return false;
482 while (bi->elt1->indx < bi->elt2->indx);
484 /* Advance elt2 to be no less than elt1. This might not
485 advance. */
486 while (bi->elt2->indx < bi->elt1->indx)
488 bi->elt2 = bi->elt2->next;
489 if (!bi->elt2)
490 return false;
493 while (bi->elt1->indx != bi->elt2->indx);
495 *bit_no = bi->elt1->indx * BITMAP_ELEMENT_ALL_BITS;
496 bi->word_no = 0;
500 /* Advance to the next nonzero bit in the intersection of
501 complemented bitmaps. We will have already advanced past the just
502 iterated bit. */
504 static inline bool
505 bmp_iter_and_compl (bitmap_iterator *bi, unsigned *bit_no)
507 /* If our current word is nonzero, it contains the bit we want. */
508 if (bi->bits)
510 next_bit:
511 while (!(bi->bits & 1))
513 bi->bits >>= 1;
514 *bit_no += 1;
516 return true;
519 /* Round up to the word boundary. We might have just iterated past
520 the end of the last word, hence the -1. It is not possible for
521 bit_no to point at the beginning of the now last word. */
522 *bit_no = ((*bit_no + BITMAP_WORD_BITS - 1)
523 / BITMAP_WORD_BITS * BITMAP_WORD_BITS);
524 bi->word_no++;
526 while (1)
528 /* Find the next nonzero word in this elt. */
529 while (bi->word_no != BITMAP_ELEMENT_WORDS)
531 bi->bits = bi->elt1->bits[bi->word_no];
532 if (bi->elt2 && bi->elt2->indx == bi->elt1->indx)
533 bi->bits &= ~bi->elt2->bits[bi->word_no];
534 if (bi->bits)
535 goto next_bit;
536 *bit_no += BITMAP_WORD_BITS;
537 bi->word_no++;
540 /* Advance to the next element of elt1. */
541 bi->elt1 = bi->elt1->next;
542 if (!bi->elt1)
543 return false;
545 /* Advance elt2 until it is no less than elt1. */
546 while (bi->elt2 && bi->elt2->indx < bi->elt1->indx)
547 bi->elt2 = bi->elt2->next;
549 *bit_no = bi->elt1->indx * BITMAP_ELEMENT_ALL_BITS;
550 bi->word_no = 0;
554 /* Loop over all bits set in BITMAP, starting with MIN and setting
555 BITNUM to the bit number. ITER is a bitmap iterator. BITNUM
556 should be treated as a read-only variable as it contains loop
557 state. */
559 #define EXECUTE_IF_SET_IN_BITMAP(BITMAP, MIN, BITNUM, ITER) \
560 for (bmp_iter_set_init (&(ITER), (BITMAP), (MIN), &(BITNUM)); \
561 bmp_iter_set (&(ITER), &(BITNUM)); \
562 bmp_iter_next (&(ITER), &(BITNUM)))
564 /* Loop over all the bits set in BITMAP1 & BITMAP2, starting with MIN
565 and setting BITNUM to the bit number. ITER is a bitmap iterator.
566 BITNUM should be treated as a read-only variable as it contains
567 loop state. */
569 #define EXECUTE_IF_AND_IN_BITMAP(BITMAP1, BITMAP2, MIN, BITNUM, ITER) \
570 for (bmp_iter_and_init (&(ITER), (BITMAP1), (BITMAP2), (MIN), \
571 &(BITNUM)); \
572 bmp_iter_and (&(ITER), &(BITNUM)); \
573 bmp_iter_next (&(ITER), &(BITNUM)))
575 /* Loop over all the bits set in BITMAP1 & ~BITMAP2, starting with MIN
576 and setting BITNUM to the bit number. ITER is a bitmap iterator.
577 BITNUM should be treated as a read-only variable as it contains
578 loop state. */
580 #define EXECUTE_IF_AND_COMPL_IN_BITMAP(BITMAP1, BITMAP2, MIN, BITNUM, ITER) \
581 for (bmp_iter_and_compl_init (&(ITER), (BITMAP1), (BITMAP2), (MIN), \
582 &(BITNUM)); \
583 bmp_iter_and_compl (&(ITER), &(BITNUM)); \
584 bmp_iter_next (&(ITER), &(BITNUM)))
586 #endif /* GCC_BITMAP_H */