2016-06-05 07:33:31 +08:00
|
|
|
// REQUIRES: aarch64
|
|
|
|
// RUN: llvm-mc %s -o %t.o -filetype=obj -triple=aarch64-pc-linux
|
|
|
|
// RUN: llvm-mc %p/Inputs/aarch64-tls-gdie.s -o %t2.o -filetype=obj -triple=aarch64-pc-linux
|
|
|
|
// RUN: ld.lld %t2.o -o %t2.so -shared
|
2017-10-06 17:37:44 +08:00
|
|
|
// RUN: ld.lld --hash-style=sysv %t.o %t2.so -o %t
|
2016-06-05 07:33:31 +08:00
|
|
|
// RUN: llvm-readobj -s %t | FileCheck --check-prefix=SEC %s
|
|
|
|
// RUN: llvm-objdump -d %t | FileCheck %s
|
|
|
|
|
|
|
|
.globl _start
|
|
|
|
_start:
|
|
|
|
nop
|
|
|
|
adrp x0, :tlsdesc:a
|
|
|
|
ldr x1, [x0, :tlsdesc_lo12:a]
|
|
|
|
add x0, x0, :tlsdesc_lo12:a
|
|
|
|
.tlsdesccall a
|
|
|
|
blr x1
|
|
|
|
|
|
|
|
// SEC: Name: .got
|
|
|
|
// SEC-NEXT: Type: SHT_PROGBITS
|
|
|
|
// SEC-NEXT: Flags [
|
|
|
|
// SEC-NEXT: SHF_ALLOC
|
|
|
|
// SEC-NEXT: SHF_WRITE
|
|
|
|
// SEC-NEXT: ]
|
Align AArch64 and i386 image base to superpage
Summary:
As for x86_64, the default image base for AArch64 and i386 should be
aligned to a superpage appropriate for the architecture.
On AArch64, this is 2 MiB, on i386 it is 4 MiB.
Reviewers: emaste, grimar, javed.absar, espindola, ruiu, peter.smith, srhines, rprichard
Reviewed By: ruiu, peter.smith
Subscribers: jfb, markj, arichardson, krytarowski, kristof.beyls, llvm-commits
Differential Revision: https://reviews.llvm.org/D50297
llvm-svn: 342746
2018-09-22 00:58:13 +08:00
|
|
|
// SEC-NEXT: Address: 0x2200B0
|
2016-06-05 07:33:31 +08:00
|
|
|
|
Align AArch64 and i386 image base to superpage
Summary:
As for x86_64, the default image base for AArch64 and i386 should be
aligned to a superpage appropriate for the architecture.
On AArch64, this is 2 MiB, on i386 it is 4 MiB.
Reviewers: emaste, grimar, javed.absar, espindola, ruiu, peter.smith, srhines, rprichard
Reviewed By: ruiu, peter.smith
Subscribers: jfb, markj, arichardson, krytarowski, kristof.beyls, llvm-commits
Differential Revision: https://reviews.llvm.org/D50297
llvm-svn: 342746
2018-09-22 00:58:13 +08:00
|
|
|
// page(0x2200B0) - page(0x20004) = 65536
|
2016-06-05 07:33:31 +08:00
|
|
|
// 0x0B0 = 176
|
|
|
|
|
|
|
|
// CHECK: _start:
|
Align AArch64 and i386 image base to superpage
Summary:
As for x86_64, the default image base for AArch64 and i386 should be
aligned to a superpage appropriate for the architecture.
On AArch64, this is 2 MiB, on i386 it is 4 MiB.
Reviewers: emaste, grimar, javed.absar, espindola, ruiu, peter.smith, srhines, rprichard
Reviewed By: ruiu, peter.smith
Subscribers: jfb, markj, arichardson, krytarowski, kristof.beyls, llvm-commits
Differential Revision: https://reviews.llvm.org/D50297
llvm-svn: 342746
2018-09-22 00:58:13 +08:00
|
|
|
// CHECK-NEXT: 210000: {{.*}} nop
|
|
|
|
// CHECK-NEXT: 210004: {{.*}} adrp x0, #65536
|
|
|
|
// CHECK-NEXT: 210008: {{.*}} ldr x0, [x0, #176]
|
|
|
|
// CHECK-NEXT: 21000c: {{.*}} nop
|
|
|
|
// CHECK-NEXT: 210010: {{.*}} nop
|