Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/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()
/openbsd-src/gnu/llvm/lld/wasm/
H A DInputFiles.cpp588 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 DWasmObjectFile.cpp45 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 DWasmEmitter.cpp214 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 DWasmYAML.cpp520 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 Dwasm2yaml.cpp134 Info.DataRef = Symbol.DataRef; in dumpCustomSection()
/openbsd-src/gnu/llvm/llvm/include/llvm/BinaryFormat/
H A DWasm.h218 WasmDataReference DataRef; member
/openbsd-src/gnu/llvm/llvm/lib/MC/
H A DWasmObjectWriter.cpp1182 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 DWasmYAML.h167 wasm::WasmDataReference DataRef; member