blob: 35a494f2e58433f05af96c88a2ee50c9ded977cb [file] [log] [blame]
David Blaikie9a6f9a42014-03-18 00:12:25 +00001; REQUIRES: object-emission
2
Adrian Prantl7bc1b282017-09-11 22:59:45 +00003; RUN: %llc_dwarf < %s -filetype=obj | llvm-dwarfdump -debug-line - | FileCheck %s
David Blaikiee05274d2014-03-18 00:11:48 +00004; RUN: %llc_dwarf < %s -filetype=asm | FileCheck --check-prefix=ASM %s
David Blaikiec7f29dc2014-03-17 23:29:40 +00005
David Blaikie7ac51492014-03-20 17:05:45 +00006; 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 Blaikiec7f29dc2014-03-17 23:29:40 +000010; CHECK: .debug_line contents:
Jonas Devlieghere2bc4c542017-09-27 10:23:34 +000011; CHECK-NEXT: debug_line[{{.*}}]
David Blaikiec7f29dc2014-03-17 23:29:40 +000012; CHECK-NEXT: Line table prologue:
13; CHECK-NOT: include_directories
14; CHECK: file_names[ 1] 0 {{.*}} a.cpp
15; CHECK-NOT: file_names
16
Jonas Devlieghere2bc4c542017-09-27 10:23:34 +000017; CHECK: debug_line[{{.*}}]
Jonas Devlieghere65af0f92017-09-27 09:33:45 +000018; CHECK-NEXT: Line table prologue:
David Blaikiec7f29dc2014-03-17 23:29:40 +000019; CHECK-NOT: include_directories
20; CHECK: file_names[ 1] 0 {{.*}} b.cpp
21; CHECK-NOT: file_names
22
David Blaikie7ac51492014-03-20 17:05:45 +000023; However, if a single line table is emitted and shared between CUs, the
24; comp_dir is ambiguous and relying on it would lead to different path
25; interpretations depending on which CU lead to the table - so ensure that
26; full paths are always emitted in this case, never comp_dir relative.
27
NAKAMURA Takumi4dc097a2014-03-18 06:01:14 +000028; ASM: .file 1 "/tmp/dbginfo/a{{[/\\]+}}a.cpp"
29; ASM: .file 2 "/tmp/dbginfo/b{{[/\\]+}}b.cpp"
David Blaikiee05274d2014-03-18 00:11:48 +000030
David Blaikiec7f29dc2014-03-17 23:29:40 +000031; Generated from the following source compiled to bitcode from within their
32; respective directories (with debug info) and linked together with llvm-link
33
34; a/a.cpp
35; void func() {
36; }
37
38; b/b.cpp
39; void func();
40; int main() {
41; func();
42; }
43
44; Function Attrs: nounwind uwtable
Peter Collingbourned4bff302015-11-05 22:03:56 +000045define void @_Z4funcv() #0 !dbg !4 {
David Blaikiec7f29dc2014-03-17 23:29:40 +000046entry:
47 ret void, !dbg !19
48}
49
50; Function Attrs: uwtable
Peter Collingbourned4bff302015-11-05 22:03:56 +000051define i32 @main() #1 !dbg !11 {
David Blaikiec7f29dc2014-03-17 23:29:40 +000052entry:
53 call void @_Z4funcv(), !dbg !20
54 ret i32 0, !dbg !21
55}
56
57attributes #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" }
58attributes #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" }
59
60!llvm.dbg.cu = !{!0, !8}
61!llvm.module.flags = !{!16, !17}
62!llvm.ident = !{!18, !18}
63
Adrian Prantl75819ae2016-04-15 15:57:41 +000064!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 Smitha9308c42015-04-29 16:38:44 +000065!1 = !DIFile(filename: "a.cpp", directory: "/tmp/dbginfo/a")
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +000066!2 = !{}
Adrian Prantl75819ae2016-04-15 15:57:41 +000067!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, variables: !2)
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +000068!5 = !DIFile(filename: "a.cpp", directory: "/tmp/dbginfo/a")
69!6 = !DISubroutineType(types: !7)
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +000070!7 = !{null}
Adrian Prantl75819ae2016-04-15 15:57:41 +000071!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 Smitha9308c42015-04-29 16:38:44 +000072!9 = !DIFile(filename: "b.cpp", directory: "/tmp/dbginfo/b")
Adrian Prantl75819ae2016-04-15 15:57:41 +000073!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, variables: !2)
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +000074!12 = !DIFile(filename: "b.cpp", directory: "/tmp/dbginfo/b")
75!13 = !DISubroutineType(types: !14)
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +000076!14 = !{!15}
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +000077!15 = !DIBasicType(tag: DW_TAG_base_type, name: "int", size: 32, align: 32, encoding: DW_ATE_signed)
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +000078!16 = !{i32 2, !"Dwarf Version", i32 4}
Duncan P. N. Exon Smithe2741802015-03-03 17:24:31 +000079!17 = !{i32 1, !"Debug Info Version", i32 3}
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +000080!18 = !{!"clang version 3.5.0 "}
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +000081!19 = !DILocation(line: 2, scope: !4)
82!20 = !DILocation(line: 3, scope: !11)
83!21 = !DILocation(line: 4, scope: !11)
David Blaikiec7f29dc2014-03-17 23:29:40 +000084