Home
last modified time | relevance | path

Searched refs:StreamTPI (Results 1 – 8 of 8) sorted by relevance

/freebsd-14.2/contrib/llvm-project/llvm/lib/DebugInfo/LogicalView/Readers/
H A DLVCodeViewVisitor.cpp1789 printTypeIndex("\nTI", TI, StreamTPI); in visitUnknownType()
1801 printTypeBegin(Record, TI, Element, StreamTPI); in visitKnownRecord()
1822 printTypeBegin(Record, TI, Element, StreamTPI); in visitKnownRecord()
1940 printTypeBegin(Record, TI, Element, StreamTPI); in visitKnownRecord()
1941 printTypeIndex("Type", TI, StreamTPI); in visitKnownRecord()
1980 printTypeBegin(Record, TI, Element, StreamTPI); in visitKnownRecord()
3156 printTypeIndex("TypeIndex", TI, StreamTPI); in createElement()
3170 printTypeIndex("TypeIndex", TI, StreamTPI); in createDataMember()
3178 Symbol->setType(getElement(StreamTPI, TI)); in createDataMember()
3215 printTypeIndex("TypeIndex", TIR, StreamTPI); in createBaseType()
[all …]
H A DLVCodeViewReader.cpp254 LogicalVisitor.printTypeIndex("Inlinee", TIInlinee, StreamTPI); in collectInlineeInfo()
527 LVTypeVisitor TDV(W, &LogicalVisitor, Types, Ids, StreamTPI, in loadPrecompiledObject()
573 LVTypeVisitor TDV(W, &LogicalVisitor, Types, Ids, StreamTPI, in traverseTypeSection()
599 if (Error Err = VisitTypes(Types, Ids, StreamTPI)) in traverseTypes()
/freebsd-14.2/contrib/llvm-project/llvm/tools/llvm-pdbutil/
H A DBytesOutputStyle.cpp169 dumpTypeIndex(StreamTPI, opts::bytes::TypeIndex); in dump()
294 assert(StreamIdx == StreamTPI || StreamIdx == StreamIPI); in dumpTypeIndex()
297 bool IsTpi = (StreamIdx == StreamTPI); in dumpTypeIndex()
447 auto &TypeCollection = (StreamIdx == StreamTPI) ? TpiTypes : IpiTypes; in initializeTypes()
451 auto Tpi = (StreamIdx == StreamTPI) ? File.getPDBTpiStream() in initializeTypes()
H A DDumpOutputStyle.cpp176 if (auto EC = dumpTpiStream(StreamTPI)) in dump()
1325 assert(StreamIdx == StreamTPI || StreamIdx == StreamIPI); in dumpTpiStream()
1327 if (StreamIdx == StreamTPI) { in dumpTpiStream()
1340 if (StreamIdx == StreamTPI) { in dumpTpiStream()
1357 printStreamNotPresent(StreamIdx == StreamTPI ? "TPI" : "IPI"); in dumpTpiStream()
1364 auto &Stream = Err((StreamIdx == StreamTPI) ? getPdb().getPDBTpiStream() in dumpTpiStream()
1367 auto &Types = (StreamIdx == StreamTPI) ? File.types() : File.ids(); in dumpTpiStream()
1371 (StreamIdx == StreamTPI) ? RefTracker.get() : nullptr; in dumpTpiStream()
H A DStreamUtil.cpp105 else if (StreamIdx == StreamTPI) in discoverStreamPurposes()
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/DebugInfo/PDB/Native/
H A DRawConstants.h79 StreamTPI = 2, enumerator
/freebsd-14.2/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/
H A DPDBFile.cpp303 auto TpiS = safelyCreateIndexedStream(StreamTPI); in getPDBTpiStream()
455 bool PDBFile::hasPDBTpiStream() const { return StreamTPI < getNumStreams(); } in hasPDBTpiStream()
H A DPDBFileBuilder.cpp73 Tpi = std::make_unique<TpiStreamBuilder>(*Msf, StreamTPI); in getTpiBuilder()