[Verifier] add tests for vector reductions; NFC
authorSanjay Patel <spatel@rotateright.com>
Thu, 18 Feb 2021 15:34:13 +0000 (10:34 -0500)
committerSanjay Patel <spatel@rotateright.com>
Thu, 18 Feb 2021 15:35:38 +0000 (10:35 -0500)
Checking existing functionality before D96904.

llvm/test/Verifier/reduction-intrinsics.ll [new file with mode: 0644]

diff --git a/llvm/test/Verifier/reduction-intrinsics.ll b/llvm/test/Verifier/reduction-intrinsics.ll
new file mode 100644 (file)
index 0000000..8eef826
--- /dev/null
@@ -0,0 +1,40 @@
+; RUN: not opt -S -verify < %s 2>&1 | FileCheck %s
+
+; Reject a vector reduction with a non-vector argument.
+
+define float @reduce_vector_not_vec_arg(float %x) {
+; CHECK: Intrinsic has incorrect argument type!
+  %r0 = call float @llvm.vector.reduce.fmax.f32(float %x)
+  ret float %r0
+}
+
+define i32 @reduce_vector_not_vec_arg2(i32 %x) {
+; CHECK: Intrinsic has incorrect argument type!
+  %r0 = call i32 @llvm.vector.reduce.smax.i32(i32 %x)
+  ret i32 %r0
+}
+
+; Type mismatch for start value.
+
+define float @fadd_match_arg_types(<4 x float> %x) {
+; CHECK: Intrinsic has incorrect argument type!
+  %r = call float @llvm.vector.reduce.fadd.v4f32(double 0.0, <4 x float> %x)
+  ret float %r
+}
+
+; Wrong result type.
+
+define i64 @result_too_wide(<4 x i32> %x) {
+; CHECK: Intrinsic has incorrect return type!
+  %r = call i64 @llvm.vector.reduce.add.v4i32(<4 x i32> %x)
+  ret i64 %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>)
+declare float @llvm.vector.reduce.fadd.v4f32(double, <4 x float>)
+declare i32* @llvm.vector.reduce.fmin.v4p0i32(<4 x i32*>)
+declare float @llvm.vector.reduce.fmax.f32(float)
+declare i32 @llvm.vector.reduce.smax.i32(i32)
+declare i64 @llvm.vector.reduce.add.v4i32(<4 x i32>)