Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/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.cpp32 uint32_t StreamIndex) { in createStream()
35 Result.StreamIndex = StreamIndex; in createStream()
41 uint32_t StreamIndex, uint32_t Modi) { in createModuleStream()
44 Result.StreamIndex = StreamIndex; in createModuleStream()
33 createStream(StreamPurpose Purpose,StringRef Name,uint32_t StreamIndex) createStream() argument
42 createModuleStream(StringRef Module,uint32_t StreamIndex,uint32_t Modi) createModuleStream() argument
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/MSF/
H A DMappedBlockStream.cpp58 const MSFLayout &Layout, BinaryStreamRef MsfData, uint32_t StreamIndex, in createIndexedStream()
60 assert(StreamIndex < Layout.StreamMap.size() && "Invalid stream index"); in createIndexedStream()
62 SL.Blocks = Layout.StreamMap[StreamIndex]; in createIndexedStream()
63 SL.Length = Layout.StreamSizes[StreamIndex]; in createIndexedStream()
326 uint32_t StreamIndex, in createIndexedStream()
328 assert(StreamIndex < Layout.StreamMap.size() && "Invalid stream index"); in createIndexedStream()
330 SL.Blocks = Layout.StreamMap[StreamIndex]; in createIndexedStream()
331 SL.Length = Layout.StreamSizes[StreamIndex]; in createIndexedStream()
59 createIndexedStream(const MSFLayout & Layout,BinaryStreamRef MsfData,uint32_t StreamIndex,BumpPtrAllocator & Allocator) createIndexedStream() argument
327 createIndexedStream(const MSFLayout & Layout,WritableBinaryStreamRef MsfData,uint32_t StreamIndex,BumpPtrAllocator & Allocator) createIndexedStream() argument
/freebsd/contrib/llvm-project/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);
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/
H A DPDBFile.cpp92 uint32_t PDBFile::getStreamByteSize(uint32_t StreamIndex) const { in getStreamByteSize()
93 return ContainerLayout.StreamSizes[StreamIndex]; in getStreamByteSize()
97 PDBFile::getStreamBlockList(uint32_t StreamIndex) const { in getStreamBlockList()
98 return ContainerLayout.StreamMap[StreamIndex]; in getStreamBlockList()
487 PDBFile::safelyCreateIndexedStream(uint32_t StreamIndex) const { in safelyCreateIndexedStream()
488 if (StreamIndex >= getNumStreams()) in safelyCreateIndexedStream()
491 return createIndexedStream(StreamIndex); in safelyCreateIndexedStream()
/freebsd/contrib/llvm-project/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;