blob: 2eb0cfb930926ee4a1c88bddae647bc57ef64e69 [file] [log] [blame]
Diego Novillo9518b632014-01-10 23:23:51 +00001; RUN: opt < %s -sample-profile -sample-profile-file=%S/Inputs/calls.prof | opt -analyze -branch-prob | FileCheck %s
2
3; Original C++ test case
4;
5; #include <stdio.h>
6;
7; int sum(int x, int y) {
8; return x + y;
9; }
10;
11; int main() {
12; int s, i = 0;
13; while (i++ < 20000 * 20000)
14; if (i != 100) s = sum(i, s); else s = 30;
15; printf("sum is %d\n", s);
16; return 0;
17; }
Diego Novillo8027b802014-10-22 12:59:00 +000018;
Diego Novillo9518b632014-01-10 23:23:51 +000019@.str = private unnamed_addr constant [11 x i8] c"sum is %d\0A\00", align 1
20
21; Function Attrs: nounwind uwtable
Peter Collingbourned4bff302015-11-05 22:03:56 +000022define i32 @_Z3sumii(i32 %x, i32 %y) !dbg !4 {
Diego Novillo9518b632014-01-10 23:23:51 +000023entry:
24 %x.addr = alloca i32, align 4
25 %y.addr = alloca i32, align 4
26 store i32 %x, i32* %x.addr, align 4
27 store i32 %y, i32* %y.addr, align 4
David Blaikiea79ac142015-02-27 21:17:42 +000028 %0 = load i32, i32* %x.addr, align 4, !dbg !11
29 %1 = load i32, i32* %y.addr, align 4, !dbg !11
Diego Novillo9518b632014-01-10 23:23:51 +000030 %add = add nsw i32 %0, %1, !dbg !11
31 ret i32 %add, !dbg !11
32}
33
34; Function Attrs: uwtable
Peter Collingbourned4bff302015-11-05 22:03:56 +000035define i32 @main() !dbg !7 {
Diego Novillo9518b632014-01-10 23:23:51 +000036entry:
37 %retval = alloca i32, align 4
38 %s = alloca i32, align 4
39 %i = alloca i32, align 4
40 store i32 0, i32* %retval
41 store i32 0, i32* %i, align 4, !dbg !12
42 br label %while.cond, !dbg !13
43
44while.cond: ; preds = %if.end, %entry
David Blaikiea79ac142015-02-27 21:17:42 +000045 %0 = load i32, i32* %i, align 4, !dbg !14
Diego Novillo92aa8c22014-03-10 22:41:28 +000046 %inc = add nsw i32 %0, 1, !dbg !14
47 store i32 %inc, i32* %i, align 4, !dbg !14
48 %cmp = icmp slt i32 %0, 400000000, !dbg !14
49 br i1 %cmp, label %while.body, label %while.end, !dbg !14
Cong Hou15ea0162015-09-25 23:09:59 +000050; CHECK: edge while.cond -> while.body probability is 0x80000000 / 0x80000000 = 100.00% [HOT edge]
51; CHECK: edge while.cond -> while.end probability is 0x00000000 / 0x80000000 = 0.00%
Diego Novillo9518b632014-01-10 23:23:51 +000052
53while.body: ; preds = %while.cond
David Blaikiea79ac142015-02-27 21:17:42 +000054 %1 = load i32, i32* %i, align 4, !dbg !16
Diego Novillo92aa8c22014-03-10 22:41:28 +000055 %cmp1 = icmp ne i32 %1, 100, !dbg !16
56 br i1 %cmp1, label %if.then, label %if.else, !dbg !16
57; Without discriminator information, the profiler used to think that
58; both branches out of while.body had the same weight. In reality,
59; the edge while.body->if.then is taken most of the time.
60;
Cong Hou15ea0162015-09-25 23:09:59 +000061; CHECK: edge while.body -> if.else probability is 0x00000000 / 0x80000000 = 0.00%
Dehao Chen1012be12016-03-01 22:53:02 +000062; CHECK: edge while.body -> if.then probability is 0x80000000 / 0x80000000 = 100.00% [HOT edge]
Diego Novillo92aa8c22014-03-10 22:41:28 +000063
Diego Novillo9518b632014-01-10 23:23:51 +000064
65if.then: ; preds = %while.body
David Blaikiea79ac142015-02-27 21:17:42 +000066 %2 = load i32, i32* %i, align 4, !dbg !18
67 %3 = load i32, i32* %s, align 4, !dbg !18
Diego Novillo92aa8c22014-03-10 22:41:28 +000068 %call = call i32 @_Z3sumii(i32 %2, i32 %3), !dbg !18
69 store i32 %call, i32* %s, align 4, !dbg !18
70 br label %if.end, !dbg !18
Diego Novillo9518b632014-01-10 23:23:51 +000071
72if.else: ; preds = %while.body
Diego Novillo92aa8c22014-03-10 22:41:28 +000073 store i32 30, i32* %s, align 4, !dbg !20
Diego Novillo9518b632014-01-10 23:23:51 +000074 br label %if.end
75
76if.end: ; preds = %if.else, %if.then
Diego Novillo92aa8c22014-03-10 22:41:28 +000077 br label %while.cond, !dbg !22
Diego Novillo9518b632014-01-10 23:23:51 +000078
79while.end: ; preds = %while.cond
David Blaikiea79ac142015-02-27 21:17:42 +000080 %4 = load i32, i32* %s, align 4, !dbg !24
David Blaikie23af6482015-04-16 23:24:18 +000081 %call2 = call i32 (i8*, ...) @printf(i8* getelementptr inbounds ([11 x i8], [11 x i8]* @.str, i32 0, i32 0), i32 %4), !dbg !24
Diego Novillo92aa8c22014-03-10 22:41:28 +000082 ret i32 0, !dbg !25
Diego Novillo9518b632014-01-10 23:23:51 +000083}
84
Diego Novillo92aa8c22014-03-10 22:41:28 +000085declare i32 @printf(i8*, ...) #2
Diego Novillo9518b632014-01-10 23:23:51 +000086
Adrian Prantlb01a4d42016-04-11 15:53:44 +000087!llvm.dbg.cu = !{!0}
Diego Novillo9518b632014-01-10 23:23:51 +000088!llvm.module.flags = !{!8, !9}
89!llvm.ident = !{!10}
90
Adrian Prantlb01a4d42016-04-11 15:53:44 +000091!0 = distinct !DICompileUnit(language: DW_LANG_C_plus_plus, producer: "clang version 3.5 ", isOptimized: false, emissionKind: NoDebug, file: !1, enums: !2, retainedTypes: !2, subprograms: !3, globals: !2, imports: !2)
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +000092!1 = !DIFile(filename: "calls.cc", directory: ".")
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +000093!2 = !{}
94!3 = !{!4, !7}
Peter Collingbourned4bff302015-11-05 22:03:56 +000095!4 = distinct !DISubprogram(name: "sum", line: 3, isLocal: false, isDefinition: true, virtualIndex: 6, flags: DIFlagPrototyped, isOptimized: false, scopeLine: 3, file: !1, scope: !5, type: !6, variables: !2)
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +000096!5 = !DIFile(filename: "calls.cc", directory: ".")
97!6 = !DISubroutineType(types: !2)
Peter Collingbourned4bff302015-11-05 22:03:56 +000098!7 = distinct !DISubprogram(name: "main", line: 7, isLocal: false, isDefinition: true, virtualIndex: 6, flags: DIFlagPrototyped, isOptimized: false, scopeLine: 7, file: !1, scope: !5, type: !6, variables: !2)
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +000099!8 = !{i32 2, !"Dwarf Version", i32 4}
Duncan P. N. Exon Smithe2741802015-03-03 17:24:31 +0000100!9 = !{i32 1, !"Debug Info Version", i32 3}
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +0000101!10 = !{!"clang version 3.5 "}
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +0000102!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)
106!15 = !DILexicalBlockFile(discriminator: 1, file: !1, scope: !7)
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)
110!19 = !DILexicalBlockFile(discriminator: 1, file: !1, scope: !17)
111!20 = !DILocation(line: 10, scope: !21)
112!21 = !DILexicalBlockFile(discriminator: 2, file: !1, scope: !17)
113!22 = !DILocation(line: 10, scope: !23)
114!23 = !DILexicalBlockFile(discriminator: 3, file: !1, scope: !17)
115!24 = !DILocation(line: 11, scope: !7)
116!25 = !DILocation(line: 12, scope: !7)