Searched refs:DataRef (Results 1 – 9 of 9) sorted by relevance
| /openbsd-src/gnu/llvm/llvm/tools/llvm-readobj/ |
| H A D | WasmDumper.cpp | 238 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()
|
| /openbsd-src/gnu/llvm/lld/wasm/ |
| H A D | InputFiles.cpp | 588 InputChunk *seg = segments[sym.Info.DataRef.Segment]; in createDefined() 589 auto offset = sym.Info.DataRef.Offset; in createDefined() 590 auto size = sym.Info.DataRef.Size; in createDefined()
|
| /openbsd-src/gnu/llvm/llvm/lib/Object/ |
| H A D | WasmObjectFile.cpp | 45 Out << ", Segment=" << Info.DataRef.Segment; in print() 46 Out << ", Offset=" << Info.DataRef.Offset; in print() 47 Out << ", Size=" << Info.DataRef.Size; in print() 722 Info.DataRef = wasm::WasmDataReference{Index, Offset, Size}; in parseLinkingSectionSymtab() 1618 uint32_t SegmentIndex = Sym.Info.DataRef.Segment; in getWasmSymbolValue() 1623 return Segment.Offset.Inst.Value.Int32 + Sym.Info.DataRef.Offset; in getWasmSymbolValue() 1625 return Segment.Offset.Inst.Value.Int64 + Sym.Info.DataRef.Offset; in getWasmSymbolValue()
|
| /openbsd-src/gnu/llvm/llvm/lib/ObjectYAML/ |
| H A D | WasmEmitter.cpp | 214 encodeULEB128(Info.DataRef.Segment, SubSection.getStream()); in writeSectionContent() 215 encodeULEB128(Info.DataRef.Offset, SubSection.getStream()); in writeSectionContent() 216 encodeULEB128(Info.DataRef.Size, SubSection.getStream()); in writeSectionContent()
|
| H A D | WasmYAML.cpp | 520 IO.mapRequired("Segment", Info.DataRef.Segment); in mapping() 521 IO.mapOptional("Offset", Info.DataRef.Offset, 0u); in mapping() 522 IO.mapRequired("Size", Info.DataRef.Size); in mapping()
|
| /openbsd-src/gnu/llvm/llvm/tools/obj2yaml/ |
| H A D | wasm2yaml.cpp | 134 Info.DataRef = Symbol.DataRef; in dumpCustomSection()
|
| /openbsd-src/gnu/llvm/llvm/include/llvm/BinaryFormat/ |
| H A D | Wasm.h | 218 WasmDataReference DataRef; member
|
| /openbsd-src/gnu/llvm/llvm/lib/MC/ |
| H A D | WasmObjectWriter.cpp | 1182 encodeULEB128(Sym.DataRef.Segment, W->OS); in writeLinkingMetaDataSection() 1183 encodeULEB128(Sym.DataRef.Offset, W->OS); in writeLinkingMetaDataSection() 1184 encodeULEB128(Sym.DataRef.Size, W->OS); in writeLinkingMetaDataSection() 1812 Info.DataRef = DataLocations.find(&WS)->second; in writeOneObject()
|
| /openbsd-src/gnu/llvm/llvm/include/llvm/ObjectYAML/ |
| H A D | WasmYAML.h | 167 wasm::WasmDataReference DataRef; member
|