[DAGCombiner] Add target hook function to decide folding (mul (add x, c1), c2)
[llvm-project.git] / llvm / test / Transforms / PGOProfile / branch2.ll
blob7523c1f1b7d5e33210f5afeca8608f5957a57f4f
1 ; RUN: opt < %s -pgo-instr-gen -pgo-instrument-entry=false -S | FileCheck %s --check-prefixes=GEN,NOTENTRY
2 ; RUN: opt < %s -passes=pgo-instr-gen -pgo-instrument-entry=false -S | FileCheck %s --check-prefixes=GEN,NOTENTRY
3 ; RUN: llvm-profdata merge %S/Inputs/branch2.proftext -o %t.profdata
4 ; RUN: opt < %s -pgo-instr-use -pgo-instrument-entry=false -pgo-test-profile-file=%t.profdata -S | FileCheck %s --check-prefix=USE
5 ; RUN: opt < %s -passes=pgo-instr-use -pgo-instrument-entry=false -pgo-test-profile-file=%t.profdata -S | FileCheck %s --check-prefix=USE
7 ; RUN: opt < %s -pgo-instr-gen -pgo-instrument-entry=true -S | FileCheck %s --check-prefixes=GEN,ENTRY
8 ; RUN: opt < %s -passes=pgo-instr-gen -pgo-instrument-entry=true  -S | FileCheck %s --check-prefixes=GEN,ENTRY
9 ; RUN: llvm-profdata merge %S/Inputs/branch2_entry.proftext -o %t.profdata
10 ; RUN: opt < %s -pgo-instr-use  -pgo-instrument-entry=true -pgo-test-profile-file=%t.profdata -S | FileCheck %s --check-prefix=USE
11 ; RUN: opt < %s -passes=pgo-instr-use  -pgo-instrument-entry=true -pgo-test-profile-file=%t.profdata -S | FileCheck %s --check-prefix=USE
12 target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128"
13 target triple = "x86_64-unknown-linux-gnu"
15 ; GEN: $__llvm_profile_raw_version = comdat any
16 ; GEN: @__llvm_profile_raw_version = constant i64 {{[0-9]+}}, comdat
17 ; GEN: @__profn_test_br_2 = private constant [9 x i8] c"test_br_2"
19 define i32 @test_br_2(i32 %i) {
20 entry:
21 ; GEN: entry:
22 ; NOTENTRY-NOT: llvm.instrprof.increment
23 ; ENTRY: call void @llvm.instrprof.increment(i8* getelementptr inbounds ([9 x i8], [9 x i8]* @__profn_test_br_2, i32 0, i32 0), i64 {{[0-9]+}}, i32 2, i32 0)
24   %cmp = icmp sgt i32 %i, 0
25   br i1 %cmp, label %if.then, label %if.else
26 ; USE: br i1 %cmp, label %if.then, label %if.else
27 ; USE-SAME: !prof ![[BW_ENTRY:[0-9]+]]
28 ; USE: ![[BW_ENTRY]] = !{!"branch_weights", i32 1, i32 1}
30 if.then:
31 ; GEN: if.then:
32 ; NOTENTRY: call void @llvm.instrprof.increment(i8* getelementptr inbounds ([9 x i8], [9 x i8]* @__profn_test_br_2, i32 0, i32 0), i64 {{[0-9]+}}, i32 2, i32 0)
33 ; ENTRY-NOT: llvm.instrprof.increment
34   %add = add nsw i32 %i, 2
35   br label %if.end
37 if.else:
38 ; GEN: if.else:
39 ; GEN: call void @llvm.instrprof.increment(i8* getelementptr inbounds ([9 x i8], [9 x i8]* @__profn_test_br_2, i32 0, i32 0), i64 {{[0-9]+}}, i32 2, i32 1)
40   %sub = sub nsw i32 %i, 2
41   br label %if.end
43 if.end:
44 ; GEN: if.end:
45 ; GEN-NOT: llvm.instrprof.increment
46   %retv = phi i32 [ %add, %if.then ], [ %sub, %if.else ]
47   ret i32 %retv
48 ; GEN: ret