Home
last modified time | relevance | path

Searched refs:StreamIndex (Results 1 – 7 of 7) sorted by relevance

/openbsd-src/gnu/llvm/llvm/tools/llvm-pdbutil/
H A DStreamUtil.h43 uint32_t getStreamIndex() const { return StreamIndex; } in getStreamIndex()
47 uint32_t StreamIndex);
48 static StreamInfo createModuleStream(StringRef Module, uint32_t StreamIndex,
53 uint32_t StreamIndex; member
H A DStreamUtil.cpp33 uint32_t StreamIndex) { in createStream() argument
36 Result.StreamIndex = StreamIndex; in createStream()
42 uint32_t StreamIndex, uint32_t Modi) { in createModuleStream() argument
45 Result.StreamIndex = StreamIndex; in createModuleStream()
/openbsd-src/gnu/llvm/llvm/lib/DebugInfo/MSF/
H A DMappedBlockStream.cpp59 const MSFLayout &Layout, BinaryStreamRef MsfData, uint32_t StreamIndex, in createIndexedStream() argument
61 assert(StreamIndex < Layout.StreamMap.size() && "Invalid stream index"); in createIndexedStream()
63 SL.Blocks = Layout.StreamMap[StreamIndex]; in createIndexedStream()
64 SL.Length = Layout.StreamSizes[StreamIndex]; in createIndexedStream()
327 uint32_t StreamIndex, in createIndexedStream() argument
329 assert(StreamIndex < Layout.StreamMap.size() && "Invalid stream index"); in createIndexedStream()
331 SL.Blocks = Layout.StreamMap[StreamIndex]; in createIndexedStream()
332 SL.Length = Layout.StreamSizes[StreamIndex]; in createIndexedStream()
/openbsd-src/gnu/llvm/llvm/include/llvm/DebugInfo/MSF/
H A DIMSFFile.h28 virtual uint32_t getStreamByteSize(uint32_t StreamIndex) const = 0;
30 getStreamBlockList(uint32_t StreamIndex) const = 0;
H A DMappedBlockStream.h47 uint32_t StreamIndex, BumpPtrAllocator &Allocator);
113 uint32_t StreamIndex, BumpPtrAllocator &Allocator);
/openbsd-src/gnu/llvm/llvm/lib/DebugInfo/PDB/Native/
H A DPDBFile.cpp93 uint32_t PDBFile::getStreamByteSize(uint32_t StreamIndex) const { in getStreamByteSize()
94 return ContainerLayout.StreamSizes[StreamIndex]; in getStreamByteSize()
98 PDBFile::getStreamBlockList(uint32_t StreamIndex) const { in getStreamBlockList()
99 return ContainerLayout.StreamMap[StreamIndex]; in getStreamBlockList()
488 PDBFile::safelyCreateIndexedStream(uint32_t StreamIndex) const { in safelyCreateIndexedStream()
489 if (StreamIndex >= getNumStreams()) in safelyCreateIndexedStream()
492 return createIndexedStream(StreamIndex); in safelyCreateIndexedStream()
/openbsd-src/gnu/llvm/llvm/include/llvm/DebugInfo/PDB/Native/
H A DPDBFile.h63 uint32_t getStreamByteSize(uint32_t StreamIndex) const override;
65 getStreamBlockList(uint32_t StreamIndex) const override;
88 safelyCreateIndexedStream(uint32_t StreamIndex) const;