/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/ |
D | SparseBitVector.h | 255 class SparseBitVector { 279 const_cast<SparseBitVector<ElementSize> *>(this)->Elements.begin(); in FindLowerBoundImpl() 281 const_cast<SparseBitVector<ElementSize> *>(this)->Elements.end(); in FindLowerBoundImpl() 322 const SparseBitVector<ElementSize> *BitVector = nullptr; 396 SparseBitVectorIterator(const SparseBitVector<ElementSize> *RHS, 443 SparseBitVector() : Elements(), CurrElementIter(Elements.begin()) {} in SparseBitVector() function 445 SparseBitVector(const SparseBitVector &RHS) in SparseBitVector() function 447 SparseBitVector(SparseBitVector &&RHS) in SparseBitVector() function 456 SparseBitVector& operator=(const SparseBitVector& RHS) { 464 SparseBitVector &operator=(SparseBitVector &&RHS) { [all …]
|
/external/llvm/include/llvm/ADT/ |
D | SparseBitVector.h | 264 class SparseBitVector { 313 const SparseBitVector<ElementSize> *BitVector; 420 SparseBitVectorIterator(const SparseBitVector<ElementSize> *RHS, 433 SparseBitVector () { 437 ~SparseBitVector() { 441 SparseBitVector(const SparseBitVector &RHS) { 457 SparseBitVector& operator=(const SparseBitVector& RHS) { 549 bool operator!=(const SparseBitVector &RHS) const { 553 bool operator==(const SparseBitVector &RHS) const { 566 bool operator|=(const SparseBitVector &RHS) { [all …]
|
/external/llvm/unittests/ADT/ |
D | SparseBitVectorTest.cpp | 18 SparseBitVector<> Vec; in TEST() 37 SparseBitVector<> Vec, Other; in TEST() 67 SparseBitVector<> Vec, Other; in TEST()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/PDB/Native/ |
D | HashTable.cpp | 25 SparseBitVector<> &V) { in readSparseBitVector() 47 SparseBitVector<> &Vec) { in writeSparseBitVector()
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/DebugInfo/PDB/Native/ |
D | HashTable.h | 31 Error readSparseBitVector(BinaryStreamReader &Stream, SparseBitVector<> &V); 32 Error writeSparseBitVector(BinaryStreamWriter &Writer, SparseBitVector<> &Vec); 270 mutable SparseBitVector<> Present; 271 mutable SparseBitVector<> Deleted;
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/ |
D | LiveIntervalUnion.h | 33 template <unsigned Element> class SparseBitVector; variable 35 using LiveVirtRegBitSet = SparseBitVector<128>;
|
D | LiveVariables.h | 84 SparseBitVector<> AliveBlocks; 124 SparseBitVector<> PHIJoins;
|
/external/llvm/include/llvm/CodeGen/ |
D | LiveIntervalUnion.h | 29 template <unsigned Element> class SparseBitVector; variable 30 typedef SparseBitVector<128> LiveVirtRegBitSet;
|
D | LiveVariables.h | 84 SparseBitVector<> AliveBlocks; 125 SparseBitVector<> PHIJoins;
|
/external/llvm/lib/DebugInfo/PDB/Raw/ |
D | NameMap.cpp | 73 SparseBitVector<> Present; in load() 98 SparseBitVector<> Deleted; in load()
|
/external/swiftshader/third_party/llvm-10.0/configs/common/lib/Target/AArch64/ |
D | AArch64GenGICombiner.inc | 10 #include "llvm/ADT/SparseBitVector.h" 18 SparseBitVector<> DisabledRules;
|
/external/llvm/lib/CodeGen/ |
D | LiveDebugValues.cpp | 143 typedef SparseBitVector<> VarLocSet; 310 SparseBitVector<> KillSet; in transferRegisterDef()
|
D | MachineSink.cpp | 75 SparseBitVector<> RegsToClearKillFlags;
|
D | LiveVariables.cpp | 70 for (SparseBitVector<>::iterator I = AliveBlocks.begin(), in dump()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/ |
D | LiveDebugValues.cpp | 411 using VarLocSet = SparseBitVector<>; 531 SparseBitVector<> &KillSet); 829 SparseBitVector<> &KillSet) { in emitEntryValues() 928 SparseBitVector<> KillSet; in transferRegisterDef()
|
D | LiveVariables.cpp | 70 for (SparseBitVector<>::iterator I = AliveBlocks.begin(), in dump()
|
D | MachineSink.cpp | 106 SparseBitVector<> RegsToClearKillFlags;
|
/external/llvm/utils/TableGen/ |
D | CodeGenRegisters.h | 199 typedef SparseBitVector<> RegUnitList;
|
D | RegisterInfoEmitter.cpp | 593 DiffVec &diffEncode(DiffVec &V, unsigned InitVal, SparseBitVector<> List) { in diffEncode() 884 SparseBitVector<> RUs = Reg.getNativeRegUnits(); in runMCDesc()
|
D | CodeGenRegisters.cpp | 1440 SparseBitVector<> &NormalRegs, in normalizeWeight() 1515 SparseBitVector<> NormalRegs; in computeRegUnitWeights()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/ |
D | SIMachineFunctionInfo.h | 458 SparseBitVector<> WWMReservedRegs;
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/ |
D | BlockFrequencyInfoImpl.cpp | 284 SparseBitVector<> SavedIsIrrLoopHeader(std::move(BFI.IsIrrLoopHeader)); in cleanup()
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Analysis/ |
D | BlockFrequencyInfoImpl.h | 416 SparseBitVector<> IsIrrLoopHeader;
|
/external/llvm/docs/ |
D | ProgrammersManual.rst | 1692 Bit storage containers (BitVector, SparseBitVector) 1732 SparseBitVector argument 1735 The SparseBitVector container is much like BitVector, with one major difference: 1736 Only the bits that are set, are stored. This makes the SparseBitVector much 1739 downside to the SparseBitVector is that setting and testing of random bits is 1744 testing/setting bits in a SparseBitVector is O(distance away from last set bit).
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/X86/ |
D | X86SpeculativeLoadHardening.cpp | 1651 SparseBitVector<> LoadDepRegs; in tracePredStateThroughBlocksAndHarden()
|