Home
last modified time | relevance | path

Searched refs:SparseBitVector (Results 1 – 17 of 17) sorted by relevance

/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/
H A DSparseBitVector.h1 //===- llvm/ADT/SparseBitVector.h - Efficient Sparse BitVector --*- C++ -*-===//
10 /// This file defines the SparseBitVector class. See the doxygen comment for
11 /// SparseBitVector for more details on the algorithm used.
29 /// SparseBitVector is an implementation of a bitvector that is sparse by only
31 /// fast for the most common cases, SparseBitVector is implemented as a linked
256 class SparseBitVector {
266 // state of a SparseBitVector, it's just used to improve performance in the
280 const_cast<SparseBitVector<ElementSize> *>(this)->Elements.begin(); in FindLowerBoundImpl()
282 const_cast<SparseBitVector<ElementSize> *>(this)->Elements.end(); in FindLowerBoundImpl()
323 const SparseBitVector<ElementSiz
444 SparseBitVector() : Elements(), CurrElementIter(Elements.begin()) {} SparseBitVector() function
446 SparseBitVector(const SparseBitVector &RHS) SparseBitVector() function
448 SparseBitVector(SparseBitVector &&RHS) SparseBitVector() function
[all...]
H A DGenericUniformityImpl.h507 SparseBitVector<> FreshLabels;
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/
H A DHashTable.cpp22 SparseBitVector<> &V) { in readSparseBitVector()
44 SparseBitVector<> &Vec) { in writeSparseBitVector()
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/PDB/Native/
H A DHashTable.h28 Error readSparseBitVector(BinaryStreamReader &Stream, SparseBitVector<> &V);
29 Error writeSparseBitVector(BinaryStreamWriter &Writer, SparseBitVector<> &Vec);
266 mutable SparseBitVector<> Present;
267 mutable SparseBitVector<> Deleted;
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DLiveIntervalUnion.h33 template <unsigned Element> class SparseBitVector; variable
35 using LiveVirtRegBitSet = SparseBitVector<128>;
H A DLiveVariables.h83 SparseBitVector<> AliveBlocks;
301 std::vector<SparseBitVector<>> &LiveInSets);
H A DMachineBasicBlock.h973 std::vector<SparseBitVector<>> *LiveInSets = nullptr) {
980 std::vector<SparseBitVector<>> *LiveInSets = nullptr) {
1262 std::vector<SparseBitVector<>> *LiveInSets);
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DPHIElimination.cpp93 std::vector<SparseBitVector<>> *LiveInSets);
212 std::vector<SparseBitVector<>> LiveInSets; in run()
223 SparseBitVector<>::iterator AliveBlockItr = VI.AliveBlocks.begin(); in run()
224 SparseBitVector<>::iterator EndItr = VI.AliveBlocks.end(); in run()
755 std::vector<SparseBitVector<>> *LiveInSets) { in SplitPHIEdges()
H A DLiveVariables.cpp699 SparseBitVector<> UseBlocks; in recomputeForSingleDefVirtReg()
903 std::vector<SparseBitVector<>> &LiveInSets) { in addNewBlock()
906 SparseBitVector<> &BV = LiveInSets[SuccBB->getNumber()]; in addNewBlock()
H A DMachineBasicBlock.cpp1149 std::vector<SparseBitVector<>> *LiveInSets) { in SplitCriticalEdge()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DAMDGPUEmitPrintf.cpp184 static void locateCStrings(SparseBitVector<8> &BV, StringRef Str) { in locateCStrings()
224 bool isConstFmtStr, SparseBitVector<8> &SpecIsCString, in callBufferedPrintfStart()
374 Value *PtrToStore, SparseBitVector<8> &SpecIsCString, in callBufferedPrintfArgPush()
432 SparseBitVector<8> SpecIsCString; in emitAMDGPUPrintfCall()
/freebsd/contrib/llvm-project/llvm/utils/TableGen/
H A DRegisterInfoEmitter.cpp636 static DiffVec &diffEncode(DiffVec &V, SparseBitVector<> List) { in diffEncode()
638 SparseBitVector<>::iterator I = List.begin(), E = List.end(); in diffEncode()
921 const SparseBitVector<> &RUs = Reg.getNativeRegUnits(); in runMCDesc()
/freebsd/contrib/llvm-project/llvm/utils/TableGen/Common/
H A DCodeGenRegisters.h249 typedef SparseBitVector<> RegUnitList;
/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DBlockFrequencyInfoImpl.cpp306 SparseBitVector<> SavedIsIrrLoopHeader(std::move(BFI.IsIrrLoopHeader)); in cleanup()
/freebsd/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DBlockFrequencyInfoImpl.h426 SparseBitVector<> IsIrrLoopHeader;
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86SpeculativeLoadHardening.cpp1277 SparseBitVector<> LoadDepRegs; in tracePredStateThroughBlocksAndHarden()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DNewGVN.cpp573 DenseMap<BasicBlock *, SparseBitVector<>> RevisitOnReachabilityChange;