Files
clang-p2996/lld/test/ELF/aarch64-relative.s
Fangrui Song f66b767abe [ELF][AArch64] Allow PT_LOAD to have overlapping p_offset ranges
Ported the D64906 technique to AArch64. It deletes 3 alignments at
PT_LOAD boundaries for the default case: the size of an aarch64 binary
decreases by at most 192kb.

If `sh_addralign(.tdata) < sh_addralign(.tbss)`,
we can potentially make `p_vaddr(PT_TLS)%p_align(PT_TLS) != 0`.

ld.so that are known to have problems if p_vaddr%p_align!=0:

* musl<=1.1.22
* FreeBSD 13.0-CURRENT (and before) rtld-elf arm64

New test aarch64-tls-vaddr-align.s checks that our workaround makes p_vaddr%p_align = 0.

Reviewed By: ruiu

Differential Revision: https://reviews.llvm.org/D64930

llvm-svn: 369344
2019-08-20 08:34:56 +00:00

28 lines
1.1 KiB
ArmAsm

// REQUIRES: aarch64
// RUN: llvm-mc -filetype=obj -triple=aarch64-unknown-freebsd %s -o %t.o
// RUN: ld.lld %t.o -o %t.so -shared
// RUN: llvm-readobj -r %t.so | FileCheck %s
.p2align 4
adr x8, .Lfoo // R_AARCH64_ADR_PREL_LO21
adrp x8, .Lfoo // R_AARCH64_ADR_PREL_PG_HI21
strb w9, [x8, :lo12:.Lfoo] // R_AARCH64_LDST8_ABS_LO12_NC
ldr h17, [x19, :lo12:.Lfoo] // R_AARCH64_LDST16_ABS_LO12_NC
ldr w0, [x8, :lo12:.Lfoo] // R_AARCH64_LDST32_ABS_LO12_NC
ldr x0, [x8, :lo12:.Lfoo] // R_AARCH64_LDST64_ABS_LO12_NC
ldr q20, [x19, #:lo12:.Lfoo] // R_AARCH64_LDST128_ABS_LO12_NC
add x0, x0, :lo12:.Lfoo // R_AARCH64_ADD_ABS_LO12_NC
bl .Lfoo // R_AARCH64_CALL26
b .Lfoo // R_AARCH64_JUMP26
beq .Lfoo // R_AARCH64_CONDBR19
.Lbranch:
tbz x1, 7, .Lbranch // R_AARCH64_TSTBR14
.data
.Lfoo:
.rodata
.long .Lfoo - .
.xword .Lfoo - . // R_AARCH64_PREL64
// CHECK: Relocations [
// CHECK-NEXT: ]