Searched refs:DataRef (Results 1 – 9 of 9) sorted by relevance
| /freebsd-14.2/contrib/llvm-project/llvm/utils/TableGen/GlobalISel/ |
| H A D | CXXPredicates.cpp | 38 const auto &DataRef = *OwnedData; in get() local 40 return DataRef; in get()
|
| /freebsd-14.2/contrib/llvm-project/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()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Object/ |
| H A D | WasmObjectFile.cpp | 56 Out << ", Segment=" << Info.DataRef.Segment; in print() 57 Out << ", Offset=" << Info.DataRef.Offset; in print() 58 Out << ", Size=" << Info.DataRef.Size; in print() 745 Info.DataRef = wasm::WasmDataReference{Index, Offset, Size}; in parseLinkingSectionSymtab() 1340 Info.DataRef = wasm::WasmDataReference{0, Offset, 0}; in parseExportSection() 1696 uint32_t SegmentIndex = Sym.Info.DataRef.Segment; in getWasmSymbolValue() 1701 return Segment.Offset.Inst.Value.Int32 + Sym.Info.DataRef.Offset; in getWasmSymbolValue() 1703 return Segment.Offset.Inst.Value.Int64 + Sym.Info.DataRef.Offset; in getWasmSymbolValue() 1705 return Sym.Info.DataRef.Offset; in getWasmSymbolValue()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/ObjectYAML/ |
| H A D | WasmYAML.cpp | 522 IO.mapRequired("Segment", Info.DataRef.Segment); in mapping() 524 IO.mapOptional("Offset", Info.DataRef.Offset, 0u); in mapping() 525 IO.mapRequired("Size", Info.DataRef.Size); in mapping()
|
| 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()
|
| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/BinaryFormat/ |
| H A D | Wasm.h | 413 WasmDataReference DataRef; member
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/MC/ |
| H A D | WasmObjectWriter.cpp | 1184 encodeULEB128(Sym.DataRef.Segment, W->OS); in writeLinkingMetaDataSection() 1185 encodeULEB128(Sym.DataRef.Offset, W->OS); in writeLinkingMetaDataSection() 1186 encodeULEB128(Sym.DataRef.Size, W->OS); in writeLinkingMetaDataSection() 1813 Info.DataRef = DataLocations.find(&WS)->second; in writeOneObject()
|
| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/ObjectYAML/ |
| H A D | WasmYAML.h | 167 wasm::WasmDataReference DataRef; member
|
| /freebsd-14.2/contrib/llvm-project/llvm/tools/llvm-nm/ |
| H A D | llvm-nm.cpp | 1860 S.Size = WasmSym.Info.DataRef.Size; in getSymbolNamesFromObject()
|