//===--- WalkAST.cpp - Find declaration references in the AST -------------===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // //===----------------------------------------------------------------------===// #include "AnalysisInternal.h" #include "clang/AST/Decl.h" #include "clang/AST/DeclCXX.h" #include "clang/AST/Expr.h" #include "clang/AST/ExprCXX.h" #include "clang/AST/RecursiveASTVisitor.h" #include "clang/AST/TemplateName.h" #include "clang/AST/Type.h" #include "clang/AST/TypeLoc.h" #include "clang/Basic/SourceLocation.h" #include "llvm/ADT/STLExtras.h" #include "llvm/Support/Casting.h" namespace clang::include_cleaner { namespace { using DeclCallback = llvm::function_ref; class ASTWalker : public RecursiveASTVisitor { DeclCallback Callback; void report(SourceLocation Loc, NamedDecl *ND, RefType RT = RefType::Explicit) { if (!ND || Loc.isInvalid()) return; Callback(Loc, *cast(ND->getCanonicalDecl()), RT); } NamedDecl *resolveTemplateName(TemplateName TN) { // For using-templates, only mark the alias. if (auto *USD = TN.getAsUsingShadowDecl()) return USD; return TN.getAsTemplateDecl(); } NamedDecl *getMemberProvider(QualType Base) { if (Base->isPointerType()) return getMemberProvider(Base->getPointeeType()); // Unwrap the sugar ElaboratedType. if (const auto *ElTy = dyn_cast(Base)) return getMemberProvider(ElTy->getNamedType()); if (const auto *TT = dyn_cast(Base)) return TT->getDecl(); if (const auto *UT = dyn_cast(Base)) return UT->getFoundDecl(); // A heuristic: to resolve a template type to **only** its template name. // We're only using this method for the base type of MemberExpr, in general // the template provides the member, and the critical case `unique_ptr` // is supported (the base type is a Foo*). // // There are some exceptions that this heuristic could fail (dependent base, // dependent typealias), but we believe these are rare. if (const auto *TST = dyn_cast(Base)) return resolveTemplateName(TST->getTemplateName()); return Base->getAsRecordDecl(); } public: ASTWalker(DeclCallback Callback) : Callback(Callback) {} bool TraverseCXXOperatorCallExpr(CXXOperatorCallExpr *S) { if (!WalkUpFromCXXOperatorCallExpr(S)) return false; // Operators are always ADL extension points, by design references to them // doesn't count as uses (generally the type should provide them). // Don't traverse the callee. for (auto *Arg : S->arguments()) if (!TraverseStmt(Arg)) return false; return true; } bool VisitDeclRefExpr(DeclRefExpr *DRE) { report(DRE->getLocation(), DRE->getFoundDecl()); return true; } bool VisitMemberExpr(MemberExpr *E) { // Reporting a usage of the member decl would cause issues (e.g. force // including the base class for inherited members). Instead, we report a // usage of the base type of the MemberExpr, so that e.g. code // `returnFoo().bar` can keep #include "foo.h" (rather than inserting // "bar.h" for the underlying base type `Bar`). // // FIXME: support dependent types, e.g., "std::vector().size()". QualType Type = E->getBase()->IgnoreImpCasts()->getType(); report(E->getMemberLoc(), getMemberProvider(Type), RefType::Implicit); return true; } bool VisitCXXDependentScopeMemberExpr(CXXDependentScopeMemberExpr *E) { report(E->getMemberLoc(), getMemberProvider(E->getBaseType()), RefType::Implicit); return true; } bool VisitCXXConstructExpr(CXXConstructExpr *E) { report(E->getLocation(), E->getConstructor(), E->getParenOrBraceRange().isValid() ? RefType::Explicit : RefType::Implicit); return true; } bool VisitOverloadExpr(OverloadExpr *E) { // Since we can't prove which overloads are used, report all of them. llvm::for_each(E->decls(), [this, E](NamedDecl *D) { report(E->getNameLoc(), D, RefType::Ambiguous); }); return true; } bool VisitUsingDecl(UsingDecl *UD) { for (const auto *Shadow : UD->shadows()) { auto *TD = Shadow->getTargetDecl(); auto IsUsed = TD->isUsed() || TD->isReferenced(); report(UD->getLocation(), TD, IsUsed ? RefType::Explicit : RefType::Ambiguous); } return true; } bool VisitFunctionDecl(FunctionDecl *FD) { // Mark declaration from definition as it needs type-checking. if (FD->isThisDeclarationADefinition()) report(FD->getLocation(), FD); return true; } bool VisitEnumDecl(EnumDecl *D) { // Definition of an enum with an underlying type references declaration for // type-checking purposes. if (D->isThisDeclarationADefinition() && D->getIntegerTypeSourceInfo()) report(D->getLocation(), D); return true; } // TypeLoc visitors. bool VisitUsingTypeLoc(UsingTypeLoc TL) { report(TL.getNameLoc(), TL.getFoundDecl()); return true; } bool VisitTagTypeLoc(TagTypeLoc TTL) { report(TTL.getNameLoc(), TTL.getDecl()); return true; } bool VisitTypedefTypeLoc(TypedefTypeLoc TTL) { report(TTL.getNameLoc(), TTL.getTypedefNameDecl()); return true; } bool VisitTemplateSpecializationTypeLoc(TemplateSpecializationTypeLoc TL) { // FIXME: Handle explicit specializations. report(TL.getTemplateNameLoc(), resolveTemplateName(TL.getTypePtr()->getTemplateName())); return true; } bool VisitDeducedTemplateSpecializationTypeLoc( DeducedTemplateSpecializationTypeLoc TL) { // FIXME: Handle specializations. report(TL.getTemplateNameLoc(), resolveTemplateName(TL.getTypePtr()->getTemplateName())); return true; } bool TraverseTemplateArgumentLoc(const TemplateArgumentLoc &TL) { auto &Arg = TL.getArgument(); // Template-template parameters require special attention, as there's no // TemplateNameLoc. if (Arg.getKind() == TemplateArgument::Template || Arg.getKind() == TemplateArgument::TemplateExpansion) { report(TL.getLocation(), resolveTemplateName(Arg.getAsTemplateOrTemplatePattern())); return true; } return RecursiveASTVisitor::TraverseTemplateArgumentLoc(TL); } }; } // namespace void walkAST(Decl &Root, DeclCallback Callback) { ASTWalker(Callback).TraverseDecl(&Root); } } // namespace clang::include_cleaner