
When using `BranchProbabilityPrinterPass`, if a BB has no name, we get pretty unusable information like `edge -> has probability...` (i.e. we have no idea what the vertices of that edge are). This patch uses `printAsOperand`, which uses the same naming scheme as `Function::dump`, so for example during debugging sessions, the IR obtained from a function and the names used by `BranchProbabilityPrinterPass` will match. A shortcoming is that `printAsOperand` will result in the numbering algorithm re-running for every edge and every vertex (when `BranchProbabilityPrinterPass` is run on a function). If, for the given scenario, this is a problem, we can revisit this subsequently. Another nuance is that the entry basic block will be numbered, which may be slightly confusing when it's anonymous, but it's easily identifiable - the first edge would have it as source (and the number should be easily recognizable)
71 lines
2.5 KiB
LLVM
71 lines
2.5 KiB
LLVM
; RUN: opt < %s -passes='print<branch-prob>' -disable-output 2>&1 | FileCheck %s
|
|
|
|
define i32 @cmp1(ptr readnone %0, ptr readnone %1) {
|
|
; CHECK-LABEL: 'cmp1'
|
|
%3 = icmp eq ptr %0, %1
|
|
br i1 %3, label %4, label %6
|
|
; CHECK: edge %2 -> %4 probability is 0x30000000 / 0x80000000 = 37.50%
|
|
; CHECK: edge %2 -> %6 probability is 0x50000000 / 0x80000000 = 62.50%
|
|
|
|
4: ; preds = %2
|
|
%5 = tail call i32 @f() #2
|
|
br label %8
|
|
; CHECK: edge %4 -> %8 probability is 0x80000000 / 0x80000000 = 100.00% [HOT edge]
|
|
|
|
6: ; preds = %2
|
|
%7 = tail call i32 @g() #2
|
|
br label %8
|
|
; CHECK: edge %6 -> %8 probability is 0x80000000 / 0x80000000 = 100.00% [HOT edge]
|
|
|
|
8: ; preds = %6, %4
|
|
%9 = phi i32 [ %5, %4 ], [ %7, %6 ]
|
|
ret i32 %9
|
|
}
|
|
|
|
define i32 @cmp2(ptr readnone %0, ptr readnone %1) {
|
|
; CHECK-LABEL: 'cmp2'
|
|
%3 = icmp eq ptr %0, %1
|
|
br i1 %3, label %6, label %4
|
|
; CHECK: edge %2 -> %6 probability is 0x30000000 / 0x80000000 = 37.50%
|
|
; CHECK: edge %2 -> %4 probability is 0x50000000 / 0x80000000 = 62.50%
|
|
|
|
4: ; preds = %2
|
|
%5 = tail call i32 @f() #2
|
|
br label %8
|
|
; CHECK: edge %4 -> %8 probability is 0x80000000 / 0x80000000 = 100.00% [HOT edge]
|
|
|
|
6: ; preds = %2
|
|
%7 = tail call i32 @g() #2
|
|
br label %8
|
|
; CHECK: edge %6 -> %8 probability is 0x80000000 / 0x80000000 = 100.00% [HOT edge]
|
|
|
|
8: ; preds = %6, %4
|
|
%9 = phi i32 [ %5, %4 ], [ %7, %6 ]
|
|
ret i32 %9
|
|
}
|
|
|
|
define i32 @cmp3(ptr readnone %0) {
|
|
; CHECK-LABEL: 'cmp3'
|
|
%2 = icmp eq ptr %0, null
|
|
br i1 %2, label %3, label %5
|
|
; CHECK: edge %1 -> %3 probability is 0x30000000 / 0x80000000 = 37.50%
|
|
; CHECK: edge %1 -> %5 probability is 0x50000000 / 0x80000000 = 62.50%
|
|
|
|
3: ; preds = %1
|
|
%4 = tail call i32 @f() #2
|
|
br label %7
|
|
; CHECK: edge %3 -> %7 probability is 0x80000000 / 0x80000000 = 100.00% [HOT edge]
|
|
|
|
5: ; preds = %1
|
|
%6 = tail call i32 @g() #2
|
|
br label %7
|
|
; CHECK: edge %5 -> %7 probability is 0x80000000 / 0x80000000 = 100.00% [HOT edge]
|
|
|
|
7: ; preds = %5, %3
|
|
%8 = phi i32 [ %6, %5 ], [ %4, %3 ]
|
|
ret i32 %8
|
|
}
|
|
|
|
declare dso_local i32 @f(...) local_unnamed_addr #1
|
|
declare dso_local i32 @g(...) local_unnamed_addr #1
|