; NOTE: Assertions have been autogenerated by utils/update_test_checks.py
; RUN: opt < %s -passes=instsimplify -S | FileCheck %s
target datalayout = "e-p:64:64:64-p1:16:16:16-p2:32:32:32-p3:64:64:64-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:64:64-f32:32:32-f64:64:64-v64:64:64-v128:128:128-a0:0:64-s0:64:64-f80:128:128-n8:16:32:64"
declare void @usei8ptr(ptr %ptr)
; Ensure that we do not crash when looking at such a weird bitcast.
define i1 @bitcast_from_single_element_pointer_vector_to_pointer(<1 x ptr> %ptr1vec, ptr %ptr2) {
; CHECK-LABEL: @bitcast_from_single_element_pointer_vector_to_pointer(
; CHECK-NEXT: [[PTR1:%.*]] = bitcast <1 x ptr> [[PTR1VEC:%.*]] to ptr
; CHECK-NEXT: call void @usei8ptr(ptr [[PTR1]])
; CHECK-NEXT: [[CMP:%.*]] = icmp eq ptr [[PTR1]], [[PTR2:%.*]]
; CHECK-NEXT: ret i1 [[CMP]]
;
%ptr1 = bitcast <1 x ptr> %ptr1vec to ptr
call void @usei8ptr(ptr %ptr1)
%cmp = icmp eq ptr %ptr1, %ptr2
ret i1 %cmp
}
define i1 @poison(i32 %x) {
; CHECK-LABEL: @poison(
; CHECK-NEXT: ret i1 poison
;
%v = icmp eq i32 %x, poison
ret i1 %v
}
define i1 @poison2(i32 %x) {
; CHECK-LABEL: @poison2(
; CHECK-NEXT: ret i1 poison
;
%v = icmp slt i32 %x, poison
ret i1 %v
}
define i1 @mul_div_cmp_smaller(i8 %x) {
; CHECK-LABEL: @mul_div_cmp_smaller(
; CHECK-NEXT: ret i1 true
;
%mul = mul i8 %x, 3
%div = udiv i8 %mul, 4
%cmp = icmp ule i8 %div, %x
ret i1 %cmp
}
define i1 @mul_div_cmp_equal(i8 %x) {
; CHECK-LABEL: @mul_div_cmp_equal(
; CHECK-NEXT: ret i1 true
;
%mul = mul i8 %x, 3
%div = udiv i8 %mul, 3
%cmp = icmp ule i8 %div, %x
ret i1 %cmp
}
; Negative test: 3>2
define i1 @mul_div_cmp_greater(i8 %x) {
; CHECK-LABEL: @mul_div_cmp_greater(
; CHECK-NEXT: [[MUL:%.*]] = mul i8 [[X:%.*]], 3
; CHECK-NEXT: [[DIV:%.*]] = udiv i8 [[MUL]], 2
; CHECK-NEXT: [[CMP:%.*]] = icmp ule i8 [[DIV]], [[X]]
; CHECK-NEXT: ret i1 [[CMP]]
;
%mul = mul i8 %x, 3
%div = udiv i8 %mul, 2
%cmp = icmp ule i8 %div, %x
ret i1 %cmp
}
define i1 @mul_div_cmp_ugt(i8 %x) {
; CHECK-LABEL: @mul_div_cmp_ugt(
; CHECK-NEXT: ret i1 false
;
%mul = mul i8 %x, 3
%div = udiv i8 %mul, 4
%cmp = icmp ugt i8 %div, %x
ret i1 %cmp
}
; Negative test: Wrong predicate
define i1 @mul_div_cmp_uge(i8 %x) {
; CHECK-LABEL: @mul_div_cmp_uge(
; CHECK-NEXT: [[MUL:%.*]] = mul i8 [[X:%.*]], 3
; CHECK-NEXT: [[DIV:%.*]] = udiv i8 [[MUL]], 4
; CHECK-NEXT: [[CMP:%.*]] = icmp uge i8 [[DIV]], [[X]]
; CHECK-NEXT: ret i1 [[CMP]]
;
%mul = mul i8 %x, 3
%div = udiv i8 %mul, 4
%cmp = icmp uge i8 %div, %x
ret i1 %cmp
}
; Negative test: Wrong predicate
define i1 @mul_div_cmp_ult(i8 %x) {
; CHECK-LABEL: @mul_div_cmp_ult(
; CHECK-NEXT: [[MUL:%.*]] = mul i8 [[X:%.*]], 3
; CHECK-NEXT: [[DIV:%.*]] = udiv i8 [[MUL]], 4
; CHECK-NEXT: [[CMP:%.*]] = icmp ult i8 [[DIV]], [[X]]
; CHECK-NEXT: ret i1 [[CMP]]
;
%mul = mul i8 %x, 3
%div = udiv i8 %mul, 4
%cmp = icmp ult i8 %div, %x
ret i1 %cmp
}
; Negative test: Wrong icmp operand
define i1 @mul_div_cmp_wrong_operand(i8 %x, i8 %y) {
; CHECK-LABEL: @mul_div_cmp_wrong_operand(
; CHECK-NEXT: [[MUL:%.*]] = mul i8 [[X:%.*]], 3
; CHECK-NEXT: [[DIV:%.*]] = udiv i8 [[MUL]], 4
; CHECK-NEXT: [[CMP:%.*]] = icmp ule i8 [[DIV]], [[Y:%.*]]
; CHECK-NEXT: ret i1 [[CMP]]
;
%mul = mul i8 %x, 3
%div = udiv i8 %mul, 4
%cmp = icmp ule i8 %div, %y
ret i1 %cmp
}
define i1 @mul_lshr_cmp_smaller(i8 %x) {
; CHECK-LABEL: @mul_lshr_cmp_smaller(
; CHECK-NEXT: ret i1 true
;
%mul = mul i8 %x, 3
%div = lshr i8 %mul, 2
%cmp = icmp ule i8 %div, %x
ret i1 %cmp
}
define i1 @mul_lshr_cmp_equal(i8 %x) {
; CHECK-LABEL: @mul_lshr_cmp_equal(
; CHECK-NEXT: ret i1 true
;
%mul = mul i8 %x, 4
%div = lshr i8 %mul, 2
%cmp = icmp ule i8 %div, %x
ret i1 %cmp
}
define i1 @mul_lshr_cmp_greater(i8 %x) {
; CHECK-LABEL: @mul_lshr_cmp_greater(
; CHECK-NEXT: [[MUL:%.*]] = mul i8 [[X:%.*]], 5
; CHECK-NEXT: [[DIV:%.*]] = lshr i8 [[MUL]], 2
; CHECK-NEXT: [[CMP:%.*]] = icmp ule i8 [[DIV]], [[X]]
; CHECK-NEXT: ret i1 [[CMP]]
;
%mul = mul i8 %x, 5
%div = lshr i8 %mul, 2
%cmp = icmp ule i8 %div, %x
ret i1 %cmp
}
define i1 @shl_div_cmp_smaller(i8 %x) {
; CHECK-LABEL: @shl_div_cmp_smaller(
; CHECK-NEXT: ret i1 true
;
%mul = shl i8 %x, 2
%div = udiv i8 %mul, 5
%cmp = icmp ule i8 %div, %x
ret i1 %cmp
}
define i1 @shl_div_cmp_equal(i8 %x) {
; CHECK-LABEL: @shl_div_cmp_equal(
; CHECK-NEXT: ret i1 true
;
%mul = shl i8 %x, 2
%div = udiv i8 %mul, 4
%cmp = icmp ule i8 %div, %x
ret i1 %cmp
}
define i1 @shl_div_cmp_greater(i8 %x) {
; CHECK-LABEL: @shl_div_cmp_greater(
; CHECK-NEXT: [[MUL:%.*]] = shl i8 [[X:%.*]], 2
; CHECK-NEXT: [[DIV:%.*]] = udiv i8 [[MUL]], 3
; CHECK-NEXT: [[CMP:%.*]] = icmp ule i8 [[DIV]], [[X]]
; CHECK-NEXT: ret i1 [[CMP]]
;
%mul = shl i8 %x, 2
%div = udiv i8 %mul, 3
%cmp = icmp ule i8 %div, %x
ret i1 %cmp
}
; Don't crash matching recurrences/invertible ops.
define void @PR50191(i32 %x) {
; CHECK-LABEL: @PR50191(
; CHECK-NEXT: entry:
; CHECK-NEXT: br label [[LOOP:%.*]]
; CHECK: loop:
; CHECK-NEXT: [[P1:%.*]] = phi i32 [ [[X:%.*]], [[ENTRY:%.*]] ], [ [[SUB1:%.*]], [[LOOP]] ]
; CHECK-NEXT: [[P2:%.*]] = phi i32 [ [[X]], [[ENTRY]] ], [ [[SUB2:%.*]], [[LOOP]] ]
; CHECK-NEXT: [[SUB1]] = sub i32 [[P1]], [[P2]]
; CHECK-NEXT: [[SUB2]] = sub i32 42, [[P2]]
; CHECK-NEXT: br label [[LOOP]]
;
entry:
br label %loop
loop:
%p1 = phi i32 [ %x, %entry ], [ %sub1, %loop ]
%p2 = phi i32 [ %x, %entry ], [ %sub2, %loop ]
%cmp = icmp eq i32 %p1, %p2
%user = zext i1 %cmp to i32
%sub1 = sub i32 %p1, %p2
%sub2 = sub i32 42, %p2
br label %loop
}
define i1 @sub_false(i32 %x) {
; CHECK-LABEL: @sub_false(
; CHECK-NEXT: ret i1 false
;
%sub = sub i32 1, %x
%cmp = icmp eq i32 %sub, %x
ret i1 %cmp
}
define i1 @sub_swap(i8 %x) {
; CHECK-LABEL: @sub_swap(
; CHECK-NEXT: ret i1 true
;
%sub = sub i8 3, %x
%cmp = icmp ne i8 %x, %sub
ret i1 %cmp
}
define <2 x i1> @sub_odd(<2 x i8> %x) {
; CHECK-LABEL: @sub_odd(
; CHECK-NEXT: ret <2 x i1> <i1 true, i1 true>
;
%sub = sub <2 x i8> <i8 3, i8 3>, %x
%cmp = icmp ne <2 x i8> %sub, %x
ret <2 x i1> %cmp
}
define <2 x i1> @sub_odd_poison(<2 x i8> %x) {
; CHECK-LABEL: @sub_odd_poison(
; CHECK-NEXT: ret <2 x i1> <i1 true, i1 true>
;
%sub = sub <2 x i8> <i8 poison, i8 1>, %x
%cmp = icmp ne <2 x i8> %sub, %x
ret <2 x i1> %cmp
}
define i1 @sub_even(i8 %x) {
; CHECK-LABEL: @sub_even(
; CHECK-NEXT: [[SUB:%.*]] = sub i8 2, [[X:%.*]]
; CHECK-NEXT: [[CMP:%.*]] = icmp ne i8 [[SUB]], [[X]]
; CHECK-NEXT: ret i1 [[CMP]]
;
%sub = sub i8 2, %x
%cmp = icmp ne i8 %sub, %x
ret i1 %cmp
}
define i1 @load_ptr(ptr %p) {
; CHECK-LABEL: @load_ptr(
; CHECK-NEXT: ret i1 true
;
%load_p = load ptr, ptr %p, !dereferenceable !{i64 8}
%r = icmp ne ptr %load_p, null
ret i1 %r
}
define i1 @load_ptr_null_valid(ptr %p) null_pointer_is_valid {
; CHECK-LABEL: @load_ptr_null_valid(
; CHECK-NEXT: [[LOAD_P:%.*]] = load ptr, ptr [[P:%.*]], align 8, !dereferenceable [[META0:![0-9]+]]
; CHECK-NEXT: [[R:%.*]] = icmp ne ptr [[LOAD_P]], null
; CHECK-NEXT: ret i1 [[R]]
;
%load_p = load ptr, ptr %p, !dereferenceable !{i64 8}
%r = icmp ne ptr %load_p, null
ret i1 %r
}
define i1 @non_eq_disjoint_or_common_op(i8 %x, i8 %y, i8 %ww, i8 %a) {
; CHECK-LABEL: @non_eq_disjoint_or_common_op(
; CHECK-NEXT: ret i1 false
;
%w = add nuw i8 %ww, 1
%z = add i8 %y, %w
%xy = or disjoint i8 %x, %y
%xz = or disjoint i8 %x, %z
%axy = add i8 %a, %xy
%axz = add i8 %a, %xz
%r = icmp eq i8 %axy, %axz
ret i1 %r
}
define i1 @non_eq_disjoint_or_common_op_fail(i8 %x, i8 %y, i8 %ww, i8 %a) {
; CHECK-LABEL: @non_eq_disjoint_or_common_op_fail(
; CHECK-NEXT: [[W:%.*]] = add nuw i8 [[WW:%.*]], 1
; CHECK-NEXT: [[Z:%.*]] = add i8 [[Y:%.*]], [[W]]
; CHECK-NEXT: [[XY:%.*]] = or i8 [[X:%.*]], [[Y]]
; CHECK-NEXT: [[XZ:%.*]] = or disjoint i8 [[X]], [[Z]]
; CHECK-NEXT: [[AXY:%.*]] = add i8 [[A:%.*]], [[XY]]
; CHECK-NEXT: [[AXZ:%.*]] = add i8 [[A]], [[XZ]]
; CHECK-NEXT: [[R:%.*]] = icmp eq i8 [[AXY]], [[AXZ]]
; CHECK-NEXT: ret i1 [[R]]
;
%w = add nuw i8 %ww, 1
%z = add i8 %y, %w
%xy = or i8 %x, %y
%xz = or disjoint i8 %x, %z
%axy = add i8 %a, %xy
%axz = add i8 %a, %xz
%r = icmp eq i8 %axy, %axz
ret i1 %r
}
define i1 @non_eq_xor_common_op(i8 %x, i8 %y, i8 %ww, i8 %a) {
; CHECK-LABEL: @non_eq_xor_common_op(
; CHECK-NEXT: ret i1 false
;
%w = add nuw i8 %ww, 1
%z = add i8 %y, %w
%xy = xor i8 %y, %x
%xz = xor i8 %x, %z
%axy = add i8 %a, %xy
%axz = add i8 %a, %xz
%r = icmp eq i8 %axy, %axz
ret i1 %r
}
define i1 @non_eq_xor_common_op_fail(i8 %x, i8 %y, i8 %ww, i8 %a) {
; CHECK-LABEL: @non_eq_xor_common_op_fail(
; CHECK-NEXT: [[W:%.*]] = add nsw i8 [[WW:%.*]], 1
; CHECK-NEXT: [[Z:%.*]] = add i8 [[Y:%.*]], [[W]]
; CHECK-NEXT: [[XY:%.*]] = xor i8 [[Y]], [[X:%.*]]
; CHECK-NEXT: [[XZ:%.*]] = xor i8 [[X]], [[Z]]
; CHECK-NEXT: [[AXY:%.*]] = add i8 [[A:%.*]], [[XY]]
; CHECK-NEXT: [[AXZ:%.*]] = add i8 [[A]], [[XZ]]
; CHECK-NEXT: [[R:%.*]] = icmp eq i8 [[AXY]], [[AXZ]]
; CHECK-NEXT: ret i1 [[R]]
;
%w = add nsw i8 %ww, 1
%z = add i8 %y, %w
%xy = xor i8 %y, %x
%xz = xor i8 %x, %z
%axy = add i8 %a, %xy
%axz = add i8 %a, %xz
%r = icmp eq i8 %axy, %axz
ret i1 %r
}
define i1 @non_eq_disjoint_or(i8 %x, i8 %yy, i8 %w) {
; CHECK-LABEL: @non_eq_disjoint_or(
; CHECK-NEXT: ret i1 false
;
%y = add nuw i8 %yy, 1
%lhs = add i8 %x, %w
%val = or disjoint i8 %y, %w
%rhs = add i8 %x, %val
%r = icmp eq i8 %lhs, %rhs
ret i1 %r
}
define i1 @non_eq_or_fail(i8 %x, i8 %yy, i8 %w) {
; CHECK-LABEL: @non_eq_or_fail(
; CHECK-NEXT: [[Y:%.*]] = add nuw i8 [[YY:%.*]], 1
; CHECK-NEXT: [[LHS:%.*]] = add i8 [[X:%.*]], [[W:%.*]]
; CHECK-NEXT: [[VAL:%.*]] = or i8 [[Y]], [[W]]
; CHECK-NEXT: [[RHS:%.*]] = add i8 [[X]], [[VAL]]
; CHECK-NEXT: [[R:%.*]] = icmp eq i8 [[LHS]], [[RHS]]
; CHECK-NEXT: ret i1 [[R]]
;
%y = add nuw i8 %yy, 1
%lhs = add i8 %x, %w
%val = or i8 %y, %w
%rhs = add i8 %x, %val
%r = icmp eq i8 %lhs, %rhs
ret i1 %r
}
define i1 @non_eq_xor(i8 %x, i8 %yy, i8 %w) {
; CHECK-LABEL: @non_eq_xor(
; CHECK-NEXT: ret i1 false
;
%y = add nuw i8 %yy, 1
%lhs = add i8 %x, %w
%val = xor i8 %y, %w
%rhs = add i8 %x, %val
%r = icmp eq i8 %lhs, %rhs
ret i1 %r
}
define i1 @non_eq_xor_fail(i8 %x, i8 %yy, i8 %w) {
; CHECK-LABEL: @non_eq_xor_fail(
; CHECK-NEXT: [[Y:%.*]] = add nsw i8 [[YY:%.*]], 1
; CHECK-NEXT: [[LHS:%.*]] = add i8 [[X:%.*]], [[W:%.*]]
; CHECK-NEXT: [[VAL:%.*]] = xor i8 [[Y]], [[W]]
; CHECK-NEXT: [[RHS:%.*]] = add i8 [[X]], [[VAL]]
; CHECK-NEXT: [[R:%.*]] = icmp eq i8 [[LHS]], [[RHS]]
; CHECK-NEXT: ret i1 [[R]]
;
%y = add nsw i8 %yy, 1
%lhs = add i8 %x, %w
%val = xor i8 %y, %w
%rhs = add i8 %x, %val
%r = icmp eq i8 %lhs, %rhs
ret i1 %r
}