[PATCH] D98776: [RISCV] Fix missing scalable->fixed-length vector conversion
Fraser Cormack via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Wed Mar 17 05:42:36 PDT 2021
frasercrmck created this revision.
frasercrmck added reviewers: craig.topper, evandro, rogfer01, HsiangKai, arcbbb, khchen.
Herald added subscribers: vkmr, luismarques, apazos, sameer.abuasal, s.egerton, Jim, benna, psnobl, jocewei, PkmX, the_o, brucehoult, MartinMosbeck, edward-jones, zzheng, jrtc27, shiva0217, kito-cheng, niosHD, sabuasal, simoncook, johnrusso, rbar, asb, hiraditya.
frasercrmck requested review of this revision.
Herald added subscribers: llvm-commits, MaskRay.
Herald added a project: LLVM.
Returning the scalable-vector container type would present problems when
the fixed-length INSERT_VECTOR_ELT was used by later operations.
Repository:
rG LLVM Github Monorepo
https://reviews.llvm.org/D98776
Files:
llvm/lib/Target/RISCV/RISCVISelLowering.cpp
llvm/test/CodeGen/RISCV/rvv/fixed-vectors-insert.ll
Index: llvm/test/CodeGen/RISCV/rvv/fixed-vectors-insert.ll
===================================================================
--- llvm/test/CodeGen/RISCV/rvv/fixed-vectors-insert.ll
+++ llvm/test/CodeGen/RISCV/rvv/fixed-vectors-insert.ll
@@ -178,7 +178,7 @@
; RV32-NEXT: vle64.v v28, (a0)
; RV32-NEXT: addi a1, zero, -1
; RV32-NEXT: vmv.s.x v28, a1
-; RV32-NEXT: vs4r.v v28, (a0)
+; RV32-NEXT: vse64.v v28, (a0)
; RV32-NEXT: ret
;
; RV64-LABEL: insertelt_v8i64_0:
@@ -235,7 +235,7 @@
; RV32-NEXT: vle64.v v28, (a0)
; RV32-NEXT: addi a1, zero, 6
; RV32-NEXT: vmv.s.x v28, a1
-; RV32-NEXT: vs4r.v v28, (a0)
+; RV32-NEXT: vse64.v v28, (a0)
; RV32-NEXT: ret
;
; RV64-LABEL: insertelt_c6_v8i64_0:
@@ -284,3 +284,35 @@
store <8 x i64> %b, <8 x i64>* %x
ret void
}
+
+; Test that using a insertelement at element 0 by a later operation doesn't
+; crash the compiler.
+define void @insertelt_c6_v8i64_0_add(<8 x i64>* %x, <8 x i64>* %y) {
+; RV32-LABEL: insertelt_c6_v8i64_0_add:
+; RV32: # %bb.0:
+; RV32-NEXT: vsetivli a2, 8, e64,m4,ta,mu
+; RV32-NEXT: vle64.v v28, (a0)
+; RV32-NEXT: vle64.v v8, (a1)
+; RV32-NEXT: addi a1, zero, 6
+; RV32-NEXT: vmv.s.x v28, a1
+; RV32-NEXT: vadd.vv v28, v28, v8
+; RV32-NEXT: vse64.v v28, (a0)
+; RV32-NEXT: ret
+;
+; RV64-LABEL: insertelt_c6_v8i64_0_add:
+; RV64: # %bb.0:
+; RV64-NEXT: vsetivli a2, 8, e64,m4,ta,mu
+; RV64-NEXT: vle64.v v28, (a0)
+; RV64-NEXT: vle64.v v8, (a1)
+; RV64-NEXT: addi a1, zero, 6
+; RV64-NEXT: vmv.s.x v28, a1
+; RV64-NEXT: vadd.vv v28, v28, v8
+; RV64-NEXT: vse64.v v28, (a0)
+; RV64-NEXT: ret
+ %a = load <8 x i64>, <8 x i64>* %x
+ %b = insertelement <8 x i64> %a, i64 6, i32 0
+ %c = load <8 x i64>, <8 x i64>* %y
+ %d = add <8 x i64> %b, %c
+ store <8 x i64> %d, <8 x i64>* %x
+ ret void
+}
Index: llvm/lib/Target/RISCV/RISCVISelLowering.cpp
===================================================================
--- llvm/lib/Target/RISCV/RISCVISelLowering.cpp
+++ llvm/lib/Target/RISCV/RISCVISelLowering.cpp
@@ -2358,8 +2358,12 @@
SDValue ValInVec;
if (IsLegalInsert) {
- if (isNullConstant(Idx))
- return DAG.getNode(RISCVISD::VMV_S_XF_VL, DL, ContainerVT, Vec, Val, VL);
+ if (isNullConstant(Idx)) {
+ Vec = DAG.getNode(RISCVISD::VMV_S_XF_VL, DL, ContainerVT, Vec, Val, VL);
+ if (!VecVT.isFixedLengthVector())
+ return Vec;
+ return convertFromScalableVector(VecVT, Vec, DAG, Subtarget);
+ }
ValInVec = DAG.getNode(RISCVISD::VMV_S_XF_VL, DL, ContainerVT,
DAG.getUNDEF(ContainerVT), Val, VL);
} else {
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D98776.331249.patch
Type: text/x-patch
Size: 2669 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20210317/a4fcf292/attachment.bin>
More information about the llvm-commits
mailing list