Re-commit of 32e8b550e5439c7e4aafa73894faffd5f25d0d05 This patch rearranges emission of CFI instructions, so the resulting DWARF and `.eh_frame` information is precise at every instruction. The current state is that the unwind info is emitted only after the function prologue. This is fine for synchronous (e.g. C++) exceptions, but the information is generally incorrect when the program counter is at an instruction in the prologue or the epilogue, for example: ``` stp x29, x30, [sp, #-16]! // 16-byte Folded Spill mov x29, sp .cfi_def_cfa w29, 16 ... ``` after the `stp` is executed the (initial) rule for the CFA still says the CFA is in the `sp`, even though it's already offset by 16 bytes A correct unwind info could look like: ``` stp x29, x30, [sp, #-16]! // 16-byte Folded Spill .cfi_def_cfa_offset 16 mov x29, sp .cfi_def_cfa w29, 16 ... ``` Having this information precise up to an instruction is useful for sampling profilers that would like to get a stack backtrace. The end goal (towards this patch is just a step) is to have fully working `-fasynchronous-unwind-tables`. Reviewed By: danielkiss, MaskRay Differential Revision: https://reviews.llvm.org/D111411
63 lines
2.3 KiB
LLVM
63 lines
2.3 KiB
LLVM
; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py
|
|
; RUN: llc < %s -mtriple=arm64-apple-ios -relocation-model=pic -frame-pointer=all | FileCheck %s
|
|
|
|
@__stack_chk_guard = external global i64*
|
|
|
|
; PR20558
|
|
|
|
; Load the stack guard for the second time, just in case the previous value gets spilled.
|
|
define i32 @test_stack_guard_remat2() ssp {
|
|
; CHECK-LABEL: test_stack_guard_remat2:
|
|
; CHECK: ; %bb.0: ; %entry
|
|
; CHECK-NEXT: sub sp, sp, #64
|
|
; CHECK-NEXT: .cfi_def_cfa_offset 64
|
|
; CHECK-NEXT: stp x29, x30, [sp, #48] ; 16-byte Folded Spill
|
|
; CHECK-NEXT: add x29, sp, #48
|
|
; CHECK-NEXT: .cfi_def_cfa w29, 16
|
|
; CHECK-NEXT: .cfi_offset w30, -8
|
|
; CHECK-NEXT: .cfi_offset w29, -16
|
|
; CHECK-NEXT: Lloh0:
|
|
; CHECK-NEXT: adrp x8, ___stack_chk_guard@GOTPAGE
|
|
; CHECK-NEXT: Lloh1:
|
|
; CHECK-NEXT: adrp x9, ___stack_chk_guard@GOTPAGE
|
|
; CHECK-NEXT: Lloh2:
|
|
; CHECK-NEXT: ldr x8, [x8, ___stack_chk_guard@GOTPAGEOFF]
|
|
; CHECK-NEXT: Lloh3:
|
|
; CHECK-NEXT: ldr x9, [x9, ___stack_chk_guard@GOTPAGEOFF]
|
|
; CHECK-NEXT: Lloh4:
|
|
; CHECK-NEXT: ldr x8, [x8]
|
|
; CHECK-NEXT: Lloh5:
|
|
; CHECK-NEXT: ldr x9, [x9]
|
|
; CHECK-NEXT: str x8, [sp]
|
|
; CHECK-NEXT: Lloh6:
|
|
; CHECK-NEXT: adrp x8, ___stack_chk_guard@GOTPAGE
|
|
; CHECK-NEXT: stur x9, [x29, #-8]
|
|
; CHECK-NEXT: Lloh7:
|
|
; CHECK-NEXT: ldr x8, [x8, ___stack_chk_guard@GOTPAGEOFF]
|
|
; CHECK-NEXT: ldur x9, [x29, #-8]
|
|
; CHECK-NEXT: Lloh8:
|
|
; CHECK-NEXT: ldr x8, [x8]
|
|
; CHECK-NEXT: cmp x8, x9
|
|
; CHECK-NEXT: b.ne LBB0_2
|
|
; CHECK-NEXT: ; %bb.1: ; %entry
|
|
; CHECK-NEXT: ldp x29, x30, [sp, #48] ; 16-byte Folded Reload
|
|
; CHECK-NEXT: mov w0, #-1
|
|
; CHECK-NEXT: add sp, sp, #64
|
|
; CHECK-NEXT: ret
|
|
; CHECK-NEXT: LBB0_2: ; %entry
|
|
; CHECK-NEXT: bl ___stack_chk_fail
|
|
; CHECK-NEXT: .loh AdrpLdrGotLdr Lloh6, Lloh7, Lloh8
|
|
; CHECK-NEXT: .loh AdrpLdrGotLdr Lloh1, Lloh3, Lloh5
|
|
; CHECK-NEXT: .loh AdrpLdrGotLdr Lloh0, Lloh2, Lloh4
|
|
entry:
|
|
%StackGuardSlot = alloca i8*
|
|
%StackGuard = load i8*, i8** bitcast (i64** @__stack_chk_guard to i8**)
|
|
call void @llvm.stackprotector(i8* %StackGuard, i8** %StackGuardSlot)
|
|
%container = alloca [32 x i8], align 1
|
|
call void @llvm.stackprotectorcheck(i8** bitcast (i64** @__stack_chk_guard to i8**))
|
|
ret i32 -1
|
|
}
|
|
|
|
declare void @llvm.stackprotector(i8*, i8**) ssp
|
|
declare void @llvm.stackprotectorcheck(i8**) ssp
|