blob: ed353834137bd39bff4fa9ecb583a229e2633cce [file] [log] [blame]
Diego Novillo0b6985a2015-11-24 22:38:37 +00001; RUN: opt < %s -sample-profile -sample-profile-file=%S/Inputs/inline.prof -sample-profile-inline-hot-threshold=1 -S | FileCheck %s
Xinliang David Lid38392e2016-05-27 23:20:16 +00002; RUN: opt < %s -passes=sample-profile -sample-profile-file=%S/Inputs/inline.prof -sample-profile-inline-hot-threshold=1 -S | FileCheck %s
Dehao Chenaae9e1f2015-09-30 01:05:37 +00003
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; }
19;
20@.str = private unnamed_addr constant [11 x i8] c"sum is %d\0A\00", align 1
21
22; Function Attrs: nounwind uwtable
Peter Collingbourned4bff302015-11-05 22:03:56 +000023define i32 @_Z3sumii(i32 %x, i32 %y) !dbg !4 {
Dehao Chenaae9e1f2015-09-30 01:05:37 +000024entry:
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
29 %0 = load i32, i32* %x.addr, align 4, !dbg !11
30 %1 = load i32, i32* %y.addr, align 4, !dbg !11
31 %add = add nsw i32 %0, %1, !dbg !11
32 ret i32 %add, !dbg !11
33}
34
35; Function Attrs: uwtable
Peter Collingbourned4bff302015-11-05 22:03:56 +000036define i32 @main() !dbg !7 {
Dehao Chenaae9e1f2015-09-30 01:05:37 +000037entry:
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
45while.cond: ; preds = %if.end, %entry
46 %0 = load i32, i32* %i, align 4, !dbg !14
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
51
52while.body: ; preds = %while.cond
53 %1 = load i32, i32* %i, align 4, !dbg !16
54 %cmp1 = icmp ne i32 %1, 100, !dbg !16
55 br i1 %cmp1, label %if.then, label %if.else, !dbg !16
56
57
58if.then: ; preds = %while.body
59 %2 = load i32, i32* %i, align 4, !dbg !18
60 %3 = load i32, i32* %s, align 4, !dbg !18
61 %call = call i32 @_Z3sumii(i32 %2, i32 %3), !dbg !18
62; CHECK-NOT: call i32 @_Z3sumii
63 store i32 %call, i32* %s, align 4, !dbg !18
64 br label %if.end, !dbg !18
65
66if.else: ; preds = %while.body
67 store i32 30, i32* %s, align 4, !dbg !20
68 br label %if.end
69
70if.end: ; preds = %if.else, %if.then
71 br label %while.cond, !dbg !22
72
73while.end: ; preds = %while.cond
74 %4 = load i32, i32* %s, align 4, !dbg !24
75 %call2 = call i32 (i8*, ...) @printf(i8* getelementptr inbounds ([11 x i8], [11 x i8]* @.str, i32 0, i32 0), i32 %4), !dbg !24
76 ret i32 0, !dbg !25
77}
78
79declare i32 @printf(i8*, ...) #2
80
Adrian Prantlb01a4d42016-04-11 15:53:44 +000081!llvm.dbg.cu = !{!0}
Dehao Chenaae9e1f2015-09-30 01:05:37 +000082!llvm.module.flags = !{!8, !9}
83!llvm.ident = !{!10}
84
Adrian Prantl75819ae2016-04-15 15:57:41 +000085!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)
Dehao Chenaae9e1f2015-09-30 01:05:37 +000086!1 = !DIFile(filename: "calls.cc", directory: ".")
87!2 = !{}
Adrian Prantl75819ae2016-04-15 15:57:41 +000088!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, variables: !2)
Dehao Chenaae9e1f2015-09-30 01:05:37 +000089!5 = !DIFile(filename: "calls.cc", directory: ".")
90!6 = !DISubroutineType(types: !2)
Adrian Prantl75819ae2016-04-15 15:57:41 +000091!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, variables: !2)
Dehao Chenaae9e1f2015-09-30 01:05:37 +000092!8 = !{i32 2, !"Dwarf Version", i32 4}
93!9 = !{i32 1, !"Debug Info Version", i32 3}
94!10 = !{!"clang version 3.5 "}
95!11 = !DILocation(line: 4, scope: !4)
96!12 = !DILocation(line: 8, scope: !7)
97!13 = !DILocation(line: 9, scope: !7)
98!14 = !DILocation(line: 9, scope: !15)
99!15 = !DILexicalBlockFile(discriminator: 1, file: !1, scope: !7)
100!16 = !DILocation(line: 10, scope: !17)
101!17 = distinct !DILexicalBlock(line: 10, column: 0, file: !1, scope: !7)
102!18 = !DILocation(line: 10, scope: !19)
103!19 = !DILexicalBlockFile(discriminator: 1, file: !1, scope: !17)
104!20 = !DILocation(line: 10, scope: !21)
105!21 = !DILexicalBlockFile(discriminator: 2, file: !1, scope: !17)
106!22 = !DILocation(line: 10, scope: !23)
107!23 = !DILexicalBlockFile(discriminator: 3, file: !1, scope: !17)
108!24 = !DILocation(line: 11, scope: !7)
109!25 = !DILocation(line: 12, scope: !7)