Home
last modified time | relevance | path

Searched refs:RelocType (Results 1 – 9 of 9) sorted by relevance

/external/llvm/include/llvm/Object/
DRelocVisitor.h52 RelocToApply visit(uint32_t RelocType, RelocationRef R, uint64_t Value = 0) {
54 return visitELF(RelocType, R, Value);
56 return visitCOFF(RelocType, R, Value);
58 return visitMachO(RelocType, R, Value);
70 RelocToApply visitELF(uint32_t RelocType, RelocationRef R, uint64_t Value) { in visitELF() argument
74 switch (RelocType) { in visitELF()
90 switch (RelocType) { in visitELF()
101 switch (RelocType) { in visitELF()
112 switch (RelocType) { in visitELF()
122 switch (RelocType) { in visitELF()
[all …]
/external/llvm/lib/Target/ARM/MCTargetDesc/
DARMMachObjectWriter.cpp47 const MCFragment &Fragment, unsigned RelocType,
61 static bool getARMFixupKindMachOInfo(unsigned Kind, unsigned &RelocType, in getARMFixupKindMachOInfo() argument
63 RelocType = unsigned(MachO::ARM_RELOC_VANILLA); in getARMFixupKindMachOInfo()
97 RelocType = unsigned(MachO::ARM_RELOC_BR24); in getARMFixupKindMachOInfo()
105 RelocType = unsigned(MachO::ARM_THUMB_RELOC_BR22); in getARMFixupKindMachOInfo()
119 RelocType = unsigned(MachO::ARM_RELOC_HALF); in getARMFixupKindMachOInfo()
123 RelocType = unsigned(MachO::ARM_RELOC_HALF); in getARMFixupKindMachOInfo()
128 RelocType = unsigned(MachO::ARM_RELOC_HALF); in getARMFixupKindMachOInfo()
132 RelocType = unsigned(MachO::ARM_RELOC_HALF); in getARMFixupKindMachOInfo()
313 unsigned RelocType, in requiresExternRelocation() argument
[all …]
/external/llvm/lib/Target/AArch64/MCTargetDesc/
DAArch64MachObjectWriter.cpp28 bool getAArch64FixupKindMachOInfo(const MCFixup &Fixup, unsigned &RelocType,
44 const MCFixup &Fixup, unsigned &RelocType, const MCSymbolRefExpr *Sym, in getAArch64FixupKindMachOInfo() argument
46 RelocType = unsigned(MachO::ARM64_RELOC_UNSIGNED); in getAArch64FixupKindMachOInfo()
62 RelocType = unsigned(MachO::ARM64_RELOC_POINTER_TO_GOT); in getAArch64FixupKindMachOInfo()
67 RelocType = unsigned(MachO::ARM64_RELOC_POINTER_TO_GOT); in getAArch64FixupKindMachOInfo()
80 RelocType = unsigned(MachO::ARM64_RELOC_PAGEOFF12); in getAArch64FixupKindMachOInfo()
83 RelocType = unsigned(MachO::ARM64_RELOC_GOT_LOAD_PAGEOFF12); in getAArch64FixupKindMachOInfo()
86 RelocType = unsigned(MachO::ARM64_RELOC_TLVP_LOAD_PAGEOFF12); in getAArch64FixupKindMachOInfo()
99 RelocType = unsigned(MachO::ARM64_RELOC_PAGE21); in getAArch64FixupKindMachOInfo()
102 RelocType = unsigned(MachO::ARM64_RELOC_GOT_LOAD_PAGE21); in getAArch64FixupKindMachOInfo()
[all …]
/external/llvm/lib/Target/PowerPC/MCTargetDesc/
DPPCMachObjectWriter.cpp308 const unsigned RelocType = getRelocType(Target, FK, IsPCRel); in RecordPPCRelocation() local
315 RelocType != MachO::PPC_RELOC_BR24 && in RecordPPCRelocation()
316 RelocType != MachO::PPC_RELOC_BR14) { in RecordPPCRelocation()
331 unsigned Type = RelocType; in RecordPPCRelocation()
/external/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/
DRuntimeDyldMachOI386.h137 uint32_t RelocType = Obj.getAnyRelocationType(RE); in processSECTDIFFRelocation() local
176 RelocationEntry R(SectionID, Offset, RelocType, Addend, SectionAID, in processSECTDIFFRelocation()
DRuntimeDyldMachOARM.h223 uint32_t RelocType = MachO.getAnyRelocationType(RE); in processHALFSECTDIFFRelocation() local
265 RelocationEntry R(SectionID, Offset, RelocType, Addend, SectionAID, in processHALFSECTDIFFRelocation()
/external/llvm/lib/Object/
DCOFFYAML.cpp315 template <typename RelocType>
317 NType(IO &) : Type(RelocType(0)) {} in NType()
318 NType(IO &, uint16_t T) : Type(RelocType(T)) {} in NType()
320 RelocType Type;
/external/llvm/lib/ExecutionEngine/RuntimeDyld/
DRuntimeDyldMachO.cpp63 uint32_t RelocType = Obj.getAnyRelocationType(RE); in processScatteredVANILLA() local
81 RelocationEntry R(SectionID, Offset, RelocType, Addend, IsPCRel, Size); in processScatteredVANILLA()
/external/llvm/tools/llvm-readobj/
DCOFFDumper.cpp829 uint64_t RelocType = Reloc.getType(); in printRelocation() local
843 W.printNumber("Type", RelocName, RelocType); in printRelocation()