Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/lib/Target/ARM/MCTargetDesc/
H A DARMMachObjectWriter.cpp65 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 DAArch64MachObjectWriter.cpp53 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 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()
/freebsd-12.1/contrib/llvm/tools/lld/ELF/
H A DThunks.cpp174 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 DTarget.h57 virtual bool needsThunk(RelExpr Expr, RelType RelocType,
/freebsd-12.1/contrib/llvm/tools/llvm-readobj/
H A DWasmDumper.cpp72 uint64_t RelocType = Reloc.getType(); in printRelocation() local
82 switch (RelocType) { in printRelocation()
95 W.printNumber("Type", RelocTypeName, RelocType); in printRelocation()
H A DCOFFDumper.cpp1363 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 DWasmYAML.h36 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 DRuntimeDyldMachOI386.h153 uint32_t RelocType = Obj.getAnyRelocationType(RE); in processSECTDIFFRelocation() local
200 RelocationEntry R(SectionID, Offset, RelocType, Addend, SectionAID, in processSECTDIFFRelocation()
H A DRuntimeDyldMachOARM.h359 uint32_t RelocType = MachO.getAnyRelocationType(RE); in processHALFSECTDIFFRelocation() local
416 RelocationEntry R(SectionID, Offset, RelocType, Addend, SectionAID, in processHALFSECTDIFFRelocation()
H A DRuntimeDyldMachOAArch64.h520 static const char *getRelocName(uint32_t RelocType) { in getRelocName() argument
521 switch (RelocType) { in getRelocName()
/freebsd-12.1/contrib/llvm/lib/ObjectYAML/
H A DCOFFYAML.cpp376 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 DWasmYAML.cpp530 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 DRuntimeDyldMachO.cpp66 uint32_t RelocType = Obj.getAnyRelocationType(RE); in processScatteredVANILLA() local
88 RelocationEntry R(SectionID, Offset, RelocType, Addend, IsPCRel, Size); in processScatteredVANILLA()