blob: 6f052ee2a82d4480d0f1487cb9d8d53bb6a5198e [file] [log] [blame]
Manman Rend8f798e2013-09-06 18:46:00 +00001; REQUIRES: object-emission
2
Timur Iskhodzhanovf166f6c2014-01-30 01:39:17 +00003; RUN: %llc_dwarf -filetype=obj -O0 < %s > %t
Manman Rend8f798e2013-09-06 18:46:00 +00004; RUN: llvm-dwarfdump -debug-dump=info %t | FileCheck %s
5; CHECK: [[TYPE:.*]]: DW_TAG_structure_type
Manman Ren9b971f92013-10-10 18:13:17 +00006; Make sure we correctly handle containing type of a struct being a type identifier.
Manman Rend8f798e2013-09-06 18:46:00 +00007; CHECK-NEXT: DW_AT_containing_type [DW_FORM_ref4] (cu + {{.*}} => {[[TYPE]]})
Manman Ren9b971f92013-10-10 18:13:17 +00008; CHECK-NEXT: DW_AT_name [DW_FORM_strp] {{.*}}= "C")
Manman Renc50fa112013-10-10 18:40:01 +00009
10; Make sure we correctly handle context of a subprogram being a type identifier.
Manman Renc4ae9b32013-09-07 00:04:05 +000011; CHECK: [[SP:.*]]: DW_TAG_subprogram
Manman Renc50fa112013-10-10 18:40:01 +000012; CHECK: DW_AT_name [DW_FORM_strp] {{.*}}= "foo")
Manman Ren9b971f92013-10-10 18:13:17 +000013; Make sure we correctly handle containing type of a subprogram being a type identifier.
Manman Renc4ae9b32013-09-07 00:04:05 +000014; CHECK: DW_AT_containing_type [DW_FORM_ref4] (cu + {{.*}} => {[[TYPE]]})
Manman Renc50fa112013-10-10 18:40:01 +000015; CHECK: DW_TAG_formal_parameter
16; CHECK: NULL
17; CHECK: NULL
18
Manman Renf69bd752013-10-08 22:56:31 +000019; CHECK: [[TYPE2:.*]]: DW_TAG_structure_type
Manman Ren1848cb62013-10-11 18:50:00 +000020; CHECK: DW_AT_name [DW_FORM_strp] {{.*}}= "bar")
Manman Ren5f99ec02013-10-08 23:49:38 +000021; CHECK: DW_TAG_structure_type
22; CHECK: DW_AT_name [DW_FORM_strp] {{.*}}= "D")
23; CHECK: DW_TAG_member
24; CHECK: DW_AT_name [DW_FORM_strp] {{.*}}= "a")
Manman Ren9b971f92013-10-10 18:13:17 +000025; Make sure we correctly handle context of a struct being a type identifier.
Manman Renea57f672013-10-09 00:17:04 +000026; CHECK: DW_TAG_structure_type
27; CHECK-NEXT: DW_AT_name [DW_FORM_strp] {{.*}}= "Nested")
Manman Renb3dc3af2013-10-09 18:10:55 +000028; CHECK: DW_TAG_structure_type
29; CHECK-NEXT: DW_AT_name [DW_FORM_strp] {{.*}}= "Nested2")
30; CHECK-NEXT: DW_AT_declaration [DW_FORM_flag] (0x01)
Manman Ren88b0f942013-10-09 19:46:28 +000031; CHECK: DW_TAG_structure_type
32; CHECK-NEXT: DW_AT_name [DW_FORM_strp] {{.*}}= "virt<bar>")
Manman Ren9b971f92013-10-10 18:13:17 +000033; Make sure we correctly handle type of a template_type being a type identifier.
Manman Ren88b0f942013-10-09 19:46:28 +000034; CHECK: DW_TAG_template_type_parameter
35; CHECK-NEXT: DW_AT_type [DW_FORM_ref4] (cu + {{.*}} => {[[TYPE2]]})
36; CHECK-NEXT: DW_AT_name [DW_FORM_strp] {{.*}}= "T")
Manman Ren9b971f92013-10-10 18:13:17 +000037; Make sure we correctly handle derived-from of a typedef being a type identifier.
Manman Ren5f99ec02013-10-08 23:49:38 +000038; CHECK: DW_TAG_typedef
39; CHECK-NEXT: DW_AT_type [DW_FORM_ref4] (cu + {{.*}} => {[[TYPE2]]})
40; CHECK: DW_AT_name [DW_FORM_strp] {{.*}}= "baz2")
Manman Ren9b971f92013-10-10 18:13:17 +000041; Make sure we correctly handle derived-from of a pointer type being a type identifier.
Manman Ren2f84f462013-10-08 20:06:43 +000042; CHECK: DW_TAG_pointer_type
Manman Ren88b0f942013-10-09 19:46:28 +000043; CHECK: DW_AT_type [DW_FORM_ref4] (cu + {{.*}} => {[[TYPE]]})
Manman Renf69bd752013-10-08 22:56:31 +000044; CHECK: DW_TAG_typedef
45; CHECK-NEXT: DW_AT_type [DW_FORM_ref4] (cu + {{.*}} => {[[TYPE2]]})
Manman Ren5f99ec02013-10-08 23:49:38 +000046; CHECK: DW_AT_name [DW_FORM_strp] {{.*}}= "baz")
Manman Ren9b971f92013-10-10 18:13:17 +000047; Make sure we correctly handle derived-from of an array type being a type identifier.
Manman Renbacd1ef2013-10-08 23:28:51 +000048; CHECK: DW_TAG_array_type
49; CHECK-NEXT: DW_AT_type [DW_FORM_ref4] (cu + {{.*}} => {[[TYPE2]]})
Manman Rend8f798e2013-09-06 18:46:00 +000050; IR generated from clang -g with the following source:
51; struct C {
52; virtual void foo();
53; };
54; void C::foo() {
55; }
Manman Renf69bd752013-10-08 22:56:31 +000056;
57; struct bar { };
58; typedef bar baz;
Manman Ren5f99ec02013-10-08 23:49:38 +000059; struct D {
60; typedef bar baz2;
61; static int a;
Manman Renea57f672013-10-09 00:17:04 +000062; struct Nested { };
Manman Renb3dc3af2013-10-09 18:10:55 +000063; struct Nested2 { };
Manman Ren88b0f942013-10-09 19:46:28 +000064; template <typename T>
65; struct virt {
66; T* values;
67; };
Manman Ren5f99ec02013-10-08 23:49:38 +000068; };
Manman Renf69bd752013-10-08 22:56:31 +000069; void test() {
70; baz B;
Manman Renbacd1ef2013-10-08 23:28:51 +000071; bar A[3];
Manman Ren5f99ec02013-10-08 23:49:38 +000072; D::baz2 B2;
Manman Renea57f672013-10-09 00:17:04 +000073; D::Nested e;
Manman Renb3dc3af2013-10-09 18:10:55 +000074; D::Nested2 *p;
Manman Ren88b0f942013-10-09 19:46:28 +000075; D::virt<bar> t;
Manman Renf69bd752013-10-08 22:56:31 +000076; }
Manman Rend8f798e2013-09-06 18:46:00 +000077
78%struct.C = type { i32 (...)** }
Manman Renf69bd752013-10-08 22:56:31 +000079%struct.bar = type { i8 }
Manman Renea57f672013-10-09 00:17:04 +000080%"struct.D::Nested" = type { i8 }
Manman Renb3dc3af2013-10-09 18:10:55 +000081%"struct.D::Nested2" = type { i8 }
Manman Ren88b0f942013-10-09 19:46:28 +000082%"struct.D::virt" = type { %struct.bar* }
Manman Rend8f798e2013-09-06 18:46:00 +000083
84@_ZTV1C = unnamed_addr constant [3 x i8*] [i8* null, i8* bitcast ({ i8*, i8* }* @_ZTI1C to i8*), i8* bitcast (void (%struct.C*)* @_ZN1C3fooEv to i8*)]
85@_ZTVN10__cxxabiv117__class_type_infoE = external global i8*
86@_ZTS1C = constant [3 x i8] c"1C\00"
87@_ZTI1C = unnamed_addr constant { i8*, i8* } { i8* bitcast (i8** getelementptr inbounds (i8** @_ZTVN10__cxxabiv117__class_type_infoE, i64 2) to i8*), i8* getelementptr inbounds ([3 x i8]* @_ZTS1C, i32 0, i32 0) }
88
89; Function Attrs: nounwind ssp uwtable
90define void @_ZN1C3fooEv(%struct.C* %this) unnamed_addr #0 align 2 {
91entry:
92 %this.addr = alloca %struct.C*, align 8
93 store %struct.C* %this, %struct.C** %this.addr, align 8
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +000094 call void @llvm.dbg.declare(metadata %struct.C** %this.addr, metadata !36, metadata !{!"0x102"}), !dbg !38
Manman Rend8f798e2013-09-06 18:46:00 +000095 %this1 = load %struct.C** %this.addr
Manman Ren88b0f942013-10-09 19:46:28 +000096 ret void, !dbg !39
Manman Rend8f798e2013-09-06 18:46:00 +000097}
98
99; Function Attrs: nounwind readnone
Adrian Prantl87b7eb92014-10-01 18:55:02 +0000100declare void @llvm.dbg.declare(metadata, metadata, metadata) #1
Manman Rend8f798e2013-09-06 18:46:00 +0000101
Manman Renf69bd752013-10-08 22:56:31 +0000102; Function Attrs: nounwind ssp uwtable
103define void @_Z4testv() #0 {
104entry:
105 %B = alloca %struct.bar, align 1
Manman Renbacd1ef2013-10-08 23:28:51 +0000106 %A = alloca [3 x %struct.bar], align 1
Manman Ren5f99ec02013-10-08 23:49:38 +0000107 %B2 = alloca %struct.bar, align 1
Manman Renea57f672013-10-09 00:17:04 +0000108 %e = alloca %"struct.D::Nested", align 1
Manman Renb3dc3af2013-10-09 18:10:55 +0000109 %p = alloca %"struct.D::Nested2"*, align 8
Manman Ren88b0f942013-10-09 19:46:28 +0000110 %t = alloca %"struct.D::virt", align 8
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +0000111 call void @llvm.dbg.declare(metadata %struct.bar* %B, metadata !40, metadata !{!"0x102"}), !dbg !42
112 call void @llvm.dbg.declare(metadata [3 x %struct.bar]* %A, metadata !43, metadata !{!"0x102"}), !dbg !47
113 call void @llvm.dbg.declare(metadata %struct.bar* %B2, metadata !48, metadata !{!"0x102"}), !dbg !50
114 call void @llvm.dbg.declare(metadata %"struct.D::Nested"* %e, metadata !51, metadata !{!"0x102"}), !dbg !52
115 call void @llvm.dbg.declare(metadata %"struct.D::Nested2"** %p, metadata !53, metadata !{!"0x102"}), !dbg !55
116 call void @llvm.dbg.declare(metadata %"struct.D::virt"* %t, metadata !56, metadata !{!"0x102"}), !dbg !57
Manman Ren88b0f942013-10-09 19:46:28 +0000117 ret void, !dbg !58
Manman Renf69bd752013-10-08 22:56:31 +0000118}
119
Manman Rend8f798e2013-09-06 18:46:00 +0000120attributes #0 = { nounwind ssp 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" }
121attributes #1 = { nounwind readnone }
122
123!llvm.dbg.cu = !{!0}
Manman Ren409558f2013-11-22 21:49:45 +0000124!llvm.module.flags = !{!35, !59}
Manman Rend8f798e2013-09-06 18:46:00 +0000125
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +0000126!0 = !{!"0x11\004\00clang version 3.4\000\00\000\00\000", !1, !2, !3, !30, !2, !2} ; [ DW_TAG_compile_unit ] [tmp.cpp] [DW_LANG_C_plus_plus]
127!1 = !{!"tmp.cpp", !"."}
128!2 = !{}
129!3 = !{!4, !18, !19, !22, !23, !24}
130!4 = !{!"0x13\00C\001\0064\0064\000\000\000", !1, null, null, !5, !"_ZTS1C", null, !"_ZTS1C"} ; [ DW_TAG_structure_type ] [C] [line 1, size 64, align 64, offset 0] [def] [from ]
131!5 = !{!6, !13}
132!6 = !{!"0xd\00_vptr$C\000\0064\000\000\0064", !1, !7, !8} ; [ DW_TAG_member ] [_vptr$C] [line 0, size 64, align 0, offset 0] [artificial] [from ]
133!7 = !{!"0x29", !1} ; [ DW_TAG_file_type ] [tmp.cpp]
134!8 = !{!"0xf\00\000\0064\000\000\000", null, null, !9} ; [ DW_TAG_pointer_type ] [line 0, size 64, align 0, offset 0] [from __vtbl_ptr_type]
135!9 = !{!"0xf\00__vtbl_ptr_type\000\0064\000\000\000", null, null, !10} ; [ DW_TAG_pointer_type ] [__vtbl_ptr_type] [line 0, size 64, align 0, offset 0] [from ]
136!10 = !{!"0x15\00\000\000\000\000\000\000", i32 0, null, null, !11, null, null, null} ; [ DW_TAG_subroutine_type ] [line 0, size 0, align 0, offset 0] [from ]
137!11 = !{!12}
138!12 = !{!"0x24\00int\000\0032\0032\000\000\005", null, null} ; [ DW_TAG_base_type ] [int] [line 0, size 32, align 32, offset 0, enc DW_ATE_signed]
139!13 = !{!"0x2e\00foo\00foo\00_ZN1C3fooEv\002\000\000\001\006\00256\000\002", !1, !"_ZTS1C", !14, !"_ZTS1C", null, null, i32 0, !17} ; [ DW_TAG_subprogram ] [line 2] [foo]
140!14 = !{!"0x15\00\000\000\000\000\000\000", i32 0, null, null, !15, null, null, null} ; [ DW_TAG_subroutine_type ] [line 0, size 0, align 0, offset 0] [from ]
141!15 = !{null, !16}
142!16 = !{!"0xf\00\000\0064\0064\000\001088", null, null, !"_ZTS1C"} ; [ DW_TAG_pointer_type ] [line 0, size 64, align 64, offset 0] [artificial] [from _ZTS1C]
143!17 = !{i32 786468}
144!18 = !{!"0x13\00bar\007\008\008\000\000\000", !1, null, null, !2, null, null, !"_ZTS3bar"} ; [ DW_TAG_structure_type ] [bar] [line 7, size 8, align 8, offset 0] [def] [from ]
145!19 = !{!"0x13\00D\009\008\008\000\000\000", !1, null, null, !20, null, null, !"_ZTS1D"} ; [ DW_TAG_structure_type ] [D] [line 9, size 8, align 8, offset 0] [def] [from ]
146!20 = !{!21}
147!21 = !{!"0xd\00a\0011\000\000\000\004096", !1, !"_ZTS1D", !12, null} ; [ DW_TAG_member ] [a] [line 11, size 0, align 0, offset 0] [static] [from int]
148!22 = !{!"0x13\00Nested\0012\008\008\000\000\000", !1, !"_ZTS1D", null, !2, null, null, !"_ZTSN1D6NestedE"} ; [ DW_TAG_structure_type ] [Nested] [line 12, size 8, align 8, offset 0] [def] [from ]
149!23 = !{!"0x13\00Nested2\0013\000\000\000\004\000", !1, !"_ZTS1D", null, null, null, null, !"_ZTSN1D7Nested2E"} ; [ DW_TAG_structure_type ] [Nested2] [line 13, size 0, align 0, offset 0] [decl] [from ]
150!24 = !{!"0x13\00virt<bar>\0015\0064\0064\000\000\000", !1, !"_ZTS1D", null, !25, null, !28, !"_ZTSN1D4virtI3barEE"} ; [ DW_TAG_structure_type ] [virt<bar>] [line 15, size 64, align 64, offset 0] [def] [from ]
151!25 = !{!26}
152!26 = !{!"0xd\00values\0016\0064\0064\000\000", !1, !"_ZTSN1D4virtI3barEE", !27} ; [ DW_TAG_member ] [values] [line 16, size 64, align 64, offset 0] [from ]
153!27 = !{!"0xf\00\000\0064\0064\000\000", null, null, !"_ZTS3bar"} ; [ DW_TAG_pointer_type ] [line 0, size 64, align 64, offset 0] [from _ZTS3bar]
154!28 = !{!29}
155!29 = !{!"0x2f\00T\000\000", null, !"_ZTS3bar", null} ; [ DW_TAG_template_type_parameter ]
156!30 = !{!31, !32}
157!31 = !{!"0x2e\00foo\00foo\00_ZN1C3fooEv\004\000\001\000\006\00256\000\004", !1, null, !14, null, void (%struct.C*)* @_ZN1C3fooEv, null, !13, !2} ; [ DW_TAG_subprogram ] [line 4] [def] [foo]
158!32 = !{!"0x2e\00test\00test\00_Z4testv\0020\000\001\000\006\00256\000\0020", !1, !7, !33, null, void ()* @_Z4testv, null, null, !2} ; [ DW_TAG_subprogram ] [line 20] [def] [test]
159!33 = !{!"0x15\00\000\000\000\000\000\000", i32 0, null, null, !34, null, null, null} ; [ DW_TAG_subroutine_type ] [line 0, size 0, align 0, offset 0] [from ]
160!34 = !{null}
161!35 = !{i32 2, !"Dwarf Version", i32 2}
162!36 = !{!"0x101\00this\0016777216\001088", !31, null, !37} ; [ DW_TAG_arg_variable ] [this] [line 0]
163!37 = !{!"0xf\00\000\0064\0064\000\000", null, null, !"_ZTS1C"} ; [ DW_TAG_pointer_type ] [line 0, size 64, align 64, offset 0] [from _ZTS1C]
Duncan P. N. Exon Smith98854692015-01-14 22:27:36 +0000164!38 = !MDLocation(line: 0, scope: !31)
165!39 = !MDLocation(line: 5, scope: !31)
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +0000166!40 = !{!"0x100\00B\0021\000", !32, !7, !41} ; [ DW_TAG_auto_variable ] [B] [line 21]
167!41 = !{!"0x16\00baz\008\000\000\000\000", !1, null, !"_ZTS3bar"} ; [ DW_TAG_typedef ] [baz] [line 8, size 0, align 0, offset 0] [from _ZTS3bar]
Duncan P. N. Exon Smith98854692015-01-14 22:27:36 +0000168!42 = !MDLocation(line: 21, scope: !32)
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +0000169!43 = !{!"0x100\00A\0022\000", !32, !7, !44} ; [ DW_TAG_auto_variable ] [A] [line 22]
170!44 = !{!"0x1\00\000\0024\008\000\000", null, null, !"_ZTS3bar", !45, i32 0, null, null, null} ; [ DW_TAG_array_type ] [line 0, size 24, align 8, offset 0] [from _ZTS3bar]
171!45 = !{!46}
172!46 = !{!"0x21\000\003"} ; [ DW_TAG_subrange_type ] [0, 2]
Duncan P. N. Exon Smith98854692015-01-14 22:27:36 +0000173!47 = !MDLocation(line: 22, scope: !32)
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +0000174!48 = !{!"0x100\00B2\0023\000", !32, !7, !49} ; [ DW_TAG_auto_variable ] [B2] [line 23]
175!49 = !{!"0x16\00baz2\0010\000\000\000\000", !1, !"_ZTS1D", !"_ZTS3bar"} ; [ DW_TAG_typedef ] [baz2] [line 10, size 0, align 0, offset 0] [from _ZTS3bar]
Duncan P. N. Exon Smith98854692015-01-14 22:27:36 +0000176!50 = !MDLocation(line: 23, scope: !32)
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +0000177!51 = !{!"0x100\00e\0024\000", !32, !7, !22} ; [ DW_TAG_auto_variable ] [e] [line 24]
Duncan P. N. Exon Smith98854692015-01-14 22:27:36 +0000178!52 = !MDLocation(line: 24, scope: !32)
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +0000179!53 = !{!"0x100\00p\0025\000", !32, !7, !54} ; [ DW_TAG_auto_variable ] [p] [line 25]
180!54 = !{!"0xf\00\000\0064\0064\000\000", null, null, !"_ZTSN1D7Nested2E"} ; [ DW_TAG_pointer_type ] [line 0, size 64, align 64, offset 0] [from _ZTSN1D7Nested2E]
Duncan P. N. Exon Smith98854692015-01-14 22:27:36 +0000181!55 = !MDLocation(line: 25, scope: !32)
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +0000182!56 = !{!"0x100\00t\0026\000", !32, !7, !24} ; [ DW_TAG_auto_variable ] [t] [line 26]
Duncan P. N. Exon Smith98854692015-01-14 22:27:36 +0000183!57 = !MDLocation(line: 26, scope: !32)
184!58 = !MDLocation(line: 27, scope: !32)
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +0000185!59 = !{i32 1, !"Debug Info Version", i32 2}