From 1ef30ee73a17d5f868eda6ae9a3e9cd8c127a45a Mon Sep 17 00:00:00 2001 From: Sanjay Patel Date: Tue, 9 May 2017 23:40:13 +0000 Subject: [PATCH] [InstCombine] add tests for andn; NFC git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@302599 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/Transforms/InstCombine/add.ll | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/test/Transforms/InstCombine/add.ll b/test/Transforms/InstCombine/add.ll index 648305d134c..955ffaaeecd 100644 --- a/test/Transforms/InstCombine/add.ll +++ b/test/Transforms/InstCombine/add.ll @@ -27,6 +27,34 @@ define <2 x i32> @select_0_or_1_from_bool_vec(<2 x i1> %x) { ret <2 x i32> %add } +; This is an 'andn' of the low bit. + +define i32 @flip_and_mask(i32 %x) { +; CHECK-LABEL: @flip_and_mask( +; CHECK-NEXT: [[SHL:%.*]] = shl i32 %x, 31 +; CHECK-NEXT: [[SHR:%.*]] = ashr exact i32 [[SHL]], 31 +; CHECK-NEXT: [[INC:%.*]] = add nsw i32 [[SHR]], 1 +; CHECK-NEXT: ret i32 [[INC]] +; + %shl = shl i32 %x, 31 + %shr = ashr i32 %shl, 31 + %inc = add i32 %shr, 1 + ret i32 %inc +} + +define <2 x i8> @flip_and_mask_splat(<2 x i8> %x) { +; CHECK-LABEL: @flip_and_mask_splat( +; CHECK-NEXT: [[SHL:%.*]] = shl <2 x i8> %x, +; CHECK-NEXT: [[SHR:%.*]] = ashr exact <2 x i8> [[SHL]], +; CHECK-NEXT: [[INC:%.*]] = add nsw <2 x i8> [[SHR]], +; CHECK-NEXT: ret <2 x i8> [[INC]] +; + %shl = shl <2 x i8> %x, + %shr = ashr <2 x i8> %shl, + %inc = add <2 x i8> %shr, + ret <2 x i8> %inc +} + define i32 @test1(i32 %A) { ; CHECK-LABEL: @test1( ; CHECK-NEXT: ret i32 %A -- 2.11.0