David Blaikie | 9a6f9a4 | 2014-03-18 00:12:25 +0000 | [diff] [blame] | 1 | ; REQUIRES: object-emission |
| 2 | |
Adrian Prantl | 7bc1b28 | 2017-09-11 22:59:45 +0000 | [diff] [blame] | 3 | ; RUN: %llc_dwarf < %s -filetype=obj | llvm-dwarfdump -debug-line - | FileCheck %s |
David Blaikie | e05274d | 2014-03-18 00:11:48 +0000 | [diff] [blame] | 4 | ; RUN: %llc_dwarf < %s -filetype=asm | FileCheck --check-prefix=ASM %s |
David Blaikie | c7f29dc | 2014-03-17 23:29:40 +0000 | [diff] [blame] | 5 | |
David Blaikie | 7ac5149 | 2014-03-20 17:05:45 +0000 | [diff] [blame] | 6 | ; If multiple line tables are emitted, one per CU, those line tables can |
| 7 | ; unambiguously rely on the comp_dir of their owning CU and use directory '0' |
| 8 | ; to refer to it. |
| 9 | |
David Blaikie | c7f29dc | 2014-03-17 23:29:40 +0000 | [diff] [blame] | 10 | ; CHECK: .debug_line contents: |
Jonas Devlieghere | 2bc4c54 | 2017-09-27 10:23:34 +0000 | [diff] [blame] | 11 | ; CHECK-NEXT: debug_line[{{.*}}] |
David Blaikie | c7f29dc | 2014-03-17 23:29:40 +0000 | [diff] [blame] | 12 | ; CHECK-NEXT: Line table prologue: |
| 13 | ; CHECK-NOT: include_directories |
Scott Linder | 16c7bda | 2018-02-23 23:01:06 +0000 | [diff] [blame] | 14 | ; CHECK: file_names[ 1] |
| 15 | ; CHECK: name: "a.cpp" |
| 16 | ; CHECK-NEXT: dir_index: 0 |
David Blaikie | c7f29dc | 2014-03-17 23:29:40 +0000 | [diff] [blame] | 17 | ; CHECK-NOT: file_names |
| 18 | |
Jonas Devlieghere | 2bc4c54 | 2017-09-27 10:23:34 +0000 | [diff] [blame] | 19 | ; CHECK: debug_line[{{.*}}] |
Jonas Devlieghere | 65af0f9 | 2017-09-27 09:33:45 +0000 | [diff] [blame] | 20 | ; CHECK-NEXT: Line table prologue: |
David Blaikie | c7f29dc | 2014-03-17 23:29:40 +0000 | [diff] [blame] | 21 | ; CHECK-NOT: include_directories |
Scott Linder | 16c7bda | 2018-02-23 23:01:06 +0000 | [diff] [blame] | 22 | ; CHECK: file_names[ 1] |
| 23 | ; CHECK: name: "b.cpp" |
| 24 | ; CHECK-NEXT: dir_index: 0 |
David Blaikie | c7f29dc | 2014-03-17 23:29:40 +0000 | [diff] [blame] | 25 | ; CHECK-NOT: file_names |
| 26 | |
David Blaikie | 7ac5149 | 2014-03-20 17:05:45 +0000 | [diff] [blame] | 27 | ; However, if a single line table is emitted and shared between CUs, the |
| 28 | ; comp_dir is ambiguous and relying on it would lead to different path |
| 29 | ; interpretations depending on which CU lead to the table - so ensure that |
| 30 | ; full paths are always emitted in this case, never comp_dir relative. |
| 31 | |
NAKAMURA Takumi | 4dc097a | 2014-03-18 06:01:14 +0000 | [diff] [blame] | 32 | ; ASM: .file 1 "/tmp/dbginfo/a{{[/\\]+}}a.cpp" |
| 33 | ; ASM: .file 2 "/tmp/dbginfo/b{{[/\\]+}}b.cpp" |
David Blaikie | e05274d | 2014-03-18 00:11:48 +0000 | [diff] [blame] | 34 | |
David Blaikie | c7f29dc | 2014-03-17 23:29:40 +0000 | [diff] [blame] | 35 | ; Generated from the following source compiled to bitcode from within their |
| 36 | ; respective directories (with debug info) and linked together with llvm-link |
| 37 | |
| 38 | ; a/a.cpp |
| 39 | ; void func() { |
| 40 | ; } |
| 41 | |
| 42 | ; b/b.cpp |
| 43 | ; void func(); |
| 44 | ; int main() { |
| 45 | ; func(); |
| 46 | ; } |
| 47 | |
| 48 | ; Function Attrs: nounwind uwtable |
Peter Collingbourne | d4bff30 | 2015-11-05 22:03:56 +0000 | [diff] [blame] | 49 | define void @_Z4funcv() #0 !dbg !4 { |
David Blaikie | c7f29dc | 2014-03-17 23:29:40 +0000 | [diff] [blame] | 50 | entry: |
| 51 | ret void, !dbg !19 |
| 52 | } |
| 53 | |
| 54 | ; Function Attrs: uwtable |
Peter Collingbourne | d4bff30 | 2015-11-05 22:03:56 +0000 | [diff] [blame] | 55 | define i32 @main() #1 !dbg !11 { |
David Blaikie | c7f29dc | 2014-03-17 23:29:40 +0000 | [diff] [blame] | 56 | entry: |
| 57 | call void @_Z4funcv(), !dbg !20 |
| 58 | ret i32 0, !dbg !21 |
| 59 | } |
| 60 | |
| 61 | attributes #0 = { nounwind uwtable "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" "unsafe-fp-math"="false" "use-soft-float"="false" } |
| 62 | attributes #1 = { uwtable "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" "unsafe-fp-math"="false" "use-soft-float"="false" } |
| 63 | |
| 64 | !llvm.dbg.cu = !{!0, !8} |
| 65 | !llvm.module.flags = !{!16, !17} |
| 66 | !llvm.ident = !{!18, !18} |
| 67 | |
Adrian Prantl | 75819ae | 2016-04-15 15:57:41 +0000 | [diff] [blame] | 68 | !0 = distinct !DICompileUnit(language: DW_LANG_C_plus_plus, producer: "clang version 3.5.0 ", isOptimized: false, emissionKind: FullDebug, file: !1, enums: !2, retainedTypes: !2, globals: !2, imports: !2) |
Duncan P. N. Exon Smith | a9308c4 | 2015-04-29 16:38:44 +0000 | [diff] [blame] | 69 | !1 = !DIFile(filename: "a.cpp", directory: "/tmp/dbginfo/a") |
Duncan P. N. Exon Smith | be7ea19 | 2014-12-15 19:07:53 +0000 | [diff] [blame] | 70 | !2 = !{} |
Shiva Chen | 2c86455 | 2018-05-09 02:40:45 +0000 | [diff] [blame] | 71 | !4 = distinct !DISubprogram(name: "func", linkageName: "_Z4funcv", line: 1, isLocal: false, isDefinition: true, virtualIndex: 6, flags: DIFlagPrototyped, isOptimized: false, unit: !0, scopeLine: 1, file: !1, scope: !5, type: !6, retainedNodes: !2) |
Duncan P. N. Exon Smith | a9308c4 | 2015-04-29 16:38:44 +0000 | [diff] [blame] | 72 | !5 = !DIFile(filename: "a.cpp", directory: "/tmp/dbginfo/a") |
| 73 | !6 = !DISubroutineType(types: !7) |
Duncan P. N. Exon Smith | be7ea19 | 2014-12-15 19:07:53 +0000 | [diff] [blame] | 74 | !7 = !{null} |
Adrian Prantl | 75819ae | 2016-04-15 15:57:41 +0000 | [diff] [blame] | 75 | !8 = distinct !DICompileUnit(language: DW_LANG_C_plus_plus, producer: "clang version 3.5.0 ", isOptimized: false, emissionKind: FullDebug, file: !9, enums: !2, retainedTypes: !2, globals: !2, imports: !2) |
Duncan P. N. Exon Smith | a9308c4 | 2015-04-29 16:38:44 +0000 | [diff] [blame] | 76 | !9 = !DIFile(filename: "b.cpp", directory: "/tmp/dbginfo/b") |
Shiva Chen | 2c86455 | 2018-05-09 02:40:45 +0000 | [diff] [blame] | 77 | !11 = distinct !DISubprogram(name: "main", line: 2, isLocal: false, isDefinition: true, virtualIndex: 6, flags: DIFlagPrototyped, isOptimized: false, unit: !8, scopeLine: 2, file: !9, scope: !12, type: !13, retainedNodes: !2) |
Duncan P. N. Exon Smith | a9308c4 | 2015-04-29 16:38:44 +0000 | [diff] [blame] | 78 | !12 = !DIFile(filename: "b.cpp", directory: "/tmp/dbginfo/b") |
| 79 | !13 = !DISubroutineType(types: !14) |
Duncan P. N. Exon Smith | be7ea19 | 2014-12-15 19:07:53 +0000 | [diff] [blame] | 80 | !14 = !{!15} |
Duncan P. N. Exon Smith | a9308c4 | 2015-04-29 16:38:44 +0000 | [diff] [blame] | 81 | !15 = !DIBasicType(tag: DW_TAG_base_type, name: "int", size: 32, align: 32, encoding: DW_ATE_signed) |
Duncan P. N. Exon Smith | be7ea19 | 2014-12-15 19:07:53 +0000 | [diff] [blame] | 82 | !16 = !{i32 2, !"Dwarf Version", i32 4} |
Duncan P. N. Exon Smith | e274180 | 2015-03-03 17:24:31 +0000 | [diff] [blame] | 83 | !17 = !{i32 1, !"Debug Info Version", i32 3} |
Duncan P. N. Exon Smith | be7ea19 | 2014-12-15 19:07:53 +0000 | [diff] [blame] | 84 | !18 = !{!"clang version 3.5.0 "} |
Duncan P. N. Exon Smith | a9308c4 | 2015-04-29 16:38:44 +0000 | [diff] [blame] | 85 | !19 = !DILocation(line: 2, scope: !4) |
| 86 | !20 = !DILocation(line: 3, scope: !11) |
| 87 | !21 = !DILocation(line: 4, scope: !11) |
David Blaikie | c7f29dc | 2014-03-17 23:29:40 +0000 | [diff] [blame] | 88 | |