| /freebsd-12.1/contrib/llvm/lib/Target/ARM/MCTargetDesc/ |
| H A D | ARMMachObjectWriter.cpp | 65 RelocType = unsigned(MachO::ARM_RELOC_VANILLA); in getARMFixupKindMachOInfo() 99 RelocType = unsigned(MachO::ARM_RELOC_BR24); in getARMFixupKindMachOInfo() 121 RelocType = unsigned(MachO::ARM_RELOC_HALF); in getARMFixupKindMachOInfo() 125 RelocType = unsigned(MachO::ARM_RELOC_HALF); in getARMFixupKindMachOInfo() 130 RelocType = unsigned(MachO::ARM_RELOC_HALF); in getARMFixupKindMachOInfo() 134 RelocType = unsigned(MachO::ARM_RELOC_HALF); in getARMFixupKindMachOInfo() 341 switch (RelocType) { in requiresExternRelocation() 384 unsigned RelocType = MachO::ARM_RELOC_VANILLA; in recordRelocation() local 399 if (RelocType == MachO::ARM_RELOC_HALF) in recordRelocation() 421 RelocType != MachO::ARM_RELOC_HALF) in recordRelocation() [all …]
|
| /freebsd-12.1/contrib/llvm/lib/Target/AArch64/MCTargetDesc/ |
| H A D | AArch64MachObjectWriter.cpp | 53 const MCFixup &Fixup, unsigned &RelocType, const MCSymbolRefExpr *Sym, in getAArch64FixupKindMachOInfo() argument 55 RelocType = unsigned(MachO::ARM64_RELOC_UNSIGNED); in getAArch64FixupKindMachOInfo() 71 RelocType = unsigned(MachO::ARM64_RELOC_POINTER_TO_GOT); in getAArch64FixupKindMachOInfo() 76 RelocType = unsigned(MachO::ARM64_RELOC_POINTER_TO_GOT); in getAArch64FixupKindMachOInfo() 89 RelocType = unsigned(MachO::ARM64_RELOC_PAGEOFF12); in getAArch64FixupKindMachOInfo() 92 RelocType = unsigned(MachO::ARM64_RELOC_GOT_LOAD_PAGEOFF12); in getAArch64FixupKindMachOInfo() 95 RelocType = unsigned(MachO::ARM64_RELOC_TLVP_LOAD_PAGEOFF12); in getAArch64FixupKindMachOInfo() 107 RelocType = unsigned(MachO::ARM64_RELOC_PAGE21); in getAArch64FixupKindMachOInfo() 110 RelocType = unsigned(MachO::ARM64_RELOC_GOT_LOAD_PAGE21); in getAArch64FixupKindMachOInfo() 113 RelocType = unsigned(MachO::ARM64_RELOC_TLVP_LOAD_PAGE21); in getAArch64FixupKindMachOInfo() [all …]
|
| /freebsd-12.1/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/ |
| H A D | PPCMachObjectWriter.cpp | 308 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()
|
| /freebsd-12.1/contrib/llvm/tools/lld/ELF/ |
| H A D | Thunks.cpp | 174 bool isCompatibleWith(uint32_t RelocType) const override; 184 bool isCompatibleWith(uint32_t RelocType) const override; 536 bool ARMV5ABSLongThunk::isCompatibleWith(uint32_t RelocType) const { in isCompatibleWith() 538 return RelocType != R_ARM_THM_JUMP19 && RelocType != R_ARM_THM_JUMP24; in isCompatibleWith() 561 bool ARMV5PILongThunk::isCompatibleWith(uint32_t RelocType) const { in isCompatibleWith() 563 return RelocType != R_ARM_THM_JUMP19 && RelocType != R_ARM_THM_JUMP24; in isCompatibleWith()
|
| H A D | Target.h | 57 virtual bool needsThunk(RelExpr Expr, RelType RelocType,
|
| /freebsd-12.1/contrib/llvm/tools/llvm-readobj/ |
| H A D | WasmDumper.cpp | 72 uint64_t RelocType = Reloc.getType(); in printRelocation() local 82 switch (RelocType) { in printRelocation() 95 W.printNumber("Type", RelocTypeName, RelocType); in printRelocation()
|
| H A D | COFFDumper.cpp | 1363 uint64_t RelocType = Reloc.getType(); in printRelocation() local 1379 W.printNumber("Type", RelocName, RelocType); in printRelocation()
|
| /freebsd-12.1/contrib/llvm/include/llvm/ObjectYAML/ |
| H A D | WasmYAML.h | 36 LLVM_YAML_STRONG_TYPEDEF(uint32_t, RelocType) 108 RelocType Type; 503 template <> struct ScalarEnumerationTraits<WasmYAML::RelocType> { in LLVM_YAML_IS_SEQUENCE_VECTOR() 504 static void enumeration(IO &IO, WasmYAML::RelocType &Kind); in LLVM_YAML_IS_SEQUENCE_VECTOR()
|
| /freebsd-12.1/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/ |
| H A D | RuntimeDyldMachOI386.h | 153 uint32_t RelocType = Obj.getAnyRelocationType(RE); in processSECTDIFFRelocation() local 200 RelocationEntry R(SectionID, Offset, RelocType, Addend, SectionAID, in processSECTDIFFRelocation()
|
| H A D | RuntimeDyldMachOARM.h | 359 uint32_t RelocType = MachO.getAnyRelocationType(RE); in processHALFSECTDIFFRelocation() local 416 RelocationEntry R(SectionID, Offset, RelocType, Addend, SectionAID, in processHALFSECTDIFFRelocation()
|
| H A D | RuntimeDyldMachOAArch64.h | 520 static const char *getRelocName(uint32_t RelocType) { in getRelocName() argument 521 switch (RelocType) { in getRelocName()
|
| /freebsd-12.1/contrib/llvm/lib/ObjectYAML/ |
| H A D | COFFYAML.cpp | 376 template <typename RelocType> 378 NType(IO &) : Type(RelocType(0)) {} in NType() 379 NType(IO &, uint16_t T) : Type(RelocType(T)) {} in NType() 383 RelocType Type;
|
| H A D | WasmYAML.cpp | 530 void ScalarEnumerationTraits<WasmYAML::RelocType>::enumeration( in enumeration() 531 IO &IO, WasmYAML::RelocType &Type) { in enumeration()
|
| /freebsd-12.1/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/ |
| H A D | RuntimeDyldMachO.cpp | 66 uint32_t RelocType = Obj.getAnyRelocationType(RE); in processScatteredVANILLA() local 88 RelocationEntry R(SectionID, Offset, RelocType, Addend, IsPCRel, Size); in processScatteredVANILLA()
|