Home
last modified time | relevance | path

Searched refs:DbgStreams (Results 1 – 4 of 4) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/
H A DDbiStreamBuilder.cpp90 DbgStreams[(int)Type] = DebugStream{}; in addDbgStream()
91 DbgStreams[(int)Type]->Size = Data.size(); in addDbgStream()
92 DbgStreams[(int)Type]->WriteFn = [Data](BinaryStreamWriter &Writer) { in addDbgStream()
182 return DbgStreams.size() * sizeof(uint16_t); in calculateDbgStreamsSize()
275 H->OptionalDbgHdrSize = DbgStreams.size() * sizeof(uint16_t); in finalize()
290 DbgStreams[(int)DbgHeaderType::NewFPO] = DebugStream{}; in finalizeMsfLayout()
291 DbgStreams[(int)DbgHeaderType::NewFPO]->Size = in finalizeMsfLayout()
293 DbgStreams[(int)DbgHeaderType::NewFPO]->WriteFn = in finalizeMsfLayout()
300 DbgStreams[(int)DbgHeaderType::FPO] = DebugStream{}; in finalizeMsfLayout()
301 DbgStreams[(in in finalizeMsfLayout()
[all...]
H A DDbiStream.cpp114 DbgStreams, Header->OptionalDbgHdrSize / sizeof(ulittle16_t))) in reload()
329 if (DbgStreams.empty()) in createIndexedStreamForHeaderType()
378 if (T >= DbgStreams.size()) in getDebugStreamIndex()
380 return DbgStreams[T]; in getDebugStreamIndex()
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/PDB/Native/
H A DDbiStream.h118 FixedStreamArray<support::ulittle16_t> DbgStreams; variable
H A DDbiStreamBuilder.h132 std::array<std::optional<DebugStream>, (int)DbgHeaderType::Max> DbgStreams; variable