Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/utils/TableGen/Common/GlobalISel/
H A DCXXPredicates.cpp38 const auto &DataRef = *OwnedData; in get() local
40 return DataRef; in get()
/freebsd/contrib/llvm-project/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()
/freebsd/contrib/llvm-project/llvm/lib/Object/
H A DWasmObjectFile.cpp58 Out << ", Segment=" << Info.DataRef.Segment; in print()
59 Out << ", Offset=" << Info.DataRef.Offset; in print()
60 Out << ", Size=" << Info.DataRef.Size; in print()
591 Info.DataRef = wasm::WasmDataReference{ in parseNameSection()
829 Info.DataRef = wasm::WasmDataReference{Index, Offset, Size}; in parseLinkingSectionSymtab()
1476 Info.DataRef = wasm::WasmDataReference{0, Offset, 0}; in parseExportSection()
1856 uint32_t SegmentIndex = Sym.Info.DataRef.Segment; in getWasmSymbolValue()
1861 return Segment.Offset.Inst.Value.Int32 + Sym.Info.DataRef.Offset; in getWasmSymbolValue()
1863 return Segment.Offset.Inst.Value.Int64 + Sym.Info.DataRef.Offset; in getWasmSymbolValue()
1865 return Sym.Info.DataRef.Offset; in getWasmSymbolValue()
[all …]
/freebsd/contrib/llvm-project/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.cpp525 IO.mapRequired("Segment", Info.DataRef.Segment); in mapping()
527 IO.mapOptional("Offset", Info.DataRef.Offset, 0u); in mapping()
528 IO.mapRequired("Size", Info.DataRef.Size); in mapping()
/freebsd/contrib/llvm-project/llvm/include/llvm/BinaryFormat/
H A DWasm.h460 WasmDataReference DataRef; member
/freebsd/contrib/llvm-project/llvm/lib/MC/
H A DWasmObjectWriter.cpp1181 encodeULEB128(Sym.DataRef.Segment, W->OS); in writeLinkingMetaDataSection()
1182 encodeULEB128(Sym.DataRef.Offset, W->OS); in writeLinkingMetaDataSection()
1183 encodeULEB128(Sym.DataRef.Size, W->OS); in writeLinkingMetaDataSection()
1805 Info.DataRef = DataLocations.find(&WS)->second; in writeOneObject()
/freebsd/contrib/llvm-project/llvm/utils/TableGen/
H A DGlobalISelCombinerMatchTableEmitter.cpp
/freebsd/contrib/llvm-project/llvm/include/llvm/ObjectYAML/
H A DWasmYAML.h167 wasm::WasmDataReference DataRef; member
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DExpr.h4909 StringRef DataRef = EExpr->Data->BinaryData->getBytes(); variable
4911 llvm::APInt(N->getValue().getBitWidth(), DataRef[CurOffset],