From d984e33b1e1ca2edec06461358ee071f5625b30e Mon Sep 17 00:00:00 2001 From: Gabor Horvath Date: Fri, 17 Nov 2017 12:23:30 +0000 Subject: [clang-tidy] Add a check for undelegated copy of base classes Finds copy constructors where the constructor don't call the copy constructor of the base class. ``` class X : public Copyable { X(const X &other) {} // Copyable(other) is missing }; ``` Differential Revision: https://reviews.llvm.org/D33722 llvm-svn: 318522 --- .../bugprone/CopyConstructorInitCheck.cpp | 121 +++++++++++++++++++++ 1 file changed, 121 insertions(+) create mode 100644 clang-tools-extra/clang-tidy/bugprone/CopyConstructorInitCheck.cpp (limited to 'clang-tools-extra/clang-tidy/bugprone/CopyConstructorInitCheck.cpp') diff --git a/clang-tools-extra/clang-tidy/bugprone/CopyConstructorInitCheck.cpp b/clang-tools-extra/clang-tidy/bugprone/CopyConstructorInitCheck.cpp new file mode 100644 index 00000000000..151e56c0769 --- /dev/null +++ b/clang-tools-extra/clang-tidy/bugprone/CopyConstructorInitCheck.cpp @@ -0,0 +1,121 @@ +//===--- CopyConstructorInitCheck.cpp - clang-tidy-------------------------===// +// +// The LLVM Compiler Infrastructure +// +// This file is distributed under the University of Illinois Open Source +// License. See LICENSE.TXT for details. +// +//===----------------------------------------------------------------------===// + +#include "CopyConstructorInitCheck.h" +#include "clang/AST/ASTContext.h" +#include "clang/ASTMatchers/ASTMatchFinder.h" +#include "clang/Lex/Lexer.h" + +using namespace clang::ast_matchers; + +namespace clang { +namespace tidy { +namespace bugprone { + +void CopyConstructorInitCheck::registerMatchers(MatchFinder *Finder) { + if (!getLangOpts().CPlusPlus) + return; + + // In the future this might be extended to move constructors? + Finder->addMatcher( + cxxConstructorDecl( + isCopyConstructor(), + hasAnyConstructorInitializer(cxxCtorInitializer( + isBaseInitializer(), + withInitializer(cxxConstructExpr(hasDeclaration( + cxxConstructorDecl(isDefaultConstructor())))))), + unless(isInstantiated())) + .bind("ctor"), + this); +} + +void CopyConstructorInitCheck::check(const MatchFinder::MatchResult &Result) { + const auto *Ctor = Result.Nodes.getNodeAs("ctor"); + std::string ParamName = Ctor->getParamDecl(0)->getNameAsString(); + + // We want only one warning (and FixIt) for each ctor. + std::string FixItInitList; + bool HasRelevantBaseInit = false; + bool ShouldNotDoFixit = false; + bool HasWrittenInitializer = false; + SmallVector SafeFixIts; + for (const auto *Init : Ctor->inits()) { + bool CtorInitIsWritten = Init->isWritten(); + HasWrittenInitializer = HasWrittenInitializer || CtorInitIsWritten; + if (!Init->isBaseInitializer()) + continue; + const Type *BaseType = Init->getBaseClass(); + // Do not do fixits if there is a type alias involved or one of the bases + // are explicitly initialized. In the latter case we not do fixits to avoid + // -Wreorder warnings. + if (const auto *TempSpecTy = dyn_cast(BaseType)) + ShouldNotDoFixit = ShouldNotDoFixit || TempSpecTy->isTypeAlias(); + ShouldNotDoFixit = ShouldNotDoFixit || isa(BaseType); + ShouldNotDoFixit = ShouldNotDoFixit || CtorInitIsWritten; + const CXXRecordDecl *BaseClass = + BaseType->getAsCXXRecordDecl()->getDefinition(); + if (BaseClass->field_empty() && + BaseClass->forallBases( + [](const CXXRecordDecl *Class) { return Class->field_empty(); })) + continue; + bool NonCopyableBase = false; + for (const auto *Ctor : BaseClass->ctors()) { + if (Ctor->isCopyConstructor() && + (Ctor->getAccess() == AS_private || Ctor->isDeleted())) { + NonCopyableBase = true; + break; + } + } + if (NonCopyableBase) + continue; + const auto *CExpr = dyn_cast(Init->getInit()); + if (!CExpr || !CExpr->getConstructor()->isDefaultConstructor()) + continue; + HasRelevantBaseInit = true; + if (CtorInitIsWritten) { + if (!ParamName.empty()) + SafeFixIts.push_back( + FixItHint::CreateInsertion(CExpr->getLocEnd(), ParamName)); + } else { + if (Init->getSourceLocation().isMacroID() || + Ctor->getLocation().isMacroID() || ShouldNotDoFixit) + break; + FixItInitList += BaseClass->getNameAsString(); + FixItInitList += "(" + ParamName + "), "; + } + } + if (!HasRelevantBaseInit) + return; + + auto Diag = diag(Ctor->getLocation(), + "calling a base constructor other than the copy constructor") + << SafeFixIts; + + if (FixItInitList.empty() || ParamName.empty() || ShouldNotDoFixit) + return; + + std::string FixItMsg{FixItInitList.substr(0, FixItInitList.size() - 2)}; + SourceLocation FixItLoc; + // There is no initialization list in this constructor. + if (!HasWrittenInitializer) { + FixItLoc = Ctor->getBody()->getLocStart(); + FixItMsg = " : " + FixItMsg; + } else { + // We apply the missing ctors at the beginning of the initialization list. + FixItLoc = (*Ctor->init_begin())->getSourceLocation(); + FixItMsg += ','; + } + FixItMsg += ' '; + + Diag << FixItHint::CreateInsertion(FixItLoc, FixItMsg); +} // namespace misc + +} // namespace misc +} // namespace tidy +} // namespace clang -- cgit v1.2.3