[DAGCombiner] Add target hook function to decide folding (mul (add x, c1), c2)
[llvm-project.git] / llvm / test / Transforms / FunctionSpecialization / function-specialization5.ll
bloba18a9a0fa5c3411cb4a77028b71eea9c85724da4
1 ; RUN: opt -function-specialization -force-function-specialization -S < %s | FileCheck %s
3 ; There's nothing to specialize here as both calls are the same, so check that:
5 ; CHECK-NOT: define internal i32 @foo.1(
6 ; CHECK-NOT: define internal i32 @foo.2(
8 target datalayout = "e-m:e-i8:8:32-i16:16:32-i64:64-i128:128-n32:64-S128"
10 @A = external dso_local constant i32, align 4
11 @B = external dso_local constant i32, align 4
12 @C = external dso_local constant i32, align 4
13 @D = external dso_local constant i32, align 4
15 define dso_local i32 @bar(i32 %x, i32 %y) {
16 entry:
17   %tobool = icmp ne i32 %x, 0
18   br i1 %tobool, label %if.then, label %if.else
20 if.then:
21   %call = call i32 @foo(i32 %x, i32* @A, i32* @C)
22   br label %return
24 if.else:
25   %call1 = call i32 @foo(i32 %y, i32* @A, i32* @C)
26   br label %return
28 return:
29   %retval.0 = phi i32 [ %call, %if.then ], [ %call1, %if.else ]
30   ret i32 %retval.0
33 define internal i32 @foo(i32 %x, i32* %b, i32* %c) {
34 entry:
35   %0 = load i32, i32* %b, align 4
36   %add = add nsw i32 %x, %0
37   %1 = load i32, i32* %c, align 4
38   %add1 = add nsw i32 %add, %1
39   ret i32 %add1