Searched refs:DataRef (Results 1 – 9 of 9) sorted by relevance
| /freebsd/contrib/llvm-project/llvm/utils/TableGen/Common/GlobalISel/ |
| H A D | CXXPredicates.cpp | 38 const auto &DataRef = *OwnedData; in get() local 40 return DataRef; in get()
|
| /freebsd/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/contrib/llvm-project/llvm/lib/Object/ |
| H A D | WasmObjectFile.cpp | 55 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 D | WasmYAML.cpp | 527 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 D | WasmEmitter.cpp | 222 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 D | Wasm.h | 479 WasmDataReference DataRef; member
|
| /freebsd/contrib/llvm-project/llvm/lib/MC/ |
| H A D | WasmObjectWriter.cpp | 1158 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 D | GlobalISelCombinerMatchTableEmitter.cpp | |
| /freebsd/contrib/llvm-project/llvm/include/llvm/ObjectYAML/ |
| H A D | WasmYAML.h | 168 wasm::WasmDataReference DataRef; member
|