[llvm] r357894 - [InstCombine] add more testcases for sdiv exact flag fixup.
Chen Zheng via llvm-commits
llvm-commits at lists.llvm.org
Mon Apr 8 02:19:42 PDT 2019
Author: shchenz
Date: Mon Apr 8 02:19:42 2019
New Revision: 357894
URL: http://llvm.org/viewvc/llvm-project?rev=357894&view=rev
Log:
[InstCombine] add more testcases for sdiv exact flag fixup.
Modified:
llvm/trunk/test/Transforms/InstCombine/div.ll
Modified: llvm/trunk/test/Transforms/InstCombine/div.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/Transforms/InstCombine/div.ll?rev=357894&r1=357893&r2=357894&view=diff
==============================================================================
--- llvm/trunk/test/Transforms/InstCombine/div.ll (original)
+++ llvm/trunk/test/Transforms/InstCombine/div.ll Mon Apr 8 02:19:42 2019
@@ -760,10 +760,10 @@ define <2 x i8> @udiv_common_factor_not_
ret <2 x i8> %c
}
-define i32 @test_exact(i32 %x) {
-; CHECK-LABEL: @test_exact(
-; CHECK-NEXT: [[DIV:%.*]] = sdiv i32 [[X:%.*]], -3
-; CHECK-NEXT: ret i32 [[DIV]]
+define i32 @test_exact_nsw_exact(i32 %x) {
+; CHECK-LABEL: @test_exact_nsw_exact(
+; CHECK-NEXT: [[NEG:%.*]] = sdiv i32 [[X:%.*]], -3
+; CHECK-NEXT: ret i32 [[NEG]]
;
%div = sdiv exact i32 %x, 3
%neg = sub nsw i32 0, %div
@@ -772,10 +772,72 @@ define i32 @test_exact(i32 %x) {
define <2 x i64> @test_exact_vec(<2 x i64> %x) {
; CHECK-LABEL: @test_exact_vec(
-; CHECK-NEXT: [[DIV:%.*]] = sdiv <2 x i64> [[X:%.*]], <i64 -3, i64 -4>
-; CHECK-NEXT: ret <2 x i64> [[DIV]]
+; CHECK-NEXT: [[NEG:%.*]] = sdiv <2 x i64> [[X:%.*]], <i64 -3, i64 -4>
+; CHECK-NEXT: ret <2 x i64> [[NEG]]
;
%div = sdiv exact <2 x i64> %x, <i64 3, i64 4>
%neg = sub nsw <2 x i64> zeroinitializer, %div
ret <2 x i64> %neg
}
+
+define i32 @test_exact_nonsw_exact(i32 %x) {
+; CHECK-LABEL: @test_exact_nonsw_exact(
+; CHECK-NEXT: [[NEG:%.*]] = sdiv i32 [[X:%.*]], -3
+; CHECK-NEXT: ret i32 [[NEG]]
+;
+ %div = sdiv exact i32 %x, 3
+ %neg = sub i32 0, %div
+ ret i32 %neg
+}
+
+define i32 @test_exact_nsw_noexact(i32 %x) {
+; CHECK-LABEL: @test_exact_nsw_noexact(
+; CHECK-NEXT: [[NEG:%.*]] = sdiv i32 [[X:%.*]], -3
+; CHECK-NEXT: ret i32 [[NEG]]
+;
+ %div = sdiv i32 %x, 3
+ %neg = sub nsw i32 0, %div
+ ret i32 %neg
+}
+
+define i32 @test_exact_nonsw_noexact(i32 %x) {
+; CHECK-LABEL: @test_exact_nonsw_noexact(
+; CHECK-NEXT: [[NEG:%.*]] = sdiv i32 [[X:%.*]], -3
+; CHECK-NEXT: ret i32 [[NEG]]
+;
+ %div = sdiv i32 %x, 3
+ %neg = sub nsw i32 0, %div
+ ret i32 %neg
+}
+
+define i32 @test_exact_div_nonconst(i32 %x, i32 %y) {
+; CHECK-LABEL: @test_exact_div_nonconst(
+; CHECK-NEXT: [[DIV:%.*]] = sdiv exact i32 [[X:%.*]], [[Y:%.*]]
+; CHECK-NEXT: [[NEG:%.*]] = sub nsw i32 0, [[DIV]]
+; CHECK-NEXT: ret i32 [[NEG]]
+;
+ %div = sdiv exact i32 %x, %y
+ %neg = sub nsw i32 0, %div
+ ret i32 %neg
+}
+
+define i32 @test_exact_div_one(i32 %x) {
+; CHECK-LABEL: @test_exact_div_one(
+; CHECK-NEXT: [[NEG:%.*]] = sub nsw i32 0, [[X:%.*]]
+; CHECK-NEXT: ret i32 [[NEG]]
+;
+ %div = sdiv exact i32 %x, 1
+ %neg = sub nsw i32 0, %div
+ ret i32 %neg
+}
+
+define i8 @test_exact_div_minSigned(i8 %x) {
+; CHECK-LABEL: @test_exact_div_minSigned(
+; CHECK-NEXT: [[TMP1:%.*]] = icmp eq i8 [[X:%.*]], -128
+; CHECK-NEXT: [[NEG:%.*]] = sext i1 [[TMP1]] to i8
+; CHECK-NEXT: ret i8 [[NEG]]
+;
+ %div = sdiv exact i8 %x, -128
+ %neg = sub nsw i8 0, %div
+ ret i8 %neg
+}
More information about the llvm-commits
mailing list