Home
last modified time | relevance | path

Searched refs:BinarySubstreamRef (Results 1 – 14 of 14) sorted by relevance

/llvm-project-15.0.7/llvm/include/llvm/DebugInfo/PDB/Native/
H A DDbiStream.h70 BinarySubstreamRef getSectionContributionData() const;
71 BinarySubstreamRef getSecMapSubstreamData() const;
72 BinarySubstreamRef getModiSubstreamData() const;
73 BinarySubstreamRef getFileInfoSubstreamData() const;
75 BinarySubstreamRef getECSubstreamData() const;
109 BinarySubstreamRef SecContrSubstream;
110 BinarySubstreamRef SecMapSubstream;
111 BinarySubstreamRef ModiSubstream;
112 BinarySubstreamRef FileInfoSubstream;
113 BinarySubstreamRef TypeServerMapSubstream;
[all …]
H A DModuleDebugStream.h52 BinarySubstreamRef getSymbolsSubstream() const;
53 BinarySubstreamRef getC11LinesSubstream() const;
54 BinarySubstreamRef getC13LinesSubstream() const;
55 BinarySubstreamRef getGlobalRefsSubstream() const;
84 BinarySubstreamRef SymbolsSubstream;
85 BinarySubstreamRef C11LinesSubstream;
86 BinarySubstreamRef C13LinesSubstream;
87 BinarySubstreamRef GlobalRefsSubstream;
H A DInfoStream.h48 BinarySubstreamRef getNamedStreamsBuffer() const;
58 BinarySubstreamRef SubNamedStreams;
H A DTpiStream.h68 BinarySubstreamRef getTypeRecordsSubstream() const;
82 BinarySubstreamRef TypeRecordsSubstream;
H A DLinePrinter.h80 BinarySubstreamRef Substream);
/llvm-project-15.0.7/llvm/lib/DebugInfo/PDB/Native/
H A DModuleDebugStream.cpp95 BinarySubstreamRef ModuleDebugStreamRef::getSymbolsSubstream() const { in getSymbolsSubstream()
99 BinarySubstreamRef ModuleDebugStreamRef::getC11LinesSubstream() const { in getC11LinesSubstream()
103 BinarySubstreamRef ModuleDebugStreamRef::getC13LinesSubstream() const { in getC13LinesSubstream()
107 BinarySubstreamRef ModuleDebugStreamRef::getGlobalRefsSubstream() const { in getGlobalRefsSubstream()
H A DDbiStream.cpp341 BinarySubstreamRef DbiStream::getSectionContributionData() const { in getSectionContributionData()
345 BinarySubstreamRef DbiStream::getSecMapSubstreamData() const { in getSecMapSubstreamData()
349 BinarySubstreamRef DbiStream::getModiSubstreamData() const { in getModiSubstreamData()
353 BinarySubstreamRef DbiStream::getFileInfoSubstreamData() const { in getFileInfoSubstreamData()
357 BinarySubstreamRef DbiStream::getTypeServerMapSubstreamData() const { in getTypeServerMapSubstreamData()
361 BinarySubstreamRef DbiStream::getECSubstreamData() const { return ECSubstream; } in getECSubstreamData()
H A DInfoStream.cpp127 BinarySubstreamRef InfoStream::getNamedStreamsBuffer() const { in getNamedStreamsBuffer()
H A DLinePrinter.cpp210 BinarySubstreamRef Substream; in formatMsfStreamData()
220 BinarySubstreamRef Substream) { in formatMsfStreamData()
H A DTpiStream.cpp226 BinarySubstreamRef TpiStream::getTypeRecordsSubstream() const { in getTypeRecordsSubstream()
/llvm-project-15.0.7/llvm/include/llvm/Support/
H A DBinaryStreamRef.h199 struct BinarySubstreamRef { struct
203 BinarySubstreamRef slice(uint64_t Off, uint64_t Size) const { in slice() argument
207 BinarySubstreamRef drop_front(uint64_t N) const { in drop_front() argument
210 BinarySubstreamRef keep_front(uint64_t N) const { return slice(0, N); } in keep_front() argument
212 std::pair<BinarySubstreamRef, BinarySubstreamRef> split(uint64_t Off) const { in split() argument
H A DBinaryStreamReader.h151 Error readSubstream(BinarySubstreamRef &Ref, uint32_t Length);
/llvm-project-15.0.7/llvm/tools/llvm-pdbutil/
H A DBytesOutputStyle.cpp202 BinarySubstreamRef NS = InfoS.getNamedStreamsBuffer(); in dumpNameMap()
232 BinarySubstreamRef NS = DbiS.getSectionContributionData(); in dumpSectionContributions()
243 BinarySubstreamRef NS = DbiS.getSecMapSubstreamData(); in dumpSectionMap()
254 BinarySubstreamRef NS = DbiS.getModiSubstreamData(); in dumpModuleInfos()
265 BinarySubstreamRef NS = DbiS.getFileInfoSubstreamData(); in dumpFileInfo()
276 BinarySubstreamRef NS = DbiS.getTypeServerMapSubstreamData(); in dumpTypeServerMap()
287 BinarySubstreamRef NS = DbiS.getECSubstreamData(); in dumpECData()
419 BinarySubstreamRef ThisChunk; in dumpModuleC13()
/llvm-project-15.0.7/llvm/lib/Support/
H A DBinaryStreamReader.cpp142 Error BinaryStreamReader::readSubstream(BinarySubstreamRef &Ref, in readSubstream()