-
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.
[AArch64][GlobalISel] Support returned argument with multiple registers
The call lowering code assumed that a returned argument could only consist of one register. Pass an ArrayRef<Register> instead of Register to make sure that all parts get assigned. Fixes llvm/llvm-project#53315. Differential Revision: https://reviews.llvm.org/D117866
- Loading branch information
Showing
4 changed files
with
39 additions
and
13 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
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,25 @@ | ||
; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py | ||
; RUN: llc -O0 -mtriple=aarch64-unknown-linux-gnu -verify-machineinstrs < %s | FileCheck %s | ||
|
||
define void @test() nounwind { | ||
; CHECK-LABEL: test: | ||
; CHECK: // %bb.0: | ||
; CHECK-NEXT: sub sp, sp, #32 | ||
; CHECK-NEXT: str x30, [sp, #16] // 8-byte Folded Spill | ||
; CHECK-NEXT: mov x1, xzr | ||
; CHECK-NEXT: str x1, [sp, #8] // 8-byte Folded Spill | ||
; CHECK-NEXT: mov x0, x1 | ||
; CHECK-NEXT: bl returns_arg | ||
; CHECK-NEXT: ldr x1, [sp, #8] // 8-byte Folded Reload | ||
; CHECK-NEXT: mov x0, x1 | ||
; CHECK-NEXT: bl accepts_arg | ||
; CHECK-NEXT: ldr x30, [sp, #16] // 8-byte Folded Reload | ||
; CHECK-NEXT: add sp, sp, #32 | ||
; CHECK-NEXT: ret | ||
%x = call i128 @returns_arg(i128 0) | ||
call void @accepts_arg(i128 %x) | ||
ret void | ||
} | ||
|
||
declare i128 @returns_arg(i128 returned) | ||
declare void @accepts_arg(i128) |