1*9880d681SAndroid Build Coastguard Worker; RUN: opt < %s -sample-profile -sample-profile-file=%S/Inputs/branch.prof | opt -analyze -branch-prob | FileCheck %s 2*9880d681SAndroid Build Coastguard Worker; RUN: opt < %s -passes=sample-profile -sample-profile-file=%S/Inputs/branch.prof | opt -analyze -branch-prob | FileCheck %s 3*9880d681SAndroid Build Coastguard Worker 4*9880d681SAndroid Build Coastguard Worker; Original C++ code for this test case: 5*9880d681SAndroid Build Coastguard Worker; 6*9880d681SAndroid Build Coastguard Worker; #include <stdio.h> 7*9880d681SAndroid Build Coastguard Worker; #include <stdlib.h> 8*9880d681SAndroid Build Coastguard Worker 9*9880d681SAndroid Build Coastguard Worker; int main(int argc, char *argv[]) { 10*9880d681SAndroid Build Coastguard Worker; if (argc < 2) 11*9880d681SAndroid Build Coastguard Worker; return 1; 12*9880d681SAndroid Build Coastguard Worker; double result; 13*9880d681SAndroid Build Coastguard Worker; int limit = atoi(argv[1]); 14*9880d681SAndroid Build Coastguard Worker; if (limit > 100) { 15*9880d681SAndroid Build Coastguard Worker; double s = 23.041968 * atoi(argv[2]); 16*9880d681SAndroid Build Coastguard Worker; for (int u = 0; u < limit; u++) { 17*9880d681SAndroid Build Coastguard Worker; double x = s; 18*9880d681SAndroid Build Coastguard Worker; s = x + 3.049 + (double)u; 19*9880d681SAndroid Build Coastguard Worker; s -= s + 3.94 / x * 0.32; 20*9880d681SAndroid Build Coastguard Worker; } 21*9880d681SAndroid Build Coastguard Worker; result = s; 22*9880d681SAndroid Build Coastguard Worker; } else { 23*9880d681SAndroid Build Coastguard Worker; result = atoi(argv[2]); 24*9880d681SAndroid Build Coastguard Worker; } 25*9880d681SAndroid Build Coastguard Worker; printf("result is %lf\n", result); 26*9880d681SAndroid Build Coastguard Worker; return 0; 27*9880d681SAndroid Build Coastguard Worker; } 28*9880d681SAndroid Build Coastguard Worker 29*9880d681SAndroid Build Coastguard Worker@.str = private unnamed_addr constant [15 x i8] c"result is %lf\0A\00", align 1 30*9880d681SAndroid Build Coastguard Worker 31*9880d681SAndroid Build Coastguard Worker; Function Attrs: uwtable 32*9880d681SAndroid Build Coastguard Workerdefine i32 @main(i32 %argc, i8** %argv) #0 !dbg !6 { 33*9880d681SAndroid Build Coastguard Worker; CHECK: Printing analysis 'Branch Probability Analysis' for function 'main': 34*9880d681SAndroid Build Coastguard Worker 35*9880d681SAndroid Build Coastguard Workerentry: 36*9880d681SAndroid Build Coastguard Worker %retval = alloca i32, align 4 37*9880d681SAndroid Build Coastguard Worker %argc.addr = alloca i32, align 4 38*9880d681SAndroid Build Coastguard Worker %argv.addr = alloca i8**, align 8 39*9880d681SAndroid Build Coastguard Worker %result = alloca double, align 8 40*9880d681SAndroid Build Coastguard Worker %limit = alloca i32, align 4 41*9880d681SAndroid Build Coastguard Worker %s = alloca double, align 8 42*9880d681SAndroid Build Coastguard Worker %u = alloca i32, align 4 43*9880d681SAndroid Build Coastguard Worker %x = alloca double, align 8 44*9880d681SAndroid Build Coastguard Worker store i32 0, i32* %retval, align 4 45*9880d681SAndroid Build Coastguard Worker store i32 %argc, i32* %argc.addr, align 4 46*9880d681SAndroid Build Coastguard Worker call void @llvm.dbg.declare(metadata i32* %argc.addr, metadata !16, metadata !17), !dbg !18 47*9880d681SAndroid Build Coastguard Worker store i8** %argv, i8*** %argv.addr, align 8 48*9880d681SAndroid Build Coastguard Worker call void @llvm.dbg.declare(metadata i8*** %argv.addr, metadata !19, metadata !17), !dbg !20 49*9880d681SAndroid Build Coastguard Worker %0 = load i32, i32* %argc.addr, align 4, !dbg !21 50*9880d681SAndroid Build Coastguard Worker %cmp = icmp slt i32 %0, 2, !dbg !23 51*9880d681SAndroid Build Coastguard Worker br i1 %cmp, label %if.then, label %if.end, !dbg !24 52*9880d681SAndroid Build Coastguard Worker; CHECK: edge entry -> if.then probability is 0x4ccccccd / 0x80000000 = 60.00% 53*9880d681SAndroid Build Coastguard Worker; CHECK: edge entry -> if.end probability is 0x33333333 / 0x80000000 = 40.00% 54*9880d681SAndroid Build Coastguard Worker 55*9880d681SAndroid Build Coastguard Workerif.then: ; preds = %entry 56*9880d681SAndroid Build Coastguard Worker store i32 1, i32* %retval, align 4, !dbg !25 57*9880d681SAndroid Build Coastguard Worker br label %return, !dbg !25 58*9880d681SAndroid Build Coastguard Worker 59*9880d681SAndroid Build Coastguard Workerif.end: ; preds = %entry 60*9880d681SAndroid Build Coastguard Worker call void @llvm.dbg.declare(metadata double* %result, metadata !26, metadata !17), !dbg !27 61*9880d681SAndroid Build Coastguard Worker call void @llvm.dbg.declare(metadata i32* %limit, metadata !28, metadata !17), !dbg !29 62*9880d681SAndroid Build Coastguard Worker %1 = load i8**, i8*** %argv.addr, align 8, !dbg !30 63*9880d681SAndroid Build Coastguard Worker %arrayidx = getelementptr inbounds i8*, i8** %1, i64 1, !dbg !30 64*9880d681SAndroid Build Coastguard Worker %2 = load i8*, i8** %arrayidx, align 8, !dbg !30 65*9880d681SAndroid Build Coastguard Worker %call = call i32 @atoi(i8* %2) #4, !dbg !31 66*9880d681SAndroid Build Coastguard Worker store i32 %call, i32* %limit, align 4, !dbg !29 67*9880d681SAndroid Build Coastguard Worker %3 = load i32, i32* %limit, align 4, !dbg !32 68*9880d681SAndroid Build Coastguard Worker %cmp1 = icmp sgt i32 %3, 100, !dbg !34 69*9880d681SAndroid Build Coastguard Worker br i1 %cmp1, label %if.then.2, label %if.else, !dbg !35 70*9880d681SAndroid Build Coastguard Worker; CHECK: edge if.end -> if.then.2 probability is 0x66666666 / 0x80000000 = 80.00% 71*9880d681SAndroid Build Coastguard Worker; CHECK: edge if.end -> if.else probability is 0x1999999a / 0x80000000 = 20.00% 72*9880d681SAndroid Build Coastguard Worker 73*9880d681SAndroid Build Coastguard Workerif.then.2: ; preds = %if.end 74*9880d681SAndroid Build Coastguard Worker call void @llvm.dbg.declare(metadata double* %s, metadata !36, metadata !17), !dbg !38 75*9880d681SAndroid Build Coastguard Worker %4 = load i8**, i8*** %argv.addr, align 8, !dbg !39 76*9880d681SAndroid Build Coastguard Worker %arrayidx3 = getelementptr inbounds i8*, i8** %4, i64 2, !dbg !39 77*9880d681SAndroid Build Coastguard Worker %5 = load i8*, i8** %arrayidx3, align 8, !dbg !39 78*9880d681SAndroid Build Coastguard Worker %call4 = call i32 @atoi(i8* %5) #4, !dbg !40 79*9880d681SAndroid Build Coastguard Worker %conv = sitofp i32 %call4 to double, !dbg !40 80*9880d681SAndroid Build Coastguard Worker %mul = fmul double 0x40370ABE6A337A81, %conv, !dbg !41 81*9880d681SAndroid Build Coastguard Worker store double %mul, double* %s, align 8, !dbg !38 82*9880d681SAndroid Build Coastguard Worker call void @llvm.dbg.declare(metadata i32* %u, metadata !42, metadata !17), !dbg !44 83*9880d681SAndroid Build Coastguard Worker store i32 0, i32* %u, align 4, !dbg !44 84*9880d681SAndroid Build Coastguard Worker br label %for.cond, !dbg !45 85*9880d681SAndroid Build Coastguard Worker 86*9880d681SAndroid Build Coastguard Workerfor.cond: ; preds = %for.inc, %if.then.2 87*9880d681SAndroid Build Coastguard Worker %6 = load i32, i32* %u, align 4, !dbg !46 88*9880d681SAndroid Build Coastguard Worker %7 = load i32, i32* %limit, align 4, !dbg !48 89*9880d681SAndroid Build Coastguard Worker %cmp5 = icmp slt i32 %6, %7, !dbg !49 90*9880d681SAndroid Build Coastguard Worker br i1 %cmp5, label %for.body, label %for.end, !dbg !50 91*9880d681SAndroid Build Coastguard Worker 92*9880d681SAndroid Build Coastguard Workerfor.body: ; preds = %for.cond 93*9880d681SAndroid Build Coastguard Worker call void @llvm.dbg.declare(metadata double* %x, metadata !51, metadata !17), !dbg !53 94*9880d681SAndroid Build Coastguard Worker %8 = load double, double* %s, align 8, !dbg !54 95*9880d681SAndroid Build Coastguard Worker store double %8, double* %x, align 8, !dbg !53 96*9880d681SAndroid Build Coastguard Worker %9 = load double, double* %x, align 8, !dbg !55 97*9880d681SAndroid Build Coastguard Worker %add = fadd double %9, 3.049000e+00, !dbg !56 98*9880d681SAndroid Build Coastguard Worker %10 = load i32, i32* %u, align 4, !dbg !57 99*9880d681SAndroid Build Coastguard Worker %conv6 = sitofp i32 %10 to double, !dbg !57 100*9880d681SAndroid Build Coastguard Worker %add7 = fadd double %add, %conv6, !dbg !58 101*9880d681SAndroid Build Coastguard Worker store double %add7, double* %s, align 8, !dbg !59 102*9880d681SAndroid Build Coastguard Worker %11 = load double, double* %s, align 8, !dbg !60 103*9880d681SAndroid Build Coastguard Worker %12 = load double, double* %x, align 8, !dbg !61 104*9880d681SAndroid Build Coastguard Worker %div = fdiv double 3.940000e+00, %12, !dbg !62 105*9880d681SAndroid Build Coastguard Worker %mul8 = fmul double %div, 3.200000e-01, !dbg !63 106*9880d681SAndroid Build Coastguard Worker %add9 = fadd double %11, %mul8, !dbg !64 107*9880d681SAndroid Build Coastguard Worker %13 = load double, double* %s, align 8, !dbg !65 108*9880d681SAndroid Build Coastguard Worker %sub = fsub double %13, %add9, !dbg !65 109*9880d681SAndroid Build Coastguard Worker store double %sub, double* %s, align 8, !dbg !65 110*9880d681SAndroid Build Coastguard Worker br label %for.inc, !dbg !66 111*9880d681SAndroid Build Coastguard Worker 112*9880d681SAndroid Build Coastguard Workerfor.inc: ; preds = %for.body 113*9880d681SAndroid Build Coastguard Worker %14 = load i32, i32* %u, align 4, !dbg !67 114*9880d681SAndroid Build Coastguard Worker %inc = add nsw i32 %14, 1, !dbg !67 115*9880d681SAndroid Build Coastguard Worker store i32 %inc, i32* %u, align 4, !dbg !67 116*9880d681SAndroid Build Coastguard Worker br label %for.cond, !dbg !68 117*9880d681SAndroid Build Coastguard Worker 118*9880d681SAndroid Build Coastguard Workerfor.end: ; preds = %for.cond 119*9880d681SAndroid Build Coastguard Worker %15 = load double, double* %s, align 8, !dbg !69 120*9880d681SAndroid Build Coastguard Worker store double %15, double* %result, align 8, !dbg !70 121*9880d681SAndroid Build Coastguard Worker br label %if.end.13, !dbg !71 122*9880d681SAndroid Build Coastguard Worker 123*9880d681SAndroid Build Coastguard Workerif.else: ; preds = %if.end 124*9880d681SAndroid Build Coastguard Worker %16 = load i8**, i8*** %argv.addr, align 8, !dbg !72 125*9880d681SAndroid Build Coastguard Worker %arrayidx10 = getelementptr inbounds i8*, i8** %16, i64 2, !dbg !72 126*9880d681SAndroid Build Coastguard Worker %17 = load i8*, i8** %arrayidx10, align 8, !dbg !72 127*9880d681SAndroid Build Coastguard Worker %call11 = call i32 @atoi(i8* %17) #4, !dbg !74 128*9880d681SAndroid Build Coastguard Worker %conv12 = sitofp i32 %call11 to double, !dbg !74 129*9880d681SAndroid Build Coastguard Worker store double %conv12, double* %result, align 8, !dbg !75 130*9880d681SAndroid Build Coastguard Worker br label %if.end.13 131*9880d681SAndroid Build Coastguard Worker 132*9880d681SAndroid Build Coastguard Workerif.end.13: ; preds = %if.else, %for.end 133*9880d681SAndroid Build Coastguard Worker %18 = load double, double* %result, align 8, !dbg !76 134*9880d681SAndroid Build Coastguard Worker %call14 = call i32 (i8*, ...) @printf(i8* getelementptr inbounds ([15 x i8], [15 x i8]* @.str, i32 0, i32 0), double %18), !dbg !77 135*9880d681SAndroid Build Coastguard Worker store i32 0, i32* %retval, align 4, !dbg !78 136*9880d681SAndroid Build Coastguard Worker br label %return, !dbg !78 137*9880d681SAndroid Build Coastguard Worker 138*9880d681SAndroid Build Coastguard Workerreturn: ; preds = %if.end.13, %if.then 139*9880d681SAndroid Build Coastguard Worker %19 = load i32, i32* %retval, align 4, !dbg !79 140*9880d681SAndroid Build Coastguard Worker ret i32 %19, !dbg !79 141*9880d681SAndroid Build Coastguard Worker} 142*9880d681SAndroid Build Coastguard Worker 143*9880d681SAndroid Build Coastguard Worker; Function Attrs: nounwind readnone 144*9880d681SAndroid Build Coastguard Workerdeclare void @llvm.dbg.declare(metadata, metadata, metadata) #1 145*9880d681SAndroid Build Coastguard Worker 146*9880d681SAndroid Build Coastguard Worker; Function Attrs: nounwind readonly 147*9880d681SAndroid Build Coastguard Workerdeclare i32 @atoi(i8*) #2 148*9880d681SAndroid Build Coastguard Worker 149*9880d681SAndroid Build Coastguard Workerdeclare i32 @printf(i8*, ...) #3 150*9880d681SAndroid Build Coastguard Worker 151*9880d681SAndroid Build Coastguard Workerattributes #0 = { uwtable "disable-tail-calls"="false" "less-precise-fpmad"="false" "no-frame-pointer-elim"="true" "no-frame-pointer-elim-non-leaf" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+sse,+sse2" "unsafe-fp-math"="false" "use-soft-float"="false" } 152*9880d681SAndroid Build Coastguard Workerattributes #1 = { nounwind readnone } 153*9880d681SAndroid Build Coastguard Workerattributes #2 = { nounwind readonly "disable-tail-calls"="false" "less-precise-fpmad"="false" "no-frame-pointer-elim"="true" "no-frame-pointer-elim-non-leaf" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+sse,+sse2" "unsafe-fp-math"="false" "use-soft-float"="false" } 154*9880d681SAndroid Build Coastguard Workerattributes #3 = { "disable-tail-calls"="false" "less-precise-fpmad"="false" "no-frame-pointer-elim"="true" "no-frame-pointer-elim-non-leaf" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "stack-protector-buffer-size"="8" "target-cpu"="x86-64" "target-features"="+sse,+sse2" "unsafe-fp-math"="false" "use-soft-float"="false" } 155*9880d681SAndroid Build Coastguard Workerattributes #4 = { nounwind readonly } 156*9880d681SAndroid Build Coastguard Worker 157*9880d681SAndroid Build Coastguard Worker!llvm.dbg.cu = !{!0} 158*9880d681SAndroid Build Coastguard Worker!llvm.module.flags = !{!13, !14} 159*9880d681SAndroid Build Coastguard Worker!llvm.ident = !{!15} 160*9880d681SAndroid Build Coastguard Worker 161*9880d681SAndroid Build Coastguard Worker!0 = distinct !DICompileUnit(language: DW_LANG_C_plus_plus, file: !1, producer: "clang version 3.8.0 (trunk 248211) (llvm/trunk 248217)", isOptimized: false, runtimeVersion: 0, emissionKind: NoDebug, enums: !2, retainedTypes: !3) 162*9880d681SAndroid Build Coastguard Worker!1 = !DIFile(filename: "test.cc", directory: "/ssd/llvm_commit") 163*9880d681SAndroid Build Coastguard Worker!2 = !{} 164*9880d681SAndroid Build Coastguard Worker!3 = !{!4} 165*9880d681SAndroid Build Coastguard Worker!4 = !DIBasicType(name: "double", size: 64, align: 64, encoding: DW_ATE_float) 166*9880d681SAndroid Build Coastguard Worker!6 = distinct !DISubprogram(name: "main", scope: !1, file: !1, line: 4, type: !7, isLocal: false, isDefinition: true, scopeLine: 4, flags: DIFlagPrototyped, isOptimized: false, unit: !0, variables: !2) 167*9880d681SAndroid Build Coastguard Worker!7 = !DISubroutineType(types: !8) 168*9880d681SAndroid Build Coastguard Worker!8 = !{!9, !9, !10} 169*9880d681SAndroid Build Coastguard Worker!9 = !DIBasicType(name: "int", size: 32, align: 32, encoding: DW_ATE_signed) 170*9880d681SAndroid Build Coastguard Worker!10 = !DIDerivedType(tag: DW_TAG_pointer_type, baseType: !11, size: 64, align: 64) 171*9880d681SAndroid Build Coastguard Worker!11 = !DIDerivedType(tag: DW_TAG_pointer_type, baseType: !12, size: 64, align: 64) 172*9880d681SAndroid Build Coastguard Worker!12 = !DIBasicType(name: "char", size: 8, align: 8, encoding: DW_ATE_signed_char) 173*9880d681SAndroid Build Coastguard Worker!13 = !{i32 2, !"Dwarf Version", i32 4} 174*9880d681SAndroid Build Coastguard Worker!14 = !{i32 2, !"Debug Info Version", i32 3} 175*9880d681SAndroid Build Coastguard Worker!15 = !{!"clang version 3.8.0 (trunk 248211) (llvm/trunk 248217)"} 176*9880d681SAndroid Build Coastguard Worker!16 = !DILocalVariable(name: "argc", arg: 1, scope: !6, file: !1, line: 4, type: !9) 177*9880d681SAndroid Build Coastguard Worker!17 = !DIExpression() 178*9880d681SAndroid Build Coastguard Worker!18 = !DILocation(line: 4, column: 15, scope: !6) 179*9880d681SAndroid Build Coastguard Worker!19 = !DILocalVariable(name: "argv", arg: 2, scope: !6, file: !1, line: 4, type: !10) 180*9880d681SAndroid Build Coastguard Worker!20 = !DILocation(line: 4, column: 27, scope: !6) 181*9880d681SAndroid Build Coastguard Worker!21 = !DILocation(line: 5, column: 8, scope: !22) 182*9880d681SAndroid Build Coastguard Worker!22 = distinct !DILexicalBlock(scope: !6, file: !1, line: 5, column: 8) 183*9880d681SAndroid Build Coastguard Worker!23 = !DILocation(line: 5, column: 13, scope: !22) 184*9880d681SAndroid Build Coastguard Worker!24 = !DILocation(line: 5, column: 8, scope: !6) 185*9880d681SAndroid Build Coastguard Worker!25 = !DILocation(line: 6, column: 6, scope: !22) 186*9880d681SAndroid Build Coastguard Worker!26 = !DILocalVariable(name: "result", scope: !6, file: !1, line: 7, type: !4) 187*9880d681SAndroid Build Coastguard Worker!27 = !DILocation(line: 7, column: 11, scope: !6) 188*9880d681SAndroid Build Coastguard Worker!28 = !DILocalVariable(name: "limit", scope: !6, file: !1, line: 8, type: !9) 189*9880d681SAndroid Build Coastguard Worker!29 = !DILocation(line: 8, column: 8, scope: !6) 190*9880d681SAndroid Build Coastguard Worker!30 = !DILocation(line: 8, column: 21, scope: !6) 191*9880d681SAndroid Build Coastguard Worker!31 = !DILocation(line: 8, column: 16, scope: !6) 192*9880d681SAndroid Build Coastguard Worker!32 = !DILocation(line: 9, column: 8, scope: !33) 193*9880d681SAndroid Build Coastguard Worker!33 = distinct !DILexicalBlock(scope: !6, file: !1, line: 9, column: 8) 194*9880d681SAndroid Build Coastguard Worker!34 = !DILocation(line: 9, column: 14, scope: !33) 195*9880d681SAndroid Build Coastguard Worker!35 = !DILocation(line: 9, column: 8, scope: !6) 196*9880d681SAndroid Build Coastguard Worker!36 = !DILocalVariable(name: "s", scope: !37, file: !1, line: 10, type: !4) 197*9880d681SAndroid Build Coastguard Worker!37 = distinct !DILexicalBlock(scope: !33, file: !1, line: 9, column: 21) 198*9880d681SAndroid Build Coastguard Worker!38 = !DILocation(line: 10, column: 13, scope: !37) 199*9880d681SAndroid Build Coastguard Worker!39 = !DILocation(line: 10, column: 34, scope: !37) 200*9880d681SAndroid Build Coastguard Worker!40 = !DILocation(line: 10, column: 29, scope: !37) 201*9880d681SAndroid Build Coastguard Worker!41 = !DILocation(line: 10, column: 27, scope: !37) 202*9880d681SAndroid Build Coastguard Worker!42 = !DILocalVariable(name: "u", scope: !43, file: !1, line: 11, type: !9) 203*9880d681SAndroid Build Coastguard Worker!43 = distinct !DILexicalBlock(scope: !37, file: !1, line: 11, column: 6) 204*9880d681SAndroid Build Coastguard Worker!44 = !DILocation(line: 11, column: 15, scope: !43) 205*9880d681SAndroid Build Coastguard Worker!45 = !DILocation(line: 11, column: 11, scope: !43) 206*9880d681SAndroid Build Coastguard Worker!46 = !DILocation(line: 11, column: 22, scope: !47) 207*9880d681SAndroid Build Coastguard Worker!47 = distinct !DILexicalBlock(scope: !43, file: !1, line: 11, column: 6) 208*9880d681SAndroid Build Coastguard Worker!48 = !DILocation(line: 11, column: 26, scope: !47) 209*9880d681SAndroid Build Coastguard Worker!49 = !DILocation(line: 11, column: 24, scope: !47) 210*9880d681SAndroid Build Coastguard Worker!50 = !DILocation(line: 11, column: 6, scope: !43) 211*9880d681SAndroid Build Coastguard Worker!51 = !DILocalVariable(name: "x", scope: !52, file: !1, line: 12, type: !4) 212*9880d681SAndroid Build Coastguard Worker!52 = distinct !DILexicalBlock(scope: !47, file: !1, line: 11, column: 38) 213*9880d681SAndroid Build Coastguard Worker!53 = !DILocation(line: 12, column: 15, scope: !52) 214*9880d681SAndroid Build Coastguard Worker!54 = !DILocation(line: 12, column: 19, scope: !52) 215*9880d681SAndroid Build Coastguard Worker!55 = !DILocation(line: 13, column: 12, scope: !52) 216*9880d681SAndroid Build Coastguard Worker!56 = !DILocation(line: 13, column: 14, scope: !52) 217*9880d681SAndroid Build Coastguard Worker!57 = !DILocation(line: 13, column: 32, scope: !52) 218*9880d681SAndroid Build Coastguard Worker!58 = !DILocation(line: 13, column: 22, scope: !52) 219*9880d681SAndroid Build Coastguard Worker!59 = !DILocation(line: 13, column: 10, scope: !52) 220*9880d681SAndroid Build Coastguard Worker!60 = !DILocation(line: 14, column: 13, scope: !52) 221*9880d681SAndroid Build Coastguard Worker!61 = !DILocation(line: 14, column: 24, scope: !52) 222*9880d681SAndroid Build Coastguard Worker!62 = !DILocation(line: 14, column: 22, scope: !52) 223*9880d681SAndroid Build Coastguard Worker!63 = !DILocation(line: 14, column: 26, scope: !52) 224*9880d681SAndroid Build Coastguard Worker!64 = !DILocation(line: 14, column: 15, scope: !52) 225*9880d681SAndroid Build Coastguard Worker!65 = !DILocation(line: 14, column: 10, scope: !52) 226*9880d681SAndroid Build Coastguard Worker!66 = !DILocation(line: 15, column: 6, scope: !52) 227*9880d681SAndroid Build Coastguard Worker!67 = !DILocation(line: 11, column: 34, scope: !47) 228*9880d681SAndroid Build Coastguard Worker!68 = !DILocation(line: 11, column: 6, scope: !47) 229*9880d681SAndroid Build Coastguard Worker!69 = !DILocation(line: 16, column: 15, scope: !37) 230*9880d681SAndroid Build Coastguard Worker!70 = !DILocation(line: 16, column: 13, scope: !37) 231*9880d681SAndroid Build Coastguard Worker!71 = !DILocation(line: 17, column: 4, scope: !37) 232*9880d681SAndroid Build Coastguard Worker!72 = !DILocation(line: 18, column: 20, scope: !73) 233*9880d681SAndroid Build Coastguard Worker!73 = distinct !DILexicalBlock(scope: !33, file: !1, line: 17, column: 11) 234*9880d681SAndroid Build Coastguard Worker!74 = !DILocation(line: 18, column: 15, scope: !73) 235*9880d681SAndroid Build Coastguard Worker!75 = !DILocation(line: 18, column: 13, scope: !73) 236*9880d681SAndroid Build Coastguard Worker!76 = !DILocation(line: 20, column: 30, scope: !6) 237*9880d681SAndroid Build Coastguard Worker!77 = !DILocation(line: 20, column: 4, scope: !6) 238*9880d681SAndroid Build Coastguard Worker!78 = !DILocation(line: 21, column: 4, scope: !6) 239*9880d681SAndroid Build Coastguard Worker!79 = !DILocation(line: 22, column: 2, scope: !6) 240