1 ; RUN: opt < %s -passes='print<block-freq>' -disable-output 2>&1 | FileCheck %s
3 ; CHECK-LABEL: Printing analysis {{.*}} for function 'nested_loop_with_branches'
4 ; CHECK-NEXT: block-frequency-info: nested_loop_with_branches
5 define void @nested_loop_with_branches(i32 %a) {
6 ; CHECK-NEXT: entry: float = 1.0, int = [[ENTRY:[0-9]+]]
8 %v0 = call i1 @foo0(i32 %a)
9 br i1 %v0, label %exit, label %outer, !prof !0
11 ; CHECK-NEXT: outer: float = 12.0,
13 %i = phi i32 [ 0, %entry ], [ %i.next, %inner.end ], [ %i.next, %no_inner ]
14 %i.next = add i32 %i, 1
15 %do_inner = call i1 @foo1(i32 %i)
16 br i1 %do_inner, label %no_inner, label %inner, !prof !0
18 ; CHECK-NEXT: inner: float = 36.0,
20 %j = phi i32 [ 0, %outer ], [ %j.next, %inner.end ]
21 %side = call i1 @foo3(i32 %j)
22 br i1 %side, label %left, label %right, !prof !0
24 ; CHECK-NEXT: left: float = 9.0,
26 %v4 = call i1 @foo4(i32 %j)
29 ; CHECK-NEXT: right: float = 27.0,
31 %v5 = call i1 @foo5(i32 %j)
34 ; CHECK-NEXT: inner.end: float = 36.0,
36 %stay_inner = phi i1 [ %v4, %left ], [ %v5, %right ]
37 %j.next = add i32 %j, 1
38 br i1 %stay_inner, label %inner, label %outer, !prof !1
40 ; CHECK-NEXT: no_inner: float = 3.0,
42 %continue = call i1 @foo6(i32 %i)
43 br i1 %continue, label %outer, label %exit, !prof !1
45 ; CHECK-NEXT: exit: float = 1.0, int = [[ENTRY]]
58 !0 = !{!"branch_weights", i32 1, i32 3}
59 !1 = !{!"branch_weights", i32 3, i32 1}