mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-12-05 18:27:59 +00:00
f7ea499702
Part of the effort to refactoring frame pointer code generation. We used to use two function attributes "no-frame-pointer-elim" and "no-frame-pointer-elim-non-leaf" to represent three kinds of frame pointer usage: (all) frames use frame pointer, (non-leaf) frames use frame pointer, (none) frame use frame pointer. This CL makes the idea explicit by using only one enum function attribute "frame-pointer" Option "-frame-pointer=" replaces "-disable-fp-elim" for tools such as llc. "no-frame-pointer-elim" and "no-frame-pointer-elim-non-leaf" are still supported for easy migration to "frame-pointer". tests are mostly updated with // replace command line args ‘-disable-fp-elim=false’ with ‘-frame-pointer=none’ grep -iIrnl '\-disable-fp-elim=false' * | xargs sed -i '' -e "s/-disable-fp-elim=false/-frame-pointer=none/g" // replace command line args ‘-disable-fp-elim’ with ‘-frame-pointer=all’ grep -iIrnl '\-disable-fp-elim' * | xargs sed -i '' -e "s/-disable-fp-elim/-frame-pointer=all/g" Patch by Yuanfang Chen (tabloid.adroit)! Differential Revision: https://reviews.llvm.org/D56351 llvm-svn: 351049
31 lines
1.2 KiB
LLVM
31 lines
1.2 KiB
LLVM
; RUN: llc < %s -mtriple=arm64-apple-ios -relocation-model=pic -frame-pointer=all | FileCheck %s
|
|
|
|
@__stack_chk_guard = external global i64*
|
|
|
|
; PR20558
|
|
|
|
; CHECK: adrp [[R0:x[0-9]+]], ___stack_chk_guard@GOTPAGE
|
|
; CHECK: ldr [[R1:x[0-9]+]], {{\[}}[[R0]], ___stack_chk_guard@GOTPAGEOFF{{\]}}
|
|
; Load the stack guard for the second time, just in case the previous value gets spilled.
|
|
; CHECK: adrp [[GUARD_PAGE:x[0-9]+]], ___stack_chk_guard@GOTPAGE
|
|
; CHECK: ldr [[R2:x[0-9]+]], {{\[}}[[R1]]{{\]}}
|
|
; CHECK: stur [[R2]], {{\[}}x29, [[SLOT0:[0-9#\-]+]]{{\]}}
|
|
; CHECK: ldur [[R3:x[0-9]+]], {{\[}}x29, [[SLOT0]]{{\]}}
|
|
; CHECK: ldr [[GUARD_ADDR:x[0-9]+]], {{\[}}[[GUARD_PAGE]], ___stack_chk_guard@GOTPAGEOFF{{\]}}
|
|
; CHECK: ldr [[GUARD:x[0-9]+]], {{\[}}[[GUARD_ADDR]]{{\]}}
|
|
; CHECK: cmp [[GUARD]], [[R3]]
|
|
; CHECK: b.ne LBB
|
|
|
|
define i32 @test_stack_guard_remat2() {
|
|
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**)
|
|
declare void @llvm.stackprotectorcheck(i8**)
|