LLVM 20.0.0git
|
This file implements the SmallBitVector class. More...
#include "llvm/ADT/BitVector.h"
#include "llvm/ADT/iterator_range.h"
#include "llvm/Support/MathExtras.h"
#include <algorithm>
#include <cassert>
#include <climits>
#include <cstddef>
#include <cstdint>
#include <limits>
#include <utility>
Go to the source code of this file.
Classes | |
class | llvm::SmallBitVector |
This is a 'bitvector' (really, a variable-sized bit array), optimized for the case when the array is small. More... | |
class | llvm::SmallBitVector::reference |
struct | llvm::DenseMapInfo< SmallBitVector > |
Namespaces | |
namespace | llvm |
This is an optimization pass for GlobalISel generic memory operations. | |
namespace | std |
Implement std::hash so that hash_code can be used in STL containers. | |
Functions | |
SmallBitVector | llvm::operator& (const SmallBitVector &LHS, const SmallBitVector &RHS) |
SmallBitVector | llvm::operator| (const SmallBitVector &LHS, const SmallBitVector &RHS) |
SmallBitVector | llvm::operator^ (const SmallBitVector &LHS, const SmallBitVector &RHS) |
void | std::swap (llvm::SmallBitVector &LHS, llvm::SmallBitVector &RHS) |
Implement std::swap in terms of BitVector swap. | |
This file implements the SmallBitVector class.
Definition in file SmallBitVector.h.