/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/ |
H A D | SparseBitVector.h | 1 //===- 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 D | GenericUniformityImpl.h | 507 SparseBitVector<> FreshLabels;
|
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/ |
H A D | HashTable.cpp | 22 SparseBitVector<> &V) { in readSparseBitVector() 44 SparseBitVector<> &Vec) { in writeSparseBitVector()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/PDB/Native/ |
H A D | HashTable.h | 28 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 D | LiveIntervalUnion.h | 33 template <unsigned Element> class SparseBitVector; variable 35 using LiveVirtRegBitSet = SparseBitVector<128>;
|
H A D | LiveVariables.h | 83 SparseBitVector<> AliveBlocks; 301 std::vector<SparseBitVector<>> &LiveInSets);
|
H A D | MachineBasicBlock.h | 973 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 D | PHIElimination.cpp | 93 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 D | LiveVariables.cpp | 699 SparseBitVector<> UseBlocks; in recomputeForSingleDefVirtReg() 903 std::vector<SparseBitVector<>> &LiveInSets) { in addNewBlock() 906 SparseBitVector<> &BV = LiveInSets[SuccBB->getNumber()]; in addNewBlock()
|
H A D | MachineBasicBlock.cpp | 1149 std::vector<SparseBitVector<>> *LiveInSets) { in SplitCriticalEdge()
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/ |
H A D | AMDGPUEmitPrintf.cpp | 184 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 D | RegisterInfoEmitter.cpp | 636 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 D | CodeGenRegisters.h | 249 typedef SparseBitVector<> RegUnitList;
|
/freebsd/contrib/llvm-project/llvm/lib/Analysis/ |
H A D | BlockFrequencyInfoImpl.cpp | 306 SparseBitVector<> SavedIsIrrLoopHeader(std::move(BFI.IsIrrLoopHeader)); in cleanup()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/Analysis/ |
H A D | BlockFrequencyInfoImpl.h | 426 SparseBitVector<> IsIrrLoopHeader;
|
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/ |
H A D | X86SpeculativeLoadHardening.cpp | 1277 SparseBitVector<> LoadDepRegs; in tracePredStateThroughBlocksAndHarden()
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/ |
H A D | NewGVN.cpp | 573 DenseMap<BasicBlock *, SparseBitVector<>> RevisitOnReachabilityChange;
|