1; REQUIRES: asserts 2; RUN: opt < %s -sample-profile -sample-profile-file=%S/Inputs/inline.prof -stats -S 2>&1 | FileCheck %s 3; RUN: opt < %s -passes=sample-profile -sample-profile-file=%S/Inputs/inline.prof -stats -S 2>&1 | FileCheck %s 4 5; Original C++ test case 6; 7; #include <stdio.h> 8; 9; int sum(int x, int y) { 10; return x + y; 11; } 12; 13; int main() { 14; int s, i = 0; 15; while (i++ < 20000 * 20000) 16; if (i != 100) s = sum(i, s); else s = 30; 17; printf("sum is %d\n", s); 18; return 0; 19; } 20; 21@.str = private unnamed_addr constant [11 x i8] c"sum is %d\0A\00", align 1 22define i32 @_Z3sumii(i32 %x, i32 %y) #0 !dbg !6 { 23entry: 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 28 %tmp = load i32, i32* %x.addr, align 4, !dbg !8 29 %tmp1 = load i32, i32* %y.addr, align 4, !dbg !8 30 %add = add nsw i32 %tmp, %tmp1, !dbg !8 31 ret i32 %add, !dbg !8 32} 33define i32 @main() #0 !dbg !9 { 34entry: 35 %retval = alloca i32, align 4 36 %s = alloca i32, align 4 37 %i = alloca i32, align 4 38 store i32 0, i32* %retval 39 store i32 0, i32* %i, align 4, !dbg !10 40 br label %while.cond, !dbg !11 41 42while.cond: ; preds = %if.end, %entry 43 %tmp = load i32, i32* %i, align 4, !dbg !12 44 %inc = add nsw i32 %tmp, 1, !dbg !12 45 store i32 %inc, i32* %i, align 4, !dbg !12 46 %cmp = icmp slt i32 %tmp, 400000000, !dbg !12 47 br i1 %cmp, label %while.body, label %while.end, !dbg !12 48 49while.body: ; preds = %while.cond 50 %tmp1 = load i32, i32* %i, align 4, !dbg !14 51 %cmp1 = icmp ne i32 %tmp1, 100, !dbg !14 52 br i1 %cmp1, label %if.then, label %if.else, !dbg !14 53 54if.then: ; preds = %while.body 55 %tmp2 = load i32, i32* %i, align 4, !dbg !16 56 %tmp3 = load i32, i32* %s, align 4, !dbg !16 57 %call = call i32 @_Z3sumii(i32 %tmp2, i32 %tmp3), !dbg !16 58 store i32 %call, i32* %s, align 4, !dbg !16 59 br label %if.end, !dbg !16 60 61if.else: ; preds = %while.body 62 store i32 30, i32* %s, align 4, !dbg !18 63 br label %if.end 64 65if.end: ; preds = %if.else, %if.then 66 br label %while.cond, !dbg !20 67 68while.end: ; preds = %while.cond 69 %tmp4 = load i32, i32* %s, align 4, !dbg !22 70 %call2 = call i32 (i8*, ...) @printf(i8* getelementptr inbounds ([11 x i8], [11 x i8]* @.str, i32 0, i32 0), i32 %tmp4), !dbg !22 71 ret i32 0, !dbg !23 72} 73declare i32 @printf(i8*, ...) 74 75attributes #0 = { "use-sample-profile" } 76 77!llvm.dbg.cu = !{!0} 78!llvm.module.flags = !{!3, !4} 79!llvm.ident = !{!5} 80 81!0 = distinct !DICompileUnit(language: DW_LANG_C_plus_plus, file: !1, producer: "clang version 3.5 ", isOptimized: false, runtimeVersion: 0, emissionKind: NoDebug, enums: !2, retainedTypes: !2, globals: !2, imports: !2) 82!1 = !DIFile(filename: "calls.cc", directory: ".") 83!2 = !{} 84!3 = !{i32 2, !"Dwarf Version", i32 4} 85!4 = !{i32 1, !"Debug Info Version", i32 3} 86!5 = !{!"clang version 3.5 "} 87!6 = distinct !DISubprogram(name: "sum", scope: !1, file: !1, line: 3, type: !7, scopeLine: 3, virtualIndex: 6, flags: DIFlagPrototyped, spFlags: DISPFlagDefinition, unit: !0, retainedNodes: !2) 88!7 = !DISubroutineType(types: !2) 89!8 = !DILocation(line: 4, scope: !6) 90!9 = distinct !DISubprogram(name: "main", scope: !1, file: !1, line: 7, type: !7, scopeLine: 7, virtualIndex: 6, flags: DIFlagPrototyped, spFlags: DISPFlagDefinition, unit: !0, retainedNodes: !2) 91!10 = !DILocation(line: 8, scope: !9) 92!11 = !DILocation(line: 9, scope: !9) 93!12 = !DILocation(line: 9, scope: !13) 94!13 = !DILexicalBlockFile(scope: !9, file: !1, discriminator: 2) 95!14 = !DILocation(line: 10, scope: !15) 96!15 = distinct !DILexicalBlock(scope: !9, file: !1, line: 10) 97!16 = !DILocation(line: 10, scope: !17) 98!17 = !DILexicalBlockFile(scope: !15, file: !1, discriminator: 2) 99!18 = !DILocation(line: 10, scope: !19) 100!19 = !DILexicalBlockFile(scope: !15, file: !1, discriminator: 4) 101!20 = !DILocation(line: 10, scope: !21) 102!21 = !DILexicalBlockFile(scope: !15, file: !1, discriminator: 6) 103!22 = !DILocation(line: 11, scope: !9) 104!23 = !DILocation(line: 12, scope: !9) 105 106; CHECK: 1 sample-profile - Number of functions inlined with context sensitive profile 107