forked from llvm/llvm-project
-
Notifications
You must be signed in to change notification settings - Fork 56
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[AArch64][GlobalISel] Lower formal arguments of AAPCS & ms_abi variad…
…ic functions. Reimplemented SelectionDAG code for GlobalISel. Fixes llvm#54079 Differential Revision: https://reviews.llvm.org/D130903
- Loading branch information
1 parent
f32f293
commit 56fd846
Showing
7 changed files
with
204 additions
and
18 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
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
34 changes: 34 additions & 0 deletions
34
llvm/test/CodeGen/AArch64/GlobalISel/aapcs_vararg_frame.ll
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,34 @@ | ||
; RUN: llc < %s --global-isel=0 -mtriple=aarch64-linux-gnu -mattr=+fp-armv8 | FileCheck %s | ||
; RUN: llc < %s --global-isel=1 -mtriple=aarch64-linux-gnu -mattr=+fp-armv8 | FileCheck %s --check-prefix=GISEL | ||
|
||
define void @va(i32 %count, half %f, ...) nounwind { | ||
; CHECK-LABEL: va: | ||
; CHECK: // %bb.0: // %entry | ||
; CHECK-NEXT: sub sp, sp, #176 | ||
; CHECK-NEXT: stp x4, x5, [sp, #144] | ||
; CHECK-NEXT: stp x2, x3, [sp, #128] | ||
; CHECK-NEXT: str x1, [sp, #120] | ||
; CHECK-NEXT: stp x6, x7, [sp, #160] | ||
; CHECK-NEXT: stp q1, q2, [sp] | ||
; CHECK-NEXT: stp q3, q4, [sp, #32] | ||
; CHECK-NEXT: stp q5, q6, [sp, #64] | ||
; CHECK-NEXT: str q7, [sp, #96] | ||
; CHECK-NEXT: add sp, sp, #176 | ||
; CHECK-NEXT: ret | ||
; | ||
; GISEL-LABEL: va: | ||
; GISEL: // %bb.0: // %entry | ||
; GISEL-NEXT: sub sp, sp, #176 | ||
; GISEL-NEXT: stp x1, x2, [sp, #120] | ||
; GISEL-NEXT: stp x3, x4, [sp, #136] | ||
; GISEL-NEXT: stp x5, x6, [sp, #152] | ||
; GISEL-NEXT: str x7, [sp, #168] | ||
; GISEL-NEXT: stp q1, q2, [sp] | ||
; GISEL-NEXT: stp q3, q4, [sp, #32] | ||
; GISEL-NEXT: stp q5, q6, [sp, #64] | ||
; GISEL-NEXT: str q7, [sp, #96] | ||
; GISEL-NEXT: add sp, sp, #176 | ||
; GISEL-NEXT: ret | ||
entry: | ||
ret void | ||
} |
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