From: David Bolvansky Date: Thu, 20 Jun 2019 19:30:56 +0000 (+0000) Subject: [NFC] Updated tests for D63546 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=d6e94a8c32c064acb4ecd64ef1084996420e2bb0;p=llvm [NFC] Updated tests for D63546 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@363967 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/Transforms/InstCombine/cttz-abs.ll b/test/Transforms/InstCombine/cttz-abs.ll index d2a6a868e76..654f3999bc2 100644 --- a/test/Transforms/InstCombine/cttz-abs.ll +++ b/test/Transforms/InstCombine/cttz-abs.ll @@ -4,30 +4,45 @@ define i32 @cttz_abs(i32 %x) { ; CHECK-LABEL: @cttz_abs( ; CHECK-NEXT: [[C:%.*]] = icmp slt i32 [[X:%.*]], 0 -; CHECK-NEXT: [[S:%.*]] = sub nsw i32 0, [[X]] +; CHECK-NEXT: [[S:%.*]] = sub i32 0, [[X]] ; CHECK-NEXT: [[D:%.*]] = select i1 [[C]], i32 [[S]], i32 [[X]] ; CHECK-NEXT: [[R:%.*]] = tail call i32 @llvm.cttz.i32(i32 [[D]], i1 true), !range !0 ; CHECK-NEXT: ret i32 [[R]] ; %c = icmp slt i32 %x, 0 - %s = sub nsw i32 0, %x + %s = sub i32 0, %x %d = select i1 %c, i32 %s, i32 %x %r = tail call i32 @llvm.cttz.i32(i32 %d, i1 true) ret i32 %r } +define <2 x i64> @cttz_abs_vec(<2 x i64> %x) { +; CHECK-LABEL: @cttz_abs_vec( +; CHECK-NEXT: [[C:%.*]] = icmp slt <2 x i64> [[X:%.*]], zeroinitializer +; CHECK-NEXT: [[S:%.*]] = sub <2 x i64> zeroinitializer, [[X]] +; CHECK-NEXT: [[D:%.*]] = select <2 x i1> [[C]], <2 x i64> [[S]], <2 x i64> [[X]] +; CHECK-NEXT: [[R:%.*]] = call <2 x i64> @llvm.cttz.v2i64(<2 x i64> [[D]], i1 false) +; CHECK-NEXT: ret <2 x i64> [[R]] +; + %c = icmp slt <2 x i64> %x, zeroinitializer + %s = sub <2 x i64> zeroinitializer, %x + %d = select <2 x i1> %c, <2 x i64> %s, <2 x i64> %x + %r = tail call <2 x i64> @llvm.cttz.v2i64(<2 x i64> %d) + ret <2 x i64> %r +} + define i32 @cttz_abs2(i32 %x) { ; CHECK-LABEL: @cttz_abs2( ; CHECK-NEXT: [[C:%.*]] = icmp sgt i32 [[X:%.*]], 0 ; CHECK-NEXT: call void @use_cond(i1 [[C]]) -; CHECK-NEXT: [[S:%.*]] = sub nsw i32 0, [[X]] +; CHECK-NEXT: [[S:%.*]] = sub i32 0, [[X]] ; CHECK-NEXT: [[D:%.*]] = select i1 [[C]], i32 [[X]], i32 [[S]] ; CHECK-NEXT: [[R:%.*]] = tail call i32 @llvm.cttz.i32(i32 [[D]], i1 true), !range !0 ; CHECK-NEXT: ret i32 [[R]] ; %c = icmp sgt i32 %x, 0 call void @use_cond(i1 %c) - %s = sub nsw i32 0, %x + %s = sub i32 0, %x %d = select i1 %c, i32 %x, i32 %s %r = tail call i32 @llvm.cttz.i32(i32 %d, i1 true) ret i32 %r @@ -37,14 +52,14 @@ define i32 @cttz_abs3(i32 %x) { ; CHECK-LABEL: @cttz_abs3( ; CHECK-NEXT: [[C:%.*]] = icmp sgt i32 [[X:%.*]], -1 ; CHECK-NEXT: call void @use_cond(i1 [[C]]) -; CHECK-NEXT: [[S:%.*]] = sub nsw i32 0, [[X]] +; CHECK-NEXT: [[S:%.*]] = sub i32 0, [[X]] ; CHECK-NEXT: [[D:%.*]] = select i1 [[C]], i32 [[X]], i32 [[S]] ; CHECK-NEXT: [[R:%.*]] = tail call i32 @llvm.cttz.i32(i32 [[D]], i1 true), !range !0 ; CHECK-NEXT: ret i32 [[R]] ; %c = icmp sgt i32 %x, -1 call void @use_cond(i1 %c) - %s = sub nsw i32 0, %x + %s = sub i32 0, %x %d = select i1 %c, i32 %x, i32 %s %r = tail call i32 @llvm.cttz.i32(i32 %d, i1 true) ret i32 %r @@ -53,45 +68,109 @@ define i32 @cttz_abs3(i32 %x) { define i32 @cttz_abs4(i32 %x) { ; CHECK-LABEL: @cttz_abs4( ; CHECK-NEXT: [[C:%.*]] = icmp slt i32 [[X:%.*]], 0 -; CHECK-NEXT: [[S:%.*]] = sub nsw i32 0, [[X]] +; CHECK-NEXT: [[S:%.*]] = sub i32 0, [[X]] ; CHECK-NEXT: [[D:%.*]] = select i1 [[C]], i32 [[S]], i32 [[X]] ; CHECK-NEXT: [[R:%.*]] = tail call i32 @llvm.cttz.i32(i32 [[D]], i1 true), !range !0 ; CHECK-NEXT: ret i32 [[R]] ; %c = icmp slt i32 %x, 1 - %s = sub nsw i32 0, %x + %s = sub i32 0, %x %d = select i1 %c, i32 %s, i32 %x %r = tail call i32 @llvm.cttz.i32(i32 %d, i1 true) ret i32 %r } +define i32 @cttz_nabs(i32 %x) { +; CHECK-LABEL: @cttz_nabs( +; CHECK-NEXT: [[C:%.*]] = icmp slt i32 [[X:%.*]], 0 +; CHECK-NEXT: [[S:%.*]] = sub i32 0, [[X]] +; CHECK-NEXT: [[D:%.*]] = select i1 [[C]], i32 [[X]], i32 [[S]] +; CHECK-NEXT: [[R:%.*]] = tail call i32 @llvm.cttz.i32(i32 [[D]], i1 false), !range !0 +; CHECK-NEXT: ret i32 [[R]] +; + %c = icmp slt i32 %x, 0 + %s = sub i32 0, %x + %d = select i1 %c, i32 %x, i32 %s + %r = tail call i32 @llvm.cttz.i32(i32 %d, i1 false) + ret i32 %r +} + +define <2 x i64> @cttz_nabs_vec(<2 x i64> %x) { +; CHECK-LABEL: @cttz_nabs_vec( +; CHECK-NEXT: [[C:%.*]] = icmp slt <2 x i64> [[X:%.*]], zeroinitializer +; CHECK-NEXT: [[S:%.*]] = sub <2 x i64> zeroinitializer, [[X]] +; CHECK-NEXT: [[D:%.*]] = select <2 x i1> [[C]], <2 x i64> [[X]], <2 x i64> [[S]] +; CHECK-NEXT: [[R:%.*]] = call <2 x i64> @llvm.cttz.v2i64(<2 x i64> [[D]], i1 false) +; CHECK-NEXT: ret <2 x i64> [[R]] +; + %c = icmp slt <2 x i64> %x, zeroinitializer + %s = sub <2 x i64> zeroinitializer, %x + %d = select <2 x i1> %c, <2 x i64> %x, <2 x i64> %s + %r = tail call <2 x i64> @llvm.cttz.v2i64(<2 x i64> %d) + ret <2 x i64> %r +} + define i64 @cttz_abs_64(i64 %x) { ; CHECK-LABEL: @cttz_abs_64( ; CHECK-NEXT: [[C:%.*]] = icmp slt i64 [[X:%.*]], 0 -; CHECK-NEXT: [[S:%.*]] = sub nsw i64 0, [[X]] +; CHECK-NEXT: [[S:%.*]] = sub i64 0, [[X]] ; CHECK-NEXT: [[D:%.*]] = select i1 [[C]], i64 [[S]], i64 [[X]] ; CHECK-NEXT: [[R:%.*]] = call i64 @llvm.cttz.i64(i64 [[D]], i1 false), !range !1 ; CHECK-NEXT: ret i64 [[R]] ; %c = icmp slt i64 %x, 0 - %s = sub nsw i64 0, %x + %s = sub i64 0, %x %d = select i1 %c, i64 %s, i64 %x %r = tail call i64 @llvm.cttz.i64(i64 %d) ret i64 %r } +define i32 @cttz_abs_multiuse(i32 %x) { +; CHECK-LABEL: @cttz_abs_multiuse( +; CHECK-NEXT: [[C:%.*]] = icmp slt i32 [[X:%.*]], 0 +; CHECK-NEXT: [[S:%.*]] = sub i32 0, [[X]] +; CHECK-NEXT: [[D:%.*]] = select i1 [[C]], i32 [[S]], i32 [[X]] +; CHECK-NEXT: call void @use_abs(i32 [[D]]) +; CHECK-NEXT: [[R:%.*]] = tail call i32 @llvm.cttz.i32(i32 [[D]], i1 true), !range !0 +; CHECK-NEXT: ret i32 [[R]] +; + %c = icmp slt i32 %x, 1 + %s = sub i32 0, %x + %d = select i1 %c, i32 %s, i32 %x + call void @use_abs(i32 %d) + %r = tail call i32 @llvm.cttz.i32(i32 %d, i1 true) + ret i32 %r +} + +define i32 @cttz_nabs_multiuse(i32 %x) { +; CHECK-LABEL: @cttz_nabs_multiuse( +; CHECK-NEXT: [[C:%.*]] = icmp slt i32 [[X:%.*]], 0 +; CHECK-NEXT: [[S:%.*]] = sub i32 0, [[X]] +; CHECK-NEXT: [[D:%.*]] = select i1 [[C]], i32 [[X]], i32 [[S]] +; CHECK-NEXT: call void @use_abs(i32 [[D]]) +; CHECK-NEXT: [[R:%.*]] = tail call i32 @llvm.cttz.i32(i32 [[D]], i1 true), !range !0 +; CHECK-NEXT: ret i32 [[R]] +; + %c = icmp slt i32 %x, 1 + %s = sub i32 0, %x + %d = select i1 %c, i32 %x, i32 %s + call void @use_abs(i32 %d) + %r = tail call i32 @llvm.cttz.i32(i32 %d, i1 true) + ret i32 %r +} + ; Negative tests define i32 @no_cttz_abs(i32 %x) { ; CHECK-LABEL: @no_cttz_abs( ; CHECK-NEXT: [[C:%.*]] = icmp slt i32 [[X:%.*]], 2 -; CHECK-NEXT: [[S:%.*]] = sub nsw i32 0, [[X]] +; CHECK-NEXT: [[S:%.*]] = sub i32 0, [[X]] ; CHECK-NEXT: [[D:%.*]] = select i1 [[C]], i32 [[S]], i32 [[X]] ; CHECK-NEXT: [[R:%.*]] = tail call i32 @llvm.cttz.i32(i32 [[D]], i1 true), !range !0 ; CHECK-NEXT: ret i32 [[R]] ; %c = icmp slt i32 %x, 2 - %s = sub nsw i32 0, %x + %s = sub i32 0, %x %d = select i1 %c, i32 %s, i32 %x %r = tail call i32 @llvm.cttz.i32(i32 %d, i1 true) ret i32 %r @@ -100,66 +179,63 @@ define i32 @no_cttz_abs(i32 %x) { define i32 @no_cttz_abs2(i32 %x) { ; CHECK-LABEL: @no_cttz_abs2( ; CHECK-NEXT: [[C:%.*]] = icmp slt i32 [[X:%.*]], 0 -; CHECK-NEXT: [[S:%.*]] = sub nsw i32 1, [[X]] +; CHECK-NEXT: [[S:%.*]] = sub i32 1, [[X]] ; CHECK-NEXT: [[D:%.*]] = select i1 [[C]], i32 [[S]], i32 [[X]] ; CHECK-NEXT: [[R:%.*]] = tail call i32 @llvm.cttz.i32(i32 [[D]], i1 true), !range !0 ; CHECK-NEXT: ret i32 [[R]] ; %c = icmp slt i32 %x, 0 - %s = sub nsw i32 1, %x + %s = sub i32 1, %x %d = select i1 %c, i32 %s, i32 %x %r = tail call i32 @llvm.cttz.i32(i32 %d, i1 true) ret i32 %r } - define i32 @no_cttz_abs3(i32 %x) { ; CHECK-LABEL: @no_cttz_abs3( -; CHECK-NEXT: [[C:%.*]] = icmp slt i32 [[X:%.*]], 0 -; CHECK-NEXT: [[S:%.*]] = sub nsw i32 0, [[X]] -; CHECK-NEXT: [[D:%.*]] = select i1 [[C]], i32 [[X]], i32 [[S]] -; CHECK-NEXT: [[R:%.*]] = tail call i32 @llvm.cttz.i32(i32 [[D]], i1 false), !range !0 -; CHECK-NEXT: ret i32 [[R]] -; - %c = icmp slt i32 %x, 0 - %s = sub nsw i32 0, %x - %d = select i1 %c, i32 %x, i32 %s - %r = tail call i32 @llvm.cttz.i32(i32 %d, i1 false) - ret i32 %r -} - -define i32 @no_cttz_abs4(i32 %x) { -; CHECK-LABEL: @no_cttz_abs4( ; CHECK-NEXT: [[C:%.*]] = icmp sgt i32 [[X:%.*]], -2 ; CHECK-NEXT: call void @use_cond(i1 [[C]]) -; CHECK-NEXT: [[S:%.*]] = sub nsw i32 0, [[X]] +; CHECK-NEXT: [[S:%.*]] = sub i32 0, [[X]] ; CHECK-NEXT: [[D:%.*]] = select i1 [[C]], i32 [[X]], i32 [[S]] ; CHECK-NEXT: [[R:%.*]] = tail call i32 @llvm.cttz.i32(i32 [[D]], i1 true), !range !0 ; CHECK-NEXT: ret i32 [[R]] ; %c = icmp sgt i32 %x, -2 call void @use_cond(i1 %c) - %s = sub nsw i32 0, %x + %s = sub i32 0, %x %d = select i1 %c, i32 %x, i32 %s %r = tail call i32 @llvm.cttz.i32(i32 %d, i1 true) ret i32 %r } -define i32 @no_cttz_abs_multiuse(i32 %x) { -; CHECK-LABEL: @no_cttz_abs_multiuse( -; CHECK-NEXT: [[C:%.*]] = icmp slt i32 [[X:%.*]], 0 -; CHECK-NEXT: [[S:%.*]] = sub nsw i32 0, [[X]] -; CHECK-NEXT: [[D:%.*]] = select i1 [[C]], i32 [[S]], i32 [[X]] -; CHECK-NEXT: call void @use_abs(i32 [[D]]) -; CHECK-NEXT: [[R:%.*]] = tail call i32 @llvm.cttz.i32(i32 [[D]], i1 true), !range !0 -; CHECK-NEXT: ret i32 [[R]] +define <2 x i64> @no_cttz_abs_vec(<2 x i64> %x) { +; CHECK-LABEL: @no_cttz_abs_vec( +; CHECK-NEXT: [[C:%.*]] = icmp slt <2 x i64> [[X:%.*]], +; CHECK-NEXT: [[S:%.*]] = sub <2 x i64> , [[X]] +; CHECK-NEXT: [[D:%.*]] = select <2 x i1> [[C]], <2 x i64> [[S]], <2 x i64> [[X]] +; CHECK-NEXT: [[R:%.*]] = call <2 x i64> @llvm.cttz.v2i64(<2 x i64> [[D]], i1 false) +; CHECK-NEXT: ret <2 x i64> [[R]] ; - %c = icmp slt i32 %x, 1 - %s = sub nsw i32 0, %x - %d = select i1 %c, i32 %s, i32 %x - call void @use_abs(i32 %d) - %r = tail call i32 @llvm.cttz.i32(i32 %d, i1 true) - ret i32 %r + %c = icmp slt <2 x i64> %x, + %s = sub <2 x i64> , %x + %d = select <2 x i1> %c, <2 x i64> %s, <2 x i64> %x + %r = tail call <2 x i64> @llvm.cttz.v2i64(<2 x i64> %d) + ret <2 x i64> %r +} + +define <2 x i64> @no_cttz_nabs_vec(<2 x i64> %x) { +; CHECK-LABEL: @no_cttz_nabs_vec( +; CHECK-NEXT: [[C:%.*]] = icmp slt <2 x i64> [[X:%.*]], +; CHECK-NEXT: [[S:%.*]] = sub <2 x i64> , [[X]] +; CHECK-NEXT: [[D:%.*]] = select <2 x i1> [[C]], <2 x i64> [[X]], <2 x i64> [[S]] +; CHECK-NEXT: [[R:%.*]] = call <2 x i64> @llvm.cttz.v2i64(<2 x i64> [[D]], i1 false) +; CHECK-NEXT: ret <2 x i64> [[R]] +; + %c = icmp slt <2 x i64> %x, + %s = sub <2 x i64> , %x + %d = select <2 x i1> %c, <2 x i64> %x, <2 x i64> %s + %r = tail call <2 x i64> @llvm.cttz.v2i64(<2 x i64> %d) + ret <2 x i64> %r } @@ -167,3 +243,4 @@ declare void @use_cond(i1) declare void @use_abs(i32) declare i32 @llvm.cttz.i32(i32, i1) declare i64 @llvm.cttz.i64(i64) +declare <2 x i64> @llvm.cttz.v2i64(<2 x i64>)