
This patch adds support for some new relocation models to the ARM backend: * Read-only position independence (ROPI): Code and read-only data is accessed PC-relative. The offsets between all code and RO data sections are known at static link time. This does not affect read-write data. * Read-write position independence (RWPI): Read-write data is accessed relative to the static base register (r9). The offsets between all writeable data sections are known at static link time. This does not affect read-only data. These two modes are independent (they specify how different objects should be addressed), so they can be used individually or together. They are otherwise the same as the "static" relocation model, and are not compatible with SysV-style PIC using a global offset table. These modes are normally used by bare-metal systems or systems with small real-time operating systems. They are designed to avoid the need for a dynamic linker, the only initialisation required is setting r9 to an appropriate value for RWPI code. I have only added support to SelectionDAG, not FastISel, because FastISel is currently disabled for bare-metal targets where these modes would be used. Differential Revision: https://reviews.llvm.org/D23195 llvm-svn: 278015
310 lines
10 KiB
LLVM
310 lines
10 KiB
LLVM
; RUN: llc -relocation-model=static -mtriple=armv7a--none-eabi < %s | FileCheck %s --check-prefix=CHECK --check-prefix=ARM_RO_ABS --check-prefix=ARM_RW_ABS
|
|
; RUN: llc -relocation-model=ropi -mtriple=armv7a--none-eabi < %s | FileCheck %s --check-prefix=CHECK --check-prefix=ARM_RO_PC --check-prefix=ARM_RW_ABS
|
|
; RUN: llc -relocation-model=rwpi -mtriple=armv7a--none-eabi < %s | FileCheck %s --check-prefix=CHECK --check-prefix=ARM_RO_ABS --check-prefix=ARM_RW_SB
|
|
; RUN: llc -relocation-model=ropi-rwpi -mtriple=armv7a--none-eabi < %s | FileCheck %s --check-prefix=CHECK --check-prefix=ARM_RO_PC --check-prefix=ARM_RW_SB
|
|
|
|
; RUN: llc -relocation-model=static -mtriple=thumbv7m--none-eabi < %s | FileCheck %s --check-prefix=CHECK --check-prefix=THUMB2_RO_ABS --check-prefix=THUMB2_RW_ABS
|
|
; RUN: llc -relocation-model=ropi -mtriple=thumbv7m--none-eabi < %s | FileCheck %s --check-prefix=CHECK --check-prefix=THUMB2_RO_PC --check-prefix=THUMB2_RW_ABS
|
|
; RUN: llc -relocation-model=rwpi -mtriple=thumbv7m--none-eabi < %s | FileCheck %s --check-prefix=CHECK --check-prefix=THUMB2_RO_ABS --check-prefix=THUMB2_RW_SB
|
|
; RUN: llc -relocation-model=ropi-rwpi -mtriple=thumbv7m--none-eabi < %s | FileCheck %s --check-prefix=CHECK --check-prefix=THUMB2_RO_PC --check-prefix=THUMB2_RW_SB
|
|
|
|
; RUN: llc -relocation-model=static -mtriple=thumbv6m--none-eabi < %s | FileCheck %s --check-prefix=CHECK --check-prefix=THUMB1_RO_ABS --check-prefix=THUMB1_RW_ABS
|
|
; RUN: llc -relocation-model=ropi -mtriple=thumbv6m--none-eabi < %s | FileCheck %s --check-prefix=CHECK --check-prefix=THUMB1_RO_PC --check-prefix=THUMB1_RW_ABS
|
|
; RUN: llc -relocation-model=rwpi -mtriple=thumbv6m--none-eabi < %s | FileCheck %s --check-prefix=CHECK --check-prefix=THUMB1_RO_ABS --check-prefix=THUMB1_RW_SB
|
|
; RUN: llc -relocation-model=ropi-rwpi -mtriple=thumbv6m--none-eabi < %s | FileCheck %s --check-prefix=CHECK --check-prefix=THUMB1_RO_PC --check-prefix=THUMB1_RW_SB
|
|
|
|
target datalayout = "e-m:e-p:32:32-i64:64-v128:64:128-a:0:32-n32-S64"
|
|
|
|
@a = external global i32, align 4
|
|
@b = external constant i32, align 4
|
|
|
|
define i32 @read() {
|
|
entry:
|
|
%0 = load i32, i32* @a, align 4
|
|
ret i32 %0
|
|
; CHECK-LABEL: read:
|
|
|
|
; ARM_RW_ABS: movw r[[REG:[0-9]]], :lower16:a
|
|
; ARM_RW_ABS: movt r[[REG]], :upper16:a
|
|
; ARM_RW_ABS: ldr r0, [r[[REG]]]
|
|
|
|
; ARM_RW_SB: ldr r[[REG:[0-9]]], [[LCPI:.LCPI[0-9]+_[0-9]+]]
|
|
; ARM_RW_SB: ldr r0, [r9, r[[REG]]]
|
|
|
|
; THUMB2_RW_ABS: movw r[[REG:[0-9]]], :lower16:a
|
|
; THUMB2_RW_ABS: movt r[[REG]], :upper16:a
|
|
; THUMB2_RW_ABS: ldr r0, [r[[REG]]]
|
|
|
|
; THUMB2_RW_SB: ldr r[[REG:[0-9]]], [[LCPI:.LCPI[0-9]+_[0-9]+]]
|
|
; THUMB2_RW_SB: ldr.w r0, [r9, r[[REG]]]
|
|
|
|
; THUMB1_RW_ABS: ldr r[[REG:[0-9]]], [[LCPI:.LCPI[0-9]+_[0-9]+]]
|
|
; THUMB1_RW_ABS: ldr r0, [r[[REG]]]
|
|
|
|
; THUMB1_RW_SB: ldr r[[REG:[0-9]]], [[LCPI:.LCPI[0-9]+_[0-9]+]]
|
|
; THUMB1_RW_SB: mov r[[REG_SB:[0-9]+]], r9
|
|
; THUMB1_RW_SB: ldr r0, [r[[REG_SB]], r[[REG]]]
|
|
|
|
; CHECK: {{(bx lr|pop)}}
|
|
|
|
; ARM_RW_SB: [[LCPI]]
|
|
; ARM_RW_SB: .long a(sbrel)
|
|
|
|
; THUMB2_RW_SB: [[LCPI]]
|
|
; THUMB2_RW_SB: .long a(sbrel)
|
|
|
|
; THUMB1_RW_ABS: [[LCPI]]
|
|
; THUMB1_RW_ABS-NEXT: .long a
|
|
|
|
; THUMB1_RW_SB: [[LCPI]]
|
|
; THUMB1_RW_SB: .long a(sbrel)
|
|
}
|
|
|
|
define void @write(i32 %v) {
|
|
entry:
|
|
store i32 %v, i32* @a, align 4
|
|
ret void
|
|
; CHECK-LABEL: write:
|
|
|
|
; ARM_RW_ABS: movw r[[REG:[0-9]]], :lower16:a
|
|
; ARM_RW_ABS: movt r[[REG]], :upper16:a
|
|
; ARM_RW_ABS: str r0, [r[[REG:[0-9]]]]
|
|
|
|
; ARM_RW_SB: ldr r[[REG:[0-9]]], [[LCPI:.LCPI[0-9]+_[0-9]+]]
|
|
; ARM_RW_SB: str r0, [r9, r[[REG]]]
|
|
|
|
; THUMB2_RW_ABS: movw r[[REG:[0-9]]], :lower16:a
|
|
; THUMB2_RW_ABS: movt r[[REG]], :upper16:a
|
|
; THUMB2_RW_ABS: str r0, [r[[REG]]]
|
|
|
|
; THUMB2_RW_SB: ldr r[[REG:[0-9]]], [[LCPI:.LCPI[0-9]+_[0-9]+]]
|
|
; THUMB2_RW_SB: str.w r0, [r9, r[[REG]]]
|
|
|
|
; THUMB1_RW_ABS: ldr r[[REG:[0-9]]], [[LCPI:.LCPI[0-9]+_[0-9]+]]
|
|
; THUMB1_RW_ABS: str r0, [r[[REG]]]
|
|
|
|
; THUMB1_RW_SB: ldr r[[REG:[0-9]]], [[LCPI:.LCPI[0-9]+_[0-9]+]]
|
|
; THUMB1_RW_SB: mov r[[REG_SB:[0-9]+]], r9
|
|
; THUMB1_RW_SB: str r0, [r[[REG_SB]], r[[REG]]]
|
|
|
|
; CHECK: {{(bx lr|pop)}}
|
|
|
|
; ARM_RW_SB: [[LCPI]]
|
|
; ARM_RW_SB: .long a(sbrel)
|
|
|
|
; THUMB2_RW_SB: [[LCPI]]
|
|
; THUMB2_RW_SB: .long a(sbrel)
|
|
|
|
; THUMB1_RW_ABS: [[LCPI]]
|
|
; THUMB1_RW_ABS-NEXT: .long a
|
|
|
|
; THUMB1_RW_SB: [[LCPI]]
|
|
; THUMB1_RW_SB: .long a(sbrel)
|
|
}
|
|
|
|
define i32 @read_const() {
|
|
entry:
|
|
%0 = load i32, i32* @b, align 4
|
|
ret i32 %0
|
|
; CHECK-LABEL: read_const:
|
|
|
|
; ARM_RO_ABS: movw r[[reg:[0-9]]], :lower16:b
|
|
; ARM_RO_ABS: movt r[[reg]], :upper16:b
|
|
; ARM_RO_ABS: ldr r0, [r[[reg]]]
|
|
|
|
; ARM_RO_PC: movw r[[REG:[0-9]]], :lower16:(b-([[LPC:.LPC[0-9]+_[0-9]+]]+8))
|
|
; ARM_RO_PC: movt r[[REG]], :upper16:(b-([[LPC]]+8))
|
|
; ARM_RO_PC: [[LPC]]:
|
|
; ARM_RO_PC-NEXT: ldr r0, [pc, r[[REG]]]
|
|
|
|
; THUMB2_RO_ABS: movw r[[REG:[0-9]]], :lower16:b
|
|
; THUMB2_RO_ABS: movt r[[REG]], :upper16:b
|
|
; THUMB2_RO_ABS: ldr r0, [r[[REG]]]
|
|
|
|
; THUMB2_RO_PC: movw r[[REG:[0-9]]], :lower16:(b-([[LPC:.LPC[0-9]+_[0-9]+]]+4))
|
|
; THUMB2_RO_PC: movt r[[REG]], :upper16:(b-([[LPC]]+4))
|
|
; THUMB2_RO_PC: [[LPC]]:
|
|
; THUMB2_RO_PC-NEXT: add r[[REG]], pc
|
|
; THUMB2_RO_PC: ldr r0, [r[[REG]]]
|
|
|
|
; THUMB1_RO_ABS: ldr r[[REG:[0-9]]], [[LCPI:.LCPI[0-9]+_[0-9]+]]
|
|
; THUMB1_RO_ABS: ldr r0, [r[[REG]]]
|
|
|
|
; THUMB1_RO_PC: ldr r[[REG:[0-9]]], [[LCPI:.LCPI[0-9]+_[0-9]+]]
|
|
; THUMB1_RO_PC: [[LPC:.LPC[0-9]+_[0-9]+]]:
|
|
; THUMB1_RO_PC-NEXT: add r[[REG]], pc
|
|
; THUMB1_RO_PC: ldr r0, [r[[REG]]]
|
|
|
|
; CHECK: {{(bx lr|pop)}}
|
|
|
|
; THUMB1_RO_ABS: [[LCPI]]
|
|
; THUMB1_RO_ABS-NEXT: .long b
|
|
|
|
; THUMB1_RO_PC: [[LCPI]]
|
|
; THUMB1_RO_PC-NEXT: .long b-([[LPC]]+4)
|
|
}
|
|
|
|
define i32* @take_addr() {
|
|
entry:
|
|
ret i32* @a
|
|
; CHECK-LABEL: take_addr:
|
|
|
|
; ARM_RW_ABS: movw r[[REG:[0-9]]], :lower16:a
|
|
; ARM_RW_ABS: movt r[[REG]], :upper16:a
|
|
|
|
; ARM_RW_SB: ldr r[[REG:[0-9]]], [[LCPI:.LCPI[0-9]+_[0-9]+]]
|
|
; ARM_RW_SB: add r0, r9, r[[REG]]
|
|
|
|
; THUMB2_RW_ABS: movw r[[REG:[0-9]]], :lower16:a
|
|
; THUMB2_RW_ABS: movt r[[REG]], :upper16:a
|
|
|
|
; THUMB2_RW_SB: ldr r0, [[LCPI:.LCPI[0-9]+_[0-9]+]]
|
|
; THUMB2_RW_SB: add r0, r9
|
|
|
|
; THUMB1_RW_ABS: ldr r0, [[LCPI:.LCPI[0-9]+_[0-9]+]]
|
|
|
|
; THUMB1_RW_SB: ldr r[[REG:[0-9]]], [[LCPI:.LCPI[0-9]+_[0-9]+]]
|
|
; THUMB1_RW_SB: mov r[[REG_SB:[0-9]+]], r9
|
|
; THUMB1_RW_SB: adds r[[REG]], r[[REG_SB]], r[[REG]]
|
|
|
|
; CHECK: {{(bx lr|pop)}}
|
|
|
|
; ARM_RW_SB: [[LCPI]]
|
|
; ARM_RW_SB: .long a(sbrel)
|
|
|
|
; THUMB2_RW_SB: [[LCPI]]
|
|
; THUMB2_RW_SB: .long a(sbrel)
|
|
|
|
; THUMB1_RW_ABS: [[LCPI]]
|
|
; THUMB1_RW_ABS-NEXT: .long a
|
|
|
|
; THUMB1_RW_SB: [[LCPI]]
|
|
; THUMB1_RW_SB: .long a(sbrel)
|
|
}
|
|
|
|
define i32* @take_addr_const() {
|
|
entry:
|
|
ret i32* @b
|
|
; CHECK-LABEL: take_addr_const:
|
|
|
|
; ARM_RO_ABS: movw r[[REG:[0-9]]], :lower16:b
|
|
; ARM_RO_ABS: movt r[[REG]], :upper16:b
|
|
|
|
; ARM_RO_PC: movw r[[REG:[0-9]]], :lower16:(b-([[LPC:.LPC[0-9]+_[0-9]+]]+8))
|
|
; ARM_RO_PC: movt r[[REG]], :upper16:(b-([[LPC]]+8))
|
|
; ARM_RO_PC: [[LPC]]:
|
|
; ARM_RO_PC-NEXT: add r0, pc, r[[REG:[0-9]]]
|
|
|
|
; THUMB2_RO_ABS: movw r[[REG:[0-9]]], :lower16:b
|
|
; THUMB2_RO_ABS: movt r[[REG]], :upper16:b
|
|
|
|
; THUMB2_RO_PC: movw r0, :lower16:(b-([[LPC:.LPC[0-9]+_[0-9]+]]+4))
|
|
; THUMB2_RO_PC: movt r0, :upper16:(b-([[LPC]]+4))
|
|
; THUMB2_RO_PC: [[LPC]]:
|
|
; THUMB2_RO_PC-NEXT: add r0, pc
|
|
|
|
; THUMB1_RO_ABS: ldr r0, [[LCPI:.LCPI[0-9]+_[0-9]+]]
|
|
|
|
; THUMB1_RO_PC: ldr r[[REG:[0-9]]], [[LCPI:.LCPI[0-9]+_[0-9]+]]
|
|
; THUMB1_RO_PC: [[LPC:.LPC[0-9]+_[0-9]+]]:
|
|
; THUMB1_RO_PC-NEXT: add r[[REG]], pc
|
|
|
|
; CHECK: {{(bx lr|pop)}}
|
|
|
|
; THUMB1_RO_ABS: [[LCPI]]
|
|
; THUMB1_RO_ABS-NEXT: .long b
|
|
|
|
; THUMB1_RO_PC: [[LCPI]]
|
|
; THUMB1_RO_PC-NEXT: .long b-([[LPC]]+4)
|
|
}
|
|
|
|
define i8* @take_addr_func() {
|
|
entry:
|
|
ret i8* bitcast (i8* ()* @take_addr_func to i8*)
|
|
; CHECK-LABEL: take_addr_func:
|
|
|
|
; ARM_RO_ABS: movw r[[REG:[0-9]]], :lower16:take_addr_func
|
|
; ARM_RO_ABS: movt r[[REG]], :upper16:take_addr_func
|
|
|
|
; ARM_RO_PC: movw r[[REG:[0-9]]], :lower16:(take_addr_func-([[LPC:.LPC[0-9]+_[0-9]+]]+8))
|
|
; ARM_RO_PC: movt r[[REG]], :upper16:(take_addr_func-([[LPC]]+8))
|
|
; ARM_RO_PC: [[LPC]]:
|
|
; ARM_RO_PC-NEXT: add r0, pc, r[[REG:[0-9]]]
|
|
|
|
; THUMB2_RO_ABS: movw r[[REG:[0-9]]], :lower16:take_addr_func
|
|
; THUMB2_RO_ABS: movt r[[REG]], :upper16:take_addr_func
|
|
|
|
; THUMB2_RO_PC: movw r0, :lower16:(take_addr_func-([[LPC:.LPC[0-9]+_[0-9]+]]+4))
|
|
; THUMB2_RO_PC: movt r0, :upper16:(take_addr_func-([[LPC]]+4))
|
|
; THUMB2_RO_PC: [[LPC]]:
|
|
; THUMB2_RO_PC-NEXT: add r0, pc
|
|
|
|
; THUMB1_RO_ABS: ldr r0, [[LCPI:.LCPI[0-9]+_[0-9]+]]
|
|
|
|
; THUMB1_RO_PC: ldr r[[REG:[0-9]]], [[LCPI:.LCPI[0-9]+_[0-9]+]]
|
|
; THUMB1_RO_PC: [[LPC:.LPC[0-9]+_[0-9]+]]:
|
|
; THUMB1_RO_PC-NEXT: add r[[REG]], pc
|
|
|
|
; CHECK: {{(bx lr|pop)}}
|
|
|
|
; THUMB1_RO_ABS: [[LCPI]]
|
|
; THUMB1_RO_ABS-NEXT: .long take_addr_func
|
|
|
|
; THUMB1_RO_PC: [[LCPI]]
|
|
; THUMB1_RO_PC-NEXT: .long take_addr_func-([[LPC]]+4)
|
|
}
|
|
|
|
define i8* @block_addr() {
|
|
entry:
|
|
br label %lab1
|
|
|
|
lab1:
|
|
ret i8* blockaddress(@block_addr, %lab1)
|
|
|
|
; CHECK-LABEL: block_addr:
|
|
|
|
; ARM_RO_ABS: [[LTMP:.Ltmp[0-9]+]]:
|
|
; ARM_RO_ABS: ldr r0, [[LCPI:.LCPI[0-9]+_[0-9]+]]
|
|
|
|
; ARM_RO_PC: [[LTMP:.Ltmp[0-9]+]]:
|
|
; ARM_RO_PC: ldr r[[REG:[0-9]]], [[LCPI:.LCPI[0-9]+_[0-9]+]]
|
|
; ARM_RO_PC: [[LPC:.LPC[0-9]+_[0-9]+]]:
|
|
; ARM_RO_PC: add r0, pc, r[[REG]]
|
|
|
|
; THUMB2_RO_ABS: [[LTMP:.Ltmp[0-9]+]]:
|
|
; THUMB2_RO_ABS: ldr r0, [[LCPI:.LCPI[0-9]+_[0-9]+]]
|
|
|
|
; THUMB2_RO_PC: [[LTMP:.Ltmp[0-9]+]]:
|
|
; THUMB2_RO_PC: ldr r0, [[LCPI:.LCPI[0-9]+_[0-9]+]]
|
|
; THUMB2_RO_PC: [[LPC:.LPC[0-9]+_[0-9]+]]:
|
|
; THUMB2_RO_PC: add r0, pc
|
|
|
|
; THUMB1_RO_ABS: [[LTMP:.Ltmp[0-9]+]]:
|
|
; THUMB1_RO_ABS: ldr r0, [[LCPI:.LCPI[0-9]+_[0-9]+]]
|
|
|
|
; THUMB1_RO_PC: [[LTMP:.Ltmp[0-9]+]]:
|
|
; THUMB1_RO_PC: ldr r0, [[LCPI:.LCPI[0-9]+_[0-9]+]]
|
|
; THUMB1_RO_PC: [[LPC:.LPC[0-9]+_[0-9]+]]:
|
|
; THUMB1_RO_PC: add r0, pc
|
|
|
|
; CHECK: bx lr
|
|
|
|
; ARM_RO_ABS: [[LCPI]]
|
|
; ARM_RO_ABS-NEXT: .long [[LTMP]]
|
|
|
|
; ARM_RO_PC: [[LCPI]]
|
|
; ARM_RO_PC-NEXT: .long [[LTMP]]-([[LPC]]+8)
|
|
|
|
; THUMB2_RO_ABS: [[LCPI]]
|
|
; THUMB2_RO_ABS-NEXT: .long [[LTMP]]
|
|
|
|
; THUMB2_RO_PC: [[LCPI]]
|
|
; THUMB2_RO_PC-NEXT: .long [[LTMP]]-([[LPC]]+4)
|
|
|
|
; THUMB1_RO_ABS: [[LCPI]]
|
|
; THUMB1_RO_ABS-NEXT: .long [[LTMP]]
|
|
|
|
; THUMB1_RO_PC: [[LCPI]]
|
|
; THUMB1_RO_PC-NEXT: .long [[LTMP]]-([[LPC]]+4)
|
|
}
|