mirror of
https://github.com/RPCSX/llvm.git
synced 2024-11-30 15:10:33 +00:00
8e2b613ef0
realignment should be forced. With this commit, we can now force stack realignment when doing LTO and do so on a per-function basis. Also, add a new cl::opt option "stackrealign" to CommandFlags.h which is used to force stack realignment via llc's command line. Out-of-tree projects currently using -force-align-stack to force stack realignment should make changes to attach the attribute to the functions in the IR. Differential Revision: http://reviews.llvm.org/D11814 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@247450 91177308-0d34-0410-b5e6-96231b3b80d8
34 lines
860 B
LLVM
34 lines
860 B
LLVM
; RUN: llc < %s -stackrealign -stack-alignment=32 -march=x86-64 -mattr=+avx -mtriple=i686-apple-darwin10 | FileCheck %s
|
|
; PR11468
|
|
|
|
define void @f(i64 %sz) uwtable {
|
|
entry:
|
|
%a = alloca i32, align 32
|
|
store volatile i32 0, i32* %a, align 32
|
|
; force to push r14 on stack
|
|
call void asm sideeffect "nop", "~{r14},~{dirflag},~{fpsr},~{flags}"() nounwind, !srcloc !0
|
|
ret void
|
|
|
|
; CHECK: _f
|
|
; CHECK: pushq %rbp
|
|
; CHECK: .cfi_offset %rbp, -16
|
|
; CHECK: movq %rsp, %rbp
|
|
; CHECK: .cfi_def_cfa_register %rbp
|
|
|
|
; We first push register on stack, and then realign it, so that
|
|
; .cfi_offset value is correct
|
|
; CHECK: pushq %r14
|
|
; CHECK: andq $-32, %rsp
|
|
; CHECK: .cfi_offset %r14, -24
|
|
|
|
; Restore %rsp from %rbp and subtract the total size of saved regsiters.
|
|
; CHECK: leaq -8(%rbp), %rsp
|
|
|
|
; Pop saved registers.
|
|
; CHECK: popq %r14
|
|
; CHECK: popq %rbp
|
|
}
|
|
|
|
!0 = !{i32 125}
|
|
|