[PATCH] D100223: Add correct types to the xxsplti32dx pattern.
Stefan Pintilie via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Fri Apr 9 12:12:04 PDT 2021
This revision was landed with ongoing or failed builds.
This revision was automatically updated to reflect the committed changes.
Closed by commit rG5bca7cdafb89: Add correct types to the xxsplti32dx pattern. (authored by stefanp).
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D100223/new/
https://reviews.llvm.org/D100223
Files:
llvm/lib/Target/PowerPC/PPCInstrPrefix.td
llvm/test/CodeGen/PowerPC/ppc64-xxsplti32dx-pattern-check.ll
Index: llvm/test/CodeGen/PowerPC/ppc64-xxsplti32dx-pattern-check.ll
===================================================================
--- /dev/null
+++ llvm/test/CodeGen/PowerPC/ppc64-xxsplti32dx-pattern-check.ll
@@ -0,0 +1,41 @@
+; RUN: llc -verify-machineinstrs -mtriple=powerpc64le-- \
+; RUN: -mcpu=pwr10 -ppc-asm-full-reg-names < %s | FileCheck %s
+; RUN: llc -verify-machineinstrs -mtriple=powerpc64-- \
+; RUN: -mcpu=pwr10 -ppc-asm-full-reg-names < %s | FileCheck %s
+
+; CHECK-NOT: Impossible reg-to-reg copy
+; CHECK-LABEL: test_xxsplti32dx
+; CHECK: xxsplti32dx
+
+;; Test reduced from larger application where bug was initially detected.
+;; This test checks that the correct register class is used for xxsplti32dx.
+
+declare dso_local void @callee() local_unnamed_addr
+
+define dso_local void @test_xxsplti32dx() local_unnamed_addr {
+entry:
+ %i1 = load double, double* undef, align 8
+ br label %for.body124
+
+for.body124:
+ %E0 = phi double [ 0.000000e+00, %entry ], [ %E1, %for.end1072 ]
+ br i1 undef, label %for.body919.preheader, label %for.end1072
+
+for.body919.preheader:
+ %i4 = load double, double* null, align 8
+ %i5 = load double, double* null, align 8
+ %i15 = insertelement <2 x double> poison, double %i5, i32 0
+ %i23 = insertelement <2 x double> undef, double %i4, i32 1
+ %i24 = insertelement <2 x double> %i15, double 0x3FC5555555555555, i32 1
+ %i25 = fmul fast <2 x double> %i23, %i24
+ %mul986 = extractelement <2 x double> %i25, i32 1
+ %sub994 = fsub fast double %E0, %mul986
+ br label %for.end1072
+
+for.end1072:
+ %E1 = phi double [ %E0, %for.body124 ], [ %sub994, %for.body919.preheader ]
+ %i28 = phi <2 x double> [ zeroinitializer, %for.body124 ], [ %i15, %for.body919.preheader ]
+ tail call void @callee()
+ store <2 x double> %i28, <2 x double>* undef, align 8
+ br label %for.body124
+}
Index: llvm/lib/Target/PowerPC/PPCInstrPrefix.td
===================================================================
--- llvm/lib/Target/PowerPC/PPCInstrPrefix.td
+++ llvm/lib/Target/PowerPC/PPCInstrPrefix.td
@@ -2633,13 +2633,13 @@
(COPY_TO_REGCLASS (XXSPLTI32DX (XXSPLTI32DX(IMPLICIT_DEF), 0,
(getFPAs64BitIntHi $A)),
1, (getFPAs64BitIntLo $A)),
- VSRC)>;
+ VSSRC)>;
def : Pat<(f64 nzFPImmAsi64:$A),
(COPY_TO_REGCLASS (XXSPLTI32DX (XXSPLTI32DX (IMPLICIT_DEF), 0,
(getFPAs64BitIntHi $A)),
1, (getFPAs64BitIntLo $A)),
- VSRC)>;
+ VSFRC)>;
// Anonymous patterns for XXEVAL
// AND
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D100223.336540.patch
Type: text/x-patch
Size: 2756 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20210409/e899adf9/attachment.bin>
More information about the llvm-commits
mailing list