Home
last modified time | relevance | path

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

/llvm-project-15.0.7/llvm/include/llvm/ADT/
H A DSparseBitVector.h256 class SparseBitVector {
446 SparseBitVector(const SparseBitVector &RHS) in SparseBitVector() function
448 SparseBitVector(SparseBitVector &&RHS) in SparseBitVector() function
457 SparseBitVector& operator=(const SparseBitVector& RHS) {
465 SparseBitVector &operator=(SparseBitVector &&RHS) {
695 SparseBitVector RHS2Copy(RHS2); in intersectWithComplement()
849 inline SparseBitVector<ElementSize>
852 SparseBitVector<ElementSize> Result(LHS);
858 inline SparseBitVector<ElementSize>
867 inline SparseBitVector<ElementSize>
[all …]
/llvm-project-15.0.7/llvm/unittests/ADT/
H A DSparseBitVectorTest.cpp17 SparseBitVector<> Vec; in TEST()
35 const SparseBitVector<> ConstVec = Vec; in TEST()
46 SparseBitVector<> MovedVec(std::move(Vec)); in TEST()
57 SparseBitVector<> Vec, Other; in TEST()
87 SparseBitVector<> Vec, Other; in TEST()
91 Vec = static_cast<SparseBitVector<> &>(Vec); in TEST()
151 SparseBitVector<> Vec; in TEST()
/llvm-project-15.0.7/llvm/lib/DebugInfo/PDB/Native/
H A DHashTable.cpp22 SparseBitVector<> &V) { in readSparseBitVector()
44 SparseBitVector<> &Vec) { in writeSparseBitVector()
/llvm-project-15.0.7/llvm/include/llvm/CodeGen/
H A DLiveVariables.h85 SparseBitVector<> AliveBlocks;
124 SparseBitVector<> PHIJoins;
308 std::vector<SparseBitVector<>> &LiveInSets);
H A DLiveIntervalUnion.h33 template <unsigned Element> class SparseBitVector; variable
35 using LiveVirtRegBitSet = SparseBitVector<128>;
H A DMachineBasicBlock.h865 std::vector<SparseBitVector<>> *LiveInSets = nullptr);
/llvm-project-15.0.7/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;
/llvm-project-15.0.7/llvm/lib/CodeGen/
H A DPHIElimination.cpp98 std::vector<SparseBitVector<>> *LiveInSets);
158 std::vector<SparseBitVector<>> LiveInSets; in runOnMachineFunction()
169 SparseBitVector<>::iterator AliveBlockItr = VI.AliveBlocks.begin(); in runOnMachineFunction()
170 SparseBitVector<>::iterator EndItr = VI.AliveBlocks.end(); in runOnMachineFunction()
654 std::vector<SparseBitVector<>> *LiveInSets) { in SplitPHIEdges()
H A DLiveVariables.cpp693 SparseBitVector<> UseBlocks; in recomputeForSingleDefVirtReg()
885 std::vector<SparseBitVector<>> &LiveInSets) { in addNewBlock()
888 SparseBitVector<> &BV = LiveInSets[SuccBB->getNumber()]; in addNewBlock()
H A DMachineBasicBlock.cpp1013 std::vector<SparseBitVector<>> *LiveInSets) { in SplitCriticalEdge()
/llvm-project-15.0.7/llvm/lib/Transforms/Utils/
H A DAMDGPUEmitPrintf.cpp182 static void locateCStrings(SparseBitVector<8> &BV, Value *Fmt) { in locateCStrings()
216 SparseBitVector<8> SpecIsCString; in emitAMDGPUPrintfCall()
/llvm-project-15.0.7/llvm/utils/TableGen/
H A DCodeGenRegisters.h225 typedef SparseBitVector<> RegUnitList;
H A DRegisterInfoEmitter.cpp642 DiffVec &diffEncode(DiffVec &V, unsigned InitVal, SparseBitVector<> List) { in diffEncode()
942 SparseBitVector<> RUs = Reg.getNativeRegUnits(); in runMCDesc()
/llvm-project-15.0.7/llvm/lib/Analysis/
H A DBlockFrequencyInfoImpl.cpp305 SparseBitVector<> SavedIsIrrLoopHeader(std::move(BFI.IsIrrLoopHeader)); in cleanup()
/llvm-project-15.0.7/llvm/include/llvm/Analysis/
H A DBlockFrequencyInfoImpl.h425 SparseBitVector<> IsIrrLoopHeader;
/llvm-project-15.0.7/llvm/docs/
H A DProgrammersManual.rst2431 SparseBitVector subsection
2434 The SparseBitVector container is much like BitVector, with one major difference:
2435 Only the bits that are set, are stored. This makes the SparseBitVector much
2438 downside to the SparseBitVector is that setting and testing of random bits is
2443 testing/setting bits in a SparseBitVector is O(distance away from last set bit).
2450 The CoalescingBitVector container is similar in principle to a SparseBitVector, argument
2456 of set bits are large. It's a better choice than SparseBitVector when find()
/llvm-project-15.0.7/llvm/lib/Target/X86/
H A DX86SpeculativeLoadHardening.cpp1275 SparseBitVector<> LoadDepRegs; in tracePredStateThroughBlocksAndHarden()
/llvm-project-15.0.7/llvm/lib/Transforms/Scalar/
H A DNewGVN.cpp572 DenseMap<BasicBlock *, SparseBitVector<>> RevisitOnReachabilityChange;