@@ -222,7 +222,6 @@ getParentNamespaces(
222
222
const DeclContext* DC = D->getDeclContext ();
223
223
do
224
224
{
225
- SymbolID id = SymbolID::zero;
226
225
if (const auto * N = dyn_cast<NamespaceDecl>(DC))
227
226
{
228
227
std::string Namespace;
@@ -235,56 +234,11 @@ getParentNamespaces(
235
234
{
236
235
Namespace = N->getNameAsString ();
237
236
}
238
- extractSymbolID (N, id);
239
237
Namespaces.emplace_back (
240
- id ,
238
+ extractSymbolID (N) ,
241
239
Namespace,
242
240
InfoType::IT_namespace);
243
241
}
244
- #if 0
245
- // for an explicit specialization of member of an implicit specialization,
246
- // treat it as-if it was declared in the primary class template
247
- else if(const auto* N = dyn_cast<ClassTemplateSpecializationDecl>(DC); N &&
248
- N->getSpecializationKind() == TemplateSpecializationKind::TSK_ImplicitInstantiation)
249
- {
250
- // ClassTemplateDecl* P = N->getSpecializedTemplate();
251
- NamedDecl* TD = nullptr;
252
- auto parent = N->getSpecializedTemplateOrPartial();
253
- // an explicitly specialized member of a partial specialization
254
- // is not a member of the primary template; treat it as such.
255
- if(auto* partial = parent.dyn_cast<ClassTemplatePartialSpecializationDecl*>())
256
- {
257
- if(auto* MT = partial->getInstantiatedFromMember())
258
- TD = MT;
259
- else
260
- TD = partial;
261
- }
262
- else if(ClassTemplateDecl* PT = N->getSpecializedTemplate())
263
- {
264
- // for implicit specializations of a primary member template,
265
- // consider the parent context to be the primary template
266
- if(auto* MT = PT->getInstantiatedFromMemberTemplate())
267
- TD = MT;
268
- else
269
- TD = PT;
270
- }
271
- Assert(TD);
272
-
273
- extractSymbolID(TD, id);
274
- Namespaces.emplace_back(
275
- id,
276
- N->getNameAsString(),
277
- InfoType::IT_record);
278
- }
279
- else if(const auto* N = dyn_cast<RecordDecl>(DC))
280
- {
281
- extractSymbolID(N, id);
282
- Namespaces.emplace_back(
283
- id,
284
- N->getNameAsString(),
285
- InfoType::IT_record);
286
- }
287
- #else
288
242
else if (const auto * N = dyn_cast<CXXRecordDecl>(DC))
289
243
{
290
244
// if the containing context is an implicit specialization,
@@ -294,47 +248,35 @@ getParentNamespaces(
294
248
{
295
249
N = S->getTemplateInstantiationPattern ();
296
250
}
297
- extractSymbolID (N, id);
298
251
Namespaces.emplace_back (
299
- id ,
252
+ extractSymbolID (N) ,
300
253
N->getNameAsString (),
301
254
InfoType::IT_record);
302
255
}
303
- #endif
304
256
else if (const auto * N = dyn_cast<FunctionDecl>(DC))
305
257
{
306
- extractSymbolID (N, id);
307
258
Namespaces.emplace_back (
308
- id ,
259
+ extractSymbolID (N) ,
309
260
N->getNameAsString (),
310
261
InfoType::IT_function);
311
262
}
312
263
else if (const auto * N = dyn_cast<EnumDecl>(DC))
313
264
{
314
- extractSymbolID (N, id);
315
265
Namespaces.emplace_back (
316
- id ,
266
+ extractSymbolID (N) ,
317
267
N->getNameAsString (),
318
268
InfoType::IT_enum);
319
269
}
270
+ else if (const auto * N = dyn_cast<TranslationUnitDecl>(DC))
271
+ {
272
+ Namespaces.emplace_back (
273
+ SymbolID::zero,
274
+ " " , // "GlobalNamespace",
275
+ InfoType::IT_namespace);
276
+ }
320
277
}
321
278
while ((DC = DC->getParent ()));
322
279
323
- // The global namespace should be added to the
324
- // list of namespaces if the decl corresponds to
325
- // a Record and if it doesn't have any namespace
326
- // (because this means it's in the global namespace).
327
- // Also if its outermost namespace is a record because
328
- // that record matches the previous condition mentioned.
329
- if ((Namespaces.empty () && isa<CXXRecordDecl>(D)) ||
330
- (!Namespaces.empty () && Namespaces.back ().RefType == InfoType::IT_record))
331
- {
332
- Namespaces.emplace_back (
333
- SymbolID::zero,
334
- " " , // "GlobalNamespace",
335
- InfoType::IT_namespace);
336
- }
337
-
338
280
return anonymous;
339
281
}
340
282
@@ -768,26 +710,10 @@ writeParent(
768
710
Access access_;
769
711
switch (access )
770
712
{
713
+ // namespace scope declaration
771
714
case AccessSpecifier::AS_none:
772
715
{
773
- // Create an empty parent for the child with the
774
- // child inserted either as a reference or by moving
775
- // the entire record. Then return the parent as a
776
- // serialized bitcode.
777
- if (I.Namespace .empty ())
778
- {
779
- if (I.id == SymbolID::zero)
780
- {
781
- // Global namespace has no parent.
782
- return {};
783
- }
784
-
785
- // In global namespace
786
- NamespaceInfo P;
787
- Assert (P.id == SymbolID::zero);
788
- insertChild (P, I);
789
- return writeBitcode (P);
790
- }
716
+ Assert (! I.Namespace .empty ());
791
717
Assert (I.Namespace [0 ].RefType == InfoType::IT_namespace);
792
718
793
719
NamespaceInfo P (I.Namespace [0 ].id );
0 commit comments