| 1 | //===--- UndelegatedConstructorCheck.cpp - clang-tidy----------------------===// |
| 2 | // |
| 3 | // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. |
| 4 | // See https://llvm.org/LICENSE.txt for license information. |
| 5 | // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception |
| 6 | // |
| 7 | //===----------------------------------------------------------------------===// |
| 8 | |
| 9 | #include "UndelegatedConstructorCheck.h" |
| 10 | #include "clang/AST/ASTContext.h" |
| 11 | |
| 12 | using namespace clang::ast_matchers; |
| 13 | |
| 14 | namespace clang::tidy::bugprone { |
| 15 | |
| 16 | namespace { |
| 17 | AST_MATCHER_P(Stmt, ignoringTemporaryExpr, |
| 18 | ast_matchers::internal::Matcher<Stmt>, InnerMatcher) { |
| 19 | const Stmt *E = &Node; |
| 20 | for (;;) { |
| 21 | // Temporaries with non-trivial dtors. |
| 22 | if (const auto *EWC = dyn_cast<ExprWithCleanups>(Val: E)) |
| 23 | E = EWC->getSubExpr(); |
| 24 | // Temporaries with zero or more than two ctor arguments. |
| 25 | else if (const auto *BTE = dyn_cast<CXXBindTemporaryExpr>(Val: E)) |
| 26 | E = BTE->getSubExpr(); |
| 27 | // Temporaries with exactly one ctor argument. |
| 28 | else if (const auto *FCE = dyn_cast<CXXFunctionalCastExpr>(Val: E)) |
| 29 | E = FCE->getSubExpr(); |
| 30 | else |
| 31 | break; |
| 32 | } |
| 33 | |
| 34 | return InnerMatcher.matches(Node: *E, Finder, Builder); |
| 35 | } |
| 36 | |
| 37 | // Finds a node if it's a base of an already bound node. |
| 38 | AST_MATCHER_P(CXXRecordDecl, baseOfBoundNode, std::string, ID) { |
| 39 | return Builder->removeBindings( |
| 40 | Predicate: [&](const ast_matchers::internal::BoundNodesMap &Nodes) { |
| 41 | const auto *Derived = Nodes.getNodeAs<CXXRecordDecl>(ID); |
| 42 | return Derived != &Node && !Derived->isDerivedFrom(Base: &Node); |
| 43 | }); |
| 44 | } |
| 45 | } // namespace |
| 46 | |
| 47 | void UndelegatedConstructorCheck::registerMatchers(MatchFinder *Finder) { |
| 48 | // We look for calls to constructors of the same type in constructors. To do |
| 49 | // this we have to look through a variety of nodes that occur in the path, |
| 50 | // depending on the type's destructor and the number of arguments on the |
| 51 | // constructor call, this is handled by ignoringTemporaryExpr. Ignore template |
| 52 | // instantiations to reduce the number of duplicated warnings. |
| 53 | |
| 54 | Finder->addMatcher( |
| 55 | NodeMatch: traverse( |
| 56 | TK: TK_AsIs, |
| 57 | InnerMatcher: compoundStmt(hasParent(cxxConstructorDecl( |
| 58 | ofClass(InnerMatcher: cxxRecordDecl().bind(ID: "parent" )))), |
| 59 | forEach(ignoringTemporaryExpr( |
| 60 | InnerMatcher: cxxConstructExpr( |
| 61 | hasDeclaration(InnerMatcher: cxxConstructorDecl(ofClass( |
| 62 | InnerMatcher: cxxRecordDecl(baseOfBoundNode(ID: "parent" )))))) |
| 63 | .bind(ID: "construct" ))), |
| 64 | unless(isInTemplateInstantiation()))), |
| 65 | Action: this); |
| 66 | } |
| 67 | |
| 68 | void UndelegatedConstructorCheck::check( |
| 69 | const MatchFinder::MatchResult &Result) { |
| 70 | const auto *E = Result.Nodes.getNodeAs<CXXConstructExpr>(ID: "construct" ); |
| 71 | diag(Loc: E->getBeginLoc(), Description: "did you intend to call a delegated constructor? " |
| 72 | "A temporary object is created here instead" ); |
| 73 | } |
| 74 | |
| 75 | } // namespace clang::tidy::bugprone |
| 76 | |