Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/LogicalView/Readers/
H A DLVCodeViewVisitor.cpp339 (StreamIdx == StreamTPI) ? RecordFromTypes : RecordFromIds; in add()
345 NameTable &Target = (StreamIdx == StreamTPI) ? NameFromTypes : NameFromIds; in add()
351 (StreamIdx == StreamTPI) ? RecordFromTypes : RecordFromIds; in find()
372 NameTable &Target = (StreamIdx == StreamTPI) ? NameFromTypes : NameFromIds; in find()
488 StreamIdx == StreamTPI ? Types : Ids); in printTypeIndex()
573 printTypeIndex("TypeIndex", CurrentTypeIndex, StreamTPI); in visitKnownRecord()
574 printTypeIndex("FieldListType", Class.getFieldList(), StreamTPI); in visitKnownRecord()
591 printTypeIndex("TypeIndex", CurrentTypeIndex, StreamTPI); in visitKnownRecord()
592 printTypeIndex("FieldListType", Enum.getFieldList(), StreamTPI); in visitKnownRecord()
604 printTypeIndex("TypeIndex", CurrentTypeIndex, StreamTPI); in visitKnownRecord()
[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/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()
1324 assert(StreamIdx == StreamTPI || StreamIdx == StreamIPI); in dumpTpiStream()
1326 if (StreamIdx == StreamTPI) { in dumpTpiStream()
1339 if (StreamIdx == StreamTPI) { in dumpTpiStream()
1356 printStreamNotPresent(StreamIdx == StreamTPI ? "TPI" : "IPI"); in dumpTpiStream()
1363 auto &Stream = Err((StreamIdx == StreamTPI) ? getPdb().getPDBTpiStream() in dumpTpiStream()
1366 auto &Types = (StreamIdx == StreamTPI) ? File.types() : File.ids(); in dumpTpiStream()
1370 (StreamIdx == StreamTPI) ? RefTracker.get() : nullptr; in dumpTpiStream()
H A DStreamUtil.cpp105 else if (StreamIdx == StreamTPI) in discoverStreamPurposes()
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/PDB/Native/
H A DRawConstants.h79 StreamTPI = 2, enumerator
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/
H A DPDBFile.cpp302 auto TpiS = safelyCreateIndexedStream(StreamTPI); in getPDBTpiStream()
454 bool PDBFile::hasPDBTpiStream() const { return StreamTPI < getNumStreams(); } in hasPDBTpiStream()
H A DPDBFileBuilder.cpp73 Tpi = std::make_unique<TpiStreamBuilder>(*Msf, StreamTPI); in getTpiBuilder()