forked from GPUOpen-Drivers/llvm-project
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[SystemZ] Bugfix for backchain with packed-stack
The incoming back chain slot was implicitly allocated whenever a GPR was saved in SystemZFrameLowering::getRegSpillOffset(), but in cases where no GPRs were saved/restored this did not take effect. Review: Ulrich Weigand Differential Revision: https://reviews.llvm.org/D75367
- Loading branch information
Showing
2 changed files
with
27 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
; RUN: llc < %s -mtriple=s390x-linux-gnu | FileCheck %s | ||
; | ||
; Test that space is allocated for the incoming back chain also in cases | ||
; where no GPRs are saved / restored. | ||
|
||
define void @fun0() #0 { | ||
; CHECK-LABEL: fun0: | ||
; CHECK: lgr %r1, %r15 | ||
; CHECK-NEXT: aghi %r15, -24 | ||
; CHECK-NEXT: stg %r1, 152(%r15) | ||
; CHECK-NEXT: #APP | ||
; CHECK-NEXT: stcke 160(%r15) | ||
; CHECK-NEXT: #NO_APP | ||
; CHECK-NEXT: aghi %r15, 24 | ||
; CHECK-NEXT: br %r14 | ||
|
||
entry: | ||
%b = alloca [16 x i8], align 1 | ||
%0 = getelementptr inbounds [16 x i8], [16 x i8]* %b, i64 0, i64 0 | ||
call void asm "stcke $0", "=*Q"([16 x i8]* nonnull %b) #2 | ||
ret void | ||
} | ||
|
||
attributes #0 = { nounwind "packed-stack" "backchain" "use-soft-float"="true" } |