From: Simon Pilgrim Date: Fri, 2 Dec 2016 17:16:21 +0000 (+0000) Subject: [InstCombine] Add vector urem tests X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=88afddf69a0a0a0bde834dec247e9cee2033c02c;p=llvm [InstCombine] Add vector urem tests Demonstrate missed opportunity for urem -> and combine for powerof2 or zero non-uniform constant dividers git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@288510 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/Transforms/InstCombine/vector-urem.ll b/test/Transforms/InstCombine/vector-urem.ll new file mode 100644 index 00000000000..6cecc16069d --- /dev/null +++ b/test/Transforms/InstCombine/vector-urem.ll @@ -0,0 +1,29 @@ +; NOTE: Assertions have been autogenerated by utils/update_test_checks.py +; RUN: opt < %s -instcombine -S | FileCheck %s + +define <4 x i32> @test_v4i32_splatconst_pow2(<4 x i32> %a0) { +; CHECK-LABEL: @test_v4i32_splatconst_pow2( +; CHECK-NEXT: [[TMP1:%.*]] = and <4 x i32> %a0, +; CHECK-NEXT: ret <4 x i32> [[TMP1]] +; + %1 = urem <4 x i32> %a0, + ret <4 x i32> %1 +} + +define <4 x i32> @test_v4i32_const_pow2(<4 x i32> %a0) { +; CHECK-LABEL: @test_v4i32_const_pow2( +; CHECK-NEXT: [[TMP1:%.*]] = urem <4 x i32> %a0, +; CHECK-NEXT: ret <4 x i32> [[TMP1]] +; + %1 = urem <4 x i32> %a0, + ret <4 x i32> %1 +} + +define <4 x i32> @test_v4i32_const_pow2_or_zero(<4 x i32> %a0) { +; CHECK-LABEL: @test_v4i32_const_pow2_or_zero( +; CHECK-NEXT: [[TMP1:%.*]] = urem <4 x i32> %a0, +; CHECK-NEXT: ret <4 x i32> [[TMP1]] +; + %1 = urem <4 x i32> %a0, + ret <4 x i32> %1 +}