Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/utils/TableGen/Common/GlobalISel/
H A DCXXPredicates.cpp38 const auto &DataRef = *OwnedData; in get() local
40 return DataRef; in get()
/freebsd/contrib/llvm-project/llvm/tools/llvm-readobj/
H A DWasmDumper.cpp238 W.printHex("Offset", Symbol.Info.DataRef.Offset); in printSymbol()
239 W.printHex("Segment", Symbol.Info.DataRef.Segment); in printSymbol()
240 W.printHex("Size", Symbol.Info.DataRef.Size); in printSymbol()
/freebsd/contrib/llvm-project/llvm/lib/Object/
H A DWasmObjectFile.cpp55 Out << ", Segment=" << Info.DataRef.Segment; in print()
56 Out << ", Offset=" << Info.DataRef.Offset; in print()
57 Out << ", Size=" << Info.DataRef.Size; in print()
601 Info.DataRef = wasm::WasmDataReference{ in parseNameSection()
839 Info.DataRef = wasm::WasmDataReference{Index, Offset, Size}; in parseLinkingSectionSymtab()
1489 Info.DataRef = wasm::WasmDataReference{0, Offset, 0}; in parseExportSection()
1877 uint32_t SegmentIndex = Sym.Info.DataRef.Segment; in getWasmSymbolValue()
1882 return Segment.Offset.Inst.Value.Int32 + Sym.Info.DataRef.Offset; in getWasmSymbolValue()
1884 return Segment.Offset.Inst.Value.Int64 + Sym.Info.DataRef.Offset; in getWasmSymbolValue()
1886 return Sym.Info.DataRef.Offset; in getWasmSymbolValue()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DWasmYAML.cpp527 IO.mapRequired("Segment", Info.DataRef.Segment); in mapping()
529 IO.mapOptional("Offset", Info.DataRef.Offset, 0u); in mapping()
530 IO.mapRequired("Size", Info.DataRef.Size); in mapping()
H A DWasmEmitter.cpp222 encodeULEB128(Info.DataRef.Segment, SubSection.getStream()); in writeSectionContent()
223 encodeULEB128(Info.DataRef.Offset, SubSection.getStream()); in writeSectionContent()
224 encodeULEB128(Info.DataRef.Size, SubSection.getStream()); in writeSectionContent()
/freebsd/contrib/llvm-project/llvm/include/llvm/BinaryFormat/
H A DWasm.h479 WasmDataReference DataRef; member
/freebsd/contrib/llvm-project/llvm/lib/MC/
H A DWasmObjectWriter.cpp1158 encodeULEB128(Sym.DataRef.Segment, W->OS); in writeLinkingMetaDataSection()
1159 encodeULEB128(Sym.DataRef.Offset, W->OS); in writeLinkingMetaDataSection()
1160 encodeULEB128(Sym.DataRef.Size, W->OS); in writeLinkingMetaDataSection()
1812 Info.DataRef = DataLocations.find(&WS)->second; in writeOneObject()
/freebsd/contrib/llvm-project/llvm/utils/TableGen/
H A DGlobalISelCombinerMatchTableEmitter.cpp
/freebsd/contrib/llvm-project/llvm/include/llvm/ObjectYAML/
H A DWasmYAML.h168 wasm::WasmDataReference DataRef; member