/freebsd/contrib/llvm-project/llvm/lib/Target/ARM/MCTargetDesc/ |
H A D | ARMMachObjectWriter.cpp | 43 const MCFragment &Fragment, unsigned RelocType, 56 static bool getARMFixupKindMachOInfo(unsigned Kind, unsigned &RelocType, in getARMFixupKindMachOInfo() argument 58 RelocType = unsigned(MachO::ARM_RELOC_VANILLA); in getARMFixupKindMachOInfo() 92 RelocType = unsigned(MachO::ARM_RELOC_BR24); in getARMFixupKindMachOInfo() 100 RelocType = unsigned(MachO::ARM_THUMB_RELOC_BR22); in getARMFixupKindMachOInfo() 114 RelocType = unsigned(MachO::ARM_RELOC_HALF); in getARMFixupKindMachOInfo() 118 RelocType = unsigned(MachO::ARM_RELOC_HALF); in getARMFixupKindMachOInfo() 123 RelocType = unsigned(MachO::ARM_RELOC_HALF); in getARMFixupKindMachOInfo() 127 RelocType = unsigned(MachO::ARM_RELOC_HALF); in getARMFixupKindMachOInfo() 317 unsigned RelocType, in requiresExternRelocation() argument [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/MCTargetDesc/ |
H A D | AArch64MachObjectWriter.cpp | 35 bool getAArch64FixupKindMachOInfo(const MCFixup &Fixup, unsigned &RelocType, 51 const MCFixup &Fixup, unsigned &RelocType, const MCSymbolRefExpr *Sym, in getAArch64FixupKindMachOInfo() argument 53 RelocType = unsigned(MachO::ARM64_RELOC_UNSIGNED); in getAArch64FixupKindMachOInfo() 69 RelocType = unsigned(MachO::ARM64_RELOC_POINTER_TO_GOT); in getAArch64FixupKindMachOInfo() 74 RelocType = unsigned(MachO::ARM64_RELOC_POINTER_TO_GOT); in getAArch64FixupKindMachOInfo() 87 RelocType = unsigned(MachO::ARM64_RELOC_PAGEOFF12); in getAArch64FixupKindMachOInfo() 90 RelocType = unsigned(MachO::ARM64_RELOC_GOT_LOAD_PAGEOFF12); in getAArch64FixupKindMachOInfo() 93 RelocType = unsigned(MachO::ARM64_RELOC_TLVP_LOAD_PAGEOFF12); in getAArch64FixupKindMachOInfo() 105 RelocType = unsigned(MachO::ARM64_RELOC_PAGE21); in getAArch64FixupKindMachOInfo() 108 RelocType = unsigned(MachO::ARM64_RELOC_GOT_LOAD_PAGE21); in getAArch64FixupKindMachOInfo() [all …]
|
/freebsd/contrib/llvm-project/llvm/tools/llvm-readobj/ |
H A D | WasmDumper.cpp | 86 uint64_t RelocType = Reloc.getType(); in printRelocation() local 95 bool HasAddend = wasm::relocTypeHasAddend(static_cast<uint32_t>(RelocType)); in printRelocation() 99 W.printNumber("Type", RelocTypeName, RelocType); in printRelocation()
|
H A D | COFFDumper.cpp | 1585 uint64_t RelocType = Reloc.getType(); in printRelocation() local 1603 W.printNumber("Type", RelocName, RelocType); in printRelocation()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/ObjectYAML/ |
H A D | WasmYAML.h | 35 LLVM_YAML_STRONG_TYPEDEF(uint32_t, RelocType) 115 RelocType Type; 588 template <> struct ScalarEnumerationTraits<WasmYAML::RelocType> { in LLVM_YAML_IS_SEQUENCE_VECTOR() 589 static void enumeration(IO &IO, WasmYAML::RelocType &Kind); in LLVM_YAML_IS_SEQUENCE_VECTOR()
|
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/ |
H A D | RuntimeDyldMachOI386.h | 154 uint32_t RelocType = Obj.getAnyRelocationType(RE); in processSECTDIFFRelocation() local 201 RelocationEntry R(SectionID, Offset, RelocType, Addend, SectionAID, in processSECTDIFFRelocation()
|
H A D | RuntimeDyldMachOARM.h | 360 uint32_t RelocType = MachO.getAnyRelocationType(RE); in processHALFSECTDIFFRelocation() local 417 RelocationEntry R(SectionID, Offset, RelocType, Addend, SectionAID, in processHALFSECTDIFFRelocation()
|
H A D | RuntimeDyldMachOAArch64.h | 519 static const char *getRelocName(uint32_t RelocType) { in getRelocName() argument 520 switch (RelocType) { in getRelocName()
|
/freebsd/contrib/llvm-project/llvm/lib/ObjectYAML/ |
H A D | COFFYAML.cpp | 384 template <typename RelocType> 386 NType(IO &) : Type(RelocType(0)) {} in NType() 387 NType(IO &, uint16_t T) : Type(RelocType(T)) {} in NType() 391 RelocType Type;
|
H A D | WasmYAML.cpp | 649 void ScalarEnumerationTraits<WasmYAML::RelocType>::enumeration( in enumeration() 650 IO &IO, WasmYAML::RelocType &Type) { in enumeration()
|
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/RuntimeDyld/ |
H A D | RuntimeDyldMachO.cpp | 65 uint32_t RelocType = Obj.getAnyRelocationType(RE); in processScatteredVANILLA() local 87 RelocationEntry R(SectionID, Offset, RelocType, Addend, IsPCRel, Size); in processScatteredVANILLA()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/ |
H A D | FunctionLoweringInfo.h | 101 enum RelocType { enum
|
/freebsd/contrib/llvm-project/llvm/tools/llvm-objdump/ |
H A D | llvm-objdump.cpp | 2418 XCOFF::RelocationType RelocType; in disassembleObject() local 2424 RelocType = Reloc->Type; in disassembleObject() 2430 RelocType = Reloc->Type; in disassembleObject() 2433 RelocType == XCOFF::R_BA || RelocType == XCOFF::R_BR || in disassembleObject() 2434 RelocType == XCOFF::R_RBA || RelocType == XCOFF::R_RBR; in disassembleObject()
|
/freebsd/contrib/llvm-project/llvm/lib/Object/ |
H A D | MachOObjectFile.cpp | 5407 bool MachOObjectFile::isMachOPairedReloc(uint64_t RelocType, uint64_t Arch) { in isMachOPairedReloc() argument 5410 return RelocType == MachO::GENERIC_RELOC_SECTDIFF || in isMachOPairedReloc() 5411 RelocType == MachO::GENERIC_RELOC_LOCAL_SECTDIFF; in isMachOPairedReloc() 5413 return RelocType == MachO::X86_64_RELOC_SUBTRACTOR; in isMachOPairedReloc() 5416 return RelocType == MachO::ARM_RELOC_SECTDIFF || in isMachOPairedReloc() 5417 RelocType == MachO::ARM_RELOC_LOCAL_SECTDIFF || in isMachOPairedReloc() 5418 RelocType == MachO::ARM_RELOC_HALF || in isMachOPairedReloc() 5419 RelocType == MachO::ARM_RELOC_HALF_SECTDIFF; in isMachOPairedReloc() 5421 return RelocType == MachO::ARM64_RELOC_SUBTRACTOR; in isMachOPairedReloc()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/Object/ |
H A D | MachO.h | 420 static bool isMachOPairedReloc(uint64_t RelocType, uint64_t Arch);
|