
The instruction-precise, or asynchronous, unwind tables usually take up much more space than the synchronous ones. If a user is concerned about the load size of the program and does not need the features provided with the asynchronous tables, the compiler should be able to generate the more compact variant. This patch changes the generation of CFI instructions for these cases so that they all come in one chunk in the prolog; it emits only one `.cfi_def_cfa*` instruction followed by `.cfi_offset` ones after all stack adjustments and register spills, and avoids generating CFI instructions in the epilog(s) as well as any other exceeding CFI instructions like `.cfi_remember_state` and `.cfi_restore_state`. Effectively, it reverses the effects of D111411 and D114545 on functions with the `uwtable(sync)` attribute. As a side effect, it also restores the behavior on functions that have neither `uwtable` nor `nounwind` attributes. Differential Revision: https://reviews.llvm.org/D153098
55 lines
2.0 KiB
LLVM
55 lines
2.0 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 ptr
|
|
|
|
; 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: 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: stur x9, [x29, #-8]
|
|
; CHECK-NEXT: ldur x9, [x29, #-8]
|
|
; 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 Lloh1, Lloh3, Lloh5
|
|
; CHECK-NEXT: .loh AdrpLdrGotLdr Lloh0, Lloh2, Lloh4
|
|
entry:
|
|
%StackGuardSlot = alloca ptr
|
|
%StackGuard = load ptr, ptr @__stack_chk_guard
|
|
call void @llvm.stackprotector(ptr %StackGuard, ptr %StackGuardSlot)
|
|
%container = alloca [32 x i8], align 1
|
|
call void @llvm.stackprotectorcheck(ptr @__stack_chk_guard)
|
|
ret i32 -1
|
|
}
|
|
|
|
declare void @llvm.stackprotector(ptr, ptr) ssp
|
|
declare void @llvm.stackprotectorcheck(ptr) ssp
|