OSDN Git Service

* var-tracking.c (vt_expand_loc_callback): Don't run
[pf3gnuchains/gcc-fork.git] / gcc / sbitmap.h
1 /* Simple bitmaps.
2    Copyright (C) 1999, 2000, 2002, 2003, 2004, 2006, 2007, 2008
3    Free Software Foundation, Inc.
4
5 This file is part of GCC.
6
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.
11
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.
16
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/>.  */
20
21 #ifndef GCC_SBITMAP_H
22 #define GCC_SBITMAP_H
23
24 /* It's not clear yet whether using bitmap.[ch] will be a win.
25    It should be straightforward to convert so for now we keep things simple
26    while more important issues are dealt with.  */
27
28 #define SBITMAP_ELT_BITS ((unsigned) HOST_BITS_PER_WIDEST_FAST_INT)
29 #define SBITMAP_ELT_TYPE unsigned HOST_WIDEST_FAST_INT
30
31 /* Can't use SBITMAP_ELT_BITS in this macro because it contains a
32    cast.  There is no perfect macro in GCC to test against.  This
33    suffices for roughly 99% of the hosts we run on, and the rest
34    don't have 256 bit integers.  */
35 #if HOST_BITS_PER_WIDEST_FAST_INT > 255
36 #error Need to increase size of datatype used for popcount
37 #endif
38
39 struct simple_bitmap_def
40 {
41   unsigned char *popcount;      /* Population count.  */
42   unsigned int n_bits;          /* Number of bits.  */
43   unsigned int size;            /* Size in elements.  */
44   SBITMAP_ELT_TYPE elms[1];     /* The elements.  */
45 };
46
47 typedef SBITMAP_ELT_TYPE *sbitmap_ptr;
48 typedef const SBITMAP_ELT_TYPE *const_sbitmap_ptr;
49
50 /* Return the set size needed for N elements.  */
51 #define SBITMAP_SET_SIZE(N) (((N) + SBITMAP_ELT_BITS - 1) / SBITMAP_ELT_BITS)
52 #define SBITMAP_SIZE_BYTES(BITMAP) ((BITMAP)->size * sizeof (SBITMAP_ELT_TYPE))
53
54 /* Test if bit number bitno in the bitmap is set.  */
55 #define TEST_BIT(BITMAP, BITNO) \
56 ((BITMAP)->elms [(BITNO) / SBITMAP_ELT_BITS] >> (BITNO) % SBITMAP_ELT_BITS & 1)
57
58 /* Set bit number BITNO in the sbitmap MAP.  Updates population count
59    if this bitmap has one.  */
60
61 static inline void
62 SET_BIT (sbitmap map, unsigned int bitno)
63 {
64   if (map->popcount)
65     {
66       bool oldbit;
67       oldbit = TEST_BIT (map, bitno);
68       if (!oldbit)
69         map->popcount[bitno / SBITMAP_ELT_BITS]++;
70     }
71   map->elms[bitno / SBITMAP_ELT_BITS]
72     |= (SBITMAP_ELT_TYPE) 1 << (bitno) % SBITMAP_ELT_BITS;
73 }
74
75
76
77 /* Reset bit number BITNO in the sbitmap MAP.  Updates population
78    count if this bitmap has one.  */
79
80 static inline void
81 RESET_BIT (sbitmap map,  unsigned int bitno)
82 {
83   if (map->popcount)
84     {
85       bool oldbit;
86       oldbit = TEST_BIT (map, bitno);
87       if (oldbit)
88         map->popcount[bitno / SBITMAP_ELT_BITS]--;
89     }
90   map->elms[bitno / SBITMAP_ELT_BITS]
91     &= ~((SBITMAP_ELT_TYPE) 1 << (bitno) % SBITMAP_ELT_BITS);
92 }
93
94 /* The iterator for sbitmap.  */
95 typedef struct {
96   /* The pointer to the first word of the bitmap.  */
97   const SBITMAP_ELT_TYPE *ptr;
98
99   /* The size of the bitmap.  */
100   unsigned int size;
101
102   /* The current word index.  */
103   unsigned int word_num;
104
105   /* The current bit index (not modulo SBITMAP_ELT_BITS).  */
106   unsigned int bit_num;
107
108   /* The words currently visited.  */
109   SBITMAP_ELT_TYPE word;
110 } sbitmap_iterator;
111
112 /* Initialize the iterator I with sbitmap BMP and the initial index
113    MIN.  */
114
115 static inline void
116 sbitmap_iter_init (sbitmap_iterator *i, const_sbitmap bmp, unsigned int min)
117 {
118   i->word_num = min / (unsigned int) SBITMAP_ELT_BITS;
119   i->bit_num = min;
120   i->size = bmp->size;
121   i->ptr = bmp->elms;
122
123   if (i->word_num >= i->size)
124     i->word = 0;
125   else
126     i->word = (i->ptr[i->word_num]
127                >> (i->bit_num % (unsigned int) SBITMAP_ELT_BITS));
128 }
129
130 /* Return true if we have more bits to visit, in which case *N is set
131    to the index of the bit to be visited.  Otherwise, return
132    false.  */
133
134 static inline bool
135 sbitmap_iter_cond (sbitmap_iterator *i, unsigned int *n)
136 {
137   /* Skip words that are zeros.  */
138   for (; i->word == 0; i->word = i->ptr[i->word_num])
139     {
140       i->word_num++;
141
142       /* If we have reached the end, break.  */
143       if (i->word_num >= i->size)
144         return false;
145
146       i->bit_num = i->word_num * SBITMAP_ELT_BITS;
147     }
148
149   /* Skip bits that are zero.  */
150   for (; (i->word & 1) == 0; i->word >>= 1)
151     i->bit_num++;
152
153   *n = i->bit_num;
154
155   return true;
156 }
157
158 /* Advance to the next bit.  */
159
160 static inline void
161 sbitmap_iter_next (sbitmap_iterator *i)
162 {
163   i->word >>= 1;
164   i->bit_num++;
165 }
166
167 /* Loop over all elements of SBITMAP, starting with MIN.  In each
168    iteration, N is set to the index of the bit being visited.  ITER is
169    an instance of sbitmap_iterator used to iterate the bitmap.  */
170
171 #define EXECUTE_IF_SET_IN_SBITMAP(SBITMAP, MIN, N, ITER)        \
172   for (sbitmap_iter_init (&(ITER), (SBITMAP), (MIN));           \
173        sbitmap_iter_cond (&(ITER), &(N));                       \
174        sbitmap_iter_next (&(ITER)))
175
176 #define EXECUTE_IF_SET_IN_SBITMAP_REV(SBITMAP, N, CODE)                 \
177 do {                                                                    \
178   unsigned int word_num_;                                               \
179   unsigned int bit_num_;                                                \
180   unsigned int size_ = (SBITMAP)->size;                                 \
181   SBITMAP_ELT_TYPE *ptr_ = (SBITMAP)->elms;                             \
182                                                                         \
183   for (word_num_ = size_; word_num_ > 0; word_num_--)                   \
184     {                                                                   \
185       SBITMAP_ELT_TYPE word_ = ptr_[word_num_ - 1];                     \
186                                                                         \
187       if (word_ != 0)                                                   \
188         for (bit_num_ = SBITMAP_ELT_BITS; bit_num_ > 0; bit_num_--)     \
189           {                                                             \
190             SBITMAP_ELT_TYPE _mask = (SBITMAP_ELT_TYPE)1 << (bit_num_ - 1);\
191                                                                         \
192             if ((word_ & _mask) != 0)                                   \
193               {                                                         \
194                 word_ &= ~ _mask;                                       \
195                 (N) = (word_num_ - 1) * SBITMAP_ELT_BITS + bit_num_ - 1;\
196                 CODE;                                                   \
197                 if (word_ == 0)                                         \
198                   break;                                                \
199               }                                                         \
200           }                                                             \
201     }                                                                   \
202 } while (0)
203
204 #define sbitmap_free(MAP)               (free((MAP)->popcount), free((MAP)))
205 #define sbitmap_vector_free(VEC)        free(VEC)
206
207 struct int_list;
208
209 extern void dump_sbitmap (FILE *, const_sbitmap);
210 extern void dump_sbitmap_file (FILE *, const_sbitmap);
211 extern void dump_sbitmap_vector (FILE *, const char *, const char *, sbitmap *,
212                                  int);
213 extern sbitmap sbitmap_alloc (unsigned int);
214 extern sbitmap sbitmap_alloc_with_popcount (unsigned int);
215 extern sbitmap *sbitmap_vector_alloc (unsigned int, unsigned int);
216 extern sbitmap sbitmap_resize (sbitmap, unsigned int, int);
217 extern void sbitmap_copy (sbitmap, const_sbitmap);
218 extern void sbitmap_copy_n (sbitmap, const_sbitmap, unsigned int);
219 extern int sbitmap_equal (const_sbitmap, const_sbitmap);
220 extern bool sbitmap_empty_p (const_sbitmap);
221 extern bool sbitmap_range_empty_p (const_sbitmap, unsigned int, unsigned int);
222 extern void sbitmap_zero (sbitmap);
223 extern void sbitmap_ones (sbitmap);
224 extern void sbitmap_vector_zero (sbitmap *, unsigned int);
225 extern void sbitmap_vector_ones (sbitmap *, unsigned int);
226
227 extern void sbitmap_union_of_diff (sbitmap, const_sbitmap, const_sbitmap, const_sbitmap);
228 extern bool sbitmap_union_of_diff_cg (sbitmap, const_sbitmap, const_sbitmap, const_sbitmap);
229 extern void sbitmap_difference (sbitmap, const_sbitmap, const_sbitmap);
230 extern void sbitmap_not (sbitmap, const_sbitmap);
231 extern void sbitmap_a_or_b_and_c (sbitmap, const_sbitmap, const_sbitmap, const_sbitmap);
232 extern bool sbitmap_a_or_b_and_c_cg (sbitmap, const_sbitmap, const_sbitmap, const_sbitmap);
233 extern void sbitmap_a_and_b_or_c (sbitmap, const_sbitmap, const_sbitmap, const_sbitmap);
234 extern bool sbitmap_a_and_b_or_c_cg (sbitmap, const_sbitmap, const_sbitmap, const_sbitmap);
235 extern bool sbitmap_any_common_bits (const_sbitmap, const_sbitmap);
236 extern void sbitmap_a_and_b (sbitmap, const_sbitmap, const_sbitmap);
237 extern bool sbitmap_a_and_b_cg (sbitmap, const_sbitmap, const_sbitmap);
238 extern void sbitmap_a_or_b (sbitmap, const_sbitmap, const_sbitmap);
239 extern bool sbitmap_a_or_b_cg (sbitmap, const_sbitmap, const_sbitmap);
240 extern void sbitmap_a_xor_b (sbitmap, const_sbitmap, const_sbitmap);
241 extern bool sbitmap_a_xor_b_cg (sbitmap, const_sbitmap, const_sbitmap);
242 extern bool sbitmap_a_subset_b_p (const_sbitmap, const_sbitmap);
243
244 extern int sbitmap_first_set_bit (const_sbitmap);
245 extern int sbitmap_last_set_bit (const_sbitmap);
246
247 extern void sbitmap_intersect_of_predsucc (sbitmap, sbitmap *, int,
248                                            struct int_list **);
249 #define sbitmap_intersect_of_predecessors  sbitmap_intersect_of_predsucc
250 #define sbitmap_intersect_of_successors    sbitmap_intersect_of_predsucc
251
252 extern void sbitmap_union_of_predsucc (sbitmap, sbitmap *, int,
253                                        struct int_list **);
254 #define sbitmap_union_of_predecessors  sbitmap_union_of_predsucc
255 #define sbitmap_union_of_successors    sbitmap_union_of_predsucc
256
257 /* Intersection and Union of preds/succs using the new flow graph
258    structure instead of the pred/succ arrays.  */
259
260 extern void sbitmap_intersection_of_succs (sbitmap, sbitmap *, int);
261 extern void sbitmap_intersection_of_preds (sbitmap, sbitmap *, int);
262 extern void sbitmap_union_of_succs (sbitmap, sbitmap *, int);
263 extern void sbitmap_union_of_preds (sbitmap, sbitmap *, int);
264
265 extern void debug_sbitmap (const_sbitmap);
266 extern sbitmap sbitmap_realloc (sbitmap, unsigned int);
267 extern unsigned long sbitmap_popcount(const_sbitmap, unsigned long);
268 extern void sbitmap_verify_popcount (const_sbitmap);
269 #endif /* ! GCC_SBITMAP_H */