Index: lib/ExecutionEngine/RuntimeDyld/RuntimeDyldELF.cpp =================================================================== --- lib/ExecutionEngine/RuntimeDyld/RuntimeDyldELF.cpp +++ lib/ExecutionEngine/RuntimeDyld/RuntimeDyldELF.cpp @@ -335,6 +335,13 @@ static_cast(Result & 0xffffffffU); break; } + case ELF::R_AARCH64_PREL64: { + uint64_t *TargetPtr = + reinterpret_cast(Section.getAddressWithOffset(Offset)); + uint64_t Result = Value + Addend - FinalAddress; + support::ulittle64_t::ref{TargetPtr} = Result; + break; + } case ELF::R_AARCH64_CALL26: // fallthrough case ELF::R_AARCH64_JUMP26: { // Operation: S+A-P. Set Call or B immediate value to bits fff_fffc of the Index: lib/MC/MCObjectFileInfo.cpp =================================================================== --- lib/MC/MCObjectFileInfo.cpp +++ lib/MC/MCObjectFileInfo.cpp @@ -279,6 +279,8 @@ case Triple::mips64el: FDECFIEncoding = dwarf::DW_EH_PE_sdata8; break; + case Triple::aarch64: + case Triple::aarch64_be: case Triple::x86_64: FDECFIEncoding = dwarf::DW_EH_PE_pcrel | ((CMModel == CodeModel::Large) ? dwarf::DW_EH_PE_sdata8 Index: test/ExecutionEngine/RuntimeDyld/AArch64/ELF_ARM64_large-relocations.s =================================================================== --- /dev/null +++ test/ExecutionEngine/RuntimeDyld/AArch64/ELF_ARM64_large-relocations.s @@ -0,0 +1,17 @@ +# RUN: llvm-mc -triple=arm64-none-linux-gnu -code-model=large -filetype=obj -o %T/reloc.o %s +# RUN: llvm-rtdyld -triple=arm64-none-linux-gnu -verify -map-section reloc.o,.eh_frame=0x10000 -map-section reloc.o,.text=0xffff000000000000 -check=%s %T/reloc.o + + .text + .globl g + .p2align 2 + .type g,@function +g: + .cfi_startproc + mov x0, xzr + ret + .Lfunc_end0: + .size g, .Lfunc_end0-g + .cfi_endproc + +# Skip the CIE and load the 8 bytes PC begin pointer +# rtdyld-check: *{8}(section_addr(reloc.o, .eh_frame) + (*{4}(section_addr(reloc.o, .eh_frame))) + 0xc) = g - (section_addr(reloc.o, .eh_frame) + (*{4}(section_addr(reloc.o, .eh_frame))) + 0xc)