[PATCH] D96904: [IR] restrict vector reduction intrinsic types
Sanjay Patel via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Thu Feb 18 07:51:37 PST 2021
spatel updated this revision to Diff 324635.
spatel added a comment.
Patch updated:
No code changes, but I pushed tests to check existing tablegen functionality (result type matches vector element, start argument type matches vector element, vector arg is a vector) as a preliminary step: a1e5388 <https://reviews.llvm.org/rGa1e5388a7ca1d0d46ed84ac2dedf52ade7ac8200>
So the new tests correspond to the new code only, and this patch should not interfere with existing verifier code.
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D96904/new/
https://reviews.llvm.org/D96904
Files:
llvm/lib/IR/Verifier.cpp
llvm/test/Verifier/reduction-intrinsics.ll
Index: llvm/test/Verifier/reduction-intrinsics.ll
===================================================================
--- llvm/test/Verifier/reduction-intrinsics.ll
+++ llvm/test/Verifier/reduction-intrinsics.ll
@@ -30,6 +30,33 @@
ret i64 %r
}
+; We should have the appropriate (either int or FP) type of argument
+; for any vector reduction.
+
+define float @not_float_reduce(<4 x float> %x) {
+; CHECK: Intrinsic has incorrect argument type!
+ %r = call float @llvm.vector.reduce.umin.v4f32(<4 x float> %x)
+ ret float %r
+}
+
+define i32* @not_pointer_reduce(<4 x i32*> %x) {
+; CHECK: Intrinsic has incorrect argument type!
+ %r = call i32* @llvm.vector.reduce.or.v4p0i32(<4 x i32*> %x)
+ ret i32* %r
+}
+
+define i32 @not_integer_reduce(<4 x i32> %x) {
+; CHECK: Intrinsic has incorrect argument type!
+ %r = call i32 @llvm.vector.reduce.fadd.v4i32(i32 0, <4 x i32> %x)
+ ret i32 %r
+}
+
+define i32* @not_pointer_reduce2(<4 x i32*> %x) {
+; CHECK: Intrinsic has incorrect argument type!
+ %r = call i32* @llvm.vector.reduce.fmin.v4p0i32(<4 x i32*> %x)
+ ret i32* %r
+}
+
declare float @llvm.vector.reduce.umin.v4f32(<4 x float>)
declare i32* @llvm.vector.reduce.or.v4p0i32(<4 x i32*>)
declare i32 @llvm.vector.reduce.fadd.v4i32(i32, <4 x i32>)
Index: llvm/lib/IR/Verifier.cpp
===================================================================
--- llvm/lib/IR/Verifier.cpp
+++ llvm/lib/IR/Verifier.cpp
@@ -5018,6 +5018,36 @@
break;
}
+ case Intrinsic::vector_reduce_and:
+ case Intrinsic::vector_reduce_or:
+ case Intrinsic::vector_reduce_xor:
+ case Intrinsic::vector_reduce_add:
+ case Intrinsic::vector_reduce_mul:
+ case Intrinsic::vector_reduce_smax:
+ case Intrinsic::vector_reduce_smin:
+ case Intrinsic::vector_reduce_umax:
+ case Intrinsic::vector_reduce_umin: {
+ Type *ArgTy = Call.getArgOperand(0)->getType();
+ Assert(ArgTy->isIntOrIntVectorTy() && ArgTy->isVectorTy(),
+ "Intrinsic has incorrect argument type!");
+ break;
+ }
+ case Intrinsic::vector_reduce_fmax:
+ case Intrinsic::vector_reduce_fmin: {
+ Type *ArgTy = Call.getArgOperand(0)->getType();
+ Assert(ArgTy->isFPOrFPVectorTy() && ArgTy->isVectorTy(),
+ "Intrinsic has incorrect argument type!");
+ break;
+ }
+ case Intrinsic::vector_reduce_fadd:
+ case Intrinsic::vector_reduce_fmul: {
+ // Unlike the other reductions, the first argument is a start value. The
+ // second argument is the vector to be reduced.
+ Type *ArgTy = Call.getArgOperand(1)->getType();
+ Assert(ArgTy->isFPOrFPVectorTy() && ArgTy->isVectorTy(),
+ "Intrinsic has incorrect argument type!");
+ break;
+ }
case Intrinsic::sadd_sat:
case Intrinsic::uadd_sat:
case Intrinsic::ssub_sat:
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D96904.324635.patch
Type: text/x-patch
Size: 2755 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20210218/8c805e53/attachment.bin>
More information about the llvm-commits
mailing list