1 ; Test the static branch probability heuristics for no-return functions.
2 ; RUN: opt < %s -passes='print<branch-prob>' -disable-output 2>&1 | FileCheck %s
4 declare void @abort() noreturn
6 define i32 @test1(i32 %a, i32 %b) {
7 ; CHECK: Printing analysis {{.*}} for function 'test1'
9 %cond = icmp eq i32 %a, 42
10 br i1 %cond, label %exit, label %abort
11 ; CHECK: edge %entry -> %exit probability is 0x7ffff800 / 0x80000000 = 100.00% [HOT edge]
12 ; CHECK: edge %entry -> %abort probability is 0x00000800 / 0x80000000 = 0.00%
15 call void @abort() noreturn
22 define i32 @test2(i32 %a, i32 %b) {
23 ; CHECK: Printing analysis {{.*}} for function 'test2'
25 switch i32 %a, label %exit [i32 1, label %case_a
29 ; CHECK: edge %entry -> %exit probability is 0x7fffe000 / 0x80000000 = 100.00% [HOT edge]
30 ; CHECK: edge %entry -> %case_a probability is 0x00000800 / 0x80000000 = 0.00%
31 ; CHECK: edge %entry -> %case_b probability is 0x00000800 / 0x80000000 = 0.00%
32 ; CHECK: edge %entry -> %case_c probability is 0x00000800 / 0x80000000 = 0.00%
33 ; CHECK: edge %entry -> %case_d probability is 0x00000800 / 0x80000000 = 0.00%
45 call void @abort() noreturn
52 define i32 @test3(i32 %a, i32 %b) {
53 ; CHECK: Printing analysis {{.*}} for function 'test3'
54 ; Make sure we unify across multiple conditional branches.
56 %cond1 = icmp eq i32 %a, 42
57 br i1 %cond1, label %exit, label %dom
58 ; CHECK: edge %entry -> %exit probability is 0x7ffff800 / 0x80000000 = 100.00% [HOT edge]
59 ; CHECK: edge %entry -> %dom probability is 0x00000800 / 0x80000000 = 0.00%
62 %cond2 = icmp ult i32 %a, 42
63 br i1 %cond2, label %idom1, label %idom2
64 ; CHECK: edge %dom -> %idom1 probability is 0x40000000 / 0x80000000 = 50.00%
65 ; CHECK: edge %dom -> %idom2 probability is 0x40000000 / 0x80000000 = 50.00%
74 call void @abort() noreturn
81 define i32 @test4(i32 %a, i32 %b) {
82 ; CHECK: Printing analysis {{.*}} for function 'test4'
83 ; Make sure we handle loops post-dominated by unreachables.
85 %cond1 = icmp eq i32 %a, 42
86 br i1 %cond1, label %header, label %exit
87 ; CHECK: edge %entry -> %header probability is 0x00000800 / 0x80000000 = 0.00%
88 ; CHECK: edge %entry -> %exit probability is 0x7ffff800 / 0x80000000 = 100.00% [HOT edge]
94 %cond2 = icmp eq i32 %a, 42
95 br i1 %cond2, label %header, label %abort
96 ; CHECK: edge %body -> %header probability is 0x7ffff800 / 0x80000000 = 100.00% [HOT edge]
97 ; CHECK: edge %body -> %abort probability is 0x00000800 / 0x80000000 = 0.00%
99 call void @abort() noreturn
106 @_ZTIi = external global ptr
108 ; CHECK-LABEL: throwSmallException
109 ; CHECK-NOT: invoke i32 @smallFunction
110 define i32 @throwSmallException(i32 %idx, i32 %limit) #0 personality ptr @__gxx_personality_v0 {
112 %cmp = icmp sge i32 %idx, %limit
113 br i1 %cmp, label %if.then, label %if.end
114 ; CHECK: edge %entry -> %if.then probability is 0x00000800 / 0x80000000 = 0.00%
115 ; CHECK: edge %entry -> %if.end probability is 0x7ffff800 / 0x80000000 = 100.00% [HOT edge]
117 if.then: ; preds = %entry
118 %exception = call ptr @__cxa_allocate_exception(i64 1) #0
119 invoke i32 @smallFunction(i32 %idx)
120 to label %invoke.cont unwind label %lpad
121 ; CHECK: edge %if.then -> %invoke.cont probability is 0x40000000 / 0x80000000 = 50.00%
122 ; CHECK: edge %if.then -> %lpad probability is 0x40000000 / 0x80000000 = 50.00%
124 invoke.cont: ; preds = %if.then
125 call void @__cxa_throw(ptr %exception, ptr @_ZTIi, ptr null) #1
128 lpad: ; preds = %if.then
129 %ll = landingpad { ptr, i32 }
133 if.end: ; preds = %entry
138 define i32 @smallFunction(i32 %a) {
140 %r = load volatile i32, ptr @a
144 attributes #0 = { nounwind }
145 attributes #1 = { noreturn }
147 declare ptr @__cxa_allocate_exception(i64)
148 declare i32 @__gxx_personality_v0(...)
149 declare void @__cxa_throw(ptr, ptr, ptr)