forked from OSchip/llvm-project
106 lines
2.6 KiB
ArmAsm
106 lines
2.6 KiB
ArmAsm
// REQUIRES: arm
|
|
// RUN: llvm-mc %s -o %t.o -filetype=obj -triple=armv7a-linux-gnueabi
|
|
// RUN: ld.lld %t.o -o %t.so -shared
|
|
// RUN: llvm-readobj -S --dyn-relocations %t.so | FileCheck --check-prefix=SEC %s
|
|
// RUN: llvm-objdump -d -triple=armv7a-linux-gnueabi %t.so | FileCheck %s
|
|
|
|
// Test the handling of the global-dynamic TLS model. Dynamic Loader finds
|
|
// module index R_ARM_TLS_DTPMOD32 and the offset within the module
|
|
// R_ARM_TLS_DTPOFF32. One of the variables is hidden which permits relaxation
|
|
// to local dynamic
|
|
|
|
.text
|
|
.syntax unified
|
|
.globl func
|
|
.p2align 2
|
|
.type func,%function
|
|
func:
|
|
.L0:
|
|
nop
|
|
.L1:
|
|
nop
|
|
.L2:
|
|
nop
|
|
|
|
.p2align 2
|
|
// Generate R_ARM_TLS_GD32 relocations
|
|
// Allocates a pair of GOT entries dynamically relocated by R_ARM_TLS_DTPMOD32
|
|
// and R_ARM_TLS_DTPOFF32 respectively. The literal contains the offset of the
|
|
// first GOT entry from the place
|
|
.Lt0: .word x(TLSGD) + (. - .L0 - 8)
|
|
.Lt1: .word y(TLSGD) + (. - .L1 - 8)
|
|
.Lt2: .word z(TLSGD) + (. - .L2 - 8)
|
|
|
|
// __thread int x = 10
|
|
// __thread int y;
|
|
// __thread int z __attribute((visibility("hidden")))
|
|
|
|
.hidden z
|
|
.globl z
|
|
.globl y
|
|
.globl x
|
|
|
|
.section .tbss,"awT",%nobits
|
|
.p2align 2
|
|
.TLSSTART:
|
|
.type z, %object
|
|
z:
|
|
.space 4
|
|
.type y, %object
|
|
y:
|
|
.space 4
|
|
.section .tdata,"awT",%progbits
|
|
.p2align 2
|
|
.type x, %object
|
|
x:
|
|
.word 10
|
|
|
|
// SEC: Name: .tdata
|
|
// SEC-NEXT: Type: SHT_PROGBITS
|
|
// SEC-NEXT: Flags [
|
|
// SEC-NEXT: SHF_ALLOC
|
|
// SEC-NEXT: SHF_TLS
|
|
// SEC-NEXT: SHF_WRITE
|
|
// SEC-NEXT: ]
|
|
// SEC-NEXT: Address: 0x2210
|
|
// SEC: Size: 4
|
|
// SEC: Name: .tbss
|
|
// SEC-NEXT: Type: SHT_NOBITS
|
|
// SEC-NEXT: Flags [
|
|
// SEC-NEXT: SHF_ALLOC
|
|
// SEC-NEXT: SHF_TLS
|
|
// SEC-NEXT: SHF_WRITE
|
|
// SEC-NEXT: ]
|
|
// SEC-NEXT: Address: 0x2214
|
|
// SEC: Size: 8
|
|
|
|
// SEC: Name: .got
|
|
// SEC-NEXT: Type: SHT_PROGBITS
|
|
// SEC-NEXT: Flags [
|
|
// SEC-NEXT: SHF_ALLOC
|
|
// SEC-NEXT: SHF_WRITE
|
|
// SEC-NEXT: ]
|
|
// SEC-NEXT: Address: 0x2264
|
|
// SEC: Size: 24
|
|
|
|
// SEC: Dynamic Relocations {
|
|
// SEC-NEXT: 0x2274 R_ARM_TLS_DTPMOD32 -
|
|
// SEC-NEXT: 0x2264 R_ARM_TLS_DTPMOD32 x
|
|
// SEC-NEXT: 0x2268 R_ARM_TLS_DTPOFF32 x
|
|
// SEC-NEXT: 0x226C R_ARM_TLS_DTPMOD32 y
|
|
// SEC-NEXT: 0x2270 R_ARM_TLS_DTPOFF32 y
|
|
|
|
|
|
// CHECK-LABEL: 000011f8 func:
|
|
// CHECK-NEXT: 11f8: 00 f0 20 e3 nop
|
|
// CHECK-NEXT: 11fc: 00 f0 20 e3 nop
|
|
// CHECK-NEXT: 1200: 00 f0 20 e3 nop
|
|
|
|
// (0x2264 - 0x1204) + (0x1204 - 0x11f8 - 8) = 0x1064
|
|
// CHECK: 1204: 64 10 00 00
|
|
// (0x226c - 0x1204) + (0x1204 - 0x11fc - 8) = 0x1068
|
|
// CHECK-NEXT: 1208: 68 10 00 00
|
|
// (0x2274 - 0x1204) + (0x1204 - 0x1200 - 8) = 0x106c
|
|
// CHECK-NEXT: 120c: 6c 10 00 00
|
|
|