Home
last modified time | relevance | path

Searched refs:RelInfo (Results 1 – 15 of 15) sorted by relevance

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/
DRuntimeDyldMachOX86_64.h40 MachO::any_relocation_info RelInfo = in processRelocationRef() local
42 uint32_t RelType = Obj.getAnyRelocationType(RelInfo); in processRelocationRef()
47 assert(!Obj.isRelocationScattered(RelInfo) && in processRelocationRef()
58 bool IsExtern = Obj.getPlainRelocationExternal(RelInfo); in processRelocationRef()
176 MachO::any_relocation_info RelInfo = in processSubtractRelocation() local
179 bool AIsExternal = BaseObj.getPlainRelocationExternal(RelInfo); in processSubtractRelocation()
189 SectionRef SecB = Obj.getAnyRelocationSection(RelInfo); in processSubtractRelocation()
204 RelInfo = Obj.getRelocation(RelI->getRawDataRefImpl()); in processSubtractRelocation()
206 bool BIsExternal = BaseObj.getPlainRelocationExternal(RelInfo); in processSubtractRelocation()
215 SectionRef SecA = Obj.getAnyRelocationSection(RelInfo); in processSubtractRelocation()
DRuntimeDyldMachOAArch64.h279 MachO::any_relocation_info RelInfo = in processRelocationRef() local
282 if (Obj.isRelocationScattered(RelInfo)) in processRelocationRef()
291 if (Obj.getAnyRelocationType(RelInfo) == MachO::ARM64_RELOC_ADDEND) { in processRelocationRef()
292 assert(!Obj.getPlainRelocationExternal(RelInfo)); in processRelocationRef()
293 assert(!Obj.getAnyRelocationPCRel(RelInfo)); in processRelocationRef()
294 assert(Obj.getAnyRelocationLength(RelInfo) == 2); in processRelocationRef()
295 int64_t RawAddend = Obj.getPlainRelocationSymbolNum(RelInfo); in processRelocationRef()
299 RelInfo = Obj.getRelocation(RelI->getRawDataRefImpl()); in processRelocationRef()
302 if (Obj.getAnyRelocationType(RelInfo) == MachO::ARM64_RELOC_SUBTRACTOR) in processRelocationRef()
332 bool IsExtern = Obj.getPlainRelocationExternal(RelInfo); in processRelocationRef()
DRuntimeDyldMachOI386.h40 MachO::any_relocation_info RelInfo = in processRelocationRef() local
42 uint32_t RelType = Obj.getAnyRelocationType(RelInfo); in processRelocationRef()
44 if (Obj.isRelocationScattered(RelInfo)) { in processRelocationRef()
DRuntimeDyldMachOARM.h107 MachO::any_relocation_info RelInfo = in processRelocationRef() local
109 uint32_t RelType = Obj.getAnyRelocationType(RelInfo); in processRelocationRef()
114 if (Obj.getPlainRelocationExternal(RelInfo)) { in processRelocationRef()
133 if (Obj.isRelocationScattered(RelInfo)) { in processRelocationRef()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/MC/MCDisassembler/
DMCSymbolizer.h41 std::unique_ptr<MCRelocationInfo> RelInfo; variable
45 MCSymbolizer(MCContext &Ctx, std::unique_ptr<MCRelocationInfo> RelInfo) in MCSymbolizer() argument
46 : Ctx(Ctx), RelInfo(std::move(RelInfo)) { in MCSymbolizer()
DMCExternalSymbolizer.h41 std::unique_ptr<MCRelocationInfo> RelInfo, in MCExternalSymbolizer() argument
44 : MCSymbolizer(Ctx, std::move(RelInfo)), GetOpInfo(getOpInfo), in MCExternalSymbolizer()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/RuntimeDyld/
DRuntimeDyldMachO.h69 MachO::any_relocation_info RelInfo = in getRelocationEntry() local
72 bool IsPCRel = Obj.getAnyRelocationPCRel(RelInfo); in getRelocationEntry()
73 unsigned Size = Obj.getAnyRelocationLength(RelInfo); in getRelocationEntry()
76 static_cast<MachO::RelocationInfoType>(Obj.getAnyRelocationType(RelInfo)); in getRelocationEntry()
DRuntimeDyldMachO.cpp103 MachO::any_relocation_info RelInfo = in getRelocationValueRef() local
107 bool IsExternal = Obj.getPlainRelocationExternal(RelInfo); in getRelocationValueRef()
126 SectionRef Sec = Obj.getAnyRelocationSection(RelInfo); in getRelocationValueRef()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AArch64/Disassembler/
DAArch64ExternalSymbolizer.h23 std::unique_ptr<MCRelocationInfo> RelInfo, in AArch64ExternalSymbolizer() argument
27 : MCExternalSymbolizer(Ctx, std::move(RelInfo), GetOpInfo, SymbolLookUp, in AArch64ExternalSymbolizer()
DAArch64Disassembler.cpp275 std::unique_ptr<MCRelocationInfo> &&RelInfo) { in createAArch64ExternalSymbolizer() argument
276 return new AArch64ExternalSymbolizer(*Ctx, std::move(RelInfo), GetOpInfo, in createAArch64ExternalSymbolizer()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/MC/MCDisassembler/
DMCExternalSymbolizer.cpp138 Expr = RelInfo->createExprForCAPIVariantKind(Expr, SymbolicOp.VariantKind); in tryAddingSymbolicOperand()
193 std::unique_ptr<MCRelocationInfo> &&RelInfo) { in createMCSymbolizer() argument
196 return new MCExternalSymbolizer(*Ctx, std::move(RelInfo), GetOpInfo, in createMCSymbolizer()
DDisassembler.cpp87 std::unique_ptr<MCRelocationInfo> RelInfo( in LLVMCreateDisasmCPUFeatures() local
89 if (!RelInfo) in LLVMCreateDisasmCPUFeatures()
93 TT, GetOpInfo, SymbolLookUp, DisInfo, Ctx.get(), std::move(RelInfo))); in LLVMCreateDisasmCPUFeatures()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/Disassembler/
DAMDGPUDisassembler.h155 AMDGPUSymbolizer(MCContext &Ctx, std::unique_ptr<MCRelocationInfo> &&RelInfo, in AMDGPUSymbolizer() argument
157 : MCSymbolizer(Ctx, std::move(RelInfo)), DisInfo(disInfo) {} in AMDGPUSymbolizer()
DAMDGPUDisassembler.cpp1245 std::unique_ptr<MCRelocationInfo> &&RelInfo) { in createAMDGPUSymbolizer() argument
1246 return new AMDGPUSymbolizer(*Ctx, std::move(RelInfo), DisInfo); in createAMDGPUSymbolizer()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/
DTargetRegistry.h114 std::unique_ptr<MCRelocationInfo> &&RelInfo);
197 std::unique_ptr<MCRelocationInfo> &&RelInfo);
586 std::unique_ptr<MCRelocationInfo> &&RelInfo) const { in createMCSymbolizer() argument
590 std::move(RelInfo)); in createMCSymbolizer()