[llvm] [AArch64] Fix MatchDup Lane Out Of Range In AArch64 (PR #101275)
David Green via llvm-commits
llvm-commits at lists.llvm.org
Wed Jul 31 05:56:42 PDT 2024
================
@@ -367,3 +367,31 @@ body: |
%shuf:_(<4 x s32>) = G_SHUFFLE_VECTOR %buildvec(<4 x s32>), %undef, shufflemask(0, 0, 0, 0)
$q0 = COPY %shuf(<4 x s32>)
RET_ReallyLR implicit $q0
+
+...
+---
+name: build_vector_rhs
+alignment: 4
+legalized: true
+tracksRegLiveness: true
+body: |
+ bb.1.entry:
+ liveins: $w0, $w1, $w2, $w3
+ ; The G_SHUFFLE_VECTOR is fed by a G_BUILD_VECTOR, and the 0th input
+ ; operand is not a constant. We should get a G_DUP.
+ ;
+ ; CHECK-LABEL: name: build_vector
+ ; CHECK: liveins: $w0, $w1, $w2, $w3
+ ; CHECK: %lane:_(s32) = COPY $w0
+ ; CHECK: %shuf:_(<4 x s32>) = G_DUP %lane(s32)
+ ; CHECK: $q0 = COPY %shuf(<4 x s32>)
+ ; CHECK: RET_ReallyLR implicit $q0
+ %lane:_(s32) = COPY $w0
+ %b:_(s32) = COPY $w1
+ %c:_(s32) = COPY $w2
+ %d:_(s32) = COPY $w3
+ %buildvec0:_(<4 x s32>) = G_BUILD_VECTOR %lane(s32), %b(s32), %c(s32), %d(s32)
+ %buildvec1:_(<4 x s32>) = G_BUILD_VECTOR %lane(s32), %b(s32), %c(s32), %d(s32)
----------------
davemgreen wrote:
Could you make the vectors different, so it's more clear where the input %lane is coming from?
https://github.com/llvm/llvm-project/pull/101275
More information about the llvm-commits
mailing list