[DAGCombiner] Add target hook function to decide folding (mul (add x, c1), c2)
[llvm-project.git] / llvm / test / Transforms / InstCombine / known-signbit-shift.ll
blobe758d670e3bc812f2c904a966fedcf2d8db47dd5
1 ; NOTE: Assertions have been autogenerated by utils/update_test_checks.py
2 ; RUN: opt < %s -instcombine -S | FileCheck %s
4 ; Result of left shifting a non-negative integer
5 ; with nsw flag should also be non-negative
6 define i1 @test_shift_nonnegative(i32 %a) {
7 ; CHECK-LABEL: @test_shift_nonnegative(
8 ; CHECK-NEXT:    [[CMP:%.*]] = icmp sgt i32 [[A:%.*]], -1
9 ; CHECK-NEXT:    ret i1 [[CMP]]
11   %b = lshr i32 %a, 2
12   %shift = shl nsw i32 %b, 3
13   %cmp = icmp sge i32 %shift, 0
14   ret i1 %cmp
17 ; Result of left shifting a negative integer with
18 ; nsw flag should also be negative
19 define i1 @test_shift_negative(i32 %a, i32 %b) {
20 ; CHECK-LABEL: @test_shift_negative(
21 ; CHECK-NEXT:    ret i1 true
23   %c = or i32 %a, -2147483648
24   %d = and i32 %b, 7
25   %shift = shl nsw i32 %c, %d
26   %cmp = icmp slt i32 %shift, 0
27   ret i1 %cmp
30 ; If sign bit is a known zero, it cannot be a known one.
31 ; This test should not crash opt. The shift produces poison.
32 define i32 @test_no_sign_bit_conflict1(i1 %b) {
33 ; CHECK-LABEL: @test_no_sign_bit_conflict1(
34 ; CHECK-NEXT:    ret i32 poison
36   %sel = select i1 %b, i32 8193, i32 8192
37   %mul = shl nsw i32 %sel, 18
38   ret i32 %mul
41 ; If sign bit is a known one, it cannot be a known zero.
42 ; This test should not crash opt. The shift produces poison.
43 define i32 @test_no_sign_bit_conflict2(i1 %b) {
44 ; CHECK-LABEL: @test_no_sign_bit_conflict2(
45 ; CHECK-NEXT:    ret i32 poison
47   %sel = select i1 %b, i32 -8193, i32 -8194
48   %mul = shl nsw i32 %sel, 18
49   ret i32 %mul