clang-tools 20.0.0git
UnusedLocalNonTrivialVariableCheck.cpp
Go to the documentation of this file.
1//===--- UnusedLocalNonTrivialVariableCheck.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/Matchers.h"
11#include "../utils/OptionsUtils.h"
12#include "clang/AST/ASTContext.h"
13#include "clang/AST/ASTTypeTraits.h"
14#include "clang/AST/Type.h"
15#include "clang/ASTMatchers/ASTMatchFinder.h"
16#include "clang/ASTMatchers/ASTMatchers.h"
17#include "clang/ASTMatchers/ASTMatchersMacros.h"
18#include "clang/Basic/LangOptions.h"
19
20using namespace clang::ast_matchers;
21using namespace clang::tidy::matchers;
22
23namespace clang::tidy::bugprone {
24
25namespace {
26static constexpr StringRef DefaultIncludeTypeRegex =
27 "::std::.*mutex;::std::future;::std::basic_string;::std::basic_regex;"
28 "::std::basic_istringstream;::std::basic_stringstream;::std::bitset;"
29 "::std::filesystem::path";
30
31AST_MATCHER(VarDecl, isLocalVarDecl) { return Node.isLocalVarDecl(); }
32AST_MATCHER(VarDecl, isReferenced) { return Node.isReferenced(); }
33AST_MATCHER(VarDecl, explicitMarkUnused) {
34 // Implementations should not emit a warning that a name-independent
35 // declaration is used or unused.
36 LangOptions const &LangOpts = Finder->getASTContext().getLangOpts();
37 return Node.hasAttr<UnusedAttr>() ||
38 (LangOpts.CPlusPlus26 && Node.isPlaceholderVar(LangOpts));
39}
40AST_MATCHER(Type, isReferenceType) { return Node.isReferenceType(); }
41AST_MATCHER(QualType, isTrivial) {
42 return Node.isTrivialType(Finder->getASTContext()) ||
43 Node.isTriviallyCopyableType(Finder->getASTContext());
44}
45} // namespace
46
48 StringRef Name, ClangTidyContext *Context)
49 : ClangTidyCheck(Name, Context),
50 IncludeTypes(utils::options::parseStringList(
51 Options.get("IncludeTypes", DefaultIncludeTypeRegex))),
52 ExcludeTypes(
53 utils::options::parseStringList(Options.get("ExcludeTypes", ""))) {}
54
57 Options.store(Opts, "IncludeTypes",
59 Options.store(Opts, "ExcludeTypes",
61}
62
64 if (IncludeTypes.empty())
65 return;
66
67 Finder->addMatcher(
68 varDecl(isLocalVarDecl(), unless(isReferenced()),
69 unless(isExceptionVariable()), hasLocalStorage(), isDefinition(),
70 unless(hasType(isReferenceType())), unless(hasType(isTrivial())),
71 unless(explicitMarkUnused()),
72 hasType(hasUnqualifiedDesugaredType(
73 anyOf(recordType(hasDeclaration(namedDecl(
74 matchesAnyListedName(IncludeTypes),
75 unless(matchesAnyListedName(ExcludeTypes))))),
76 templateSpecializationType(hasDeclaration(namedDecl(
77 matchesAnyListedName(IncludeTypes),
78 unless(matchesAnyListedName(ExcludeTypes)))))))))
79 .bind("var"),
80 this);
81}
82
84 const MatchFinder::MatchResult &Result) {
85 const auto *MatchedDecl = Result.Nodes.getNodeAs<VarDecl>("var");
86 diag(MatchedDecl->getLocation(), "unused local variable %0 of type %1")
87 << MatchedDecl << MatchedDecl->getType();
88}
89
91 const LangOptions &LangOpts) const {
92 return LangOpts.CPlusPlus;
93}
94
95std::optional<TraversalKind>
97 return TK_IgnoreUnlessSpelledInSource;
98}
99
100} // namespace clang::tidy::bugprone
llvm::SmallString< 256U > Name
NodeType Type
::clang::DynTypedNode Node
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.
Base class for all clang-tidy checks.
DiagnosticBuilder diag(SourceLocation Loc, StringRef Description, DiagnosticIDs::Level Level=DiagnosticIDs::Warning)
Add a diagnostic with the check's name.
Every ClangTidyCheck reports errors through a DiagnosticsEngine provided by this 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...
bool isLanguageVersionSupported(const LangOptions &LangOpts) const override
Override this to disable registering matchers and PP callbacks if an invalid language version is bein...
std::optional< TraversalKind > getCheckTraversalKind() const override
void registerMatchers(ast_matchers::MatchFinder *Finder) override
Override this to register AST matchers with Finder.
AST_MATCHER(clang::VarDecl, hasConstantDeclaration)
inline ::clang::ast_matchers::internal::Matcher< NamedDecl > matchesAnyListedName(llvm::ArrayRef< StringRef > NameList)
std::string serializeStringList(ArrayRef< StringRef > Strings)
Serialize a sequence of names that can be parsed by parseStringList.
llvm::StringMap< ClangTidyValue > OptionMap