mirror of
https://github.com/RPCSX/llvm.git
synced 2026-01-31 01:05:23 +01:00
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
28 lines
645 B
LLVM
28 lines
645 B
LLVM
; Check that stack alignment can be forced. Individual targets should test their
|
|
; specific implementation details.
|
|
|
|
; RUN: llc < %s -stackrealign -stack-alignment=32 | FileCheck %s
|
|
; CHECK-LABEL: @f
|
|
; CHECK-LABEL: @g
|
|
|
|
define i32 @f(i8* %p) nounwind {
|
|
entry:
|
|
%0 = load i8, i8* %p
|
|
%conv = sext i8 %0 to i32
|
|
ret i32 %conv
|
|
}
|
|
|
|
define i64 @g(i32 %i) nounwind {
|
|
entry:
|
|
br label %if.then
|
|
|
|
if.then:
|
|
%0 = alloca i8, i32 %i
|
|
call void @llvm.memset.p0i8.i32(i8* %0, i8 0, i32 %i, i32 1, i1 false)
|
|
%call = call i32 @f(i8* %0)
|
|
%conv = sext i32 %call to i64
|
|
ret i64 %conv
|
|
}
|
|
|
|
declare void @llvm.memset.p0i8.i32(i8*, i8, i32, i32, i1) nounwind
|