LLVM 22.0.0git
SmallBitVector.h
Go to the documentation of this file.
1//===- llvm/ADT/SmallBitVector.h - 'Normally small' bit vectors -*- C++ -*-===//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8///
9/// \file
10/// This file implements the SmallBitVector class.
11///
12//===----------------------------------------------------------------------===//
13
14#ifndef LLVM_ADT_SMALLBITVECTOR_H
15#define LLVM_ADT_SMALLBITVECTOR_H
16
17#include "llvm/ADT/BitVector.h"
20#include <algorithm>
21#include <cassert>
22#include <climits>
23#include <cstddef>
24#include <cstdint>
25#include <limits>
26#include <utility>
27
28namespace llvm {
29
30/// This is a 'bitvector' (really, a variable-sized bit array), optimized for
31/// the case when the array is small. It contains one pointer-sized field, which
32/// is directly used as a plain collection of bits when possible, or as a
33/// pointer to a larger heap-allocated array when necessary. This allows normal
34/// "small" cases to be fast without losing generality for large inputs.
36 // TODO: In "large" mode, a pointer to a BitVector is used, leading to an
37 // unnecessary level of indirection. It would be more efficient to use a
38 // pointer to memory containing size, allocation size, and the array of bits.
39 uintptr_t X = 1;
40
41 enum {
42 // The number of bits in this class.
43 NumBaseBits = sizeof(uintptr_t) * CHAR_BIT,
44
45 // One bit is used to discriminate between small and large mode. The
46 // remaining bits are used for the small-mode representation.
47 SmallNumRawBits = NumBaseBits - 1,
48
49 // A few more bits are used to store the size of the bit set in small mode.
50 // Theoretically this is a ceil-log2. These bits are encoded in the most
51 // significant bits of the raw bits.
52 SmallNumSizeBits = (NumBaseBits == 32 ? 5 :
53 NumBaseBits == 64 ? 6 :
54 SmallNumRawBits),
55
56 // The remaining bits are used to store the actual set in small mode.
57 SmallNumDataBits = SmallNumRawBits - SmallNumSizeBits
58 };
59
60 static_assert(NumBaseBits == 64 || NumBaseBits == 32,
61 "Unsupported word size");
62
63public:
64 using size_type = uintptr_t;
65
66 // Encapsulation of a single bit.
67 class reference {
68 SmallBitVector &TheVector;
69 unsigned BitPos;
70
71 public:
72 reference(SmallBitVector &b, unsigned Idx) : TheVector(b), BitPos(Idx) {}
73
74 reference(const reference&) = default;
75
77 *this = bool(t);
78 return *this;
79 }
80
82 if (t)
83 TheVector.set(BitPos);
84 else
85 TheVector.reset(BitPos);
86 return *this;
87 }
88
89 operator bool() const {
90 return const_cast<const SmallBitVector &>(TheVector).operator[](BitPos);
91 }
92 };
93
94private:
95 BitVector *getPointer() const {
96 assert(!isSmall());
97 return reinterpret_cast<BitVector *>(X);
98 }
99
100 void switchToSmall(uintptr_t NewSmallBits, size_type NewSize) {
101 X = 1;
102 setSmallSize(NewSize);
103 setSmallBits(NewSmallBits);
104 }
105
106 void switchToLarge(BitVector *BV) {
107 X = reinterpret_cast<uintptr_t>(BV);
108 assert(!isSmall() && "Tried to use an unaligned pointer");
109 }
110
111 // Return all the bits used for the "small" representation; this includes
112 // bits for the size as well as the element bits.
113 uintptr_t getSmallRawBits() const {
114 assert(isSmall());
115 return X >> 1;
116 }
117
118 void setSmallRawBits(uintptr_t NewRawBits) {
119 assert(isSmall());
120 X = (NewRawBits << 1) | uintptr_t(1);
121 }
122
123 // Return the size.
124 size_type getSmallSize() const {
125 return getSmallRawBits() >> SmallNumDataBits;
126 }
127
128 void setSmallSize(size_type Size) {
129 setSmallRawBits(getSmallBits() | (Size << SmallNumDataBits));
130 }
131
132 // Return the element bits.
133 uintptr_t getSmallBits() const {
134 return getSmallRawBits() & ~(~uintptr_t(0) << getSmallSize());
135 }
136
137 void setSmallBits(uintptr_t NewBits) {
138 setSmallRawBits((NewBits & ~(~uintptr_t(0) << getSmallSize())) |
139 (getSmallSize() << SmallNumDataBits));
140 }
141
142public:
143 /// Creates an empty bitvector.
144 SmallBitVector() = default;
145
146 /// Creates a bitvector of specified number of bits. All bits are initialized
147 /// to the specified value.
148 explicit SmallBitVector(unsigned s, bool t = false) {
149 if (s <= SmallNumDataBits)
150 switchToSmall(t ? ~uintptr_t(0) : 0, s);
151 else
152 switchToLarge(new BitVector(s, t));
153 }
154
155 /// SmallBitVector copy ctor.
157 if (RHS.isSmall())
158 X = RHS.X;
159 else
160 switchToLarge(new BitVector(*RHS.getPointer()));
161 }
162
164 RHS.X = 1;
165 }
166
168 if (!isSmall())
169 delete getPointer();
170 }
171
174
176 return const_set_bits_iterator(*this);
177 }
178
180 return const_set_bits_iterator(*this, -1);
181 }
182
185 }
186
187 bool isSmall() const { return X & uintptr_t(1); }
188
189 /// Tests whether there are no bits in this bitvector.
190 bool empty() const {
191 return isSmall() ? getSmallSize() == 0 : getPointer()->empty();
192 }
193
194 /// Returns the number of bits in this bitvector.
195 size_type size() const {
196 return isSmall() ? getSmallSize() : getPointer()->size();
197 }
198
199 /// Returns the number of bits which are set.
200 size_type count() const {
201 if (isSmall()) {
202 uintptr_t Bits = getSmallBits();
203 return llvm::popcount(Bits);
204 }
205 return getPointer()->count();
206 }
207
208 /// Returns true if any bit is set.
209 bool any() const {
210 if (isSmall())
211 return getSmallBits() != 0;
212 return getPointer()->any();
213 }
214
215 /// Returns true if all bits are set.
216 bool all() const {
217 if (isSmall())
218 return getSmallBits() == (uintptr_t(1) << getSmallSize()) - 1;
219 return getPointer()->all();
220 }
221
222 /// Returns true if none of the bits are set.
223 bool none() const {
224 if (isSmall())
225 return getSmallBits() == 0;
226 return getPointer()->none();
227 }
228
229 /// Returns the index of the first set bit, -1 if none of the bits are set.
230 int find_first() const {
231 if (isSmall()) {
232 uintptr_t Bits = getSmallBits();
233 if (Bits == 0)
234 return -1;
235 return llvm::countr_zero(Bits);
236 }
237 return getPointer()->find_first();
238 }
239
240 int find_last() const {
241 if (isSmall()) {
242 uintptr_t Bits = getSmallBits();
243 if (Bits == 0)
244 return -1;
245 return NumBaseBits - llvm::countl_zero(Bits) - 1;
246 }
247 return getPointer()->find_last();
248 }
249
250 /// Returns the index of the first unset bit, -1 if all of the bits are set.
251 int find_first_unset() const {
252 if (isSmall()) {
253 if (count() == getSmallSize())
254 return -1;
255
256 uintptr_t Bits = getSmallBits();
257 return llvm::countr_one(Bits);
258 }
259 return getPointer()->find_first_unset();
260 }
261
262 int find_last_unset() const {
263 if (isSmall()) {
264 if (count() == getSmallSize())
265 return -1;
266
267 uintptr_t Bits = getSmallBits();
268 // Set unused bits.
269 Bits |= ~uintptr_t(0) << getSmallSize();
270 return NumBaseBits - llvm::countl_one(Bits) - 1;
271 }
272 return getPointer()->find_last_unset();
273 }
274
275 /// Returns the index of the next set bit following the "Prev" bit.
276 /// Returns -1 if the next set bit is not found.
277 int find_next(unsigned Prev) const {
278 if (isSmall()) {
279 uintptr_t Bits = getSmallBits();
280 // Mask off previous bits.
281 Bits &= ~uintptr_t(0) << (Prev + 1);
282 if (Bits == 0 || Prev + 1 >= getSmallSize())
283 return -1;
284 return llvm::countr_zero(Bits);
285 }
286 return getPointer()->find_next(Prev);
287 }
288
289 /// Returns the index of the next unset bit following the "Prev" bit.
290 /// Returns -1 if the next unset bit is not found.
291 int find_next_unset(unsigned Prev) const {
292 if (isSmall()) {
293 uintptr_t Bits = getSmallBits();
294 // Mask in previous bits.
295 Bits |= (uintptr_t(1) << (Prev + 1)) - 1;
296 // Mask in unused bits.
297 Bits |= ~uintptr_t(0) << getSmallSize();
298
299 if (Bits == ~uintptr_t(0) || Prev + 1 >= getSmallSize())
300 return -1;
301 return llvm::countr_one(Bits);
302 }
303 return getPointer()->find_next_unset(Prev);
304 }
305
306 /// find_prev - Returns the index of the first set bit that precedes the
307 /// the bit at \p PriorTo. Returns -1 if all previous bits are unset.
308 int find_prev(unsigned PriorTo) const {
309 if (isSmall()) {
310 if (PriorTo == 0)
311 return -1;
312
313 --PriorTo;
314 uintptr_t Bits = getSmallBits();
315 Bits &= maskTrailingOnes<uintptr_t>(PriorTo + 1);
316 if (Bits == 0)
317 return -1;
318
319 return NumBaseBits - llvm::countl_zero(Bits) - 1;
320 }
321 return getPointer()->find_prev(PriorTo);
322 }
323
324 /// Clear all bits.
325 void clear() {
326 if (!isSmall())
327 delete getPointer();
328 switchToSmall(0, 0);
329 }
330
331 /// Grow or shrink the bitvector.
332 void resize(unsigned N, bool t = false) {
333 if (!isSmall()) {
334 getPointer()->resize(N, t);
335 } else if (SmallNumDataBits >= N) {
336 uintptr_t NewBits = t ? ~uintptr_t(0) << getSmallSize() : 0;
337 setSmallSize(N);
338 setSmallBits(NewBits | getSmallBits());
339 } else {
340 BitVector *BV = new BitVector(N, t);
341 uintptr_t OldBits = getSmallBits();
342 for (size_type I = 0, E = getSmallSize(); I != E; ++I)
343 (*BV)[I] = (OldBits >> I) & 1;
344 switchToLarge(BV);
345 }
346 }
347
348 void reserve(unsigned N) {
349 if (isSmall()) {
350 if (N > SmallNumDataBits) {
351 uintptr_t OldBits = getSmallRawBits();
352 size_type SmallSize = getSmallSize();
353 BitVector *BV = new BitVector(SmallSize);
354 for (size_type I = 0; I < SmallSize; ++I)
355 if ((OldBits >> I) & 1)
356 BV->set(I);
357 BV->reserve(N);
358 switchToLarge(BV);
359 }
360 } else {
361 getPointer()->reserve(N);
362 }
363 }
364
365 // Set, reset, flip
367 if (isSmall())
368 setSmallBits(~uintptr_t(0));
369 else
370 getPointer()->set();
371 return *this;
372 }
373
374 SmallBitVector &set(unsigned Idx) {
375 if (isSmall()) {
376 assert(Idx <= static_cast<unsigned>(
377 std::numeric_limits<uintptr_t>::digits) &&
378 "undefined behavior");
379 setSmallBits(getSmallBits() | (uintptr_t(1) << Idx));
380 }
381 else
382 getPointer()->set(Idx);
383 return *this;
384 }
385
386 /// Efficiently set a range of bits in [I, E)
387 SmallBitVector &set(unsigned I, unsigned E) {
388 assert(I <= E && "Attempted to set backwards range!");
389 assert(E <= size() && "Attempted to set out-of-bounds range!");
390 if (I == E) return *this;
391 if (isSmall()) {
392 uintptr_t EMask = ((uintptr_t)1) << E;
393 uintptr_t IMask = ((uintptr_t)1) << I;
394 uintptr_t Mask = EMask - IMask;
395 setSmallBits(getSmallBits() | Mask);
396 } else {
397 getPointer()->set(I, E);
398 }
399 return *this;
400 }
401
403 if (isSmall())
404 setSmallBits(0);
405 else
406 getPointer()->reset();
407 return *this;
408 }
409
411 if (isSmall())
412 setSmallBits(getSmallBits() & ~(uintptr_t(1) << Idx));
413 else
414 getPointer()->reset(Idx);
415 return *this;
416 }
417
418 /// Efficiently reset a range of bits in [I, E)
419 SmallBitVector &reset(unsigned I, unsigned E) {
420 assert(I <= E && "Attempted to reset backwards range!");
421 assert(E <= size() && "Attempted to reset out-of-bounds range!");
422 if (I == E) return *this;
423 if (isSmall()) {
424 uintptr_t EMask = ((uintptr_t)1) << E;
425 uintptr_t IMask = ((uintptr_t)1) << I;
426 uintptr_t Mask = EMask - IMask;
427 setSmallBits(getSmallBits() & ~Mask);
428 } else {
429 getPointer()->reset(I, E);
430 }
431 return *this;
432 }
433
435 if (isSmall())
436 setSmallBits(~getSmallBits());
437 else
438 getPointer()->flip();
439 return *this;
440 }
441
443 if (isSmall())
444 setSmallBits(getSmallBits() ^ (uintptr_t(1) << Idx));
445 else
446 getPointer()->flip(Idx);
447 return *this;
448 }
449
450 // No argument flip.
452 return SmallBitVector(*this).flip();
453 }
454
455 // Indexing.
457 assert(Idx < size() && "Out-of-bounds Bit access.");
458 return reference(*this, Idx);
459 }
460
461 bool operator[](unsigned Idx) const {
462 assert(Idx < size() && "Out-of-bounds Bit access.");
463 if (isSmall())
464 return ((getSmallBits() >> Idx) & 1) != 0;
465 return getPointer()->operator[](Idx);
466 }
467
468 /// Return the last element in the vector.
469 bool back() const {
470 assert(!empty() && "Getting last element of empty vector.");
471 return (*this)[size() - 1];
472 }
473
474 bool test(unsigned Idx) const {
475 return (*this)[Idx];
476 }
477
478 // Push single bit to end of vector.
479 void push_back(bool Val) {
480 resize(size() + 1, Val);
481 }
482
483 /// Pop one bit from the end of the vector.
484 void pop_back() {
485 assert(!empty() && "Empty vector has no element to pop.");
486 resize(size() - 1);
487 }
488
489 /// Test if any common bits are set.
490 bool anyCommon(const SmallBitVector &RHS) const {
491 if (isSmall() && RHS.isSmall())
492 return (getSmallBits() & RHS.getSmallBits()) != 0;
493 if (!isSmall() && !RHS.isSmall())
494 return getPointer()->anyCommon(*RHS.getPointer());
495
496 for (unsigned i = 0, e = std::min(size(), RHS.size()); i != e; ++i)
497 if (test(i) && RHS.test(i))
498 return true;
499 return false;
500 }
501
502 // Comparison operators.
503 bool operator==(const SmallBitVector &RHS) const {
504 if (size() != RHS.size())
505 return false;
506 if (isSmall() && RHS.isSmall())
507 return getSmallBits() == RHS.getSmallBits();
508 else if (!isSmall() && !RHS.isSmall())
509 return *getPointer() == *RHS.getPointer();
510 else {
511 for (size_type I = 0, E = size(); I != E; ++I) {
512 if ((*this)[I] != RHS[I])
513 return false;
514 }
515 return true;
516 }
517 }
518
519 bool operator!=(const SmallBitVector &RHS) const {
520 return !(*this == RHS);
521 }
522
523 // Intersection, union, disjoint union.
524 // FIXME BitVector::operator&= does not resize the LHS but this does
526 resize(std::max(size(), RHS.size()));
527 if (isSmall() && RHS.isSmall())
528 setSmallBits(getSmallBits() & RHS.getSmallBits());
529 else if (!isSmall() && !RHS.isSmall())
530 getPointer()->operator&=(*RHS.getPointer());
531 else {
532 size_type I, E;
533 for (I = 0, E = std::min(size(), RHS.size()); I != E; ++I)
534 (*this)[I] = test(I) && RHS.test(I);
535 for (E = size(); I != E; ++I)
536 reset(I);
537 }
538 return *this;
539 }
540
541 /// Reset bits that are set in RHS. Same as *this &= ~RHS.
543 if (isSmall() && RHS.isSmall())
544 setSmallBits(getSmallBits() & ~RHS.getSmallBits());
545 else if (!isSmall() && !RHS.isSmall())
546 getPointer()->reset(*RHS.getPointer());
547 else
548 for (unsigned i = 0, e = std::min(size(), RHS.size()); i != e; ++i)
549 if (RHS.test(i))
550 reset(i);
551
552 return *this;
553 }
554
555 /// Check if (This - RHS) is zero. This is the same as reset(RHS) and any().
556 bool test(const SmallBitVector &RHS) const {
557 if (isSmall() && RHS.isSmall())
558 return (getSmallBits() & ~RHS.getSmallBits()) != 0;
559 if (!isSmall() && !RHS.isSmall())
560 return getPointer()->test(*RHS.getPointer());
561
562 unsigned i, e;
563 for (i = 0, e = std::min(size(), RHS.size()); i != e; ++i)
564 if (test(i) && !RHS.test(i))
565 return true;
566
567 for (e = size(); i != e; ++i)
568 if (test(i))
569 return true;
570
571 return false;
572 }
573
575 resize(std::max(size(), RHS.size()));
576 if (isSmall() && RHS.isSmall())
577 setSmallBits(getSmallBits() | RHS.getSmallBits());
578 else if (!isSmall() && !RHS.isSmall())
579 getPointer()->operator|=(*RHS.getPointer());
580 else {
581 for (size_type I = 0, E = RHS.size(); I != E; ++I)
582 (*this)[I] = test(I) || RHS.test(I);
583 }
584 return *this;
585 }
586
588 resize(std::max(size(), RHS.size()));
589 if (isSmall() && RHS.isSmall())
590 setSmallBits(getSmallBits() ^ RHS.getSmallBits());
591 else if (!isSmall() && !RHS.isSmall())
592 getPointer()->operator^=(*RHS.getPointer());
593 else {
594 for (size_type I = 0, E = RHS.size(); I != E; ++I)
595 (*this)[I] = test(I) != RHS.test(I);
596 }
597 return *this;
598 }
599
601 if (isSmall())
602 setSmallBits(getSmallBits() << N);
603 else
604 getPointer()->operator<<=(N);
605 return *this;
606 }
607
609 if (isSmall())
610 setSmallBits(getSmallBits() >> N);
611 else
612 getPointer()->operator>>=(N);
613 return *this;
614 }
615
616 // Assignment operator.
618 if (isSmall()) {
619 if (RHS.isSmall())
620 X = RHS.X;
621 else
622 switchToLarge(new BitVector(*RHS.getPointer()));
623 } else {
624 if (!RHS.isSmall())
625 *getPointer() = *RHS.getPointer();
626 else {
627 delete getPointer();
628 X = RHS.X;
629 }
630 }
631 return *this;
632 }
633
635 if (this != &RHS) {
636 clear();
637 swap(RHS);
638 }
639 return *this;
640 }
641
643 std::swap(X, RHS.X);
644 }
645
646 /// Add '1' bits from Mask to this vector. Don't resize.
647 /// This computes "*this |= Mask".
648 void setBitsInMask(const uint32_t *Mask, unsigned MaskWords = ~0u) {
649 if (isSmall())
650 applyMask<true, false>(Mask, MaskWords);
651 else
652 getPointer()->setBitsInMask(Mask, MaskWords);
653 }
654
655 /// Clear any bits in this vector that are set in Mask. Don't resize.
656 /// This computes "*this &= ~Mask".
657 void clearBitsInMask(const uint32_t *Mask, unsigned MaskWords = ~0u) {
658 if (isSmall())
659 applyMask<false, false>(Mask, MaskWords);
660 else
661 getPointer()->clearBitsInMask(Mask, MaskWords);
662 }
663
664 /// Add a bit to this vector for every '0' bit in Mask. Don't resize.
665 /// This computes "*this |= ~Mask".
666 void setBitsNotInMask(const uint32_t *Mask, unsigned MaskWords = ~0u) {
667 if (isSmall())
668 applyMask<true, true>(Mask, MaskWords);
669 else
670 getPointer()->setBitsNotInMask(Mask, MaskWords);
671 }
672
673 /// Clear a bit in this vector for every '0' bit in Mask. Don't resize.
674 /// This computes "*this &= Mask".
675 void clearBitsNotInMask(const uint32_t *Mask, unsigned MaskWords = ~0u) {
676 if (isSmall())
677 applyMask<false, true>(Mask, MaskWords);
678 else
679 getPointer()->clearBitsNotInMask(Mask, MaskWords);
680 }
681
682 void invalid() {
683 assert(empty());
684 X = (uintptr_t)-1;
685 }
686 bool isInvalid() const { return X == (uintptr_t)-1; }
687
688 ArrayRef<uintptr_t> getData(uintptr_t &Store) const {
689 if (!isSmall())
690 return getPointer()->getData();
691 Store = getSmallBits();
692 return Store;
693 }
694
695private:
696 template <bool AddBits, bool InvertMask>
697 void applyMask(const uint32_t *Mask, unsigned MaskWords) {
698 assert(MaskWords <= sizeof(uintptr_t) && "Mask is larger than base!");
699 uintptr_t M = Mask[0];
700 if (NumBaseBits == 64)
701 M |= uint64_t(Mask[1]) << 32;
702 if (InvertMask)
703 M = ~M;
704 if (AddBits)
705 setSmallBits(getSmallBits() | M);
706 else
707 setSmallBits(getSmallBits() & ~M);
708 }
709};
710
711inline SmallBitVector
713 SmallBitVector Result(LHS);
714 Result &= RHS;
715 return Result;
716}
717
718inline SmallBitVector
720 SmallBitVector Result(LHS);
721 Result |= RHS;
722 return Result;
723}
724
725inline SmallBitVector
727 SmallBitVector Result(LHS);
728 Result ^= RHS;
729 return Result;
730}
731
732template <> struct DenseMapInfo<SmallBitVector> {
733 static inline SmallBitVector getEmptyKey() { return SmallBitVector(); }
736 V.invalid();
737 return V;
738 }
739 static unsigned getHashValue(const SmallBitVector &V) {
740 uintptr_t Store;
741 return DenseMapInfo<
742 std::pair<SmallBitVector::size_type, ArrayRef<uintptr_t>>>::
743 getHashValue(std::make_pair(V.size(), V.getData(Store)));
744 }
745 static bool isEqual(const SmallBitVector &LHS, const SmallBitVector &RHS) {
746 if (LHS.isInvalid() || RHS.isInvalid())
747 return LHS.isInvalid() == RHS.isInvalid();
748 return LHS == RHS;
749 }
750};
751} // end namespace llvm
752
753namespace std {
754
755/// Implement std::swap in terms of BitVector swap.
756inline void
758 LHS.swap(RHS);
759}
760
761} // end namespace std
762
763#endif // LLVM_ADT_SMALLBITVECTOR_H
assert(UImm &&(UImm !=~static_cast< T >(0)) &&"Invalid immediate!")
This file implements the BitVector class.
static GCRegistry::Add< CoreCLRGC > E("coreclr", "CoreCLR-compatible GC")
Returns the sub type a function will return at a given Idx Should correspond to the result type of an ExtractValue instruction executed with just that one unsigned Idx
uint64_t Size
#define I(x, y, z)
Definition: MD5.cpp:58
modulo schedule test
Value * RHS
Value * LHS
ArrayRef - Represent a constant reference to an array (0 or more elements consecutively in memory),...
Definition: ArrayRef.h:41
bool test(unsigned Idx) const
Definition: BitVector.h:461
BitVector & reset()
Definition: BitVector.h:392
int find_first() const
find_first - Returns the index of the first set bit, -1 if none of the bits are set.
Definition: BitVector.h:300
void resize(unsigned N, bool t=false)
resize - Grow or shrink the bitvector.
Definition: BitVector.h:341
bool anyCommon(const BitVector &RHS) const
Test if any common bits are set.
Definition: BitVector.h:489
void clearBitsNotInMask(const uint32_t *Mask, unsigned MaskWords=~0u)
clearBitsNotInMask - Clear a bit in this vector for every '0' bit in Mask.
Definition: BitVector.h:725
int find_last() const
find_last - Returns the index of the last set bit, -1 if none of the bits are set.
Definition: BitVector.h:304
size_type count() const
count - Returns the number of bits which are set.
Definition: BitVector.h:162
ArrayRef< BitWord > getData() const
Definition: BitVector.h:691
BitVector & set()
Definition: BitVector.h:351
int find_last_unset() const
find_last_unset - Returns the index of the last unset bit, -1 if all of the bits are set.
Definition: BitVector.h:326
void reserve(unsigned N)
Definition: BitVector.h:348
void setBitsInMask(const uint32_t *Mask, unsigned MaskWords=~0u)
setBitsInMask - Add '1' bits from Mask to this vector.
Definition: BitVector.h:707
bool any() const
any - Returns true if any bit is set.
Definition: BitVector.h:170
bool all() const
all - Returns true if all bits are set.
Definition: BitVector.h:175
void clearBitsInMask(const uint32_t *Mask, unsigned MaskWords=~0u)
clearBitsInMask - Clear any bits in this vector that are set in Mask.
Definition: BitVector.h:713
int find_prev(unsigned PriorTo) const
find_prev - Returns the index of the first set bit that precedes the the bit at PriorTo.
Definition: BitVector.h:312
void setBitsNotInMask(const uint32_t *Mask, unsigned MaskWords=~0u)
setBitsNotInMask - Add a bit to this vector for every '0' bit in Mask.
Definition: BitVector.h:719
BitVector & flip()
Definition: BitVector.h:431
int find_next(unsigned Prev) const
find_next - Returns the index of the next set bit following the "Prev" bit.
Definition: BitVector.h:308
bool none() const
none - Returns true if none of the bits are set.
Definition: BitVector.h:188
size_type size() const
size - Returns the number of bits in this bitvector.
Definition: BitVector.h:159
bool empty() const
empty - Tests whether there are no bits in this bitvector.
Definition: BitVector.h:156
int find_next_unset(unsigned Prev) const
find_next_unset - Returns the index of the next unset bit following the "Prev" bit.
Definition: BitVector.h:320
int find_first_unset() const
find_first_unset - Returns the index of the first unset bit, -1 if all of the bits are set.
Definition: BitVector.h:316
reference(SmallBitVector &b, unsigned Idx)
reference & operator=(bool t)
reference & operator=(reference t)
reference(const reference &)=default
This is a 'bitvector' (really, a variable-sized bit array), optimized for the case when the array is ...
SmallBitVector & flip()
reference operator[](unsigned Idx)
int find_last_unset() const
bool operator[](unsigned Idx) const
int find_first() const
Returns the index of the first set bit, -1 if none of the bits are set.
void push_back(bool Val)
SmallBitVector & set()
void clearBitsInMask(const uint32_t *Mask, unsigned MaskWords=~0u)
Clear any bits in this vector that are set in Mask.
bool test(const SmallBitVector &RHS) const
Check if (This - RHS) is zero. This is the same as reset(RHS) and any().
SmallBitVector & reset(unsigned I, unsigned E)
Efficiently reset a range of bits in [I, E)
void swap(SmallBitVector &RHS)
void reserve(unsigned N)
int find_prev(unsigned PriorTo) const
find_prev - Returns the index of the first set bit that precedes the the bit at PriorTo.
SmallBitVector & set(unsigned I, unsigned E)
Efficiently set a range of bits in [I, E)
SmallBitVector(SmallBitVector &&RHS)
bool test(unsigned Idx) const
SmallBitVector()=default
Creates an empty bitvector.
SmallBitVector & operator&=(const SmallBitVector &RHS)
void setBitsInMask(const uint32_t *Mask, unsigned MaskWords=~0u)
Add '1' bits from Mask to this vector.
bool back() const
Return the last element in the vector.
const SmallBitVector & operator=(SmallBitVector &&RHS)
SmallBitVector(unsigned s, bool t=false)
Creates a bitvector of specified number of bits.
iterator_range< const_set_bits_iterator > set_bits() const
SmallBitVector(const SmallBitVector &RHS)
SmallBitVector copy ctor.
void clear()
Clear all bits.
SmallBitVector & operator<<=(unsigned N)
int find_next(unsigned Prev) const
Returns the index of the next set bit following the "Prev" bit.
SmallBitVector & reset(const SmallBitVector &RHS)
Reset bits that are set in RHS. Same as *this &= ~RHS.
SmallBitVector & reset(unsigned Idx)
const SmallBitVector & operator=(const SmallBitVector &RHS)
const_set_bits_iterator_impl< SmallBitVector > const_set_bits_iterator
bool all() const
Returns true if all bits are set.
bool operator==(const SmallBitVector &RHS) const
ArrayRef< uintptr_t > getData(uintptr_t &Store) const
SmallBitVector & operator>>=(unsigned N)
int find_first_unset() const
Returns the index of the first unset bit, -1 if all of the bits are set.
size_type size() const
Returns the number of bits in this bitvector.
void resize(unsigned N, bool t=false)
Grow or shrink the bitvector.
bool any() const
Returns true if any bit is set.
void setBitsNotInMask(const uint32_t *Mask, unsigned MaskWords=~0u)
Add a bit to this vector for every '0' bit in Mask.
bool empty() const
Tests whether there are no bits in this bitvector.
bool isInvalid() const
const_set_bits_iterator set_bits_end() const
SmallBitVector & flip(unsigned Idx)
void clearBitsNotInMask(const uint32_t *Mask, unsigned MaskWords=~0u)
Clear a bit in this vector for every '0' bit in Mask.
SmallBitVector & operator|=(const SmallBitVector &RHS)
size_type count() const
Returns the number of bits which are set.
bool anyCommon(const SmallBitVector &RHS) const
Test if any common bits are set.
int find_next_unset(unsigned Prev) const
Returns the index of the next unset bit following the "Prev" bit.
const_set_bits_iterator set_bits_begin() const
void pop_back()
Pop one bit from the end of the vector.
SmallBitVector & set(unsigned Idx)
SmallBitVector & reset()
SmallBitVector operator~() const
bool none() const
Returns true if none of the bits are set.
SmallBitVector & operator^=(const SmallBitVector &RHS)
bool operator!=(const SmallBitVector &RHS) const
ForwardIterator for the bits that are set.
Definition: BitVector.h:34
A range adaptor for a pair of iterators.
This provides a very simple, boring adaptor for a begin and end iterator into a range type.
This is an optimization pass for GlobalISel generic memory operations.
Definition: AddressRanges.h:18
int popcount(T Value) noexcept
Count the number of set bits in a value.
Definition: bit.h:307
APInt operator&(APInt a, const APInt &b)
Definition: APInt.h:2123
int countr_one(T Value)
Count the number of ones from the least significant bit to the first zero bit.
Definition: bit.h:260
iterator_range< T > make_range(T x, T y)
Convenience function for iterating over sub-ranges.
int countr_zero(T Val)
Count number of 0's from the least significant bit to the most stopping at the first 1.
Definition: bit.h:157
int countl_zero(T Val)
Count number of 0's from the most significant bit to the least stopping at the first 1.
Definition: bit.h:203
APInt operator^(APInt a, const APInt &b)
Definition: APInt.h:2163
int countl_one(T Value)
Count the number of ones from the most significant bit to the first zero bit.
Definition: bit.h:247
APInt operator|(APInt a, const APInt &b)
Definition: APInt.h:2143
Implement std::hash so that hash_code can be used in STL containers.
Definition: BitVector.h:856
void swap(llvm::BitVector &LHS, llvm::BitVector &RHS)
Implement std::swap in terms of BitVector swap.
Definition: BitVector.h:858
#define N
static SmallBitVector getTombstoneKey()
static SmallBitVector getEmptyKey()
static unsigned getHashValue(const SmallBitVector &V)
static bool isEqual(const SmallBitVector &LHS, const SmallBitVector &RHS)
An information struct used to provide DenseMap with the various necessary components for a given valu...
Definition: DenseMapInfo.h:54