Skip to content

Commit 6530ea4

Browse files
author
Kyungwoo Lee
committed
[AArch64] Fix Local Deallocation for Homogeneous Prolog/Epilog
The stack adjustment for local deallocation was incorrectly ported. Reviewed By: MaskRay Differential Revision: https://reviews.llvm.org/D106760
1 parent c46ccb8 commit 6530ea4

File tree

2 files changed

+22
-1
lines changed

2 files changed

+22
-1
lines changed

llvm/lib/Target/AArch64/AArch64FrameLowering.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1738,7 +1738,7 @@ void AArch64FrameLowering::emitEpilogue(MachineFunction &MF,
17381738

17391739
// Adjust local stack
17401740
emitFrameOffset(MBB, LastPopI, DL, AArch64::SP, AArch64::SP,
1741-
StackOffset::getFixed(-AFI->getLocalStackSize()), TII,
1741+
StackOffset::getFixed(AFI->getLocalStackSize()), TII,
17421742
MachineInstr::FrameDestroy, false, NeedsWinCFI);
17431743

17441744
// SP has been already adjusted while restoring callee save regs.

llvm/test/CodeGen/AArch64/arm64-homogeneous-prolog-epilog.ll

+21
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,27 @@ define i32 @_Z3hooii(i32 %b, i32 %a) nounwind ssp minsize {
2929

3030
declare i32 @_Z3gooi(i32);
3131

32+
; CHECK-LABEL: _foo:
33+
; CHECK: sub sp, sp, #16
34+
; CHECK: bl _goo
35+
; CHECK: add sp, sp, #16
36+
37+
define i32 @foo(i32 %c) nounwind minsize {
38+
entry:
39+
%buffer = alloca [1 x i32], align 4
40+
%0 = bitcast [1 x i32]* %buffer to i8*
41+
call void @llvm.lifetime.start.p0i8(i64 4, i8* nonnull %0)
42+
%arraydecay = getelementptr inbounds [1 x i32], [1 x i32]* %buffer, i64 0, i64 0
43+
%call = call i32 @goo(i32* nonnull %arraydecay)
44+
%sub = sub nsw i32 %c, %call
45+
call void @llvm.lifetime.end.p0i8(i64 4, i8* nonnull %0)
46+
47+
ret i32 %sub
48+
}
49+
50+
declare void @llvm.lifetime.start.p0i8(i64 immarg, i8* nocapture)
51+
declare i32 @goo(i32*)
52+
declare void @llvm.lifetime.end.p0i8(i64 immarg, i8* nocapture)
3253

3354
; CHECK-LABEL: _OUTLINED_FUNCTION_PROLOG_x30x29x19x20x21x22:
3455
; CHECK: stp x22, x21, [sp, #-32]!

0 commit comments

Comments
 (0)