| /openbsd-src/gnu/llvm/llvm/tools/llvm-pdbutil/ |
| H A D | StreamUtil.cpp | 56 static inline StreamInfo moduleStream(StringRef Label, uint32_t StreamIdx, in moduleStream() argument 58 return StreamInfo::createModuleStream(Label, StreamIdx, Modi); in moduleStream() 98 for (uint32_t StreamIdx = 0; StreamIdx < StreamCount; ++StreamIdx) { in discoverStreamPurposes() local 99 if (StreamIdx == OldMSFDirectory) in discoverStreamPurposes() 100 Streams[StreamIdx] = in discoverStreamPurposes() 101 stream(StreamPurpose::Other, "Old MSF Directory", StreamIdx); in discoverStreamPurposes() 102 else if (StreamIdx == StreamPDB) in discoverStreamPurposes() 103 Streams[StreamIdx] = stream(StreamPurpose::PDB, "PDB Stream", StreamIdx); in discoverStreamPurposes() 104 else if (StreamIdx == StreamDBI) in discoverStreamPurposes() 105 Streams[StreamIdx] = stream(StreamPurpose::DBI, "DBI Stream", 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 | 362 for (uint32_t StreamIdx = 0; StreamIdx < StreamCount; ++StreamIdx) { in dumpStreamSummary() local 365 fmt_align(StreamIdx, AlignStyle::Right, NumDigits(StreamCount)), in dumpStreamSummary() 366 fmt_align(getPdb().getStreamByteSize(StreamIdx), AlignStyle::Right, in dumpStreamSummary() 368 StreamPurposes[StreamIdx].getLongName()); in dumpStreamSummary() 371 auto Blocks = getPdb().getStreamBlockList(StreamIdx); in dumpStreamSummary() 569 uint32_t StreamIdx = Desc.getModuleStreamIndex(); in dumpSymbolStats() local 571 if (StreamIdx == kInvalidStreamIndex) { in dumpSymbolStats() 578 P.formatLine("Stream {0}, {1} bytes", StreamIdx, in dumpSymbolStats() 579 getPdb().getStreamByteSize(StreamIdx)); in dumpSymbolStats() 1323 Error DumpOutputStyle::dumpTpiStream(uint32_t StreamIdx) { in dumpTpiStream() argument [all …]
|
| H A D | DumpOutputStyle.h | 90 Error dumpTpiStream(uint32_t StreamIdx);
|
| /openbsd-src/gnu/llvm/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 | 31 TpiStreamBuilder::TpiStreamBuilder(MSFBuilder &Msf, uint32_t StreamIdx) in TpiStreamBuilder() argument 32 : 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()
|
| /openbsd-src/gnu/llvm/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;
|
| /openbsd-src/gnu/llvm/llvm/lib/DebugInfo/MSF/ |
| H A D | MSFBuilder.cpp | 226 uint32_t MSFBuilder::getStreamSize(uint32_t StreamIdx) const { in getStreamSize() 227 return StreamData[StreamIdx].first; in getStreamSize() 230 ArrayRef<uint32_t> MSFBuilder::getStreamBlocks(uint32_t StreamIdx) const { in getStreamBlocks() 231 return StreamData[StreamIdx].second; in getStreamBlocks()
|
| /openbsd-src/gnu/llvm/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,
|