blob: d73fef3b1de66c118eb6161b79ce0d01b74c692a [file] [log] [blame]
Eric Christophera9a1d272014-02-27 07:44:45 +00001; REQUIRES: object-emission
David Blaikie6e9477a2014-08-06 18:24:19 +00002; RUN: %llc_dwarf -O0 -filetype=obj < %s | llvm-dwarfdump - | FileCheck %s
Eric Christophera9a1d272014-02-27 07:44:45 +00003
David Blaikie3a7ce252014-09-19 17:03:16 +00004; Generated from the following source compiled with clang++ -gmlt:
5; void f1() {}
6; void __attribute__((section("__TEXT,__bar"))) f2() {}
7; void __attribute__((always_inline)) f3() { f1(); }
8; void f4() { f3(); }
Eric Christophera9a1d272014-02-27 07:44:45 +00009
David Blaikie6e9477a2014-08-06 18:24:19 +000010; Check that
David Blaikie3a7ce252014-09-19 17:03:16 +000011; * -gmlt includes no DW_TAG_subprograms for subprograms without inlined
12; subroutines.
13; * yet still produces DW_AT_ranges and a range list in debug_ranges that
14; describes those subprograms
David Blaikie6e9477a2014-08-06 18:24:19 +000015
Eric Christophera9a1d272014-02-27 07:44:45 +000016; CHECK: DW_TAG_compile_unit
Frederic Risse939b432014-10-23 04:08:34 +000017; CHECK: DW_AT_ranges [DW_FORM_sec_offset] (0x00000000
David Blaikie73b65d22014-09-19 04:30:36 +000018; CHECK-NOT: {{DW_TAG|NULL}}
David Blaikie3a7ce252014-09-19 17:03:16 +000019
David Blaikiee1c79742014-09-30 21:28:32 +000020; Omitting the subprograms without inlined subroutines is not possible
21; currently on Darwin as dsymutil will drop the whole CU if it has no subprograms
22; (which happens with this optimization if there are no inlined subroutines).
23
24; DARWIN: DW_TAG_subprogram
25; DARWIN-NOT: DW_TAG
26; DARWIN: DW_AT_name {{.*}} "f1"
27; DARWIN-NOT: {{DW_TAG|NULL}}
28; DARWIN: DW_TAG_subprogram
29; DARWIN-NOT: DW_TAG
30; DARWIN: DW_AT_name {{.*}} "f2"
31; DARWIN-NOT: {{DW_TAG|NULL}}
32; DARWIN: DW_TAG_subprogram
33; DARWIN-NOT: DW_TAG
34; Can't check the abstract_origin value across the DARWIN/CHECK checking and
35; ordering, so don't bother - just trust me, it refers to f3 down there.
36; DARWIN: DW_AT_abstract_origin
37; DARWIN-NOT: {{DW_TAG|NULL}}
38
David Blaikie3a7ce252014-09-19 17:03:16 +000039
40; FIXME: Emitting separate abstract definitions is inefficient when we could
41; just attach the DW_AT_name to the inlined_subroutine directly. Except that
42; would produce many string relocations. Implement string indexing in the
43; skeleton CU to address the relocation problem, then remove abstract
44; definitions from -gmlt here.
45
Frederic Rissd1cfc3c2014-10-06 03:36:31 +000046; CHECK: DW_TAG_subprogram
David Blaikie3a7ce252014-09-19 17:03:16 +000047; CHECK-NEXT: DW_AT_name {{.*}} "f3"
48
49; FIXME: We don't really need DW_AT_inline, consumers can ignore this due to
50; the absence of high_pc/low_pc/ranges and know that they just need it for
51; retrieving the name of a concrete inlined instance
52
David Blaikie3a7ce252014-09-19 17:03:16 +000053; CHECK-NOT: {{DW_TAG|DW_AT|NULL}}
54
David Blaikie73b65d22014-09-19 04:30:36 +000055; Check that we only provide the minimal attributes on a subprogram to save space.
56; CHECK: DW_TAG_subprogram
57; CHECK-NEXT: DW_AT_low_pc
58; CHECK-NEXT: DW_AT_high_pc
David Blaikie73b65d22014-09-19 04:30:36 +000059; CHECK-NEXT: DW_AT_name
David Blaikie3a7ce252014-09-19 17:03:16 +000060; CHECK-NOT: {{DW_TAG|DW_AT}}
61; CHECK: DW_TAG_inlined_subroutine
Eric Christophera9a1d272014-02-27 07:44:45 +000062
David Blaikie3a7ce252014-09-19 17:03:16 +000063; As mentioned above - replace DW_AT_abstract_origin with DW_AT_name to save
64; space once we have support for string indexing in non-dwo sections
65
Frederic Rissd1cfc3c2014-10-06 03:36:31 +000066; CHECK-NEXT: DW_AT_abstract_origin {{.*}} "f3"
David Blaikie3a7ce252014-09-19 17:03:16 +000067; CHECK-NEXT: DW_AT_low_pc
68; CHECK-NEXT: DW_AT_high_pc
69; CHECK-NEXT: DW_AT_call_file
70; CHECK-NEXT: DW_AT_call_line
71
72; Make sure we don't have any other subprograms here (subprograms with no
73; inlined subroutines are omitted by design to save space)
74
75; CHECK-NOT: {{DW_TAG|DW_AT}}
76; CHECK: NULL
77; CHECK-NOT: {{DW_TAG|DW_AT}}
78; CHECK: NULL
79
80
Eric Christophera9a1d272014-02-27 07:44:45 +000081; CHECK: .debug_ranges contents:
David Blaikiedb119542014-09-19 18:31:25 +000082
83; ... some addresses (depends on platform (such as platforms with function
84; reordering in the linker), and looks wonky on platforms with zero values
85; written in relocation places (dumper needs to be fixed to read the
86; relocations rather than interpret that as the end of a range list))
87
David Blaikie3a7ce252014-09-19 17:03:16 +000088; CHECK: 00000000 <End of list>
David Blaikiedb119542014-09-19 18:31:25 +000089
Eric Christophera9a1d272014-02-27 07:44:45 +000090
David Blaikie6e9477a2014-08-06 18:24:19 +000091; Check that we don't emit any pubnames or pubtypes under -gmlt
David Blaikieadbea1e2014-03-12 03:34:38 +000092; CHECK: .debug_pubnames contents:
93; CHECK-NOT: Offset
94
95; CHECK: .debug_pubtypes contents:
96; CHECK-NOT: Offset
97
Frederic Risse837ec22014-11-14 16:15:53 +000098; CHECK: .apple{{.*}} contents:
99
Eric Christophera9a1d272014-02-27 07:44:45 +0000100; Function Attrs: nounwind uwtable
David Blaikie3a7ce252014-09-19 17:03:16 +0000101define void @_Z2f1v() #0 {
Eric Christophera9a1d272014-02-27 07:44:45 +0000102entry:
David Blaikie3a7ce252014-09-19 17:03:16 +0000103 ret void, !dbg !13
Eric Christophera9a1d272014-02-27 07:44:45 +0000104}
105
David Blaikie6e9477a2014-08-06 18:24:19 +0000106; Function Attrs: nounwind uwtable
David Blaikie3a7ce252014-09-19 17:03:16 +0000107define void @_Z2f2v() #0 section "__TEXT,__bar" {
David Blaikie6e9477a2014-08-06 18:24:19 +0000108entry:
David Blaikie3a7ce252014-09-19 17:03:16 +0000109 ret void, !dbg !14
110}
111
112; Function Attrs: alwaysinline nounwind uwtable
113define void @_Z2f3v() #1 {
114entry:
115 call void @_Z2f1v(), !dbg !15
116 ret void, !dbg !16
117}
118
119; Function Attrs: nounwind uwtable
120define void @_Z2f4v() #0 {
121entry:
122 call void @_Z2f1v() #2, !dbg !17
123 ret void, !dbg !19
David Blaikie6e9477a2014-08-06 18:24:19 +0000124}
Eric Christophera9a1d272014-02-27 07:44:45 +0000125
126attributes #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" }
David Blaikie3a7ce252014-09-19 17:03:16 +0000127attributes #1 = { alwaysinline 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" }
128attributes #2 = { nounwind }
Eric Christophera9a1d272014-02-27 07:44:45 +0000129
130!llvm.dbg.cu = !{!0}
David Blaikie3a7ce252014-09-19 17:03:16 +0000131!llvm.module.flags = !{!10, !11}
132!llvm.ident = !{!12}
Eric Christophera9a1d272014-02-27 07:44:45 +0000133
Duncan P. N. Exon Smith55ca9642015-08-03 17:26:41 +0000134!0 = distinct !DICompileUnit(language: DW_LANG_C_plus_plus, producer: "clang version 3.6.0 ", isOptimized: false, emissionKind: 2, file: !1, enums: !2, retainedTypes: !2, subprograms: !3, globals: !2, imports: !2)
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +0000135!1 = !DIFile(filename: "gmlt.cpp", directory: "/tmp/dbginfo")
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +0000136!2 = !{}
137!3 = !{!4, !7, !8, !9}
Duncan P. N. Exon Smith814b8e92015-08-28 20:26:49 +0000138!4 = distinct !DISubprogram(name: "f1", line: 1, isLocal: false, isDefinition: true, virtualIndex: 6, flags: DIFlagPrototyped, isOptimized: false, scopeLine: 1, file: !1, scope: !5, type: !6, function: void ()* @_Z2f1v, variables: !2)
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +0000139!5 = !DIFile(filename: "gmlt.cpp", directory: "/tmp/dbginfo")
140!6 = !DISubroutineType(types: !2)
Duncan P. N. Exon Smith814b8e92015-08-28 20:26:49 +0000141!7 = distinct !DISubprogram(name: "f2", line: 2, isLocal: false, isDefinition: true, virtualIndex: 6, flags: DIFlagPrototyped, isOptimized: false, scopeLine: 2, file: !1, scope: !5, type: !6, function: void ()* @_Z2f2v, variables: !2)
142!8 = distinct !DISubprogram(name: "f3", line: 3, isLocal: false, isDefinition: true, virtualIndex: 6, flags: DIFlagPrototyped, isOptimized: false, scopeLine: 3, file: !1, scope: !5, type: !6, function: void ()* @_Z2f3v, variables: !2)
143!9 = distinct !DISubprogram(name: "f4", line: 4, isLocal: false, isDefinition: true, virtualIndex: 6, flags: DIFlagPrototyped, isOptimized: false, scopeLine: 4, file: !1, scope: !5, type: !6, function: void ()* @_Z2f4v, variables: !2)
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +0000144!10 = !{i32 2, !"Dwarf Version", i32 4}
Duncan P. N. Exon Smithe2741802015-03-03 17:24:31 +0000145!11 = !{i32 2, !"Debug Info Version", i32 3}
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +0000146!12 = !{!"clang version 3.6.0 "}
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +0000147!13 = !DILocation(line: 1, column: 12, scope: !4)
148!14 = !DILocation(line: 2, column: 53, scope: !7)
149!15 = !DILocation(line: 3, column: 44, scope: !8)
150!16 = !DILocation(line: 3, column: 50, scope: !8)
151!17 = !DILocation(line: 3, column: 44, scope: !8, inlinedAt: !18)
152!18 = !DILocation(line: 4, column: 13, scope: !9)
153!19 = !DILocation(line: 4, column: 19, scope: !9)