Home
last modified time | relevance | path

Searched refs:DataRef (Results 1 – 9 of 9) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/ADT/
H A Diterator.h355 template <typename ItType, typename NodeRef, typename DataRef>
358 WrappedPairNodeDataIterator<ItType, NodeRef, DataRef>, ItType,
366 const DataRef DR;
370 WrappedPairNodeDataIterator(ItType Begin, const DataRef DR) in WrappedPairNodeDataIterator()
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-readobj/
H A DWasmDumper.cpp233 W.printHex("Offset", Symbol.Info.DataRef.Offset); in printSymbol()
234 W.printHex("Segment", Symbol.Info.DataRef.Segment); in printSymbol()
235 W.printHex("Size", Symbol.Info.DataRef.Size); in printSymbol()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Object/
H A DWasmObjectFile.cpp47 Out << ", Segment=" << Info.DataRef.Segment; in print()
48 Out << ", Offset=" << Info.DataRef.Offset; in print()
49 Out << ", Size=" << Info.DataRef.Size; in print()
646 Info.DataRef = wasm::WasmDataReference{Index, Offset, Size}; in parseLinkingSectionSymtab()
1524 uint32_t SegmentIndex = Sym.Info.DataRef.Segment; in getWasmSymbolValue()
1527 return Segment.Offset.Value.Int32 + Sym.Info.DataRef.Offset; in getWasmSymbolValue()
1529 return Segment.Offset.Value.Int64 + Sym.Info.DataRef.Offset; in getWasmSymbolValue()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/ObjectYAML/
H A DWasmEmitter.cpp201 encodeULEB128(Info.DataRef.Segment, SubSection.getStream()); in writeSectionContent()
202 encodeULEB128(Info.DataRef.Offset, SubSection.getStream()); in writeSectionContent()
203 encodeULEB128(Info.DataRef.Size, SubSection.getStream()); in writeSectionContent()
H A DWasmYAML.cpp517 IO.mapRequired("Segment", Info.DataRef.Segment); in mapping()
518 IO.mapOptional("Offset", Info.DataRef.Offset, 0u); in mapping()
519 IO.mapRequired("Size", Info.DataRef.Size); in mapping()
/netbsd-src/external/apache2/llvm/dist/llvm/tools/obj2yaml/
H A Dwasm2yaml.cpp130 Info.DataRef = Symbol.DataRef; in dumpCustomSection()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/BinaryFormat/
H A DWasm.h204 WasmDataReference DataRef; member
/netbsd-src/external/apache2/llvm/dist/llvm/lib/MC/
H A DWasmObjectWriter.cpp1116 encodeULEB128(Sym.DataRef.Segment, W->OS); in writeLinkingMetaDataSection()
1117 encodeULEB128(Sym.DataRef.Offset, W->OS); in writeLinkingMetaDataSection()
1118 encodeULEB128(Sym.DataRef.Size, W->OS); in writeLinkingMetaDataSection()
1749 Info.DataRef = DataLocations.find(&WS)->second; in writeOneObject()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/ObjectYAML/
H A DWasmYAML.h163 wasm::WasmDataReference DataRef; member