mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 03:02:36 +01:00
930aaa18e9
There is not an official documented ABI for frame pointers in Thumb2, but we should try to emit something which is useful. We use r7 as the frame pointer for Thumb code, which currently means that if a function needs to save a high register (r8-r11), it will get pushed to the stack between the frame pointer (r7) and link register (r14). This means that while a stack unwinder can follow the chain of frame pointers up the stack, it cannot know the offset to lr, so does not know which functions correspond to the stack frames. To fix this, we need to push the callee-saved registers in two batches, with the first push saving the low registers, fp and lr, and the second push saving the high registers. This is already implemented, but previously only used for iOS. This patch turns it on for all Thumb2 targets when frame pointers are required by the ABI, and the frame pointer is r7 (Windows uses r11, so this isn't a problem there). If frame pointer elimination is enabled we still emit a single push/pop even if we need a frame pointer for other reasons, to avoid increasing code size. We must also ensure that lr is pushed to the stack when using a frame pointer, so that we end up with a complete frame record. Situations that could cause this were rare, because we already push lr in most situations so that we can return using the pop instruction. Differential Revision: https://reviews.llvm.org/D23516 llvm-svn: 279506
95 lines
2.6 KiB
LLVM
95 lines
2.6 KiB
LLVM
; RUN: llc < %s -O0 -verify-machineinstrs -fast-isel-abort=1 -mtriple=armv7-apple-ios | FileCheck %s --check-prefix=DARWIN-ARM
|
|
; RUN: llc < %s -O0 -verify-machineinstrs -fast-isel-abort=1 -mtriple=armv7-linux-gnueabi | FileCheck %s --check-prefix=LINUX-ARM
|
|
; RUN: llc < %s -O0 -verify-machineinstrs -fast-isel-abort=1 -mtriple=thumbv7-apple-ios | FileCheck %s --check-prefix=DARWIN-THUMB2
|
|
; RUN: llc < %s -O0 -verify-machineinstrs -fast-isel-abort=1 -mtriple=thumbv7-linux-gnueabi | FileCheck %s --check-prefix=LINUX-THUMB2
|
|
|
|
define i8* @frameaddr_index0() nounwind {
|
|
entry:
|
|
; DARWIN-ARM-LABEL: frameaddr_index0:
|
|
; DARWIN-ARM: push {r7, lr}
|
|
; DARWIN-ARM: mov r7, sp
|
|
; DARWIN-ARM: mov r0, r7
|
|
|
|
; DARWIN-THUMB2-LABEL: frameaddr_index0:
|
|
; DARWIN-THUMB2: push {r7, lr}
|
|
; DARWIN-THUMB2: mov r7, sp
|
|
; DARWIN-THUMB2: mov r0, r7
|
|
|
|
; LINUX-ARM-LABEL: frameaddr_index0:
|
|
; LINUX-ARM: push {r11, lr}
|
|
; LINUX-ARM: mov r11, sp
|
|
; LINUX-ARM: mov r0, r11
|
|
|
|
; LINUX-THUMB2-LABEL: frameaddr_index0:
|
|
; LINUX-THUMB2: push {r7, lr}
|
|
; LINUX-THUMB2: mov r7, sp
|
|
; LINUX-THUMB2: mov r0, r7
|
|
|
|
%0 = call i8* @llvm.frameaddress(i32 0)
|
|
ret i8* %0
|
|
}
|
|
|
|
define i8* @frameaddr_index1() nounwind {
|
|
entry:
|
|
; DARWIN-ARM-LABEL: frameaddr_index1:
|
|
; DARWIN-ARM: push {r7, lr}
|
|
; DARWIN-ARM: mov r7, sp
|
|
; DARWIN-ARM: ldr r0, [r7]
|
|
|
|
; DARWIN-THUMB2-LABEL: frameaddr_index1:
|
|
; DARWIN-THUMB2: push {r7, lr}
|
|
; DARWIN-THUMB2: mov r7, sp
|
|
; DARWIN-THUMB2: ldr r0, [r7]
|
|
|
|
; LINUX-ARM-LABEL: frameaddr_index1:
|
|
; LINUX-ARM: push {r11, lr}
|
|
; LINUX-ARM: mov r11, sp
|
|
; LINUX-ARM: ldr r0, [r11]
|
|
|
|
; LINUX-THUMB2-LABEL: frameaddr_index1:
|
|
; LINUX-THUMB2: push {r7, lr}
|
|
; LINUX-THUMB2: mov r7, sp
|
|
; LINUX-THUMB2: mov r0, r7
|
|
; LINUX-THUMB2: ldr r0, [r0]
|
|
|
|
%0 = call i8* @llvm.frameaddress(i32 1)
|
|
ret i8* %0
|
|
}
|
|
|
|
define i8* @frameaddr_index3() nounwind {
|
|
entry:
|
|
; DARWIN-ARM-LABEL: frameaddr_index3:
|
|
; DARWIN-ARM: push {r7, lr}
|
|
; DARWIN-ARM: mov r7, sp
|
|
; DARWIN-ARM: ldr r0, [r7]
|
|
; DARWIN-ARM: ldr r0, [r0]
|
|
; DARWIN-ARM: ldr r0, [r0]
|
|
|
|
; DARWIN-THUMB2-LABEL: frameaddr_index3:
|
|
; DARWIN-THUMB2: push {r7, lr}
|
|
; DARWIN-THUMB2: mov r7, sp
|
|
; DARWIN-THUMB2: ldr r0, [r7]
|
|
; DARWIN-THUMB2: ldr r0, [r0]
|
|
; DARWIN-THUMB2: ldr r0, [r0]
|
|
|
|
; LINUX-ARM-LABEL: frameaddr_index3:
|
|
; LINUX-ARM: push {r11, lr}
|
|
; LINUX-ARM: mov r11, sp
|
|
; LINUX-ARM: ldr r0, [r11]
|
|
; LINUX-ARM: ldr r0, [r0]
|
|
; LINUX-ARM: ldr r0, [r0]
|
|
|
|
; LINUX-THUMB2-LABEL: frameaddr_index3:
|
|
; LINUX-THUMB2: push {r7, lr}
|
|
; LINUX-THUMB2: mov r7, sp
|
|
; LINUX-THUMB2: mov r0, r7
|
|
; LINUX-THUMB2: ldr r0, [r0]
|
|
; LINUX-THUMB2: ldr r0, [r0]
|
|
; LINUX-THUMB2: ldr r0, [r0]
|
|
|
|
%0 = call i8* @llvm.frameaddress(i32 3)
|
|
ret i8* %0
|
|
}
|
|
|
|
declare i8* @llvm.frameaddress(i32) nounwind readnone
|