Skip to content

Commit 50dc807

Browse files
committed
more ASTVisitor work
1 parent 710aa69 commit 50dc807

File tree

2 files changed

+14
-88
lines changed

2 files changed

+14
-88
lines changed

include/mrdox/Metadata/Reference.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ struct Reference
5353
{
5454
}
5555

56-
#if 0
56+
#if 1
5757
// VFALCO What was this for?
5858
bool
5959
operator==(

source/AST/ASTVisitor.cpp

+13-87
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,6 @@ getParentNamespaces(
222222
const DeclContext* DC = D->getDeclContext();
223223
do
224224
{
225-
SymbolID id = SymbolID::zero;
226225
if(const auto* N = dyn_cast<NamespaceDecl>(DC))
227226
{
228227
std::string Namespace;
@@ -235,56 +234,11 @@ getParentNamespaces(
235234
{
236235
Namespace = N->getNameAsString();
237236
}
238-
extractSymbolID(N, id);
239237
Namespaces.emplace_back(
240-
id,
238+
extractSymbolID(N),
241239
Namespace,
242240
InfoType::IT_namespace);
243241
}
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
288242
else if(const auto* N = dyn_cast<CXXRecordDecl>(DC))
289243
{
290244
// if the containing context is an implicit specialization,
@@ -294,47 +248,35 @@ getParentNamespaces(
294248
{
295249
N = S->getTemplateInstantiationPattern();
296250
}
297-
extractSymbolID(N, id);
298251
Namespaces.emplace_back(
299-
id,
252+
extractSymbolID(N),
300253
N->getNameAsString(),
301254
InfoType::IT_record);
302255
}
303-
#endif
304256
else if(const auto* N = dyn_cast<FunctionDecl>(DC))
305257
{
306-
extractSymbolID(N, id);
307258
Namespaces.emplace_back(
308-
id,
259+
extractSymbolID(N),
309260
N->getNameAsString(),
310261
InfoType::IT_function);
311262
}
312263
else if(const auto* N = dyn_cast<EnumDecl>(DC))
313264
{
314-
extractSymbolID(N, id);
315265
Namespaces.emplace_back(
316-
id,
266+
extractSymbolID(N),
317267
N->getNameAsString(),
318268
InfoType::IT_enum);
319269
}
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+
}
320277
}
321278
while((DC = DC->getParent()));
322279

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-
338280
return anonymous;
339281
}
340282

@@ -768,26 +710,10 @@ writeParent(
768710
Access access_;
769711
switch(access)
770712
{
713+
// namespace scope declaration
771714
case AccessSpecifier::AS_none:
772715
{
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());
791717
Assert(I.Namespace[0].RefType == InfoType::IT_namespace);
792718

793719
NamespaceInfo P(I.Namespace[0].id);

0 commit comments

Comments
 (0)