[PATCH] D121297: [AArch64][SVE] Change the asserts in LowerToPredicatedOp to check for legal types
David Sherwood via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Thu Mar 10 01:26:25 PST 2022
david-arm updated this revision to Diff 414302.
david-arm retitled this revision from "[AArch64][SVE] Set the default min SVE bits to 128" to "[AArch64][SVE] Change the asserts in LowerToPredicatedOp to check for legal types".
david-arm edited the summary of this revision.
david-arm added a comment.
- I have tried an alternative approach with this latest patch. Instead of changing the default min SVE vector bits to 128, I have amended the asserts in LowerToPredicatedOp to check that the fixed-width type is legal.
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D121297/new/
https://reviews.llvm.org/D121297
Files:
llvm/lib/Target/AArch64/AArch64ISelLowering.cpp
llvm/test/CodeGen/AArch64/sve-fixed-length-no-vscale-range.ll
Index: llvm/test/CodeGen/AArch64/sve-fixed-length-no-vscale-range.ll
===================================================================
--- /dev/null
+++ llvm/test/CodeGen/AArch64/sve-fixed-length-no-vscale-range.ll
@@ -0,0 +1,32 @@
+; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py
+; RUN: llc < %s | FileCheck %s
+
+target triple = "aarch64-unknown-linux-gnu"
+
+define <2 x i64> @mul_v2i64(<2 x i64> %op1, <2 x i64> %op2) #0 {
+; CHECK-LABEL: mul_v2i64:
+; CHECK: // %bb.0:
+; CHECK-NEXT: // kill: def $q0 killed $q0 def $z0
+; CHECK-NEXT: ptrue p0.d, vl2
+; CHECK-NEXT: // kill: def $q1 killed $q1 def $z1
+; CHECK-NEXT: mul z0.d, p0/m, z0.d, z1.d
+; CHECK-NEXT: // kill: def $q0 killed $q0 killed $z0
+; CHECK-NEXT: ret
+ %res = mul <2 x i64> %op1, %op2
+ ret <2 x i64> %res
+}
+
+define <4 x i32> @sdiv_v4i32(<4 x i32> %op1, <4 x i32> %op2) #0 {
+; CHECK-LABEL: sdiv_v4i32:
+; CHECK: // %bb.0:
+; CHECK-NEXT: // kill: def $q0 killed $q0 def $z0
+; CHECK-NEXT: ptrue p0.s, vl4
+; CHECK-NEXT: // kill: def $q1 killed $q1 def $z1
+; CHECK-NEXT: sdiv z0.s, p0/m, z0.s, z1.s
+; CHECK-NEXT: // kill: def $q0 killed $q0 killed $z0
+; CHECK-NEXT: ret
+ %res = sdiv <4 x i32> %op1, %op2
+ ret <4 x i32> %res
+}
+
+attributes #0 = { "target-features"="+sve" }
Index: llvm/lib/Target/AArch64/AArch64ISelLowering.cpp
===================================================================
--- llvm/lib/Target/AArch64/AArch64ISelLowering.cpp
+++ llvm/lib/Target/AArch64/AArch64ISelLowering.cpp
@@ -19978,8 +19978,8 @@
auto Pg = getPredicateForVector(DAG, DL, VT);
if (VT.isFixedLengthVector()) {
- assert(VT.getFixedSizeInBits() <= Subtarget->getMinSVEVectorSizeInBits() &&
- "Cannot use SVE to lower fixed length predicated op!");
+ assert(DAG.getTargetLoweringInfo().isTypeLegal(VT) &&
+ "Expected only legal fixed-width types");
EVT ContainerVT = getContainerForFixedLengthVector(DAG, VT);
// Create list of operands by converting existing ones to scalable types.
@@ -19997,9 +19997,8 @@
continue;
}
- assert(V.getValueType().getFixedSizeInBits() <=
- Subtarget->getMinSVEVectorSizeInBits() &&
- "Only fixed length vectors are supported!");
+ assert(DAG.getTargetLoweringInfo().isTypeLegal(V.getValueType()) &&
+ "Expected only legal fixed-width types");
Operands.push_back(convertToScalableVector(DAG, ContainerVT, V));
}
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D121297.414302.patch
Type: text/x-patch
Size: 2525 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20220310/9b50037c/attachment.bin>
More information about the llvm-commits
mailing list