Searched refs:BinaryStreamRef (Results 1 - 25 of 47) sorted by relevance

12

/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/
H A DDebugUnknownSubsection.h13 #include "llvm/Support/BinaryStreamRef.h"
20 DebugUnknownSubsectionRef(DebugSubsectionKind Kind, BinaryStreamRef Data)
23 BinaryStreamRef getData() const { return Data; }
26 BinaryStreamRef Data;
H A DDebugSubsectionRecord.h14 #include "llvm/Support/BinaryStreamRef.h"
38 DebugSubsectionRecord(DebugSubsectionKind Kind, BinaryStreamRef Data,
41 static Error initialize(BinaryStreamRef Stream, DebugSubsectionRecord &Info,
46 BinaryStreamRef getRecordData() const;
51 BinaryStreamRef Data;
81 Error operator()(BinaryStreamRef Stream, uint32_t &Length,
H A DDebugStringTableSubsection.h17 #include "llvm/Support/BinaryStreamRef.h"
39 Error initialize(BinaryStreamRef Contents);
46 BinaryStreamRef getBuffer() const { return Stream; }
49 BinaryStreamRef Stream;
H A DDebugCrossImpSubsection.h18 #include "llvm/Support/BinaryStreamRef.h"
39 Error operator()(BinaryStreamRef Stream, uint32_t &Len,
60 Error initialize(BinaryStreamRef Stream);
H A DDebugChecksumsSubsection.h20 #include "llvm/Support/BinaryStreamRef.h"
43 Error operator()(BinaryStreamRef Stream, uint32_t &Len,
64 Error initialize(BinaryStreamRef Stream);
H A DDebugInlineeLinesSubsection.h19 #include "llvm/Support/BinaryStreamRef.h"
53 Error operator()(BinaryStreamRef Stream, uint32_t &Len,
73 Error initialize(BinaryStreamRef Section) {
H A DDebugCrossExSubsection.h16 #include "llvm/Support/BinaryStreamRef.h"
37 Error initialize(BinaryStreamRef Stream);
H A DDebugFrameDataSubsection.h29 Error initialize(BinaryStreamRef Stream);
H A DCVRecord.h18 #include "llvm/Support/BinaryStreamRef.h"
96 inline Expected<CVRecord<Kind>> readCVRecordFromStream(BinaryStreamRef Stream,
118 Error operator()(BinaryStreamRef Stream, uint32_t &Len,
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/Support/
H A DBinaryStreamRef.h1 //===- BinaryStreamRef.h - A copyable reference to a stream -----*- C++ -*-===//
58 /// Return a new BinaryStreamRef with the first \p N elements removed. If
59 /// this BinaryStreamRef is length-tracking, then the resulting one will be
76 /// Return a new BinaryStreamRef with the last \p N elements removed. If
77 /// this BinaryStreamRef is length-tracking and \p N is greater than 0, then
78 /// this BinaryStreamRef will no longer length-track.
98 /// Return a new BinaryStreamRef with only the first \p N elements remaining.
104 /// Return a new BinaryStreamRef with only the last \p N elements remaining.
110 /// Return a new BinaryStreamRef with the first and last \p N elements
116 /// Return a new BinaryStreamRef wit
156 class BinaryStreamRef class in namespace:llvm
160 BinaryStreamRef(std::shared_ptr<BinaryStream> Impl, uint32_t ViewOffset, function in class:llvm::BinaryStreamRef
[all...]
H A DBinaryStreamArray.h14 #include "llvm/Support/BinaryStreamRef.h"
32 /// extraction logic. On input it receives a BinaryStreamRef pointing to the
46 Error operator()(BinaryStreamRef Stream, uint32_t &Len,
98 explicit VarStreamArray(BinaryStreamRef Stream, uint32_t Skew = 0)
101 VarStreamArray(BinaryStreamRef Stream, const Extractor &E, uint32_t Skew = 0)
120 BinaryStreamRef NewStream = Stream.slice(0, End);
135 BinaryStreamRef getUnderlyingStream() const { return Stream; }
136 void setUnderlyingStream(BinaryStreamRef NewStream, uint32_t NewSkew = 0) {
144 BinaryStreamRef Stream;
242 BinaryStreamRef IterRe
[all...]
H A DBinaryStreamReader.h15 #include "llvm/Support/BinaryStreamRef.h"
34 explicit BinaryStreamReader(BinaryStreamRef Ref);
140 Error readStreamRef(BinaryStreamRef &Ref);
149 Error readStreamRef(BinaryStreamRef &Ref, uint32_t Length);
219 BinaryStreamRef S;
245 BinaryStreamRef View;
277 BinaryStreamRef Stream;
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/PDB/Native/
H A DDbiModuleList.h17 #include "llvm/Support/BinaryStreamRef.h"
73 Error initialize(BinaryStreamRef ModInfo, BinaryStreamRef FileInfo);
86 Error initializeModInfo(BinaryStreamRef ModInfo);
87 Error initializeFileInfo(BinaryStreamRef FileInfo);
110 BinaryStreamRef ModInfoSubstream;
111 BinaryStreamRef FileInfoSubstream;
112 BinaryStreamRef NamesBuffer;
H A DDbiModuleDescriptor.h15 #include "llvm/Support/BinaryStreamRef.h"
32 static Error initialize(BinaryStreamRef Stream, DbiModuleDescriptor &Info);
60 Error operator()(BinaryStreamRef Stream, uint32_t &Length,
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Support/
H A DBinaryStreamRef.cpp1 //===- BinaryStreamRef.cpp - ----------------------------------------------===//
9 #include "llvm/Support/BinaryStreamRef.h"
67 BinaryStreamRef::BinaryStreamRef(BinaryStream &Stream) function in class:BinaryStreamRef
69 BinaryStreamRef::BinaryStreamRef(BinaryStream &Stream, uint32_t Offset, function in class:BinaryStreamRef
72 BinaryStreamRef::BinaryStreamRef(ArrayRef<uint8_t> Data, endianness Endian) function in class:BinaryStreamRef
75 BinaryStreamRef::BinaryStreamRef(StringRe function in class:BinaryStreamRef
[all...]
H A DBinaryStreamReader.cpp12 #include "llvm/Support/BinaryStreamRef.h"
18 BinaryStreamReader::BinaryStreamReader(BinaryStreamRef Ref) : Stream(Ref) {}
130 Error BinaryStreamReader::readStreamRef(BinaryStreamRef &Ref) {
134 Error BinaryStreamReader::readStreamRef(BinaryStreamRef &Ref, uint32_t Length) {
172 BinaryStreamRef First = Stream.drop_front(Offset);
174 BinaryStreamRef Second = First.drop_front(Off);
H A DBinaryStreamWriter.cpp13 #include "llvm/Support/BinaryStreamRef.h"
61 Error BinaryStreamWriter::writeStreamRef(BinaryStreamRef Ref) {
65 Error BinaryStreamWriter::writeStreamRef(BinaryStreamRef Ref, uint32_t Length) {
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/MSF/
H A DMappedBlockStream.h17 #include "llvm/Support/BinaryStreamRef.h"
45 BinaryStreamRef MsfData, BumpPtrAllocator &Allocator);
48 createIndexedStream(const MSFLayout &Layout, BinaryStreamRef MsfData,
52 createFpmStream(const MSFLayout &Layout, BinaryStreamRef MsfData,
56 createDirectoryStream(const MSFLayout &Layout, BinaryStreamRef MsfData,
80 BinaryStreamRef MsfData, BumpPtrAllocator &Allocator);
92 BinaryStreamRef MsfData;
/freebsd-12-stable/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/
H A DDebugSubsectionRecord.cpp26 BinaryStreamRef Data,
30 Error DebugSubsectionRecord::initialize(BinaryStreamRef Stream,
53 BinaryStreamRef DebugSubsectionRecord::getRecordData() const { return Data; }
H A DDebugCrossExSubsection.cpp29 Error DebugCrossModuleExportsSubsectionRef::initialize(BinaryStreamRef Stream) {
H A DDebugChecksumsSubsection.cpp35 operator()(BinaryStreamRef Stream, uint32_t &Len, FileChecksumEntry &Item) {
58 Error DebugChecksumsSubsectionRef::initialize(BinaryStreamRef Section) {
H A DDebugCrossImpSubsection.cpp26 operator()(BinaryStreamRef Stream, uint32_t &Len,
49 Error DebugCrossModuleImportsSubsectionRef::initialize(BinaryStreamRef Stream) {
H A DDebugFrameDataSubsection.cpp31 Error DebugFrameDataSubsectionRef::initialize(BinaryStreamRef Section) {
/freebsd-12-stable/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/
H A DDbiModuleDescriptor.cpp21 Error DbiModuleDescriptor::initialize(BinaryStreamRef Stream,
H A DDbiModuleList.cpp162 Error DbiModuleList::initialize(BinaryStreamRef ModInfo,
163 BinaryStreamRef FileInfo) {
172 Error DbiModuleList::initializeModInfo(BinaryStreamRef ModInfo) {
186 Error DbiModuleList::initializeFileInfo(BinaryStreamRef FileInfo) {

Completed in 231 milliseconds

12