Home
last modified time | relevance | path

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

/external/llvm/lib/Target/ARM/MCTargetDesc/
DARMMachObjectWriter.cpp48 unsigned RelocType, const MCSymbolData *SD,
64 static bool getARMFixupKindMachOInfo(unsigned Kind, unsigned &RelocType, in getARMFixupKindMachOInfo() argument
66 RelocType = unsigned(MachO::ARM_RELOC_VANILLA); in getARMFixupKindMachOInfo()
99 RelocType = unsigned(MachO::ARM_RELOC_BR24); in getARMFixupKindMachOInfo()
106 RelocType = unsigned(MachO::ARM_THUMB_RELOC_BR22); in getARMFixupKindMachOInfo()
113 RelocType = unsigned(MachO::ARM_THUMB_RELOC_BR22); in getARMFixupKindMachOInfo()
127 RelocType = unsigned(MachO::ARM_RELOC_HALF); in getARMFixupKindMachOInfo()
131 RelocType = unsigned(MachO::ARM_RELOC_HALF); in getARMFixupKindMachOInfo()
136 RelocType = unsigned(MachO::ARM_RELOC_HALF); in getARMFixupKindMachOInfo()
140 RelocType = unsigned(MachO::ARM_RELOC_HALF); in getARMFixupKindMachOInfo()
[all …]
/external/llvm/include/llvm/Object/
DRelocVisitor.h49 RelocToApply visit(uint32_t RelocType, RelocationRef R, uint64_t SecAddr = 0,
52 switch (RelocType) {
68 switch (RelocType) {
80 switch (RelocType) {
90 switch (RelocType) {
98 switch (RelocType) {
106 switch (RelocType) {
116 switch (RelocType) {
126 switch (RelocType) {
136 switch (RelocType) {
[all …]
/external/llvm/lib/Target/AArch64/MCTargetDesc/
DAArch64MachObjectWriter.cpp27 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()
97 RelocType = unsigned(MachO::ARM64_RELOC_PAGE21); in getAArch64FixupKindMachOInfo()
100 RelocType = unsigned(MachO::ARM64_RELOC_GOT_LOAD_PAGE21); in getAArch64FixupKindMachOInfo()
[all …]
/external/llvm/lib/Target/PowerPC/MCTargetDesc/
DPPCMachObjectWriter.cpp311 const unsigned RelocType = getRelocType(Target, FK, IsPCRel); in RecordPPCRelocation() local
318 RelocType != MachO::PPC_RELOC_BR24 && in RecordPPCRelocation()
319 RelocType != MachO::PPC_RELOC_BR14) { in RecordPPCRelocation()
335 unsigned Type = RelocType; in RecordPPCRelocation()
/external/llvm/lib/Object/
DCOFFYAML.cpp280 template <typename RelocType>
282 NType(IO &) : Type(RelocType(0)) {} in NType()
283 NType(IO &, uint16_t T) : Type(RelocType(T)) {} in NType()
285 RelocType Type;
/external/llvm/lib/ExecutionEngine/RuntimeDyld/
DRuntimeDyldMachO.cpp558 uint32_t RelocType = MachO->getAnyRelocationType(RE); in processSECTDIFFRelocation() local
602 RelocationEntry R(SectionID, Offset, RelocType, 0, in processSECTDIFFRelocation()
623 uint32_t RelocType = MachO->getAnyRelocationType(RE); in processI386ScatteredVANILLA() local
645 RelocationEntry R(SectionID, Offset, RelocType, Addend, in processI386ScatteredVANILLA()
/external/llvm/lib/Target/X86/
DX86CodeEmitter.cpp425 unsigned RelocType = Is64BitMode ? in emitDisplacementField() local
435 emitGlobalAddress(RelocOp->getGlobal(), RelocType, RelocOp->getOffset(), in emitDisplacementField()
438 emitExternalSymbolAddress(RelocOp->getSymbolName(), RelocType); in emitDisplacementField()
440 emitConstPoolAddress(RelocOp->getIndex(), RelocType, in emitDisplacementField()
444 emitJumpTableAddress(RelocOp->getIndex(), RelocType, Adj); in emitDisplacementField()
/external/llvm/tools/llvm-readobj/
DCOFFDumper.cpp683 uint64_t RelocType; in printRelocation() local
689 if (error(Reloc.getType(RelocType))) in printRelocation()
702 W.printNumber("Type", RelocName, RelocType); in printRelocation()