[llvm] f320f83 - [AArch64][GlobalISel] Promote G_UITOFP vector operands to same elt size as result.
Amara Emerson via llvm-commits
llvm-commits at lists.llvm.org
Fri Jul 24 17:02:07 PDT 2020
Author: Amara Emerson
Date: 2020-07-24T17:00:50-07:00
New Revision: f320f83f3ac2d9b04fcab9975031fe8afef20253
URL: https://github.com/llvm/llvm-project/commit/f320f83f3ac2d9b04fcab9975031fe8afef20253
DIFF: https://github.com/llvm/llvm-project/commit/f320f83f3ac2d9b04fcab9975031fe8afef20253.diff
LOG: [AArch64][GlobalISel] Promote G_UITOFP vector operands to same elt size as result.
Fixes legalization failures.
Added:
Modified:
llvm/lib/Target/AArch64/GISel/AArch64LegalizerInfo.cpp
llvm/test/CodeGen/AArch64/GlobalISel/legalize-itofp.mir
llvm/test/CodeGen/AArch64/GlobalISel/legalizer-info-validation.mir
Removed:
################################################################################
diff --git a/llvm/lib/Target/AArch64/GISel/AArch64LegalizerInfo.cpp b/llvm/lib/Target/AArch64/GISel/AArch64LegalizerInfo.cpp
index 2eaec0b970fa..bbceb0e16903 100644
--- a/llvm/lib/Target/AArch64/GISel/AArch64LegalizerInfo.cpp
+++ b/llvm/lib/Target/AArch64/GISel/AArch64LegalizerInfo.cpp
@@ -399,7 +399,7 @@ AArch64LegalizerInfo::AArch64LegalizerInfo(const AArch64Subtarget &ST)
getActionDefinitionsBuilder({G_SITOFP, G_UITOFP})
.legalForCartesianProduct({s32, s64, v2s64, v4s32, v2s32})
.clampScalar(1, s32, s64)
- .widenScalarToNextPow2(1)
+ .minScalarSameAs(1, 0)
.clampScalar(0, s32, s64)
.widenScalarToNextPow2(0);
diff --git a/llvm/test/CodeGen/AArch64/GlobalISel/legalize-itofp.mir b/llvm/test/CodeGen/AArch64/GlobalISel/legalize-itofp.mir
index e0a20e030710..e348c0e454b8 100644
--- a/llvm/test/CodeGen/AArch64/GlobalISel/legalize-itofp.mir
+++ b/llvm/test/CodeGen/AArch64/GlobalISel/legalize-itofp.mir
@@ -24,6 +24,9 @@
define void @test_sitofp_v4s32() { ret void }
define void @test_uitofp_v4s32() { ret void }
+ define void @test_uitofp_v2s64_v2i1() { ret void }
+ define void @test_sitofp_v2s64_v2i1() { ret void }
+
define void @test_sitofp_s32_s16() { ret void }
define void @test_uitofp_s32_s16() { ret void }
...
@@ -239,6 +242,40 @@ body: |
$q0 = COPY %1
...
+---
+name: test_uitofp_v2s64_v2i1
+body: |
+ bb.0:
+ liveins: $q0
+ ; CHECK-LABEL: name: test_uitofp_v2s64_v2i1
+ ; CHECK: [[DEF:%[0-9]+]]:_(s1) = G_IMPLICIT_DEF
+ ; CHECK: [[COPY:%[0-9]+]]:_(s1) = COPY [[DEF]](s1)
+ ; CHECK: [[BUILD_VECTOR:%[0-9]+]]:_(<2 x s1>) = G_BUILD_VECTOR [[DEF]](s1), [[COPY]](s1)
+ ; CHECK: [[ZEXT:%[0-9]+]]:_(<2 x s64>) = G_ZEXT [[BUILD_VECTOR]](<2 x s1>)
+ ; CHECK: [[UITOFP:%[0-9]+]]:_(<2 x s64>) = G_UITOFP [[ZEXT]](<2 x s64>)
+ ; CHECK: $q0 = COPY [[UITOFP]](<2 x s64>)
+ %0:_(<2 x s1>) = G_IMPLICIT_DEF
+ %1:_(<2 x s64>) = G_UITOFP %0
+ $q0 = COPY %1
+...
+
+---
+name: test_sitofp_v2s64_v2i1
+body: |
+ bb.0:
+ liveins: $q0
+ ; CHECK-LABEL: name: test_sitofp_v2s64_v2i1
+ ; CHECK: [[DEF:%[0-9]+]]:_(s1) = G_IMPLICIT_DEF
+ ; CHECK: [[COPY:%[0-9]+]]:_(s1) = COPY [[DEF]](s1)
+ ; CHECK: [[BUILD_VECTOR:%[0-9]+]]:_(<2 x s1>) = G_BUILD_VECTOR [[DEF]](s1), [[COPY]](s1)
+ ; CHECK: [[SEXT:%[0-9]+]]:_(<2 x s64>) = G_SEXT [[BUILD_VECTOR]](<2 x s1>)
+ ; CHECK: [[SITOFP:%[0-9]+]]:_(<2 x s64>) = G_SITOFP [[SEXT]](<2 x s64>)
+ ; CHECK: $q0 = COPY [[SITOFP]](<2 x s64>)
+ %0:_(<2 x s1>) = G_IMPLICIT_DEF
+ %1:_(<2 x s64>) = G_SITOFP %0
+ $q0 = COPY %1
+...
+
---
name: test_sitofp_s32_s16
body: |
diff --git a/llvm/test/CodeGen/AArch64/GlobalISel/legalizer-info-validation.mir b/llvm/test/CodeGen/AArch64/GlobalISel/legalizer-info-validation.mir
index dcd310fba7e9..320ec99a5189 100644
--- a/llvm/test/CodeGen/AArch64/GlobalISel/legalizer-info-validation.mir
+++ b/llvm/test/CodeGen/AArch64/GlobalISel/legalizer-info-validation.mir
@@ -407,12 +407,12 @@
# DEBUG-NEXT: .. the first uncovered type index: 2, OK
# DEBUG-NEXT: .. the first uncovered imm index: 0, OK
# DEBUG-NEXT: G_SITOFP (opcode {{[0-9]+}}): 2 type indices, 0 imm indices
-# DEBUG-NEXT: .. the first uncovered type index: 2, OK
-# DEBUG-NEXT: .. the first uncovered imm index: 0, OK
+# DEBUG-NEXT: .. type index coverage check SKIPPED: user-defined predicate detected
+# DEBUG-NEXT: .. imm index coverage check SKIPPED: user-defined predicate detected
# DEBUG-NEXT: G_UITOFP (opcode {{[0-9]+}}): 2 type indices, 0 imm indices
# DEBUG-NEXT: .. opcode {{[0-9]+}} is aliased to {{[0-9]+}}
-# DEBUG-NEXT: .. the first uncovered type index: 2, OK
-# DEBUG-NEXT: .. the first uncovered imm index: 0, OK
+# DEBUG-NEXT: .. type index coverage check SKIPPED: user-defined predicate detected
+# DEBUG-NEXT: .. imm index coverage check SKIPPED: user-defined predicate detected
# DEBUG-NEXT: G_FABS (opcode {{[0-9]+}}): 1 type index, 0 imm indices
# DEBUG-NEXT: .. opcode {{[0-9]+}} is aliased to {{[0-9]+}}
# DEBUG-NEXT: .. type index coverage check SKIPPED: user-defined predicate detected
More information about the llvm-commits
mailing list