[llvm] r374589 - [GISel][CallLowering] Enable vector support in argument lowering
Quentin Colombet via llvm-commits
llvm-commits at lists.llvm.org
Fri Oct 11 13:22:58 PDT 2019
Author: qcolombet
Date: Fri Oct 11 13:22:57 2019
New Revision: 374589
URL: http://llvm.org/viewvc/llvm-project?rev=374589&view=rev
Log:
[GISel][CallLowering] Enable vector support in argument lowering
The exciting code is actually already enough to handle the splitting
of vector arguments but we were lacking a test case.
This commit adds a test case for vector argument lowering involving
splitting and enable the related support in call lowering.
Added:
llvm/trunk/test/CodeGen/AArch64/GlobalISel/irtranslator-split-vector-arg.ll
Modified:
llvm/trunk/lib/CodeGen/GlobalISel/CallLowering.cpp
Modified: llvm/trunk/lib/CodeGen/GlobalISel/CallLowering.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/CodeGen/GlobalISel/CallLowering.cpp?rev=374589&r1=374588&r2=374589&view=diff
==============================================================================
--- llvm/trunk/lib/CodeGen/GlobalISel/CallLowering.cpp (original)
+++ llvm/trunk/lib/CodeGen/GlobalISel/CallLowering.cpp Fri Oct 11 13:22:57 2019
@@ -198,14 +198,12 @@ bool CallLowering::handleAssignments(CCS
unsigned NumParts = TLI->getNumRegistersForCallingConv(
F.getContext(), F.getCallingConv(), CurVT);
if (NumParts > 1) {
- if (CurVT.isVector())
- return false;
// For now only handle exact splits.
if (NewVT.getSizeInBits() * NumParts != CurVT.getSizeInBits())
return false;
}
- // For incoming arguments (return values), we could have values in
+ // For incoming arguments (physregs to vregs), we could have values in
// physregs (or memlocs) which we want to extract and copy to vregs.
// During this, we might have to deal with the LLT being split across
// multiple regs, so we have to record this information for later.
@@ -221,7 +219,7 @@ bool CallLowering::handleAssignments(CCS
return false;
} else {
// We're handling an incoming arg which is split over multiple regs.
- // E.g. returning an s128 on AArch64.
+ // E.g. passing an s128 on AArch64.
ISD::ArgFlagsTy OrigFlags = Args[i].Flags[0];
Args[i].OrigRegs.push_back(Args[i].Regs[0]);
Args[i].Regs.clear();
Added: llvm/trunk/test/CodeGen/AArch64/GlobalISel/irtranslator-split-vector-arg.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/AArch64/GlobalISel/irtranslator-split-vector-arg.ll?rev=374589&view=auto
==============================================================================
--- llvm/trunk/test/CodeGen/AArch64/GlobalISel/irtranslator-split-vector-arg.ll (added)
+++ llvm/trunk/test/CodeGen/AArch64/GlobalISel/irtranslator-split-vector-arg.ll Fri Oct 11 13:22:57 2019
@@ -0,0 +1,22 @@
+; NOTE: Assertions have been autogenerated by utils/update_mir_test_checks.py
+; RUN: llc -global-isel -global-isel-abort=1 %s -stop-after=irtranslator -o - | FileCheck %s
+target triple = "aarch64-apple-ios"
+
+; Check that we correctly split %arg into two vector registers of
+; size <2 x i64>.
+define hidden fastcc <4 x float> @foo(<4 x i64> %arg) unnamed_addr #0 {
+ ; CHECK-LABEL: name: foo
+ ; CHECK: bb.1.bb:
+ ; CHECK: liveins: $q0, $q1
+ ; CHECK: [[COPY:%[0-9]+]]:_(<2 x s64>) = COPY $q0
+ ; CHECK: [[COPY1:%[0-9]+]]:_(<2 x s64>) = COPY $q1
+ ; CHECK: [[CONCAT_VECTORS:%[0-9]+]]:_(<4 x s64>) = G_CONCAT_VECTORS [[COPY]](<2 x s64>), [[COPY1]](<2 x s64>)
+ ; CHECK: [[UITOFP:%[0-9]+]]:_(<4 x s32>) = G_UITOFP [[CONCAT_VECTORS]](<4 x s64>)
+ ; CHECK: $q0 = COPY [[UITOFP]](<4 x s32>)
+ ; CHECK: RET_ReallyLR implicit $q0
+bb:
+ %tmp = uitofp <4 x i64> %arg to <4 x float>
+ ret <4 x float> %tmp
+}
+
+attributes #0 = { nounwind readnone }
More information about the llvm-commits
mailing list