Home
last modified time | relevance | path

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

/external/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/
DRuntimeDyldMachOX86_64.h41 MachO::any_relocation_info RelInfo = in processRelocationRef() local
43 uint32_t RelType = Obj.getAnyRelocationType(RelInfo); in processRelocationRef()
48 assert(!Obj.isRelocationScattered(RelInfo) && in processRelocationRef()
59 bool IsExtern = Obj.getPlainRelocationExternal(RelInfo); in processRelocationRef()
177 MachO::any_relocation_info RelInfo = in processSubtractRelocation() local
180 bool AIsExternal = BaseObj.getPlainRelocationExternal(RelInfo); in processSubtractRelocation()
190 SectionRef SecB = Obj.getAnyRelocationSection(RelInfo); in processSubtractRelocation()
205 RelInfo = Obj.getRelocation(RelI->getRawDataRefImpl()); in processSubtractRelocation()
207 bool BIsExternal = BaseObj.getPlainRelocationExternal(RelInfo); in processSubtractRelocation()
216 SectionRef SecA = Obj.getAnyRelocationSection(RelInfo); in processSubtractRelocation()
DRuntimeDyldMachOAArch64.h252 MachO::any_relocation_info RelInfo = in processRelocationRef() local
255 if (Obj.isRelocationScattered(RelInfo)) in processRelocationRef()
264 if (Obj.getAnyRelocationType(RelInfo) == MachO::ARM64_RELOC_ADDEND) { in processRelocationRef()
265 assert(!Obj.getPlainRelocationExternal(RelInfo)); in processRelocationRef()
266 assert(!Obj.getAnyRelocationPCRel(RelInfo)); in processRelocationRef()
267 assert(Obj.getAnyRelocationLength(RelInfo) == 2); in processRelocationRef()
268 int64_t RawAddend = Obj.getPlainRelocationSymbolNum(RelInfo); in processRelocationRef()
272 RelInfo = Obj.getRelocation(RelI->getRawDataRefImpl()); in processRelocationRef()
275 if (Obj.getAnyRelocationType(RelInfo) == MachO::ARM64_RELOC_SUBTRACTOR) in processRelocationRef()
292 bool IsExtern = Obj.getPlainRelocationExternal(RelInfo); in processRelocationRef()
DRuntimeDyldMachOI386.h41 MachO::any_relocation_info RelInfo = in processRelocationRef() local
43 uint32_t RelType = Obj.getAnyRelocationType(RelInfo); in processRelocationRef()
45 if (Obj.isRelocationScattered(RelInfo)) { in processRelocationRef()
DRuntimeDyldMachOARM.h60 MachO::any_relocation_info RelInfo = in processRelocationRef() local
62 uint32_t RelType = Obj.getAnyRelocationType(RelInfo); in processRelocationRef()
64 if (Obj.isRelocationScattered(RelInfo)) { in processRelocationRef()
/external/llvm/include/llvm/MC/MCDisassembler/
DMCSymbolizer.h46 std::unique_ptr<MCRelocationInfo> RelInfo; variable
50 MCSymbolizer(MCContext &Ctx, std::unique_ptr<MCRelocationInfo> RelInfo) in MCSymbolizer() argument
51 : Ctx(Ctx), RelInfo(std::move(RelInfo)) { in MCSymbolizer()
DMCExternalSymbolizer.h42 std::unique_ptr<MCRelocationInfo> RelInfo, in MCExternalSymbolizer() argument
45 : MCSymbolizer(Ctx, std::move(RelInfo)), GetOpInfo(getOpInfo), in MCExternalSymbolizer()
/external/llvm/lib/ExecutionEngine/RuntimeDyld/
DRuntimeDyldMachO.h70 MachO::any_relocation_info RelInfo = in getRelocationEntry() local
73 bool IsPCRel = Obj.getAnyRelocationPCRel(RelInfo); in getRelocationEntry()
74 unsigned Size = Obj.getAnyRelocationLength(RelInfo); in getRelocationEntry()
77 static_cast<MachO::RelocationInfoType>(Obj.getAnyRelocationType(RelInfo)); in getRelocationEntry()
DRuntimeDyldMachO.cpp101 MachO::any_relocation_info RelInfo = in getRelocationValueRef() local
105 bool IsExternal = Obj.getPlainRelocationExternal(RelInfo); in getRelocationValueRef()
124 SectionRef Sec = Obj.getAnyRelocationSection(RelInfo); in getRelocationValueRef()
/external/llvm/lib/Target/AArch64/Disassembler/
DAArch64ExternalSymbolizer.h24 std::unique_ptr<MCRelocationInfo> RelInfo, in AArch64ExternalSymbolizer() argument
28 : MCExternalSymbolizer(Ctx, std::move(RelInfo), GetOpInfo, SymbolLookUp, in AArch64ExternalSymbolizer()
DAArch64Disassembler.cpp234 std::unique_ptr<MCRelocationInfo> &&RelInfo) { in createAArch64ExternalSymbolizer() argument
235 return new llvm::AArch64ExternalSymbolizer(*Ctx, move(RelInfo), GetOpInfo, in createAArch64ExternalSymbolizer()
/external/llvm/lib/MC/MCDisassembler/
DMCExternalSymbolizer.cpp139 Expr = RelInfo->createExprForCAPIVariantKind(Expr, SymbolicOp.VariantKind); in tryAddingSymbolicOperand()
194 std::unique_ptr<MCRelocationInfo> &&RelInfo) { in createMCSymbolizer() argument
197 return new MCExternalSymbolizer(*Ctx, std::move(RelInfo), GetOpInfo, in createMCSymbolizer()
DDisassembler.cpp74 std::unique_ptr<MCRelocationInfo> RelInfo( in LLVMCreateDisasmCPUFeatures() local
76 if (!RelInfo) in LLVMCreateDisasmCPUFeatures()
80 TT, GetOpInfo, SymbolLookUp, DisInfo, Ctx, std::move(RelInfo))); in LLVMCreateDisasmCPUFeatures()
/external/llvm/include/llvm/Support/
DTargetRegistry.h77 std::unique_ptr<MCRelocationInfo> &&RelInfo);
156 std::unique_ptr<MCRelocationInfo> &&RelInfo);
525 std::unique_ptr<MCRelocationInfo> &&RelInfo) const { in createMCSymbolizer() argument
529 std::move(RelInfo)); in createMCSymbolizer()
/external/llvm/tools/llvm-objdump/
DMachODump.cpp6448 std::unique_ptr<MCRelocationInfo> RelInfo( in DisassembleMachO() local
6450 if (RelInfo) { in DisassembleMachO()
6453 &SymbolizerInfo, &Ctx, std::move(RelInfo))); in DisassembleMachO()