[DAGCombiner] Add target hook function to decide folding (mul (add x, c1), c2)
[llvm-project.git] / llvm / test / Transforms / FunctionSpecialization / function-specialization-stats.ll
blob62131775e33ad4f8d2f25926b84a9f0083d20101
1 ; REQUIRES: asserts
2 ; RUN: opt -stats -function-specialization -S < %s 2>&1 | FileCheck %s
4 ; CHECK: 2 function-specialization - Number of functions specialized
6 define i64 @main(i64 %x, i1 %flag) {
7 entry:
8   br i1 %flag, label %plus, label %minus
10 plus:
11   %tmp0 = call i64 @compute(i64 %x, i64 (i64)* @plus)
12   br label %merge
14 minus:
15   %tmp1 = call i64 @compute(i64 %x, i64 (i64)* @minus)
16   br label %merge
18 merge:
19   %tmp2 = phi i64 [ %tmp0, %plus ], [ %tmp1, %minus]
20   ret i64 %tmp2
23 define internal i64 @compute(i64 %x, i64 (i64)* %binop) {
24 entry:
25   %tmp0 = call i64 %binop(i64 %x)
26   ret i64 %tmp0
29 define internal i64 @plus(i64 %x) {
30 entry:
31   %tmp0 = add i64 %x, 1
32   ret i64 %tmp0
35 define internal i64 @minus(i64 %x) {
36 entry:
37   %tmp0 = sub i64 %x, 1
38   ret i64 %tmp0