From: Sanjay Patel Date: Fri, 30 Sep 2016 19:15:41 +0000 (+0000) Subject: [InstCombine] add tests for non-splat select(ext) X-Git-Tag: llvmorg-4.0.0-rc1~8458 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=75b25187627bbf78453f2cefb24fa28a07ceb289;p=platform%2Fupstream%2Fllvm.git [InstCombine] add tests for non-splat select(ext) llvm-svn: 282901 --- diff --git a/llvm/test/Transforms/InstCombine/select-bitext.ll b/llvm/test/Transforms/InstCombine/select-bitext.ll index 34e260a..f259981 100644 --- a/llvm/test/Transforms/InstCombine/select-bitext.ll +++ b/llvm/test/Transforms/InstCombine/select-bitext.ll @@ -166,6 +166,17 @@ define <2 x i32> @test_vectors_sext(<2 x i1> %cca, <2 x i1> %ccb) { ret <2 x i32> %r } +define <2 x i32> @test_vectors_sext_nonsplat(<2 x i1> %cca, <2 x i1> %ccb) { +; CHECK-LABEL: @test_vectors_sext_nonsplat( +; CHECK-NEXT: [[CCAX:%.*]] = sext <2 x i1> %cca to <2 x i32> +; CHECK-NEXT: [[R:%.*]] = select <2 x i1> %ccb, <2 x i32> [[CCAX]], <2 x i32> +; CHECK-NEXT: ret <2 x i32> [[R]] +; + %ccax = sext <2 x i1> %cca to <2 x i32> + %r = select <2 x i1> %ccb, <2 x i32> %ccax, <2 x i32> + ret <2 x i32> %r +} + define <2 x i32> @test_vectors_zext(<2 x i1> %cca, <2 x i1> %ccb) { ; CHECK-LABEL: @test_vectors_zext( ; CHECK-NEXT: [[FOLD_R:%.*]] = and <2 x i1> %ccb, %cca @@ -177,6 +188,17 @@ define <2 x i32> @test_vectors_zext(<2 x i1> %cca, <2 x i1> %ccb) { ret <2 x i32> %r } +define <2 x i32> @test_vectors_zext_nonsplat(<2 x i1> %cca, <2 x i1> %ccb) { +; CHECK-LABEL: @test_vectors_zext_nonsplat( +; CHECK-NEXT: [[CCAX:%.*]] = zext <2 x i1> %cca to <2 x i32> +; CHECK-NEXT: [[R:%.*]] = select <2 x i1> %ccb, <2 x i32> [[CCAX]], <2 x i32> +; CHECK-NEXT: ret <2 x i32> [[R]] +; + %ccax = zext <2 x i1> %cca to <2 x i32> + %r = select <2 x i1> %ccb, <2 x i32> %ccax, <2 x i32> + ret <2 x i32> %r +} + define <2 x i32> @scalar_select_of_vectors_sext(<2 x i1> %cca, i1 %ccb) { ; CHECK-LABEL: @scalar_select_of_vectors_sext( ; CHECK-NEXT: [[FOLD_R:%.*]] = select i1 %ccb, <2 x i1> %cca, <2 x i1> zeroinitializer