From: Tim Northover Date: Sat, 4 May 2013 20:14:14 +0000 (+0000) Subject: AArch64: implement 64-bit absolute relocation in MCJIT X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=d52eaae157e661f280d0a71aabc060602ffc4424;p=oota-llvm.git AArch64: implement 64-bit absolute relocation in MCJIT This is about the simplest relocation, but surprisingly rare in actual code. It occurs in (for example) the MCJIT test test-ptr-reloc.ll. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@181134 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldELF.cpp b/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldELF.cpp index 487e503e91e..80231a7c040 100644 --- a/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldELF.cpp +++ b/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldELF.cpp @@ -289,6 +289,11 @@ void RuntimeDyldELF::resolveAArch64Relocation(const SectionEntry &Section, default: llvm_unreachable("Relocation type not implemented yet!"); break; + case ELF::R_AARCH64_ABS64: { + uint64_t *TargetPtr = reinterpret_cast(Section.Address + Offset); + *TargetPtr = Value + Addend; + break; + } case ELF::R_AARCH64_PREL32: { // test-shift.ll (.eh_frame) uint64_t Result = Value + Addend - FinalAddress; assert(static_cast(Result) >= INT32_MIN &&