1 // RUN: rm -rf %t
2 // Test that only forward declarations are emitted for types defined in modules.
3 
4 // Modules:
5 // RUN: %clang_cc1 -x objective-c++ -std=c++11 -debug-info-kind=standalone \
6 // RUN:     -dwarf-ext-refs -fmodules                                   \
7 // RUN:     -fmodule-format=obj -fimplicit-module-maps -DMODULES \
8 // RUN:     -triple %itanium_abi_triple \
9 // RUN:     -fmodules-cache-path=%t %s -I %S/Inputs -I %t -emit-llvm -o %t-mod.ll
10 // RUN: cat %t-mod.ll |  FileCheck %s
11 
12 // PCH:
13 // RUN: %clang_cc1 -x c++ -std=c++11 -fmodule-format=obj -emit-pch -I%S/Inputs \
14 // RUN:     -triple %itanium_abi_triple \
15 // RUN:     -o %t.pch %S/Inputs/DebugCXX.h
16 // RUN: %clang_cc1 -std=c++11 -debug-info-kind=standalone \
17 // RUN:     -dwarf-ext-refs -fmodule-format=obj \
18 // RUN:     -triple %itanium_abi_triple \
19 // RUN:     -include-pch %t.pch %s -emit-llvm -o %t-pch.ll
20 // RUN: cat %t-pch.ll |  FileCheck %s
21 // RUN: cat %t-pch.ll |  FileCheck %s --check-prefix=CHECK-PCH
22 
23 #ifdef MODULES
24 @import DebugCXX;
25 #endif
26 
27 using DebugCXX::Struct;
28 
29 Struct s;
30 DebugCXX::Enum e;
31 
32 // Template instantiations.
33 DebugCXX::Template<long> implicitTemplate;
34 DebugCXX::Template<int> explicitTemplate;
35 DebugCXX::FloatInstantiation typedefTemplate;
36 DebugCXX::B anchoredTemplate;
37 
38 int Struct::static_member = -1;
39 enum {
40   e3 = -1
41 } conflicting_uid = e3;
42 auto anon_enum = DebugCXX::e2;
43 char _anchor = anon_enum + conflicting_uid;
44 
45 TypedefUnion tdu;
46 TypedefEnum tde;
47 TypedefStruct tds;
48 TypedefTemplate tdt;
49 Template1<int> explicitTemplate1;
50 
51 template <class T> class FwdDeclTemplate { T t; };
52 TypedefFwdDeclTemplate tdfdt;
53 
54 InAnonymousNamespace anon;
55 
56 // Types that are forward-declared in the module and defined here.
57 struct PureFwdDecl { int i; };
58 PureFwdDecl definedLocally;
59 
60 struct Specialized<int>::Member { int i; };
61 struct Specialized<int>::Member definedLocally2;
62 
63 template <class T> struct FwdDeclTemplateMember<T>::Member { T t; };
64 TypedefFwdDeclTemplateMember tdfdtm;
65 
66 SpecializedBase definedLocally3;
67 extern template class WithSpecializedBase<int>;
68 WithSpecializedBase<int> definedLocally4;
69 
70 void foo() {
71   anon.i = GlobalStruct.i = GlobalUnion.i = GlobalEnum;
72 }
73 
74 // CHECK: ![[CPP:.*]] = !DIFile(filename: {{.*}}ExtDebugInfo.cpp"
75 
76 // CHECK: !DICompositeType(tag: DW_TAG_enumeration_type, name: "Enum",
77 // CHECK-SAME:             scope: ![[NS:[0-9]+]],
78 // CHECK-SAME:             flags: DIFlagFwdDecl,
79 // CHECK-SAME:             identifier:  "_ZTSN8DebugCXX4EnumE")
80 
81 // CHECK: ![[NS]] = !DINamespace(name: "DebugCXX", scope: ![[MOD:[0-9]+]])
82 // CHECK: ![[MOD]] = !DIModule(scope: null, name: {{.*}}DebugCXX
83 
84 // This type is anchored in the module by an explicit template instantiation.
85 // CHECK: !DICompositeType(tag: DW_TAG_class_type,
86 // CHECK-SAME:             name: "Template<long, DebugCXX::traits<long> >",
87 // CHECK-SAME:             scope: ![[NS]],
88 // CHECK-SAME:             flags: DIFlagFwdDecl,
89 // CHECK-SAME:             identifier: "_ZTSN8DebugCXX8TemplateIlNS_6traitsIlEEEE")
90 
91 // This type is anchored in the module by an explicit template instantiation.
92 // CHECK: !DICompositeType(tag: DW_TAG_class_type,
93 // CHECK-SAME:             name: "Template<int, DebugCXX::traits<int> >",
94 // CHECK-SAME:             scope: ![[NS]],
95 // CHECK-SAME:             flags: DIFlagFwdDecl,
96 // CHECK-SAME:             identifier: "_ZTSN8DebugCXX8TemplateIiNS_6traitsIiEEEE")
97 
98 // This type isn't, however, even with standalone non-module debug info this
99 // type is a forward declaration.
100 // CHECK-NOT: !DICompositeType(tag: DW_TAG_structure_type, name: "traits<int>",
101 
102 // This one isn't.
103 // CHECK: !DICompositeType(tag: DW_TAG_class_type,
104 // CHECK-SAME:             name: "Template<float, DebugCXX::traits<float> >",
105 // CHECK-SAME:             scope: ![[NS]],
106 // CHECK-SAME:             elements:
107 // CHECK-SAME:             templateParams:
108 // CHECK-SAME:             identifier: "_ZTSN8DebugCXX8TemplateIfNS_6traitsIfEEEE")
109 
110 // This type is anchored in the module by an explicit template instantiation.
111 // CHECK: !DICompositeType(tag: DW_TAG_structure_type, name: "traits<float>",
112 // CHECK-SAME:             flags: DIFlagFwdDecl,
113 // CHECK-SAME:             identifier: "_ZTSN8DebugCXX6traitsIfEE")
114 
115 
116 // This type is anchored in the module via a function argument,
117 // but we don't know this (yet).
118 // CHECK: !DICompositeType(tag: DW_TAG_class_type, name: "A<void>",
119 // CHECK-SAME:             scope: ![[NS]],
120 // CHECK-SAME:             elements:
121 // CHECK-SAME:             identifier: "_ZTSN8DebugCXX1AIJvEEE")
122 
123 // CHECK: !DIDerivedType(tag: DW_TAG_member, name: "static_member",
124 // CHECK-SAME:           scope: ![[STRUCT:[0-9]*]]
125 
126 // CHECK: ![[STRUCT]] = !DICompositeType(tag: DW_TAG_structure_type, name: "Struct",
127 // CHECK-SAME:             scope: ![[NS]],
128 // CHECK-SAME:             flags: DIFlagFwdDecl,
129 // CHECK-SAME:             identifier: "_ZTSN8DebugCXX6StructE")
130 
131 // CHECK: !DICompositeType(tag: DW_TAG_union_type,
132 // CHECK-SAME:             flags: DIFlagFwdDecl,
133 // CHECK-SAME:             identifier: "_ZTS12TypedefUnion")
134 // CHECK: !DICompositeType(tag: DW_TAG_enumeration_type,
135 // CHECK-SAME:             flags: DIFlagFwdDecl,
136 // CHECK-SAME:             identifier: "_ZTS11TypedefEnum")
137 // CHECK: !DICompositeType(tag: DW_TAG_structure_type,
138 // CHECK-SAME:             flags: DIFlagFwdDecl,
139 // CHECK-SAME:             identifier: "_ZTS13TypedefStruct")
140 
141 // This one isn't.
142 // CHECK: !DICompositeType(tag: DW_TAG_class_type, name: "Template1<void *>",
143 // CHECK-SAME:             elements:
144 // CHECK-SAME:             templateParams:
145 // CHECK-SAME:             identifier: "_ZTS9Template1IPvE")
146 
147 // This type is anchored in the module by an explicit template instantiation.
148 // CHECK: !DICompositeType(tag: DW_TAG_class_type, name: "Template1<int>",
149 // CHECK-SAME:             flags: DIFlagFwdDecl,
150 // CHECK-SAME:             identifier: "_ZTS9Template1IiE")
151 
152 // CHECK: !DICompositeType(tag: DW_TAG_class_type, name: "FwdDeclTemplate<int>",
153 // CHECK-SAME:             elements:
154 // CHECK-SAME:             templateParams:
155 // CHECK-SAME:             identifier: "_ZTS15FwdDeclTemplateIiE")
156 
157 // This type is defined locally and forward-declared in the module.
158 // CHECK: !DICompositeType(tag: DW_TAG_structure_type, name: "PureFwdDecl",
159 // CHECK-SAME:             elements:
160 // CHECK-SAME:             identifier: "_ZTS11PureFwdDecl")
161 
162 // This type is defined locally and forward-declared in the module.
163 // CHECK: !DICompositeType(tag: DW_TAG_structure_type, name: "Member",
164 // CHECK-SAME:             elements:
165 // CHECK-SAME:             identifier: "_ZTSN11SpecializedIiE6MemberE")
166 
167 // This type is defined locally and forward-declared in the module.
168 // CHECK: !DICompositeType(tag: DW_TAG_structure_type, name: "Member",
169 // CHECK-SAME:             elements:
170 // CHECK-SAME:             identifier: "_ZTSN21FwdDeclTemplateMemberIiE6MemberE")
171 
172 // This type is defined locally and forward-declared in the module.
173 // CHECK: !DIDerivedType(tag: DW_TAG_typedef, name: "SpecializedBase",
174 // CHECK-SAME:           baseType: ![[SPECIALIZEDBASE:.*]])
175 // CHECK: ![[SPECIALIZEDBASE]] =
176 // CHECK-SAME: !DICompositeType(tag: DW_TAG_class_type,
177 // CHECK-SAME:                  name: "WithSpecializedBase<float>",
178 // CHECK-SAME:                  elements:
179 // CHECK-SAME:                  identifier: "_ZTS19WithSpecializedBaseIfE")
180 
181 // This type is explicitly specialized locally.
182 // CHECK: !DICompositeType(tag: DW_TAG_class_type, name: "WithSpecializedBase<int>",
183 // CHECK-SAME:             elements:
184 // CHECK-SAME:             identifier: "_ZTS19WithSpecializedBaseIiE")
185 
186 // CHECK: !DIGlobalVariable(name: "anon_enum", {{.*}}, type: ![[ANON_ENUM:[0-9]+]]
187 // CHECK: !DICompositeType(tag: DW_TAG_enumeration_type, scope: ![[NS]],
188 // CHECK-SAME:             line: 16
189 
190 // CHECK: !DIGlobalVariable(name: "GlobalUnion",
191 // CHECK-SAME:              type: ![[GLOBAL_UNION:[0-9]+]]
192 // CHECK: ![[GLOBAL_UNION]] = distinct !DICompositeType(tag: DW_TAG_union_type,
193 // CHECK-SAME:                elements: !{{[0-9]+}})
194 // CHECK: !DIGlobalVariable(name: "GlobalStruct",
195 // CHECK-SAME:              type: ![[GLOBAL_STRUCT:[0-9]+]]
196 // CHECK: ![[GLOBAL_STRUCT]] = distinct !DICompositeType(tag: DW_TAG_structure_type,
197 // CHECK-SAME:                elements: !{{[0-9]+}})
198 
199 
200 // CHECK: !DIGlobalVariable(name: "anon",
201 // CHECK-SAME:              type: ![[GLOBAL_ANON:[0-9]+]]
202 // CHECK: ![[GLOBAL_ANON]] = !DICompositeType(tag: DW_TAG_structure_type,
203 // CHECK-SAME:              name: "InAnonymousNamespace", {{.*}}DIFlagFwdDecl)
204 
205 
206 // CHECK: !DIImportedEntity(tag: DW_TAG_imported_declaration, scope: !{{[0-9]+}}, entity: ![[STRUCT]], file: ![[CPP]], line: 27)
207 
208 // CHECK: !DICompileUnit(
209 // CHECK-SAME:           splitDebugFilename:
210 // CHECK-SAME:           dwoId:
211 // CHECK-PCH: !DICompileUnit({{.*}}splitDebugFilename:
212 // CHECK-PCH:                dwoId: 18446744073709551614
213