Lines Matching +full:stream +full:- +full:id +full:- +full:range

1 //===- BytesOutputStyle.cpp ----------------------------------- *- C++ --*-===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
12 #include "llvm-pdbutil.h"
46 "Invalid Stream Specification"); in parseStreamSpec()
50 "Invalid Stream Specification"); in parseStreamSpec()
55 "Invalid Stream Specification"); in parseStreamSpec()
60 "Invalid Stream Specification"); in parseStreamSpec()
70 P.formatLine("Error parsing stream spec {0}: {1}", Str, in parseStreamSpecs()
96 "Invalid block range specified. Max < Min", in dump()
100 "Invalid block range specified. Requested block out of bounds", in dump()
112 return make_error<StringError>("Invalid byte range specified. Max < Min", in dump()
116 "Invalid byte range specified. Requested byte larger than file size", in dump()
197 printHeader(P, "Named Stream Map"); in dumpNameMap()
204 P.formatMsfStreamData("Named Stream Map", File, Layout, NS); in dumpNameMap()
301 auto &Stream = Err(IsTpi ? File.getPDBTpiStream() : File.getPDBIpiStream()); in dumpTypeIndex() local
305 auto Substream = Stream.getTypeRecordsSubstream(); in dumpTypeIndex()
308 for (const auto &Id : Indices) { in dumpTypeIndex() local
309 TypeIndex TI(Id); in dumpTypeIndex()
358 P.formatLine("DBI Stream not present"); in iterateModules()
364 auto &Stream = Err(File.getPDBDbiStream()); in iterateModules() local
366 const DbiModuleList &Modules = Stream.modules(); in iterateModules()
386 [this](uint32_t Modi, const ModuleDebugStreamRef &Stream, in dumpModuleSyms()
388 auto Symbols = Stream.getSymbolsSubstream(); in dumpModuleSyms()
399 [this](uint32_t Modi, const ModuleDebugStreamRef &Stream, in dumpModuleC11() argument
401 auto Chunks = Stream.getC11LinesSubstream(); in dumpModuleC11()
414 [this](uint32_t Modi, const ModuleDebugStreamRef &Stream, in dumpModuleC13() argument
416 auto Chunks = Stream.getC13LinesSubstream(); in dumpModuleC13()
418 for (const auto &SS : Stream.subsections()) { in dumpModuleC13()
438 uint32_t Size = Max - Min + 1; in dumpByteRanges()
456 auto &Types = Tpi->typeArray(); in initializeTypes()
457 uint32_t Count = Tpi->getNumTypeRecords(); in initializeTypes()
458 auto Offsets = Tpi->getTypeIndexOffsets(); in initializeTypes()
476 printHeader(P, "Stream Data"); in dumpStreamBytes()
477 ExitOnError Err("Unexpected error reading stream data"); in dumpStreamBytes()
484 P.formatLine("Stream {0}: Not present", Spec.SI); in dumpStreamBytes()