mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-17 05:56:36 +00:00

This permits an AArch64AbsLongThunk to be used in an environment where unaligned accesses are disabled. The AArch64AbsLongThunk does a load of an 8-byte address. When unaligned accesses are disabled this address must be 8-byte aligned. The vast majority of AArch64 systems will have unaligned accesses enabled in userspace. However, after a reset, before the MMU has been enabled, all memory accesses are to "device" memory, which requires aligned accesses. In systems with multi-stage boot loaders a thunk may be required to a later stage before the MMU has been enabled. As we only want to increase the alignment when the ldr is used we delay the increase in thunk alignment until we know we are going to write an ldr. We also need to account for the ThunkSection alignment increase when this happens. In some of the test updates, particularly those with shared CHECK lines with position independent thunks it was easier to ensure that the thunks started at an 8-byte aligned address in all cases.
35 lines
1.1 KiB
ArmAsm
35 lines
1.1 KiB
ArmAsm
// REQUIRES: aarch64
|
|
// RUN: llvm-mc -filetype=obj -triple=aarch64 %s -o %t.o
|
|
// RUN: echo 'SECTIONS { \
|
|
// RUN: .text.1 0x10000 : { *(.text.1) } \
|
|
// RUN: .text.2 0x200000000 : AT(0x20000) { *(.text.2) } \
|
|
// RUN: } ' > %t.script
|
|
// RUN: ld.lld --script %t.script %t.o -o %t
|
|
// RUN: llvm-objdump -d --no-show-raw-insn --print-imm-hex %t | FileCheck %s
|
|
|
|
// The word should be an offset to the range extension thunk.
|
|
// CHECK-LABEL: <_start>:
|
|
// CHECK-NEXT: 10000: 08 00 00 00 .word 0x00000008
|
|
|
|
// The thunk redirects to the address of callee.
|
|
// CHECK-LABEL: <__AArch64AbsLongThunk_callee>:
|
|
// CHECK-NEXT: 10008: ldr x16, 0x10010 <__AArch64AbsLongThunk_callee+0x8>
|
|
// CHECK-NEXT: br x16
|
|
// CHECK-NEXT: 00 00 00 00 .word 0x00000000
|
|
// CHECK-NEXT: 02 00 00 00 .word 0x00000002
|
|
|
|
// CHECK-LABEL: <callee>:
|
|
// CHECK-NEXT: 200000000: ret
|
|
|
|
.section .text.1, "ax", %progbits
|
|
.global _start
|
|
.type _start, %function
|
|
_start:
|
|
.word callee@PLT - .
|
|
|
|
.section .text.2, "ax", %progbits
|
|
.global callee
|
|
.type callee, %function
|
|
callee:
|
|
ret
|