Searched defs:RelInfo (Results 1 - 11 of 11) sorted by relevance

/external/llvm/include/llvm/MC/MCDisassembler/
H A DMCSymbolizer.h46 std::unique_ptr<MCRelocationInfo> RelInfo; member in class:llvm::MCSymbolizer
49 /// \brief Construct an MCSymbolizer, taking ownership of \p RelInfo.
50 MCSymbolizer(MCContext &Ctx, std::unique_ptr<MCRelocationInfo> RelInfo) argument
51 : Ctx(Ctx), RelInfo(std::move(RelInfo)) {
H A DMCExternalSymbolizer.h42 std::unique_ptr<MCRelocationInfo> RelInfo,
45 : MCSymbolizer(Ctx, std::move(RelInfo)), GetOpInfo(getOpInfo),
41 MCExternalSymbolizer(MCContext &Ctx, std::unique_ptr<MCRelocationInfo> RelInfo, LLVMOpInfoCallback getOpInfo, LLVMSymbolLookupCallback symbolLookUp, void *disInfo) argument
/external/llvm/lib/Target/AArch64/Disassembler/
H A DAArch64ExternalSymbolizer.h24 std::unique_ptr<MCRelocationInfo> RelInfo,
28 : MCExternalSymbolizer(Ctx, std::move(RelInfo), GetOpInfo, SymbolLookUp,
23 AArch64ExternalSymbolizer(MCContext &Ctx, std::unique_ptr<MCRelocationInfo> RelInfo, LLVMOpInfoCallback GetOpInfo, LLVMSymbolLookupCallback SymbolLookUp, void *DisInfo) argument
H A DAArch64Disassembler.cpp234 std::unique_ptr<MCRelocationInfo> &&RelInfo) {
235 return new llvm::AArch64ExternalSymbolizer(*Ctx, move(RelInfo), GetOpInfo,
231 createAArch64ExternalSymbolizer(const Triple &TT, LLVMOpInfoCallback GetOpInfo, LLVMSymbolLookupCallback SymbolLookUp, void *DisInfo, MCContext *Ctx, std::unique_ptr<MCRelocationInfo> &&RelInfo) argument
/external/llvm/lib/MC/MCDisassembler/
H A DMCExternalSymbolizer.cpp139 Expr = RelInfo->createExprForCAPIVariantKind(Expr, SymbolicOp.VariantKind);
194 std::unique_ptr<MCRelocationInfo> &&RelInfo) {
197 return new MCExternalSymbolizer(*Ctx, std::move(RelInfo), GetOpInfo,
191 createMCSymbolizer(const Triple &TT, LLVMOpInfoCallback GetOpInfo, LLVMSymbolLookupCallback SymbolLookUp, void *DisInfo, MCContext *Ctx, std::unique_ptr<MCRelocationInfo> &&RelInfo) argument
/external/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DRuntimeDyldMachO.h70 MachO::any_relocation_info RelInfo = local
73 bool IsPCRel = Obj.getAnyRelocationPCRel(RelInfo);
74 unsigned Size = Obj.getAnyRelocationLength(RelInfo);
77 static_cast<MachO::RelocationInfoType>(Obj.getAnyRelocationType(RelInfo));
H A DRuntimeDyldMachO.cpp101 MachO::any_relocation_info RelInfo = local
105 bool IsExternal = Obj.getPlainRelocationExternal(RelInfo);
124 SectionRef Sec = Obj.getAnyRelocationSection(RelInfo);
/external/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/
H A DRuntimeDyldMachOAArch64.h252 MachO::any_relocation_info RelInfo = variable
255 if (Obj.isRelocationScattered(RelInfo))
264 if (Obj.getAnyRelocationType(RelInfo) == MachO::ARM64_RELOC_ADDEND) {
265 assert(!Obj.getPlainRelocationExternal(RelInfo));
266 assert(!Obj.getAnyRelocationPCRel(RelInfo));
267 assert(Obj.getAnyRelocationLength(RelInfo) == 2);
268 int64_t RawAddend = Obj.getPlainRelocationSymbolNum(RelInfo);
272 RelInfo = Obj.getRelocation(RelI->getRawDataRefImpl());
275 if (Obj.getAnyRelocationType(RelInfo) == MachO::ARM64_RELOC_SUBTRACTOR)
292 bool IsExtern = Obj.getPlainRelocationExternal(RelInfo);
[all...]
H A DRuntimeDyldMachOARM.h60 MachO::any_relocation_info RelInfo = variable
62 uint32_t RelType = Obj.getAnyRelocationType(RelInfo);
64 if (Obj.isRelocationScattered(RelInfo)) {
H A DRuntimeDyldMachOI386.h41 MachO::any_relocation_info RelInfo = variable
43 uint32_t RelType = Obj.getAnyRelocationType(RelInfo);
45 if (Obj.isRelocationScattered(RelInfo)) {
80 // bool IsExtern = Obj.getPlainRelocationExternal(RelInfo);
H A DRuntimeDyldMachOX86_64.h41 MachO::any_relocation_info RelInfo = variable
43 uint32_t RelType = Obj.getAnyRelocationType(RelInfo);
48 assert(!Obj.isRelocationScattered(RelInfo) &&
59 bool IsExtern = Obj.getPlainRelocationExternal(RelInfo);
177 MachO::any_relocation_info RelInfo = local
180 bool AIsExternal = BaseObj.getPlainRelocationExternal(RelInfo);
190 SectionRef SecB = Obj.getAnyRelocationSection(RelInfo);
205 RelInfo = Obj.getRelocation(RelI->getRawDataRefImpl());
207 bool BIsExternal = BaseObj.getPlainRelocationExternal(RelInfo);
216 SectionRef SecA = Obj.getAnyRelocationSection(RelInfo);
[all...]

Completed in 3449 milliseconds