1*9880d681SAndroid Build Coastguard Worker; RUN: llc -filetype=asm %s -o - | FileCheck %s 2*9880d681SAndroid Build Coastguard Worker 3*9880d681SAndroid Build Coastguard Worker; Test the extension of debug ranges from predecessors. 4*9880d681SAndroid Build Coastguard Worker; Generated from the source file LiveDebugValues.c: 5*9880d681SAndroid Build Coastguard Worker; #include <stdio.h> 6*9880d681SAndroid Build Coastguard Worker; int m; 7*9880d681SAndroid Build Coastguard Worker; extern int inc(int n); 8*9880d681SAndroid Build Coastguard Worker; extern int change(int n); 9*9880d681SAndroid Build Coastguard Worker; extern int modify(int n); 10*9880d681SAndroid Build Coastguard Worker; int main(int argc, char **argv) { 11*9880d681SAndroid Build Coastguard Worker; int n; 12*9880d681SAndroid Build Coastguard Worker; if (argc != 2) 13*9880d681SAndroid Build Coastguard Worker; n = 2; 14*9880d681SAndroid Build Coastguard Worker; else 15*9880d681SAndroid Build Coastguard Worker; n = atoi(argv[1]); 16*9880d681SAndroid Build Coastguard Worker; n = change(n); 17*9880d681SAndroid Build Coastguard Worker; if (n > 10) { 18*9880d681SAndroid Build Coastguard Worker; m = modify(n); 19*9880d681SAndroid Build Coastguard Worker; m = m + n; // var `m' doesn't has a dbg.value 20*9880d681SAndroid Build Coastguard Worker; } 21*9880d681SAndroid Build Coastguard Worker; else 22*9880d681SAndroid Build Coastguard Worker; m = inc(n); // var `m' doesn't has a dbg.value 23*9880d681SAndroid Build Coastguard Worker; printf("m(main): %d\n", m); 24*9880d681SAndroid Build Coastguard Worker; return 0; 25*9880d681SAndroid Build Coastguard Worker; } 26*9880d681SAndroid Build Coastguard Worker; with clang -g -O3 -emit-llvm -c LiveDebugValues.c -S -o live-debug-values.ll 27*9880d681SAndroid Build Coastguard Worker; This case will also produce multiple locations but only the debug range 28*9880d681SAndroid Build Coastguard Worker; extension is tested here. 29*9880d681SAndroid Build Coastguard Worker 30*9880d681SAndroid Build Coastguard Worker; DBG_VALUE for variable "n" is extended into BB#5 from its predecessors BB#3 31*9880d681SAndroid Build Coastguard Worker; and BB#4. 32*9880d681SAndroid Build Coastguard Worker; CHECK: .LBB0_5: 33*9880d681SAndroid Build Coastguard Worker; CHECK-NEXT: #DEBUG_VALUE: main:n <- %EBX 34*9880d681SAndroid Build Coastguard Worker; Other register values have been clobbered. 35*9880d681SAndroid Build Coastguard Worker; CHECK-NOT: #DEBUG_VALUE: 36*9880d681SAndroid Build Coastguard Worker; CHECK: movl %ecx, m(%rip) 37*9880d681SAndroid Build Coastguard Worker 38*9880d681SAndroid Build Coastguard Worker; ModuleID = 'LiveDebugValues.c' 39*9880d681SAndroid Build Coastguard Workertarget datalayout = "e-m:e-i64:64-f80:128-n8:16:32:64-S128" 40*9880d681SAndroid Build Coastguard Workertarget triple = "x86_64-unknown-linux-gnu" 41*9880d681SAndroid Build Coastguard Worker 42*9880d681SAndroid Build Coastguard Worker@m = common global i32 0, align 4 43*9880d681SAndroid Build Coastguard Worker@.str = private unnamed_addr constant [13 x i8] c"m(main): %d\0A\00", align 1 44*9880d681SAndroid Build Coastguard Worker 45*9880d681SAndroid Build Coastguard Worker; Function Attrs: nounwind uwtable 46*9880d681SAndroid Build Coastguard Workerdefine i32 @main(i32 %argc, i8** nocapture readonly %argv) #0 !dbg !4 { 47*9880d681SAndroid Build Coastguard Workerentry: 48*9880d681SAndroid Build Coastguard Worker tail call void @llvm.dbg.value(metadata i32 %argc, i64 0, metadata !12, metadata !20), !dbg !21 49*9880d681SAndroid Build Coastguard Worker tail call void @llvm.dbg.value(metadata i8** %argv, i64 0, metadata !13, metadata !20), !dbg !22 50*9880d681SAndroid Build Coastguard Worker %cmp = icmp eq i32 %argc, 2, !dbg !24 51*9880d681SAndroid Build Coastguard Worker br i1 %cmp, label %if.else, label %if.end, !dbg !26 52*9880d681SAndroid Build Coastguard Worker 53*9880d681SAndroid Build Coastguard Workerif.else: ; preds = %entry 54*9880d681SAndroid Build Coastguard Worker %arrayidx = getelementptr inbounds i8*, i8** %argv, i64 1, !dbg !27 55*9880d681SAndroid Build Coastguard Worker %0 = load i8*, i8** %arrayidx, align 8, !dbg !27, !tbaa !28 56*9880d681SAndroid Build Coastguard Worker %call = tail call i32 (i8*, ...) bitcast (i32 (...)* @atoi to i32 (i8*, ...)*)(i8* %0) #4, !dbg !32 57*9880d681SAndroid Build Coastguard Worker tail call void @llvm.dbg.value(metadata i32 %call, i64 0, metadata !14, metadata !20), !dbg !33 58*9880d681SAndroid Build Coastguard Worker br label %if.end 59*9880d681SAndroid Build Coastguard Worker 60*9880d681SAndroid Build Coastguard Workerif.end: ; preds = %entry, %if.else 61*9880d681SAndroid Build Coastguard Worker %n.0 = phi i32 [ %call, %if.else ], [ 2, %entry ] 62*9880d681SAndroid Build Coastguard Worker %call1 = tail call i32 @change(i32 %n.0) #4, !dbg !34 63*9880d681SAndroid Build Coastguard Worker tail call void @llvm.dbg.value(metadata i32 %call1, i64 0, metadata !14, metadata !20), !dbg !33 64*9880d681SAndroid Build Coastguard Worker %cmp2 = icmp sgt i32 %call1, 10, !dbg !35 65*9880d681SAndroid Build Coastguard Worker br i1 %cmp2, label %if.then.3, label %if.else.5, !dbg !37 66*9880d681SAndroid Build Coastguard Worker 67*9880d681SAndroid Build Coastguard Workerif.then.3: ; preds = %if.end 68*9880d681SAndroid Build Coastguard Worker %call4 = tail call i32 @modify(i32 %call1) #4, !dbg !38 69*9880d681SAndroid Build Coastguard Worker %add = add nsw i32 %call4, %call1, !dbg !40 70*9880d681SAndroid Build Coastguard Worker br label %if.end.7, !dbg !41 71*9880d681SAndroid Build Coastguard Worker 72*9880d681SAndroid Build Coastguard Workerif.else.5: ; preds = %if.end 73*9880d681SAndroid Build Coastguard Worker %call6 = tail call i32 @inc(i32 %call1) #4, !dbg !42 74*9880d681SAndroid Build Coastguard Worker br label %if.end.7 75*9880d681SAndroid Build Coastguard Worker 76*9880d681SAndroid Build Coastguard Workerif.end.7: ; preds = %if.else.5, %if.then.3 77*9880d681SAndroid Build Coastguard Worker %storemerge = phi i32 [ %call6, %if.else.5 ], [ %add, %if.then.3 ] 78*9880d681SAndroid Build Coastguard Worker store i32 %storemerge, i32* @m, align 4, !dbg !43, !tbaa !44 79*9880d681SAndroid Build Coastguard Worker %call8 = tail call i32 (i8*, ...) @printf(i8* nonnull getelementptr inbounds ([13 x i8], [13 x i8]* @.str, i64 0, i64 0), i32 %storemerge) #4, !dbg !46 80*9880d681SAndroid Build Coastguard Worker ret i32 0, !dbg !47 81*9880d681SAndroid Build Coastguard Worker} 82*9880d681SAndroid Build Coastguard Worker 83*9880d681SAndroid Build Coastguard Workerdeclare i32 @atoi(...) #1 84*9880d681SAndroid Build Coastguard Worker 85*9880d681SAndroid Build Coastguard Workerdeclare i32 @change(i32) #1 86*9880d681SAndroid Build Coastguard Worker 87*9880d681SAndroid Build Coastguard Workerdeclare i32 @modify(i32) #1 88*9880d681SAndroid Build Coastguard Worker 89*9880d681SAndroid Build Coastguard Workerdeclare i32 @inc(i32) #1 90*9880d681SAndroid Build Coastguard Worker 91*9880d681SAndroid Build Coastguard Worker; Function Attrs: nounwind 92*9880d681SAndroid Build Coastguard Workerdeclare i32 @printf(i8* nocapture readonly, ...) #2 93*9880d681SAndroid Build Coastguard Worker 94*9880d681SAndroid Build Coastguard Worker; Function Attrs: nounwind readnone 95*9880d681SAndroid Build Coastguard Workerdeclare void @llvm.dbg.value(metadata, i64, metadata, metadata) #3 96*9880d681SAndroid Build Coastguard Worker 97*9880d681SAndroid Build Coastguard Workerattributes #0 = { nounwind uwtable } 98*9880d681SAndroid Build Coastguard Workerattributes #1 = { nounwind } 99*9880d681SAndroid Build Coastguard Workerattributes #2 = { nounwind } 100*9880d681SAndroid Build Coastguard Workerattributes #3 = { nounwind readnone } 101*9880d681SAndroid Build Coastguard Workerattributes #4 = { nounwind } 102*9880d681SAndroid Build Coastguard Worker 103*9880d681SAndroid Build Coastguard Worker!llvm.dbg.cu = !{!0} 104*9880d681SAndroid Build Coastguard Worker!llvm.module.flags = !{!17, !18} 105*9880d681SAndroid Build Coastguard Worker!llvm.ident = !{!19} 106*9880d681SAndroid Build Coastguard Worker 107*9880d681SAndroid Build Coastguard Worker!0 = distinct !DICompileUnit(language: DW_LANG_C99, file: !1, producer: "clang version 3.8.0 (trunk 253049) ", isOptimized: true, runtimeVersion: 0, emissionKind: FullDebug, enums: !2, globals: !15) 108*9880d681SAndroid Build Coastguard Worker!1 = !DIFile(filename: "LiveDebugValues.c", directory: "/home/vt/julia/test/tvvikram") 109*9880d681SAndroid Build Coastguard Worker!2 = !{} 110*9880d681SAndroid Build Coastguard Worker!4 = distinct !DISubprogram(name: "main", scope: !1, file: !1, line: 6, type: !5, isLocal: false, isDefinition: true, scopeLine: 6, flags: DIFlagPrototyped, isOptimized: true, unit: !0, variables: !11) 111*9880d681SAndroid Build Coastguard Worker!5 = !DISubroutineType(types: !6) 112*9880d681SAndroid Build Coastguard Worker!6 = !{!7, !7, !8} 113*9880d681SAndroid Build Coastguard Worker!7 = !DIBasicType(name: "int", size: 32, align: 32, encoding: DW_ATE_signed) 114*9880d681SAndroid Build Coastguard Worker!8 = !DIDerivedType(tag: DW_TAG_pointer_type, baseType: !9, size: 64, align: 64) 115*9880d681SAndroid Build Coastguard Worker!9 = !DIDerivedType(tag: DW_TAG_pointer_type, baseType: !10, size: 64, align: 64) 116*9880d681SAndroid Build Coastguard Worker!10 = !DIBasicType(name: "char", size: 8, align: 8, encoding: DW_ATE_signed_char) 117*9880d681SAndroid Build Coastguard Worker!11 = !{!12, !13, !14} 118*9880d681SAndroid Build Coastguard Worker!12 = !DILocalVariable(name: "argc", arg: 1, scope: !4, file: !1, line: 6, type: !7) 119*9880d681SAndroid Build Coastguard Worker!13 = !DILocalVariable(name: "argv", arg: 2, scope: !4, file: !1, line: 6, type: !8) 120*9880d681SAndroid Build Coastguard Worker!14 = !DILocalVariable(name: "n", scope: !4, file: !1, line: 7, type: !7) 121*9880d681SAndroid Build Coastguard Worker!15 = !{!16} 122*9880d681SAndroid Build Coastguard Worker!16 = !DIGlobalVariable(name: "m", scope: !0, file: !1, line: 2, type: !7, isLocal: false, isDefinition: true, variable: i32* @m) 123*9880d681SAndroid Build Coastguard Worker!17 = !{i32 2, !"Dwarf Version", i32 4} 124*9880d681SAndroid Build Coastguard Worker!18 = !{i32 2, !"Debug Info Version", i32 3} 125*9880d681SAndroid Build Coastguard Worker!19 = !{!"clang version 3.8.0 (trunk 253049) "} 126*9880d681SAndroid Build Coastguard Worker!20 = !DIExpression() 127*9880d681SAndroid Build Coastguard Worker!21 = !DILocation(line: 6, column: 14, scope: !4) 128*9880d681SAndroid Build Coastguard Worker!22 = !DILocation(line: 6, column: 27, scope: !23) 129*9880d681SAndroid Build Coastguard Worker!23 = !DILexicalBlockFile(scope: !4, file: !1, discriminator: 1) 130*9880d681SAndroid Build Coastguard Worker!24 = !DILocation(line: 8, column: 12, scope: !25) 131*9880d681SAndroid Build Coastguard Worker!25 = distinct !DILexicalBlock(scope: !4, file: !1, line: 8, column: 7) 132*9880d681SAndroid Build Coastguard Worker!26 = !DILocation(line: 8, column: 7, scope: !4) 133*9880d681SAndroid Build Coastguard Worker!27 = !DILocation(line: 11, column: 14, scope: !25) 134*9880d681SAndroid Build Coastguard Worker!28 = !{!29, !29, i64 0} 135*9880d681SAndroid Build Coastguard Worker!29 = !{!"any pointer", !30, i64 0} 136*9880d681SAndroid Build Coastguard Worker!30 = !{!"omnipotent char", !31, i64 0} 137*9880d681SAndroid Build Coastguard Worker!31 = !{!"Simple C/C++ TBAA"} 138*9880d681SAndroid Build Coastguard Worker!32 = !DILocation(line: 11, column: 9, scope: !25) 139*9880d681SAndroid Build Coastguard Worker!33 = !DILocation(line: 7, column: 7, scope: !23) 140*9880d681SAndroid Build Coastguard Worker!34 = !DILocation(line: 12, column: 7, scope: !4) 141*9880d681SAndroid Build Coastguard Worker!35 = !DILocation(line: 13, column: 9, scope: !36) 142*9880d681SAndroid Build Coastguard Worker!36 = distinct !DILexicalBlock(scope: !4, file: !1, line: 13, column: 7) 143*9880d681SAndroid Build Coastguard Worker!37 = !DILocation(line: 13, column: 7, scope: !4) 144*9880d681SAndroid Build Coastguard Worker!38 = !DILocation(line: 14, column: 9, scope: !39) 145*9880d681SAndroid Build Coastguard Worker!39 = distinct !DILexicalBlock(scope: !36, file: !1, line: 13, column: 15) 146*9880d681SAndroid Build Coastguard Worker!40 = !DILocation(line: 15, column: 11, scope: !39) 147*9880d681SAndroid Build Coastguard Worker!41 = !DILocation(line: 16, column: 3, scope: !39) 148*9880d681SAndroid Build Coastguard Worker!42 = !DILocation(line: 18, column: 9, scope: !36) 149*9880d681SAndroid Build Coastguard Worker!43 = !DILocation(line: 15, column: 7, scope: !39) 150*9880d681SAndroid Build Coastguard Worker!44 = !{!45, !45, i64 0} 151*9880d681SAndroid Build Coastguard Worker!45 = !{!"int", !30, i64 0} 152*9880d681SAndroid Build Coastguard Worker!46 = !DILocation(line: 19, column: 3, scope: !4) 153*9880d681SAndroid Build Coastguard Worker!47 = !DILocation(line: 20, column: 3, scope: !4) 154