Home
last modified time | relevance | path

Searched refs:LazyRandomTypeCollection (Results 1 – 25 of 26) sorted by relevance

12

/llvm-project-15.0.7/llvm/lib/DebugInfo/CodeView/
H A DLazyRandomTypeCollection.cpp35 LazyRandomTypeCollection::LazyRandomTypeCollection(uint32_t RecordCountHint) in LazyRandomTypeCollection() function in LazyRandomTypeCollection
36 : LazyRandomTypeCollection(CVTypeArray(), RecordCountHint, in LazyRandomTypeCollection()
39 LazyRandomTypeCollection::LazyRandomTypeCollection( in LazyRandomTypeCollection() function in LazyRandomTypeCollection
46 LazyRandomTypeCollection::LazyRandomTypeCollection(ArrayRef<uint8_t> Data, in LazyRandomTypeCollection() function in LazyRandomTypeCollection
48 : LazyRandomTypeCollection(RecordCountHint) { in LazyRandomTypeCollection()
51 LazyRandomTypeCollection::LazyRandomTypeCollection(StringRef Data, in LazyRandomTypeCollection() function in LazyRandomTypeCollection
53 : LazyRandomTypeCollection( in LazyRandomTypeCollection()
57 LazyRandomTypeCollection::LazyRandomTypeCollection(const CVTypeArray &Types, in LazyRandomTypeCollection() function in LazyRandomTypeCollection
91 CVType LazyRandomTypeCollection::getType(TypeIndex Index) { in getType()
136 bool LazyRandomTypeCollection::contains(TypeIndex Index) { in contains()
[all …]
H A DCMakeLists.txt23 LazyRandomTypeCollection.cpp
/llvm-project-15.0.7/llvm/tools/llvm-pdbutil/
H A DMinimalSymbolDumper.h16 class LazyRandomTypeCollection; variable
26 codeview::LazyRandomTypeCollection &Ids, in MinimalSymbolDumper()
27 codeview::LazyRandomTypeCollection &Types) in MinimalSymbolDumper()
31 codeview::LazyRandomTypeCollection &Ids, in MinimalSymbolDumper()
32 codeview::LazyRandomTypeCollection &Types) in MinimalSymbolDumper()
62 codeview::LazyRandomTypeCollection &Ids;
63 codeview::LazyRandomTypeCollection &Types;
H A DBytesOutputStyle.h21 class LazyRandomTypeCollection; variable
54 Expected<codeview::LazyRandomTypeCollection &>
57 std::unique_ptr<codeview::LazyRandomTypeCollection> TpiTypes;
58 std::unique_ptr<codeview::LazyRandomTypeCollection> IpiTypes;
H A DMinimalTypeDumper.h17 class LazyRandomTypeCollection; variable
28 bool Hashes, codeview::LazyRandomTypeCollection &Types, in MinimalTypeDumpVisitor()
60 codeview::LazyRandomTypeCollection &Types;
H A DTypeReferenceTracker.h54 codeview::LazyRandomTypeCollection &Types;
55 codeview::LazyRandomTypeCollection *Ids = nullptr;
H A DTypeReferenceTracker.cpp25 static uint32_t getNumRecordsInCollection(LazyRandomTypeCollection &Types) { in getNumRecordsInCollection()
H A DBytesOutputStyle.cpp445 Expected<codeview::LazyRandomTypeCollection &>
460 std::make_unique<LazyRandomTypeCollection>(Types, Count, Offsets); in initializeTypes()
H A DDumpOutputStyle.cpp603 LazyRandomTypeCollection &Types = in dumpTypeStats()
1183 static void buildDepSet(LazyRandomTypeCollection &Types, in buildDepSet()
1200 dumpFullTypeStream(LinePrinter &Printer, LazyRandomTypeCollection &Types, in dumpFullTypeStream()
1219 LazyRandomTypeCollection &Types, in dumpPartialTypeStream()
1265 LazyRandomTypeCollection Types(100); in dumpTypesFromObjectFile()
/llvm-project-15.0.7/llvm/include/llvm/DebugInfo/CodeView/
H A DLazyRandomTypeCollection.h49 class LazyRandomTypeCollection : public TypeCollection {
59 explicit LazyRandomTypeCollection(uint32_t RecordCountHint);
60 LazyRandomTypeCollection(StringRef Data, uint32_t RecordCountHint);
61 LazyRandomTypeCollection(ArrayRef<uint8_t> Data, uint32_t RecordCountHint);
62 LazyRandomTypeCollection(const CVTypeArray &Types, uint32_t RecordCountHint,
64 LazyRandomTypeCollection(const CVTypeArray &Types, uint32_t RecordCountHint);
/llvm-project-15.0.7/llvm/include/llvm/DebugInfo/PDB/Native/
H A DTpiStream.h25 class LazyRandomTypeCollection; variable
59 codeview::LazyRandomTypeCollection &typeCollection() { return *Types; } in typeCollection()
80 std::unique_ptr<codeview::LazyRandomTypeCollection> Types;
H A DInputFile.h26 class LazyRandomTypeCollection; variable
48 using TypeCollectionPtr = std::unique_ptr<codeview::LazyRandomTypeCollection>;
54 codeview::LazyRandomTypeCollection &
79 codeview::LazyRandomTypeCollection &types();
80 codeview::LazyRandomTypeCollection &ids();
H A DNativeEnumTypes.h21 class LazyRandomTypeCollection; variable
30 codeview::LazyRandomTypeCollection &TypeCollection,
/llvm-project-15.0.7/llvm/unittests/DebugInfo/CodeView/
H A DRandomAccessVisitorTest.cpp130 bool ValidateDatabaseRecord(LazyRandomTypeCollection &Types, uint32_t Index) { in ValidateDatabaseRecord()
207 LazyRandomTypeCollection Types(GlobalState->TypeArray, in TEST_F()
239 LazyRandomTypeCollection Types(GlobalState->TypeArray, in TEST_F()
268 LazyRandomTypeCollection Types(GlobalState->TypeArray, in TEST_F()
298 LazyRandomTypeCollection Types(GlobalState->TypeArray, in TEST_F()
328 LazyRandomTypeCollection Types(GlobalState->TypeArray, in TEST_F()
395 LazyRandomTypeCollection Types(TypeStream, 2, PartialOffsets); in TEST_F()
/llvm-project-15.0.7/llvm/lib/DebugInfo/PDB/Native/
H A DInputFile.cpp413 codeview::LazyRandomTypeCollection &
435 std::make_unique<LazyRandomTypeCollection>(Array, Count, Offsets); in getOrCreateTypeCollection()
448 Types = std::make_unique<LazyRandomTypeCollection>(Records, 100); in getOrCreateTypeCollection()
452 Types = std::make_unique<LazyRandomTypeCollection>(100); in getOrCreateTypeCollection()
456 codeview::LazyRandomTypeCollection &InputFile::types() { in types()
460 codeview::LazyRandomTypeCollection &InputFile::ids() { in ids()
H A DNativeInlineSiteSymbol.cpp75 LazyRandomTypeCollection &Types = Tpi->typeCollection(); in getName()
76 LazyRandomTypeCollection &Ids = Ipi->typeCollection(); in getName()
H A DNativeEnumTypes.cpp27 LazyRandomTypeCollection &Types, in NativeEnumTypes()
H A DTpiStream.cpp115 Types = std::make_unique<LazyRandomTypeCollection>( in reload()
H A DNativeTypeEnum.cpp66 LazyRandomTypeCollection &Types = Tpi.typeCollection(); in NativeEnumEnumEnumerators()
H A DSymbolCache.cpp178 codeview::LazyRandomTypeCollection &Types = Tpi->typeCollection(); in findSymbolByTypeIndex()
/llvm-project-15.0.7/llvm/utils/gn/secondary/llvm/lib/DebugInfo/CodeView/
H A DBUILD.gn29 "LazyRandomTypeCollection.cpp",
/llvm-project-15.0.7/lldb/source/Plugins/SymbolFile/NativePDB/
H A DCompileUnitIndex.cpp68 LazyRandomTypeCollection &types = index.ipi().typeCollection(); in ParseBuildInfo()
224 LazyRandomTypeCollection &types = m_index.ipi().typeCollection(); in GetMainSourceFile()
H A DSymbolFileNativePDB.cpp1475 LazyRandomTypeCollection &types = m_index->tpi().typeCollection(); in ParseInlineSite()
1484 LazyRandomTypeCollection &ids = m_index->ipi().typeCollection(); in ParseInlineSite()
1647 LazyRandomTypeCollection &types = m_index->tpi().typeCollection(); in ParseTypes()
H A DPdbAstBuilder.cpp334 LazyRandomTypeCollection &types = m_index.tpi().typeCollection(); in BuildParentMap()
/llvm-project-15.0.7/llvm/tools/llvm-readobj/
H A DCOFFDumper.cpp197 LazyRandomTypeCollection Types;

12