[DAGCombiner] Add target hook function to decide folding (mul (add x, c1), c2)
[llvm-project.git] / llvm / test / Transforms / InstCombine / 2010-11-23-Distributed.ll
blob3b26ba73ac3139ef3f8efc0270a5ac002da116d5
1 ; NOTE: Assertions have been autogenerated by utils/update_test_checks.py
2 ; RUN: opt < %s -instcombine -S | FileCheck %s
4 define i32 @foo(i32 %x, i32 %y) {
5 ; CHECK-LABEL: @foo(
6 ; CHECK-NEXT:    [[RES:%.*]] = mul i32 [[X:%.*]], [[Y:%.*]]
7 ; CHECK-NEXT:    ret i32 [[RES]]
9   %add = add nsw i32 %y, %x
10   %mul = mul nsw i32 %add, %y
11   %square = mul nsw i32 %y, %y
12   %res = sub i32 %mul, %square
13   ret i32 %res
16 define i1 @bar(i64 %x, i64 %y) {
17 ; CHECK-LABEL: @bar(
18 ; CHECK-NEXT:    [[TMP1:%.*]] = xor i64 [[X:%.*]], -1
19 ; CHECK-NEXT:    [[B:%.*]] = and i64 [[TMP1]], [[Y:%.*]]
20 ; CHECK-NEXT:    [[R:%.*]] = icmp eq i64 [[B]], 0
21 ; CHECK-NEXT:    ret i1 [[R]]
23   %a = and i64 %y, %x
24   %not = xor i64 %a, -1
25   %b = and i64 %y, %not
26   %r = icmp eq i64 %b, 0
27   ret i1 %r