Searched refs:DataRef (Results 1 – 7 of 7) sorted by relevance
| /freebsd-13.1/contrib/llvm-project/llvm/tools/llvm-readobj/ |
| H A D | WasmDumper.cpp | 233 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()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Object/ |
| H A D | WasmObjectFile.cpp | 47 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() 1525 uint32_t SegmentIndex = Sym.Info.DataRef.Segment; in getWasmSymbolValue() 1528 return Segment.Offset.Value.Int32 + Sym.Info.DataRef.Offset; in getWasmSymbolValue() 1530 return Segment.Offset.Value.Int64 + Sym.Info.DataRef.Offset; in getWasmSymbolValue()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/ObjectYAML/ |
| H A D | WasmYAML.cpp | 517 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()
|
| H A D | WasmEmitter.cpp | 201 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()
|
| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/BinaryFormat/ |
| H A D | Wasm.h | 204 WasmDataReference DataRef; member
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/MC/ |
| H A D | WasmObjectWriter.cpp | 1127 encodeULEB128(Sym.DataRef.Segment, W->OS); in writeLinkingMetaDataSection() 1128 encodeULEB128(Sym.DataRef.Offset, W->OS); in writeLinkingMetaDataSection() 1129 encodeULEB128(Sym.DataRef.Size, W->OS); in writeLinkingMetaDataSection() 1760 Info.DataRef = DataLocations.find(&WS)->second; in writeOneObject()
|
| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/ObjectYAML/ |
| H A D | WasmYAML.h | 163 wasm::WasmDataReference DataRef; member
|