0677b5449db46a102ae0cab5728c10b0adab66a4
[oota-llvm.git] / include / llvm / ADT / BitVector.h
1 //===- llvm/ADT/BitVector.h - Bit vectors -----------------------*- C++ -*-===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file was developed by Evan Cheng and is distributed under
6 // the University of Illinois Open Source License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This file implements the BitVector class.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #ifndef LLVM_ADT_BITVECTOR_H
15 #define LLVM_ADT_BITVECTOR_H
16
17 #include "llvm/Support/MathExtras.h"
18
19 namespace llvm {
20
21 class BitVector {
22   typedef unsigned long BitWord;
23
24   enum { BITS_PER_WORD = sizeof(BitWord) * 8 };
25
26   BitWord  *Bits;        // Actual bits. 
27   unsigned Size;         // Size of bitvector in bits.
28   unsigned Capacity;     // Size of allocated memory in BitWord.
29
30 public:
31   // Encapsulation of a single bit.
32   class reference {
33     friend class BitVector;
34
35     BitWord *WordRef;
36     unsigned BitPos;
37
38     reference();  // Undefined
39
40   public:
41     reference(BitVector &b, unsigned Idx) {
42       WordRef = &b.Bits[Idx / BITS_PER_WORD];
43       BitPos = Idx % BITS_PER_WORD;
44     }
45
46     ~reference() {}
47
48     reference& operator=(bool t) {
49       if (t)
50         *WordRef |= 1L << BitPos;
51       else
52         *WordRef &= ~(1L << BitPos);
53       return *this;
54     }
55
56     reference& operator=(const reference& rhs) {
57       if (*rhs.WordRef & (1 << rhs.BitPos))
58         *WordRef |= 1L << BitPos;
59       else
60         *WordRef &= ~(1L << BitPos);
61       return *this;
62     }
63
64     operator bool() const {
65       return (*WordRef) & (1L << BitPos);
66     }
67   };
68
69
70   /// BitVector default ctor - Creates an empty bitvector.
71   BitVector() : Size(0), Capacity(0) {
72     Bits = NULL;
73   }
74
75   /// BitVector ctor - Creates a bitvector of specified number of bits. All
76   /// bits are initialized to the specified value.
77   explicit BitVector(unsigned s, bool t = false) : Size(s) {
78     Capacity = NumBitWords(s);
79     Bits = new BitWord[Capacity];
80     init_words(Bits, Capacity, t);
81     if (t)
82       clear_unused_bits();
83   }
84
85   /// BitVector copy ctor.
86   BitVector(const BitVector &RHS) : Size(RHS.size()) {
87     if (Size == 0) {
88       Bits = NULL;
89       return;
90     }
91
92     Capacity = NumBitWords(RHS.size());
93     Bits = new BitWord[Capacity];
94     std::copy(RHS.Bits, &RHS.Bits[Capacity], Bits);
95   }
96
97   /// size - Returns the number of bits in this bitvector.
98   unsigned size() const { return Size; }
99
100   /// count - Returns the number of bits which are set.
101   unsigned count() const {
102     unsigned NumBits = 0;
103     for (unsigned i = 0; i < NumBitWords(size()); ++i)
104       if (sizeof(BitWord) == 4)
105         NumBits += CountPopulation_32(Bits[i]);
106       else if (sizeof(BitWord) == 8)
107         NumBits += CountPopulation_64(Bits[i]);
108       else
109         assert(0 && "Unsupported!")
110     return NumBits;
111   }
112
113   /// any - Returns true if any bit is set.
114   bool any() const {
115     for (unsigned i = 0; i < NumBitWords(size()); ++i)
116       if (Bits[i] != 0)
117         return true;
118     return false;
119   }
120
121   /// none - Returns true if none of the bits are set.
122   bool none() const {
123     return !any();
124   }
125
126   /// find_first - Returns the index of the first set bit, -1 if none
127   /// of the bits are set.
128   int find_first() const {
129     for (unsigned i = 0; i < NumBitWords(size()); ++i)
130       if (Bits[i] != 0)
131         return i * BITS_PER_WORD + CountTrailingZeros_32(Bits[i]);
132     return -1;
133   }
134
135   /// find_next - Returns the index of the next set bit following the
136   /// "Prev" bit. Returns -1 if the next set bit is not found.
137   int find_next(unsigned Prev) const {
138     ++Prev;
139     if (Prev >= Size)
140       return -1;
141
142     unsigned WordPos = Prev / BITS_PER_WORD;
143     unsigned BitPos = Prev % BITS_PER_WORD;
144     BitWord Copy = Bits[WordPos];
145     // Mask off previous bits.
146     Copy &= ~0 << BitPos;
147
148     if (Copy != 0)
149       return WordPos * BITS_PER_WORD + CountTrailingZeros_32(Copy);
150
151     // Check subsequent words.
152     for (unsigned i = WordPos+1; i < NumBitWords(size()); ++i)
153       if (Bits[i] != 0)
154         return i * BITS_PER_WORD + CountTrailingZeros_32(Bits[i]);
155     return -1;
156   }
157
158   /// clear - Clear all bits.
159   void clear() {
160     Size = 0;
161   }
162
163   /// resize - Grow or shrink the bitvector.
164   void resize(unsigned N, bool t = false) {
165     if (N > Capacity * BITS_PER_WORD) {
166       unsigned OldCapacity = Capacity;
167       grow(N);
168       init_words(&Bits[OldCapacity], (Capacity-OldCapacity), t);
169     }
170     Size = N;
171     if (t)
172       clear_unused_bits();
173   }
174
175   void reserve(unsigned N) {
176     if (N > Capacity * BITS_PER_WORD)
177       grow(N);
178   }
179
180   // Set, reset, flip
181   BitVector &set() {
182     if (Bits) {
183       init_words(Bits, Capacity, true);
184       clear_unused_bits();
185     }
186     return *this;
187   }
188
189   BitVector &set(unsigned Idx) {
190     Bits[Idx / BITS_PER_WORD] |= 1L << (Idx % BITS_PER_WORD);
191     return *this;
192   }
193
194   BitVector &reset() {
195     if (Bits)
196       init_words(Bits, Capacity, false);
197     return *this;
198   }
199
200   BitVector &reset(unsigned Idx) {
201     Bits[Idx / BITS_PER_WORD] &= ~(1L << (Idx % BITS_PER_WORD));
202     return *this;
203   }
204
205   BitVector &flip() {
206     for (unsigned i = 0; i < NumBitWords(size()); ++i)
207       Bits[i] = ~Bits[i];
208     clear_unused_bits();
209     return *this;
210   }
211
212   BitVector &flip(unsigned Idx) {
213     Bits[Idx / BITS_PER_WORD] ^= 1L << (Idx % BITS_PER_WORD);
214     return *this;
215   }
216
217   // No argument flip.
218   BitVector operator~() const {
219     return BitVector(*this).flip();
220   }
221
222   // Indexing.
223   reference operator[](unsigned Idx) {
224     return reference(*this, Idx);
225   }
226
227   bool operator[](unsigned Idx) const {
228     BitWord Mask = 1L << (Idx % BITS_PER_WORD);
229     return (Bits[Idx / BITS_PER_WORD] & Mask) != 0;
230   }
231
232   bool test(unsigned Idx) const {
233     return (*this)[Idx];
234   }
235
236   // Comparison operators.
237   bool operator==(const BitVector &RHS) const {
238     if (Size != RHS.Size)
239       return false;
240
241     for (unsigned i = 0; i < NumBitWords(size()); ++i)
242       if (Bits[i] != RHS.Bits[i])
243         return false;
244     return true;
245   }
246
247   bool operator!=(const BitVector &RHS) const {
248     return !(*this == RHS);
249   }
250
251   // Intersection, union, disjoint union.
252   BitVector operator&=(const BitVector &RHS) {
253     assert(Size == RHS.Size && "Illegal operation!");
254     for (unsigned i = 0; i < NumBitWords(size()); ++i)
255       Bits[i] &= RHS.Bits[i];
256     return *this;
257   }
258
259   BitVector operator|=(const BitVector &RHS) {
260     assert(Size == RHS.Size && "Illegal operation!");
261     for (unsigned i = 0; i < NumBitWords(size()); ++i)
262       Bits[i] |= RHS.Bits[i];
263     return *this;
264   }
265
266   BitVector operator^=(const BitVector &RHS) {
267     assert(Size == RHS.Size && "Illegal operation!");
268     for (unsigned i = 0; i < NumBitWords(size()); ++i)
269       Bits[i] ^= RHS.Bits[i];
270     return *this;
271   }
272   
273   // Assignment operator.
274   const BitVector &operator=(const BitVector &RHS) {
275     if (this == &RHS) return *this;
276
277     Size = RHS.size();
278     unsigned RHSWords = NumBitWords(Size);
279     if (Size <= Capacity * BITS_PER_WORD) {
280       std::copy(RHS.Bits, &RHS.Bits[RHSWords], Bits);
281       clear_unused_bits();
282       return *this;
283     }
284   
285     // Grow the bitvector to have enough elements.
286     Capacity = NumBitWords(Size);
287     BitWord *NewBits = new BitWord[Capacity];
288     std::copy(RHS.Bits, &RHS.Bits[RHSWords], NewBits);
289
290     // Destroy the old bits.
291     delete[] Bits;
292     Bits = NewBits;
293
294     return *this;
295   }
296
297 private:
298   unsigned NumBitWords(unsigned S) const {
299     return (S + BITS_PER_WORD-1) / BITS_PER_WORD;
300   }
301
302   // Clear the unused top bits in the high word.
303   void clear_unused_bits() {
304     if (Size) {
305       unsigned ExtraBits = Size % BITS_PER_WORD;
306       Bits[Size / BITS_PER_WORD] &= ~(~0 << ExtraBits);
307     }
308   }
309
310   void grow(unsigned NewSize) {
311     unsigned OldCapacity = Capacity;
312     Capacity = NumBitWords(NewSize);
313     BitWord *NewBits = new BitWord[Capacity];
314
315     // Copy the old bits over.
316     if (OldCapacity != 0)
317       std::copy(Bits, &Bits[OldCapacity], NewBits);
318
319     // Destroy the old bits.
320     if (Bits)
321       delete[] Bits;
322     Bits = NewBits;
323   }
324
325   void init_words(BitWord *B, unsigned NumWords, bool t) {
326     if (B)
327       memset(B, 0 - (int)t, NumWords*sizeof(BitWord));
328   } 
329 };
330
331 inline BitVector operator&(const BitVector &LHS, const BitVector &RHS) {
332   BitVector Result(LHS);
333   Result &= RHS;
334   return Result;
335 }
336
337 inline BitVector operator|(const BitVector &LHS, const BitVector &RHS) {
338   BitVector Result(LHS);
339   Result |= RHS;
340   return Result;
341 }
342
343 inline BitVector operator^(const BitVector &LHS, const BitVector &RHS) {
344   BitVector Result(LHS);
345   Result ^= RHS;
346   return Result;
347 }
348  
349 } // End llvm namespace
350 #endif