clang-tools 19.0.0git
TriviallyDestructibleCheck.cpp
Go to the documentation of this file.
1//===--- TriviallyDestructibleCheck.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
10#include "../utils/LexerUtils.h"
11#include "../utils/Matchers.h"
12#include "clang/AST/ASTContext.h"
13#include "clang/ASTMatchers/ASTMatchFinder.h"
14
15using namespace clang::ast_matchers;
16using namespace clang::ast_matchers::internal;
17using namespace clang::tidy::matchers;
18
20
21namespace {
22
23AST_MATCHER(Decl, isFirstDecl) { return Node.isFirstDecl(); }
24
25AST_MATCHER_P(CXXRecordDecl, hasBase, Matcher<QualType>, InnerMatcher) {
26 for (const CXXBaseSpecifier &BaseSpec : Node.bases()) {
27 QualType BaseType = BaseSpec.getType();
28 if (InnerMatcher.matches(BaseType, Finder, Builder))
29 return true;
30 }
31 return false;
32}
33
34} // namespace
35
37 Finder->addMatcher(
38 cxxDestructorDecl(
39 isDefaulted(),
40 unless(anyOf(isFirstDecl(), isVirtual(),
41 ofClass(cxxRecordDecl(
42 anyOf(hasBase(unless(isTriviallyDestructible())),
43 has(fieldDecl(unless(
44 hasType(isTriviallyDestructible()))))))))))
45 .bind("decl"),
46 this);
47}
48
49void TriviallyDestructibleCheck::check(const MatchFinder::MatchResult &Result) {
50 const auto *MatchedDecl = Result.Nodes.getNodeAs<CXXDestructorDecl>("decl");
51
52 // Get locations of both first and out-of-line declarations.
53 SourceManager &SM = *Result.SourceManager;
54 const auto *FirstDecl = cast<CXXMethodDecl>(MatchedDecl->getFirstDecl());
55 const SourceLocation FirstDeclEnd = utils::lexer::findNextTerminator(
56 FirstDecl->getEndLoc(), SM, getLangOpts());
57 const CharSourceRange SecondDeclRange = CharSourceRange::getTokenRange(
58 MatchedDecl->getBeginLoc(),
59 utils::lexer::findNextTerminator(MatchedDecl->getEndLoc(), SM,
60 getLangOpts()));
61 if (FirstDeclEnd.isInvalid() || SecondDeclRange.isInvalid())
62 return;
63
64 // Report diagnostic.
65 diag(FirstDecl->getLocation(),
66 "class %0 can be made trivially destructible by defaulting the "
67 "destructor on its first declaration")
68 << FirstDecl->getParent()
69 << FixItHint::CreateInsertion(FirstDeclEnd, " = default")
70 << FixItHint::CreateRemoval(SecondDeclRange);
71 diag(MatchedDecl->getLocation(), "destructor definition is here",
72 DiagnosticIDs::Note);
73}
74
75} // namespace clang::tidy::performance
const FunctionDecl * Decl
CodeCompletionBuilder Builder
::clang::DynTypedNode Node
DiagnosticBuilder diag(SourceLocation Loc, StringRef Description, DiagnosticIDs::Level Level=DiagnosticIDs::Warning)
Add a diagnostic with the check's name.
const LangOptions & getLangOpts() const
Returns the language options from the context.
void check(const ast_matchers::MatchFinder::MatchResult &Result) override
ClangTidyChecks that register ASTMatchers should do the actual work in here.
void registerMatchers(ast_matchers::MatchFinder *Finder) override
Override this to register AST matchers with Finder.
AST_MATCHER_P(UserDefinedLiteral, hasLiteral, clang::ast_matchers::internal::Matcher< Expr >, InnerMatcher)
AST_MATCHER(Decl, declHasNoReturnAttr)
matches a Decl if it has a "no return" attribute of any kind
SourceLocation findNextTerminator(SourceLocation Start, const SourceManager &SM, const LangOptions &LangOpts)
Definition: LexerUtils.cpp:82