[llvm-dlltool] Respect NONAME keyword
[llvm-complete.git] / test / Transforms / SampleProfile / remap.ll
blob206962a3befa927112fbde49c27c90c4e7bae8c9
1 ; RUN: opt %s -passes=sample-profile -sample-profile-file=%S/Inputs/remap.prof -sample-profile-remapping-file=%S/Inputs/remap.map | opt -analyze -branch-prob | FileCheck %s
3 ; Reduced from branch.ll
5 declare i1 @foo()
7 define void @_ZN3foo3barERKN1M1XINS_6detail3quxEEE() !dbg !2 {
8 ; CHECK: Printing analysis 'Branch Probability Analysis' for function '_ZN3foo3barERKN1M1XINS_6detail3quxEEE':
10 entry:
11   %cmp = call i1 @foo(), !dbg !6
12   br i1 %cmp, label %if.then, label %if.end
13 ; CHECK:  edge entry -> if.then probability is 0x4ccf6b16 / 0x80000000 = 60.01%
14 ; CHECK:  edge entry -> if.end probability is 0x333094ea / 0x80000000 = 39.99%
16 if.then:
17   br label %return
19 if.end:
20   %cmp1 = call i1 @foo(), !dbg !7
21   br i1 %cmp1, label %if.then.2, label %if.else
22 ; CHECK: edge if.end -> if.then.2 probability is 0x6652c748 / 0x80000000 = 79.94%
23 ; CHECK: edge if.end -> if.else probability is 0x19ad38b8 / 0x80000000 = 20.06%
25 if.then.2:
26   call i1 @foo(), !dbg !8
27   br label %for.cond
29 for.cond:
30   %cmp5 = call i1 @foo()
31   br i1 %cmp5, label %for.body, label %for.end, !prof !9
32 ; CHECK: edge for.cond -> for.body probability is 0x73333333 / 0x80000000 = 90.00%
33 ; CHECK: edge for.cond -> for.end probability is 0x0ccccccd / 0x80000000 = 10.00%
35 for.body:
36   br label %for.cond
38 for.end:
39   br label %return
41 if.else:
42   br label %return
44 return:
45   ret void
48 !llvm.dbg.cu = !{!0}
49 !llvm.module.flags = !{!4, !5}
51 !0 = distinct !DICompileUnit(language: DW_LANG_C_plus_plus, file: !1, producer: "foo++", isOptimized: false, runtimeVersion: 0, emissionKind: NoDebug, enums: !{}, retainedTypes: !{})
52 !1 = !DIFile(filename: "test.cc", directory: "/foo/bar")
53 !2 = distinct !DISubprogram(name: "_ZN3foo3barERKN1M1XINS_6detail3quxEEE", scope: !1, file: !1, line: 4, type: !3, isLocal: false, isDefinition: true, scopeLine: 4, flags: DIFlagPrototyped, isOptimized: false, unit: !0, retainedNodes: !{})
54 !3 = !DISubroutineType(types: !{})
55 !4 = !{i32 2, !"Dwarf Version", i32 4}
56 !5 = !{i32 2, !"Debug Info Version", i32 3}
57 !6 = !DILocation(line: 5, column: 8, scope: !2)
58 !7 = !DILocation(line: 8, column: 6, scope: !2)
59 !8 = !DILocation(line: 10, column: 11, scope: !2)
60 !9 = !{!"branch_weights", i32 90, i32 10}