Dehao Chen | 80b16d4 | 2016-05-27 16:14:15 +0000 | [diff] [blame] | 1 | ; RUN: opt < %s -instcombine -sample-profile -sample-profile-file=%S/Inputs/calls.prof | opt -analyze -branch-prob | FileCheck %s |
Xinliang David Li | d38392e | 2016-05-27 23:20:16 +0000 | [diff] [blame] | 2 | ; RUN: opt < %s -passes="function(instcombine),sample-profile" -sample-profile-file=%S/Inputs/calls.prof | opt -analyze -branch-prob | FileCheck %s |
Diego Novillo | 9518b63 | 2014-01-10 23:23:51 +0000 | [diff] [blame] | 3 | |
| 4 | ; Original C++ test case |
| 5 | ; |
| 6 | ; #include <stdio.h> |
| 7 | ; |
| 8 | ; int sum(int x, int y) { |
| 9 | ; return x + y; |
| 10 | ; } |
| 11 | ; |
| 12 | ; int main() { |
| 13 | ; int s, i = 0; |
| 14 | ; while (i++ < 20000 * 20000) |
| 15 | ; if (i != 100) s = sum(i, s); else s = 30; |
| 16 | ; printf("sum is %d\n", s); |
| 17 | ; return 0; |
| 18 | ; } |
Diego Novillo | 8027b80 | 2014-10-22 12:59:00 +0000 | [diff] [blame] | 19 | ; |
Diego Novillo | 9518b63 | 2014-01-10 23:23:51 +0000 | [diff] [blame] | 20 | @.str = private unnamed_addr constant [11 x i8] c"sum is %d\0A\00", align 1 |
| 21 | |
| 22 | ; Function Attrs: nounwind uwtable |
Peter Collingbourne | d4bff30 | 2015-11-05 22:03:56 +0000 | [diff] [blame] | 23 | define i32 @_Z3sumii(i32 %x, i32 %y) !dbg !4 { |
Diego Novillo | 9518b63 | 2014-01-10 23:23:51 +0000 | [diff] [blame] | 24 | entry: |
| 25 | %x.addr = alloca i32, align 4 |
| 26 | %y.addr = alloca i32, align 4 |
| 27 | store i32 %x, i32* %x.addr, align 4 |
| 28 | store i32 %y, i32* %y.addr, align 4 |
David Blaikie | a79ac14 | 2015-02-27 21:17:42 +0000 | [diff] [blame] | 29 | %0 = load i32, i32* %x.addr, align 4, !dbg !11 |
| 30 | %1 = load i32, i32* %y.addr, align 4, !dbg !11 |
Diego Novillo | 9518b63 | 2014-01-10 23:23:51 +0000 | [diff] [blame] | 31 | %add = add nsw i32 %0, %1, !dbg !11 |
| 32 | ret i32 %add, !dbg !11 |
| 33 | } |
| 34 | |
| 35 | ; Function Attrs: uwtable |
Peter Collingbourne | d4bff30 | 2015-11-05 22:03:56 +0000 | [diff] [blame] | 36 | define i32 @main() !dbg !7 { |
Diego Novillo | 9518b63 | 2014-01-10 23:23:51 +0000 | [diff] [blame] | 37 | entry: |
| 38 | %retval = alloca i32, align 4 |
| 39 | %s = alloca i32, align 4 |
| 40 | %i = alloca i32, align 4 |
| 41 | store i32 0, i32* %retval |
| 42 | store i32 0, i32* %i, align 4, !dbg !12 |
| 43 | br label %while.cond, !dbg !13 |
| 44 | |
| 45 | while.cond: ; preds = %if.end, %entry |
David Blaikie | a79ac14 | 2015-02-27 21:17:42 +0000 | [diff] [blame] | 46 | %0 = load i32, i32* %i, align 4, !dbg !14 |
Diego Novillo | 92aa8c2 | 2014-03-10 22:41:28 +0000 | [diff] [blame] | 47 | %inc = add nsw i32 %0, 1, !dbg !14 |
| 48 | store i32 %inc, i32* %i, align 4, !dbg !14 |
| 49 | %cmp = icmp slt i32 %0, 400000000, !dbg !14 |
| 50 | br i1 %cmp, label %while.body, label %while.end, !dbg !14 |
Dehao Chen | c632a39 | 2017-03-06 17:49:59 +0000 | [diff] [blame] | 51 | ; CHECK: edge while.cond -> while.body probability is 0x77f2798d / 0x80000000 = 93.71% [HOT edge] |
| 52 | ; CHECK: edge while.cond -> while.end probability is 0x080d8673 / 0x80000000 = 6.29% |
Diego Novillo | 9518b63 | 2014-01-10 23:23:51 +0000 | [diff] [blame] | 53 | |
| 54 | while.body: ; preds = %while.cond |
David Blaikie | a79ac14 | 2015-02-27 21:17:42 +0000 | [diff] [blame] | 55 | %1 = load i32, i32* %i, align 4, !dbg !16 |
Diego Novillo | 92aa8c2 | 2014-03-10 22:41:28 +0000 | [diff] [blame] | 56 | %cmp1 = icmp ne i32 %1, 100, !dbg !16 |
| 57 | br i1 %cmp1, label %if.then, label %if.else, !dbg !16 |
| 58 | ; Without discriminator information, the profiler used to think that |
| 59 | ; both branches out of while.body had the same weight. In reality, |
| 60 | ; the edge while.body->if.then is taken most of the time. |
| 61 | ; |
Dehao Chen | c632a39 | 2017-03-06 17:49:59 +0000 | [diff] [blame] | 62 | ; CHECK: edge while.body -> if.else probability is 0x0005b1e0 / 0x80000000 = 0.02% |
| 63 | ; CHECK: edge while.body -> if.then probability is 0x7ffa4e20 / 0x80000000 = 99.98% [HOT edge] |
Diego Novillo | 92aa8c2 | 2014-03-10 22:41:28 +0000 | [diff] [blame] | 64 | |
Diego Novillo | 9518b63 | 2014-01-10 23:23:51 +0000 | [diff] [blame] | 65 | |
| 66 | if.then: ; preds = %while.body |
David Blaikie | a79ac14 | 2015-02-27 21:17:42 +0000 | [diff] [blame] | 67 | %2 = load i32, i32* %i, align 4, !dbg !18 |
| 68 | %3 = load i32, i32* %s, align 4, !dbg !18 |
Diego Novillo | 92aa8c2 | 2014-03-10 22:41:28 +0000 | [diff] [blame] | 69 | %call = call i32 @_Z3sumii(i32 %2, i32 %3), !dbg !18 |
| 70 | store i32 %call, i32* %s, align 4, !dbg !18 |
| 71 | br label %if.end, !dbg !18 |
Diego Novillo | 9518b63 | 2014-01-10 23:23:51 +0000 | [diff] [blame] | 72 | |
| 73 | if.else: ; preds = %while.body |
Diego Novillo | 92aa8c2 | 2014-03-10 22:41:28 +0000 | [diff] [blame] | 74 | store i32 30, i32* %s, align 4, !dbg !20 |
Diego Novillo | 9518b63 | 2014-01-10 23:23:51 +0000 | [diff] [blame] | 75 | br label %if.end |
| 76 | |
| 77 | if.end: ; preds = %if.else, %if.then |
Diego Novillo | 92aa8c2 | 2014-03-10 22:41:28 +0000 | [diff] [blame] | 78 | br label %while.cond, !dbg !22 |
Diego Novillo | 9518b63 | 2014-01-10 23:23:51 +0000 | [diff] [blame] | 79 | |
| 80 | while.end: ; preds = %while.cond |
David Blaikie | a79ac14 | 2015-02-27 21:17:42 +0000 | [diff] [blame] | 81 | %4 = load i32, i32* %s, align 4, !dbg !24 |
David Blaikie | 23af648 | 2015-04-16 23:24:18 +0000 | [diff] [blame] | 82 | %call2 = call i32 (i8*, ...) @printf(i8* getelementptr inbounds ([11 x i8], [11 x i8]* @.str, i32 0, i32 0), i32 %4), !dbg !24 |
Diego Novillo | 92aa8c2 | 2014-03-10 22:41:28 +0000 | [diff] [blame] | 83 | ret i32 0, !dbg !25 |
Diego Novillo | 9518b63 | 2014-01-10 23:23:51 +0000 | [diff] [blame] | 84 | } |
| 85 | |
Diego Novillo | 92aa8c2 | 2014-03-10 22:41:28 +0000 | [diff] [blame] | 86 | declare i32 @printf(i8*, ...) #2 |
Diego Novillo | 9518b63 | 2014-01-10 23:23:51 +0000 | [diff] [blame] | 87 | |
Adrian Prantl | b01a4d4 | 2016-04-11 15:53:44 +0000 | [diff] [blame] | 88 | !llvm.dbg.cu = !{!0} |
Diego Novillo | 9518b63 | 2014-01-10 23:23:51 +0000 | [diff] [blame] | 89 | !llvm.module.flags = !{!8, !9} |
| 90 | !llvm.ident = !{!10} |
| 91 | |
Adrian Prantl | 75819ae | 2016-04-15 15:57:41 +0000 | [diff] [blame] | 92 | !0 = distinct !DICompileUnit(language: DW_LANG_C_plus_plus, producer: "clang version 3.5 ", isOptimized: false, emissionKind: NoDebug, file: !1, enums: !2, retainedTypes: !2, globals: !2, imports: !2) |
Duncan P. N. Exon Smith | a9308c4 | 2015-04-29 16:38:44 +0000 | [diff] [blame] | 93 | !1 = !DIFile(filename: "calls.cc", directory: ".") |
Duncan P. N. Exon Smith | be7ea19 | 2014-12-15 19:07:53 +0000 | [diff] [blame] | 94 | !2 = !{} |
Shiva Chen | 2c86455 | 2018-05-09 02:40:45 +0000 | [diff] [blame^] | 95 | !4 = distinct !DISubprogram(name: "sum", line: 3, isLocal: false, isDefinition: true, virtualIndex: 6, flags: DIFlagPrototyped, isOptimized: false, unit: !0, scopeLine: 3, file: !1, scope: !5, type: !6, retainedNodes: !2) |
Duncan P. N. Exon Smith | a9308c4 | 2015-04-29 16:38:44 +0000 | [diff] [blame] | 96 | !5 = !DIFile(filename: "calls.cc", directory: ".") |
| 97 | !6 = !DISubroutineType(types: !2) |
Shiva Chen | 2c86455 | 2018-05-09 02:40:45 +0000 | [diff] [blame^] | 98 | !7 = distinct !DISubprogram(name: "main", line: 7, isLocal: false, isDefinition: true, virtualIndex: 6, flags: DIFlagPrototyped, isOptimized: false, unit: !0, scopeLine: 7, file: !1, scope: !5, type: !6, retainedNodes: !2) |
Duncan P. N. Exon Smith | be7ea19 | 2014-12-15 19:07:53 +0000 | [diff] [blame] | 99 | !8 = !{i32 2, !"Dwarf Version", i32 4} |
Duncan P. N. Exon Smith | e274180 | 2015-03-03 17:24:31 +0000 | [diff] [blame] | 100 | !9 = !{i32 1, !"Debug Info Version", i32 3} |
Duncan P. N. Exon Smith | be7ea19 | 2014-12-15 19:07:53 +0000 | [diff] [blame] | 101 | !10 = !{!"clang version 3.5 "} |
Duncan P. N. Exon Smith | a9308c4 | 2015-04-29 16:38:44 +0000 | [diff] [blame] | 102 | !11 = !DILocation(line: 4, scope: !4) |
| 103 | !12 = !DILocation(line: 8, scope: !7) |
| 104 | !13 = !DILocation(line: 9, scope: !7) |
| 105 | !14 = !DILocation(line: 9, scope: !15) |
Dehao Chen | 533bc6e | 2017-02-23 18:27:45 +0000 | [diff] [blame] | 106 | !15 = !DILexicalBlockFile(discriminator: 2, file: !1, scope: !7) |
Duncan P. N. Exon Smith | a9308c4 | 2015-04-29 16:38:44 +0000 | [diff] [blame] | 107 | !16 = !DILocation(line: 10, scope: !17) |
| 108 | !17 = distinct !DILexicalBlock(line: 10, column: 0, file: !1, scope: !7) |
| 109 | !18 = !DILocation(line: 10, scope: !19) |
Dehao Chen | 533bc6e | 2017-02-23 18:27:45 +0000 | [diff] [blame] | 110 | !19 = !DILexicalBlockFile(discriminator: 2, file: !1, scope: !17) |
Duncan P. N. Exon Smith | a9308c4 | 2015-04-29 16:38:44 +0000 | [diff] [blame] | 111 | !20 = !DILocation(line: 10, scope: !21) |
Dehao Chen | 533bc6e | 2017-02-23 18:27:45 +0000 | [diff] [blame] | 112 | !21 = !DILexicalBlockFile(discriminator: 4, file: !1, scope: !17) |
Duncan P. N. Exon Smith | a9308c4 | 2015-04-29 16:38:44 +0000 | [diff] [blame] | 113 | !22 = !DILocation(line: 10, scope: !23) |
Dehao Chen | 533bc6e | 2017-02-23 18:27:45 +0000 | [diff] [blame] | 114 | !23 = !DILexicalBlockFile(discriminator: 6, file: !1, scope: !17) |
Duncan P. N. Exon Smith | a9308c4 | 2015-04-29 16:38:44 +0000 | [diff] [blame] | 115 | !24 = !DILocation(line: 11, scope: !7) |
| 116 | !25 = !DILocation(line: 12, scope: !7) |