[InstCombine] Signed saturation patterns
[llvm-core.git] / test / Transforms / InstCombine / unsigned-mul-lack-of-overflow-check-via-udiv-of-allones.ll
blobcfc7a01d764328f1c5f7fe57ec318b9afe843669
1 ; NOTE: Assertions have been autogenerated by utils/update_test_checks.py
2 ; RUN: opt %s -instcombine -S | FileCheck %s
4 ; Fold
5 ;   (-1 u/ %x) u>= %y
6 ; to
7 ;   @llvm.umul.with.overflow(%x, %y) + extractvalue + not
9 define i1 @t0_basic(i8 %x, i8 %y) {
10 ; CHECK-LABEL: @t0_basic(
11 ; CHECK-NEXT:    [[UMUL:%.*]] = call { i8, i1 } @llvm.umul.with.overflow.i8(i8 [[X:%.*]], i8 [[Y:%.*]])
12 ; CHECK-NEXT:    [[UMUL_OV:%.*]] = extractvalue { i8, i1 } [[UMUL]], 1
13 ; CHECK-NEXT:    [[UMUL_NOT_OV:%.*]] = xor i1 [[UMUL_OV]], true
14 ; CHECK-NEXT:    ret i1 [[UMUL_NOT_OV]]
16   %t0 = udiv i8 -1, %x
17   %r = icmp uge i8 %t0, %y
18   ret i1 %r
21 define <2 x i1> @t1_vec(<2 x i8> %x, <2 x i8> %y) {
22 ; CHECK-LABEL: @t1_vec(
23 ; CHECK-NEXT:    [[UMUL:%.*]] = call { <2 x i8>, <2 x i1> } @llvm.umul.with.overflow.v2i8(<2 x i8> [[X:%.*]], <2 x i8> [[Y:%.*]])
24 ; CHECK-NEXT:    [[UMUL_OV:%.*]] = extractvalue { <2 x i8>, <2 x i1> } [[UMUL]], 1
25 ; CHECK-NEXT:    [[UMUL_NOT_OV:%.*]] = xor <2 x i1> [[UMUL_OV]], <i1 true, i1 true>
26 ; CHECK-NEXT:    ret <2 x i1> [[UMUL_NOT_OV]]
28   %t0 = udiv <2 x i8> <i8 -1, i8 -1>, %x
29   %r = icmp uge <2 x i8> %t0, %y
30   ret <2 x i1> %r
33 define <3 x i1> @t2_vec_undef(<3 x i8> %x, <3 x i8> %y) {
34 ; CHECK-LABEL: @t2_vec_undef(
35 ; CHECK-NEXT:    [[UMUL:%.*]] = call { <3 x i8>, <3 x i1> } @llvm.umul.with.overflow.v3i8(<3 x i8> [[X:%.*]], <3 x i8> [[Y:%.*]])
36 ; CHECK-NEXT:    [[UMUL_OV:%.*]] = extractvalue { <3 x i8>, <3 x i1> } [[UMUL]], 1
37 ; CHECK-NEXT:    [[UMUL_NOT_OV:%.*]] = xor <3 x i1> [[UMUL_OV]], <i1 true, i1 true, i1 true>
38 ; CHECK-NEXT:    ret <3 x i1> [[UMUL_NOT_OV]]
40   %t0 = udiv <3 x i8> <i8 -1, i8 undef, i8 -1>, %x
41   %r = icmp uge <3 x i8> %t0, %y
42   ret <3 x i1> %r
45 declare i8 @gen8()
47 define i1 @t3_commutative(i8 %x) {
48 ; CHECK-LABEL: @t3_commutative(
49 ; CHECK-NEXT:    [[Y:%.*]] = call i8 @gen8()
50 ; CHECK-NEXT:    [[UMUL:%.*]] = call { i8, i1 } @llvm.umul.with.overflow.i8(i8 [[X:%.*]], i8 [[Y]])
51 ; CHECK-NEXT:    [[UMUL_OV:%.*]] = extractvalue { i8, i1 } [[UMUL]], 1
52 ; CHECK-NEXT:    [[UMUL_NOT_OV:%.*]] = xor i1 [[UMUL_OV]], true
53 ; CHECK-NEXT:    ret i1 [[UMUL_NOT_OV]]
55   %t0 = udiv i8 -1, %x
56   %y = call i8 @gen8()
57   %r = icmp ule i8 %y, %t0 ; swapped
58   ret i1 %r
61 ; Negative tests
63 declare void @use8(i8)
65 define i1 @n4_extrause(i8 %x, i8 %y) {
66 ; CHECK-LABEL: @n4_extrause(
67 ; CHECK-NEXT:    [[T0:%.*]] = udiv i8 -1, [[X:%.*]]
68 ; CHECK-NEXT:    call void @use8(i8 [[T0]])
69 ; CHECK-NEXT:    [[R:%.*]] = icmp uge i8 [[T0]], [[Y:%.*]]
70 ; CHECK-NEXT:    ret i1 [[R]]
72   %t0 = udiv i8 -1, %x
73   call void @use8(i8 %t0)
74   %r = icmp uge i8 %t0, %y
75   ret i1 %r
78 define i1 @n5_not_negone(i8 %x, i8 %y) {
79 ; CHECK-LABEL: @n5_not_negone(
80 ; CHECK-NEXT:    [[T0:%.*]] = udiv i8 -2, [[X:%.*]]
81 ; CHECK-NEXT:    [[R:%.*]] = icmp uge i8 [[T0]], [[Y:%.*]]
82 ; CHECK-NEXT:    ret i1 [[R]]
84   %t0 = udiv i8 -2, %x ; not -1
85   %r = icmp uge i8 %t0, %y
86   ret i1 %r
89 define i1 @n6_wrong_pred0(i8 %x, i8 %y) {
90 ; CHECK-LABEL: @n6_wrong_pred0(
91 ; CHECK-NEXT:    [[T0:%.*]] = udiv i8 -1, [[X:%.*]]
92 ; CHECK-NEXT:    [[R:%.*]] = icmp ule i8 [[T0]], [[Y:%.*]]
93 ; CHECK-NEXT:    ret i1 [[R]]
95   %t0 = udiv i8 -1, %x
96   %r = icmp ule i8 %t0, %y ; not uge
97   ret i1 %r
100 define i1 @n6_wrong_pred1(i8 %x, i8 %y) {
101 ; CHECK-LABEL: @n6_wrong_pred1(
102 ; CHECK-NEXT:    [[T0:%.*]] = udiv i8 -1, [[X:%.*]]
103 ; CHECK-NEXT:    [[R:%.*]] = icmp ugt i8 [[T0]], [[Y:%.*]]
104 ; CHECK-NEXT:    ret i1 [[R]]
106   %t0 = udiv i8 -1, %x
107   %r = icmp ugt i8 %t0, %y ; not uge
108   ret i1 %r