[PATCH] D147268: [RISCV] Correct the EvenSrc/OddSrc computation in isInterleaveShuffle.
Craig Topper via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Thu Mar 30 15:55:43 PDT 2023
This revision was automatically updated to reflect the committed changes.
Closed by commit rGf2315545b2e4: [RISCV] Correct the EvenSrc/OddSrc computation in isInterleaveShuffle. (authored by craig.topper).
Changed prior to commit:
https://reviews.llvm.org/D147268?vs=509803&id=509843#toc
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D147268/new/
https://reviews.llvm.org/D147268
Files:
llvm/lib/Target/RISCV/RISCVISelLowering.cpp
llvm/test/CodeGen/RISCV/rvv/fixed-vectors-int-interleave.ll
Index: llvm/test/CodeGen/RISCV/rvv/fixed-vectors-int-interleave.ll
===================================================================
--- llvm/test/CodeGen/RISCV/rvv/fixed-vectors-int-interleave.ll
+++ llvm/test/CodeGen/RISCV/rvv/fixed-vectors-int-interleave.ll
@@ -665,17 +665,16 @@
}
; This interleaves the first 2 elements of a vector in opposite order. With
-; undefs for the remaining elements.
-; FIXME: We incorrectly swap the elements.
+; undefs for the remaining elements. We use to miscompile this.
define <4 x i8> @unary_interleave_10uu_v4i8(<4 x i8> %x) {
; V128-LABEL: unary_interleave_10uu_v4i8:
; V128: # %bb.0:
; V128-NEXT: vsetivli zero, 2, e8, mf4, ta, ma
; V128-NEXT: vslidedown.vi v10, v8, 1
; V128-NEXT: vsetivli zero, 2, e8, mf8, ta, ma
-; V128-NEXT: vwaddu.vv v9, v8, v10
+; V128-NEXT: vwaddu.vv v9, v10, v8
; V128-NEXT: li a0, -1
-; V128-NEXT: vwmaccu.vx v9, a0, v10
+; V128-NEXT: vwmaccu.vx v9, a0, v8
; V128-NEXT: vmv1r.v v8, v9
; V128-NEXT: ret
;
@@ -683,9 +682,9 @@
; V512: # %bb.0:
; V512-NEXT: vsetivli zero, 2, e8, mf8, ta, ma
; V512-NEXT: vslidedown.vi v10, v8, 1
-; V512-NEXT: vwaddu.vv v9, v8, v10
+; V512-NEXT: vwaddu.vv v9, v10, v8
; V512-NEXT: li a0, -1
-; V512-NEXT: vwmaccu.vx v9, a0, v10
+; V512-NEXT: vwmaccu.vx v9, a0, v8
; V512-NEXT: vmv1r.v v8, v9
; V512-NEXT: ret
%a = shufflevector <4 x i8> %x, <4 x i8> poison, <4 x i32> <i32 1, i32 0, i32 undef, i32 undef>
Index: llvm/lib/Target/RISCV/RISCVISelLowering.cpp
===================================================================
--- llvm/lib/Target/RISCV/RISCVISelLowering.cpp
+++ llvm/lib/Target/RISCV/RISCVISelLowering.cpp
@@ -3082,8 +3082,8 @@
if (!ShuffleVectorInst::isInterleaveMask(Mask, 2, Size * 2, StartIndexes))
return false;
- EvenSrc = StartIndexes[0] % 2 ? StartIndexes[1] : StartIndexes[0];
- OddSrc = StartIndexes[0] % 2 ? StartIndexes[0] : StartIndexes[1];
+ EvenSrc = StartIndexes[0];
+ OddSrc = StartIndexes[1];
// One source should be low half of first vector.
if (EvenSrc != 0 && OddSrc != 0)
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D147268.509843.patch
Type: text/x-patch
Size: 2123 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20230330/97bb8408/attachment.bin>
More information about the llvm-commits
mailing list