1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138
|
; NOTE: Assertions have been autogenerated by utils/update_test_checks.py
; RUN: opt -passes=instcombine -S < %s | FileCheck %s
declare void @use_i8(i8)
define i8 @mul_selectp2_x(i8 %x, i1 %c) {
; CHECK-LABEL: @mul_selectp2_x(
; CHECK-NEXT: [[TMP1:%.*]] = select i1 [[C:%.*]], i8 1, i8 2
; CHECK-NEXT: [[R:%.*]] = shl i8 [[X:%.*]], [[TMP1]]
; CHECK-NEXT: ret i8 [[R]]
;
%s = select i1 %c, i8 2, i8 4
%r = mul i8 %s, %x
ret i8 %r
}
define i8 @mul_selectp2_x_propegate_nuw(i8 %x, i1 %c) {
; CHECK-LABEL: @mul_selectp2_x_propegate_nuw(
; CHECK-NEXT: [[TMP1:%.*]] = select i1 [[C:%.*]], i8 1, i8 2
; CHECK-NEXT: [[R:%.*]] = shl nuw i8 [[X:%.*]], [[TMP1]]
; CHECK-NEXT: ret i8 [[R]]
;
%s = select i1 %c, i8 2, i8 4
%r = mul nuw nsw i8 %s, %x
ret i8 %r
}
define i8 @mul_selectp2_x_multiuse_fixme(i8 %x, i1 %c) {
; CHECK-LABEL: @mul_selectp2_x_multiuse_fixme(
; CHECK-NEXT: [[S:%.*]] = select i1 [[C:%.*]], i8 2, i8 4
; CHECK-NEXT: [[TMP1:%.*]] = select i1 [[C]], i8 1, i8 2
; CHECK-NEXT: [[R:%.*]] = shl i8 [[X:%.*]], [[TMP1]]
; CHECK-NEXT: call void @use_i8(i8 [[S]])
; CHECK-NEXT: ret i8 [[R]]
;
%s = select i1 %c, i8 2, i8 4
%r = mul i8 %s, %x
call void @use_i8(i8 %s)
ret i8 %r
}
define i8 @mul_selectp2_x_non_const(i8 %x, i1 %c, i8 %yy) {
; CHECK-LABEL: @mul_selectp2_x_non_const(
; CHECK-NEXT: [[TMP1:%.*]] = select i1 [[C:%.*]], i8 1, i8 [[YY:%.*]]
; CHECK-NEXT: [[R:%.*]] = shl i8 [[X:%.*]], [[TMP1]]
; CHECK-NEXT: ret i8 [[R]]
;
%y = shl i8 1, %yy
%s = select i1 %c, i8 2, i8 %y
%r = mul i8 %s, %x
ret i8 %r
}
define i8 @mul_selectp2_x_non_const_multiuse(i8 %x, i1 %c, i8 %yy) {
; CHECK-LABEL: @mul_selectp2_x_non_const_multiuse(
; CHECK-NEXT: [[Y:%.*]] = shl nuw i8 1, [[YY:%.*]]
; CHECK-NEXT: [[TMP1:%.*]] = select i1 [[C:%.*]], i8 1, i8 [[YY]]
; CHECK-NEXT: [[R:%.*]] = shl i8 [[X:%.*]], [[TMP1]]
; CHECK-NEXT: call void @use_i8(i8 [[Y]])
; CHECK-NEXT: ret i8 [[R]]
;
%y = shl i8 1, %yy
%s = select i1 %c, i8 2, i8 %y
%r = mul i8 %s, %x
call void @use_i8(i8 %y)
ret i8 %r
}
define i8 @mul_x_selectp2(i8 %xx, i1 %c) {
; CHECK-LABEL: @mul_x_selectp2(
; CHECK-NEXT: [[X:%.*]] = mul i8 [[XX:%.*]], [[XX]]
; CHECK-NEXT: [[TMP1:%.*]] = select i1 [[C:%.*]], i8 3, i8 0
; CHECK-NEXT: [[R:%.*]] = shl i8 [[X]], [[TMP1]]
; CHECK-NEXT: ret i8 [[R]]
;
%x = mul i8 %xx, %xx
%s = select i1 %c, i8 8, i8 1
%r = mul i8 %x, %s
ret i8 %r
}
define i8 @mul_select_nonp2_x_fail(i8 %x, i1 %c) {
; CHECK-LABEL: @mul_select_nonp2_x_fail(
; CHECK-NEXT: [[S:%.*]] = select i1 [[C:%.*]], i8 2, i8 5
; CHECK-NEXT: [[R:%.*]] = mul i8 [[S]], [[X:%.*]]
; CHECK-NEXT: ret i8 [[R]]
;
%s = select i1 %c, i8 2, i8 5
%r = mul i8 %s, %x
ret i8 %r
}
define <2 x i8> @mul_x_selectp2_vec(<2 x i8> %xx, i1 %c) {
; CHECK-LABEL: @mul_x_selectp2_vec(
; CHECK-NEXT: [[X:%.*]] = mul <2 x i8> [[XX:%.*]], [[XX]]
; CHECK-NEXT: [[TMP1:%.*]] = select i1 [[C:%.*]], <2 x i8> <i8 3, i8 4>, <2 x i8> <i8 2, i8 0>
; CHECK-NEXT: [[R:%.*]] = shl <2 x i8> [[X]], [[TMP1]]
; CHECK-NEXT: ret <2 x i8> [[R]]
;
%x = mul <2 x i8> %xx, %xx
%s = select i1 %c, <2 x i8> <i8 8, i8 16>, <2 x i8> <i8 4, i8 1>
%r = mul <2 x i8> %x, %s
ret <2 x i8> %r
}
define i8 @shl_add_log_may_cause_poison_pr62175_fail(i8 %x, i8 %y) {
; CHECK-LABEL: @shl_add_log_may_cause_poison_pr62175_fail(
; CHECK-NEXT: [[SHL:%.*]] = shl i8 4, [[X:%.*]]
; CHECK-NEXT: [[MUL:%.*]] = mul i8 [[SHL]], [[Y:%.*]]
; CHECK-NEXT: ret i8 [[MUL]]
;
%shl = shl i8 4, %x
%mul = mul i8 %y, %shl
ret i8 %mul
}
define i8 @shl_add_log_may_cause_poison_pr62175_with_nuw(i8 %x, i8 %y) {
; CHECK-LABEL: @shl_add_log_may_cause_poison_pr62175_with_nuw(
; CHECK-NEXT: [[TMP1:%.*]] = add i8 [[X:%.*]], 2
; CHECK-NEXT: [[MUL:%.*]] = shl i8 [[Y:%.*]], [[TMP1]]
; CHECK-NEXT: ret i8 [[MUL]]
;
%shl = shl nuw i8 4, %x
%mul = mul i8 %y, %shl
ret i8 %mul
}
define i8 @shl_add_log_may_cause_poison_pr62175_with_nsw(i8 %x, i8 %y) {
; CHECK-LABEL: @shl_add_log_may_cause_poison_pr62175_with_nsw(
; CHECK-NEXT: [[TMP1:%.*]] = add i8 [[X:%.*]], 2
; CHECK-NEXT: [[MUL:%.*]] = shl i8 [[Y:%.*]], [[TMP1]]
; CHECK-NEXT: ret i8 [[MUL]]
;
%shl = shl nsw i8 4, %x
%mul = mul i8 %y, %shl
ret i8 %mul
}
|