HomeSort by relevance Sort by last modified time
    Searched defs:RelInfo (Results 1 - 7 of 7) sorted by null

  /external/llvm/include/llvm/MC/
MCSymbolizer.h 46 std::unique_ptr<MCRelocationInfo> RelInfo;
49 /// \brief Construct an MCSymbolizer, taking ownership of \p RelInfo.
50 MCSymbolizer(MCContext &Ctx, std::unique_ptr<MCRelocationInfo> RelInfo)
51 : Ctx(Ctx), RelInfo(std::move(RelInfo)) {
  /external/llvm/lib/ExecutionEngine/RuntimeDyld/
RuntimeDyldMachO.h 70 MachO::any_relocation_info RelInfo =
73 bool IsPCRel = Obj.getAnyRelocationPCRel(RelInfo);
74 unsigned Size = Obj.getAnyRelocationLength(RelInfo);
77 static_cast<MachO::RelocationInfoType>(Obj.getAnyRelocationType(RelInfo));
RuntimeDyldMachO.cpp 95 MachO::any_relocation_info RelInfo =
99 bool IsExternal = Obj.getPlainRelocationExternal(RelInfo);
117 SectionRef Sec = Obj.getAnyRelocationSection(RelInfo);
  /external/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/
RuntimeDyldMachOAArch64.h 252 MachO::any_relocation_info RelInfo =
255 assert(!Obj.isRelocationScattered(RelInfo) && "");
262 if (Obj.getAnyRelocationType(RelInfo) == MachO::ARM64_RELOC_ADDEND) {
263 assert(!Obj.getPlainRelocationExternal(RelInfo));
264 assert(!Obj.getAnyRelocationPCRel(RelInfo));
265 assert(Obj.getAnyRelocationLength(RelInfo) == 2);
266 int64_t RawAddend = Obj.getPlainRelocationSymbolNum(RelInfo);
270 RelInfo = Obj.getRelocation(RelI->getRawDataRefImpl());
284 bool IsExtern = Obj.getPlainRelocationExternal(RelInfo);
RuntimeDyldMachOX86_64.h 40 MachO::any_relocation_info RelInfo =
42 uint32_t RelType = Obj.getAnyRelocationType(RelInfo);
47 assert(!Obj.isRelocationScattered(RelInfo) &&
55 bool IsExtern = Obj.getPlainRelocationExternal(RelInfo);
RuntimeDyldMachOARM.h 59 MachO::any_relocation_info RelInfo =
61 uint32_t RelType = Obj.getAnyRelocationType(RelInfo);
63 if (Obj.isRelocationScattered(RelInfo)) {
RuntimeDyldMachOI386.h 40 MachO::any_relocation_info RelInfo =
42 uint32_t RelType = Obj.getAnyRelocationType(RelInfo);
44 if (Obj.isRelocationScattered(RelInfo)) {
63 // bool IsExtern = Obj.getPlainRelocationExternal(RelInfo);

Completed in 358 milliseconds