35 lines · plain
1// REQUIRES: aarch642 3// RUN: llvm-mc -filetype=obj -triple=aarch64-unknown-linux %s -o %t.o4// RUN: ld.lld -shared --pack-dyn-relocs=android %t.o -o %t.so5// RUN: llvm-readobj -r %t.so | FileCheck %s6 7// Bug 37841: Symbol::getVA must work on TLS symbols during the layout loop in8// finalizeSections.9 10 .global foo11foo:12 adrp x0, :tlsdesc:tlsvar113 ldr x1, [x0, :tlsdesc_lo12:tlsvar1]14 add x0, x0, :tlsdesc_lo12:tlsvar115 .tlsdesccall tlsvar116 17// Also test an atypical IE access from a shared object to a local TLS symbol.18 19 .global bar20bar:21 adrp x0, :gottprel:tlsvar222 ldr x0, [x0, #:gottprel_lo12:tlsvar2]23 24 .section .tdata,"awT",@progbits25 .space 0x123426tlsvar1:27 .word 4228tlsvar2:29 .word 1730 31// CHECK: Section ({{.+}}) .rela.dyn {32// CHECK-NEXT: R_AARCH64_TLSDESC - 0x123433// CHECK-NEXT: R_AARCH64_TLS_TPREL64 - 0x123834// CHECK-NEXT: }35