1; RUN: llc -O0 %s -mtriple=x86_64 -filetype=obj -o %t && llvm-dwarfdump -debug-info -v %t | FileCheck --check-prefix=NO-SECTIONS %s 2; RUN: llc -O0 %s --basic-block-sections=all --unique-basic-block-section-names -mtriple=x86_64 -filetype=obj -o %t && llvm-dwarfdump -debug-info -v %t | FileCheck --check-prefix=BB-SECTIONS %s 3; RUN: llc -O0 %s --basic-block-sections=all --unique-basic-block-section-names -mtriple=x86_64 -filetype=obj -split-dwarf-file=%t.dwo -o %t && llvm-dwarfdump -debug-info -v %t | FileCheck --check-prefix=BB-SECTIONS %s 4; RUN: llc -O0 %s --basic-block-sections=all -mtriple=x86_64 -o - | FileCheck --check-prefix=BB-SECTIONS-ASM %s 5; RUN: llc -O0 %s -mtriple=x86_64 -filetype=obj -o %t && llvm-dwarfdump -debug-line %t | FileCheck --check-prefix=BB-SECTIONS-LINE-TABLE %s 6 7; From: 8; 1 int foo(int a) { 9; 2 if (a > 20) 10; 3 return 2; 11; 4 else 12; 5 return 0; 13; 6 } 14 15; NO-SECTIONS: DW_AT_low_pc [DW_FORM_addr] (0x0000000000000000 ".text") 16; NO-SECTIONS: DW_AT_high_pc [DW_FORM_data4] ({{.*}}) 17; BB-SECTIONS: DW_AT_low_pc [DW_FORM_addr] (0x0000000000000000) 18; BB-SECTIONS-NEXT: DW_AT_ranges [DW_FORM_sec_offset] 19; BB-SECTIONS-NEXT: [{{.*}}) ".text._Z3fooi.1" 20; BB-SECTIONS-NEXT: [{{.*}}) ".text._Z3fooi.2" 21; BB-SECTIONS-NEXT: [{{.*}}) ".text._Z3fooi.3" 22; BB-SECTIONS-NEXT: [{{.*}}) ".text" 23; BB-SECTIONS-ASM: _Z3fooi: 24; BB-SECTIONS-ASM: .Ltmp{{[0-9]+}}: 25; BB-SECTIONS-ASM-NEXT: .loc 1 2 9 prologue_end 26; BB-SECTIONS-ASM: .Ltmp{{[0-9]+}}: 27; BB-SECTIONS-ASM-NEXT: .loc 1 2 7 is_stmt 28; BB-SECTIONS-ASM: _Z3fooi.1: 29; BB-SECTIONS-ASM: .LBB_END0_{{[0-9]+}}: 30; BB-SECTIONS-ASM: .size _Z3fooi.1, .LBB_END0_{{[0-9]+}}-_Z3fooi.1 31; BB-SECTIONS-ASM: _Z3fooi.2: 32; BB-SECTIONS-ASM: .Ltmp{{[0-9]+}}: 33; BB-SECTIONS-ASM-NEXT: .LBB_END0_{{[0-9]+}}: 34; BB-SECTIONS-ASM: .size _Z3fooi.2, .LBB_END0_{{[0-9]+}}-_Z3fooi.2 35; BB-SECTIONS-ASM: _Z3fooi.3: 36; BB-SECTIONS-ASM: .Ltmp{{[0-9]+}}: 37; BB-SECTIONS-ASM-NEXT: .LBB_END0_{{[0-9]+}}: 38; BB-SECTIONS-ASM: .size _Z3fooi.3, .LBB_END0_{{[0-9]+}}-_Z3fooi.3 39; BB-SECTIONS-ASM: .Lfunc_end0: 40; BB-SECTIONS-ASM: .Ldebug_ranges0: 41; BB-SECTIONS-ASM-NEXT: .quad _Z3fooi.1 42; BB-SECTIONS-ASM-NEXT: .quad .LBB_END0_{{[0-9]+}} 43; BB-SECTIONS-ASM-NEXT: .quad _Z3fooi.2 44; BB-SECTIONS-ASM-NEXT: .quad .LBB_END0_{{[0-9]+}} 45; BB-SECTIONS-ASM-NEXT: .quad _Z3fooi.3 46; BB-SECTIONS-ASM-NEXT: .quad .LBB_END0_{{[0-9]+}} 47; BB-SECTIONS-ASM-NEXT: .quad .Lfunc_begin0 48; BB-SECTIONS-ASM-NEXT: .quad .Lfunc_end0 49; BB-SECTIONS-ASM-NEXT: .quad 0 50; BB-SECTIONS-ASM-NEXT: .quad 0 51; BB-SECTIONS-LINE-TABLE: 0x0000000000000000 1 0 1 0 0 is_stmt 52; BB-SECTIONS-LINE-TABLE-NEXT: 0x0000000000000004 2 9 1 0 0 is_stmt prologue_end 53; BB-SECTIONS-LINE-TABLE-NEXT: 0x0000000000000009 2 7 1 0 0 54; BB-SECTIONS-LINE-TABLE-NEXT: 0x000000000000000b 3 5 1 0 0 is_stmt 55; BB-SECTIONS-LINE-TABLE-NEXT: 0x0000000000000015 5 5 1 0 0 is_stmt 56; BB-SECTIONS-LINE-TABLE-NEXT: 0x000000000000001d 6 1 1 0 0 is_stmt 57; BB-SECTIONS-LINE-TABLE-NEXT: 0x0000000000000022 6 1 1 0 0 is_stmt end_sequence 58 59; Function Attrs: noinline nounwind optnone uwtable 60define dso_local i32 @_Z3fooi(i32 %0) !dbg !7 { 61 %2 = alloca i32, align 4 62 %3 = alloca i32, align 4 63 store i32 %0, i32* %3, align 4 64 call void @llvm.dbg.declare(metadata i32* %3, metadata !11, metadata !DIExpression()), !dbg !12 65 %4 = load i32, i32* %3, align 4, !dbg !13 66 %5 = icmp sgt i32 %4, 20, !dbg !15 67 br i1 %5, label %6, label %7, !dbg !16 68 696: ; preds = %1 70 store i32 2, i32* %2, align 4, !dbg !17 71 br label %8, !dbg !17 72 737: ; preds = %1 74 store i32 0, i32* %2, align 4, !dbg !18 75 br label %8, !dbg !18 76 778: ; preds = %7, %6 78 %9 = load i32, i32* %2, align 4, !dbg !19 79 ret i32 %9, !dbg !19 80} 81 82; Function Attrs: nounwind readnone speculatable willreturn 83declare void @llvm.dbg.declare(metadata, metadata, metadata) 84 85!llvm.dbg.cu = !{!0} 86!llvm.module.flags = !{!3, !4} 87 88!0 = distinct !DICompileUnit(language: DW_LANG_C_plus_plus, file: !1, producer: "clang version 10.0.0 (git@github.com:google/llvm-propeller.git f9421ebf4b3d8b64678bf6c49d1607fdce3f50c5)", isOptimized: false, runtimeVersion: 0, emissionKind: FullDebug, enums: !2, nameTableKind: None) 89!1 = !DIFile(filename: "debuginfo.cc", directory: "/") 90!2 = !{} 91!3 = !{i32 2, !"Dwarf Version", i32 4} 92!4 = !{i32 2, !"Debug Info Version", i32 3} 93!7 = distinct !DISubprogram(name: "foo", linkageName: "_Z3fooi", scope: !1, file: !1, line: 1, type: !8, scopeLine: 1, flags: DIFlagPrototyped, spFlags: DISPFlagDefinition, unit: !0, retainedNodes: !2) 94!8 = !DISubroutineType(types: !9) 95!9 = !{!10, !10} 96!10 = !DIBasicType(name: "int", size: 32, encoding: DW_ATE_signed) 97!11 = !DILocalVariable(name: "a", arg: 1, scope: !7, file: !1, line: 1, type: !10) 98!12 = !DILocation(line: 1, column: 13, scope: !7) 99!13 = !DILocation(line: 2, column: 7, scope: !14) 100!14 = distinct !DILexicalBlock(scope: !7, file: !1, line: 2, column: 7) 101!15 = !DILocation(line: 2, column: 9, scope: !14) 102!16 = !DILocation(line: 2, column: 7, scope: !7) 103!17 = !DILocation(line: 3, column: 5, scope: !14) 104!18 = !DILocation(line: 5, column: 5, scope: !14) 105!19 = !DILocation(line: 6, column: 1, scope: !7) 106