| /freebsd-14.2/contrib/llvm-project/llvm/tools/llvm-pdbutil/ |
| H A D | StreamUtil.cpp | 97 for (uint32_t StreamIdx = 0; StreamIdx < StreamCount; ++StreamIdx) { in discoverStreamPurposes() local 99 Streams[StreamIdx] = in discoverStreamPurposes() 102 Streams[StreamIdx] = stream(StreamPurpose::PDB, "PDB Stream", StreamIdx); in discoverStreamPurposes() 104 Streams[StreamIdx] = stream(StreamPurpose::DBI, "DBI Stream", StreamIdx); in discoverStreamPurposes() 106 Streams[StreamIdx] = stream(StreamPurpose::TPI, "TPI Stream", StreamIdx); in discoverStreamPurposes() 108 Streams[StreamIdx] = stream(StreamPurpose::IPI, "IPI Stream", StreamIdx); in discoverStreamPurposes() 138 Streams[StreamIdx] = stream(StreamPurpose::Other, "FPO Data", StreamIdx); in discoverStreamPurposes() 152 Streams[StreamIdx] = stream(StreamPurpose::Other, "Pdata", StreamIdx); in discoverStreamPurposes() 158 StreamIdx == in discoverStreamPurposes() 167 Streams[StreamIdx] = stream(StreamPurpose::Other, "Xdata", StreamIdx); in discoverStreamPurposes() [all …]
|
| H A D | BytesOutputStyle.cpp | 292 void BytesOutputStyle::dumpTypeIndex(uint32_t StreamIdx, in dumpTypeIndex() argument 294 assert(StreamIdx == StreamTPI || StreamIdx == StreamIPI); in dumpTypeIndex() 297 bool IsTpi = (StreamIdx == StreamTPI); in dumpTypeIndex() 306 auto &Types = Err(initializeTypes(StreamIdx)); in dumpTypeIndex() 307 auto Layout = File.getStreamLayout(StreamIdx); in dumpTypeIndex() 446 BytesOutputStyle::initializeTypes(uint32_t StreamIdx) { in initializeTypes() argument 447 auto &TypeCollection = (StreamIdx == StreamTPI) ? TpiTypes : IpiTypes; in initializeTypes() 451 auto Tpi = (StreamIdx == StreamTPI) ? File.getPDBTpiStream() in initializeTypes()
|
| H A D | BytesOutputStyle.h | 52 void dumpTypeIndex(uint32_t StreamIdx, ArrayRef<uint32_t> Indices); 55 initializeTypes(uint32_t StreamIdx);
|
| H A D | DumpOutputStyle.cpp | 363 for (uint32_t StreamIdx = 0; StreamIdx < StreamCount; ++StreamIdx) { in dumpStreamSummary() local 369 StreamPurposes[StreamIdx].getLongName()); in dumpStreamSummary() 372 auto Blocks = getPdb().getStreamBlockList(StreamIdx); in dumpStreamSummary() 572 if (StreamIdx == kInvalidStreamIndex) { in dumpSymbolStats() 579 P.formatLine("Stream {0}, {1} bytes", StreamIdx, in dumpSymbolStats() 1324 Error DumpOutputStyle::dumpTpiStream(uint32_t StreamIdx) { in dumpTpiStream() argument 1325 assert(StreamIdx == StreamTPI || StreamIdx == StreamIPI); in dumpTpiStream() 1327 if (StreamIdx == StreamTPI) { in dumpTpiStream() 1329 } else if (StreamIdx == StreamIPI) { in dumpTpiStream() 1340 if (StreamIdx == StreamTPI) { in dumpTpiStream() [all …]
|
| H A D | DumpOutputStyle.h | 88 Error dumpTpiStream(uint32_t StreamIdx);
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/ |
| H A D | LinePrinter.cpp | 181 uint32_t StreamIdx, in formatMsfStreamData() argument 184 if (StreamIdx >= File.getNumStreams()) { in formatMsfStreamData() 185 formatLine("Stream {0}: Not present", StreamIdx); in formatMsfStreamData() 188 if (Size + Offset > File.getStreamByteSize(StreamIdx)) { in formatMsfStreamData() 191 StreamIdx); in formatMsfStreamData() 195 auto S = File.createIndexedStream(StreamIdx); in formatMsfStreamData() 198 formatLine("Stream {0}: Not present", StreamIdx); in formatMsfStreamData() 206 formatLine("Stream {0}: {1} (dumping {2:N} / {3:N} bytes)", StreamIdx, in formatMsfStreamData() 214 auto Layout = File.getStreamLayout(StreamIdx); in formatMsfStreamData()
|
| H A D | TpiStreamBuilder.cpp | 32 TpiStreamBuilder::TpiStreamBuilder(MSFBuilder &Msf, uint32_t StreamIdx) in TpiStreamBuilder() argument 33 : Msf(Msf), Allocator(Msf.getAllocator()), Header(nullptr), Idx(StreamIdx) { in TpiStreamBuilder()
|
| H A D | PDBFile.cpp | 245 MSFStreamLayout PDBFile::getStreamLayout(uint32_t StreamIdx) const { in getStreamLayout() 247 auto Blocks = getStreamBlockList(StreamIdx); in getStreamLayout() 249 Result.Length = getStreamByteSize(StreamIdx); in getStreamLayout()
|
| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/DebugInfo/LogicalView/Readers/ |
| H A D | LVCodeViewVisitor.h | 44 uint32_t StreamIdx; variable 57 uint32_t StreamIdx) const; 62 uint32_t StreamIdx, LVShared *Shared) in LVTypeVisitor() argument 64 Types(Types), Ids(Ids), StreamIdx(StreamIdx), Shared(Shared) { in LVTypeVisitor() 307 void printTypeIndex(StringRef FieldName, TypeIndex TI, uint32_t StreamIdx); 348 LVElement *getElement(uint32_t StreamIdx, TypeIndex TI, 355 uint32_t StreamIdx); 358 LVElement *Element, uint32_t StreamIdx);
|
| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/DebugInfo/MSF/ |
| H A D | MSFBuilder.h | 92 uint32_t getStreamSize(uint32_t StreamIdx) const; 95 ArrayRef<uint32_t> getStreamBlocks(uint32_t StreamIdx) const;
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/DebugInfo/MSF/ |
| H A D | MSFBuilder.cpp | 227 uint32_t MSFBuilder::getStreamSize(uint32_t StreamIdx) const { in getStreamSize() 228 return StreamData[StreamIdx].first; in getStreamSize() 231 ArrayRef<uint32_t> MSFBuilder::getStreamBlocks(uint32_t StreamIdx) const { in getStreamBlocks() 232 return StreamData[StreamIdx].second; in getStreamBlocks()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/DebugInfo/LogicalView/Readers/ |
| H A D | LVCodeViewVisitor.cpp | 140 void add(uint32_t StreamIdx, TypeIndex TI, TypeLeafKind Kind, 142 void add(uint32_t StreamIdx, TypeIndex TI, StringRef Name); 144 TypeIndex find(uint32_t StreamIdx, StringRef Name); 339 (StreamIdx == StreamTPI) ? RecordFromTypes : RecordFromIds; in add() 351 (StreamIdx == StreamTPI) ? RecordFromTypes : RecordFromIds; in find() 486 uint32_t StreamIdx) const { in printTypeIndex() 507 Shared->TypeRecords.add(StreamIdx, TI, Record.kind()); in visitTypeBegin() 1745 uint32_t StreamIdx) { in printTypeIndex() argument 1758 printTypeIndex("TI", TI, StreamIdx); in printTypeBegin() 1770 uint32_t StreamIdx) { in printMemberBegin() argument [all …]
|
| H A D | LVCodeViewReader.cpp | 584 SpecialStream StreamIdx) -> Error { in traverseTypes() argument 585 LVTypeVisitor TDV(W, &LogicalVisitor, Types, Ids, StreamIdx, in traverseTypes()
|
| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/DebugInfo/PDB/Native/ |
| H A D | TpiStreamBuilder.h | 41 explicit TpiStreamBuilder(msf::MSFBuilder &Msf, uint32_t StreamIdx);
|
| H A D | PDBFile.h | 92 msf::MSFStreamLayout getStreamLayout(uint32_t StreamIdx) const;
|
| H A D | LinePrinter.h | 75 void formatMsfStreamData(StringRef Label, PDBFile &File, uint32_t StreamIdx,
|