clang-tools 20.0.0git
RedundantMemberInitCheck.cpp
Go to the documentation of this file.
1//===--- RedundantMemberInitCheck.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#include "clang/Lex/Lexer.h"
15#include <algorithm>
16
17using namespace clang::ast_matchers;
18using namespace clang::tidy::matchers;
19
21
22static SourceRange
23getFullInitRangeInclWhitespaces(SourceRange Range, const SourceManager &SM,
24 const LangOptions &LangOpts) {
25 const Token PrevToken =
26 utils::lexer::getPreviousToken(Range.getBegin(), SM, LangOpts, false);
27 if (PrevToken.is(tok::unknown))
28 return Range;
29
30 if (PrevToken.isNot(tok::equal))
31 return {PrevToken.getEndLoc(), Range.getEnd()};
32
34 {PrevToken.getLocation(), Range.getEnd()}, SM, LangOpts);
35}
36
38 Options.store(Opts, "IgnoreBaseInCopyConstructors",
39 IgnoreBaseInCopyConstructors);
40}
41
43 auto ConstructorMatcher =
44 cxxConstructExpr(
45 argumentCountIs(0),
46 hasDeclaration(cxxConstructorDecl(
47 ofClass(cxxRecordDecl(unless(isTriviallyDefaultConstructible()))
48 .bind("class")))))
49 .bind("construct");
50
51 auto HasUnionAsParent = hasParent(recordDecl(isUnion()));
52
53 auto HasTypeEqualToConstructorClass = hasType(qualType(
54 hasCanonicalType(qualType(hasDeclaration(equalsBoundNode("class"))))));
55
56 Finder->addMatcher(
57 cxxConstructorDecl(
58 unless(isDelegatingConstructor()), ofClass(unless(isUnion())),
59 forEachConstructorInitializer(
60 cxxCtorInitializer(
61 withInitializer(ConstructorMatcher),
62 anyOf(isBaseInitializer(),
63 forField(fieldDecl(unless(hasType(isConstQualified())),
64 unless(HasUnionAsParent),
65 HasTypeEqualToConstructorClass))))
66 .bind("init")))
67 .bind("constructor"),
68 this);
69
70 Finder->addMatcher(fieldDecl(hasInClassInitializer(ConstructorMatcher),
71 HasTypeEqualToConstructorClass,
72 unless(HasUnionAsParent))
73 .bind("field"),
74 this);
75}
76
77void RedundantMemberInitCheck::check(const MatchFinder::MatchResult &Result) {
78 const auto *Construct = Result.Nodes.getNodeAs<CXXConstructExpr>("construct");
79
80 if (const auto *Field = Result.Nodes.getNodeAs<FieldDecl>("field")) {
81 const Expr *Init = Field->getInClassInitializer();
82 diag(Construct->getExprLoc(), "initializer for member %0 is redundant")
83 << Field
84 << FixItHint::CreateRemoval(getFullInitRangeInclWhitespaces(
85 Init->getSourceRange(), *Result.SourceManager, getLangOpts()));
86 return;
87 }
88
89 const auto *Init = Result.Nodes.getNodeAs<CXXCtorInitializer>("init");
90 const auto *ConstructorDecl =
91 Result.Nodes.getNodeAs<CXXConstructorDecl>("constructor");
92
93 if (IgnoreBaseInCopyConstructors && ConstructorDecl->isCopyConstructor() &&
94 Init->isBaseInitializer())
95 return;
96
97 if (Init->isAnyMemberInitializer()) {
98 diag(Init->getSourceLocation(), "initializer for member %0 is redundant")
99 << Init->getAnyMember()
100 << FixItHint::CreateRemoval(Init->getSourceRange());
101 } else {
102 diag(Init->getSourceLocation(),
103 "initializer for base class %0 is redundant")
104 << Construct->getType()
105 << FixItHint::CreateRemoval(Init->getSourceRange());
106 }
107}
108
109} // namespace clang::tidy::readability
CharSourceRange Range
SourceRange for the file name.
const FieldDecl * Field
void store(ClangTidyOptions::OptionMap &Options, StringRef LocalName, StringRef Value) const
Stores an option with the check-local name LocalName with string value Value to Options.
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 storeOptions(ClangTidyOptions::OptionMap &Opts) override
Should store all options supported by this check with their current values or default values for opti...
void registerMatchers(ast_matchers::MatchFinder *Finder) override
Override this to register AST matchers with Finder.
static SourceRange getFullInitRangeInclWhitespaces(SourceRange Range, const SourceManager &SM, const LangOptions &LangOpts)
Token getPreviousToken(SourceLocation Location, const SourceManager &SM, const LangOptions &LangOpts, bool SkipComments)
Returns previous token or tok::unknown if not found.
Definition: LexerUtils.cpp:39
llvm::StringMap< ClangTidyValue > OptionMap