clang-tools 19.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
19using namespace clang::ast_matchers;
20using namespace clang::tidy::matchers;
21
22namespace clang::tidy::bugprone {
23
24namespace {
25static constexpr StringRef DefaultIncludeTypeRegex =
26 "::std::.*mutex;::std::future;::std::basic_string;::std::basic_regex;"
27 "::std::basic_istringstream;::std::basic_stringstream;::std::bitset;"
28 "::std::filesystem::path";
29
30AST_MATCHER(VarDecl, isLocalVarDecl) { return Node.isLocalVarDecl(); }
31AST_MATCHER(VarDecl, isReferenced) { return Node.isReferenced(); }
32AST_MATCHER(Type, isReferenceType) { return Node.isReferenceType(); }
33AST_MATCHER(QualType, isTrivial) {
34 return Node.isTrivialType(Finder->getASTContext()) ||
35 Node.isTriviallyCopyableType(Finder->getASTContext());
36}
37} // namespace
38
40 StringRef Name, ClangTidyContext *Context)
41 : ClangTidyCheck(Name, Context),
42 IncludeTypes(utils::options::parseStringList(
43 Options.get("IncludeTypes", DefaultIncludeTypeRegex))),
44 ExcludeTypes(
45 utils::options::parseStringList(Options.get("ExcludeTypes", ""))) {}
46
49 Options.store(Opts, "IncludeTypes",
51 Options.store(Opts, "ExcludeTypes",
53}
54
56 if (IncludeTypes.empty())
57 return;
58
59 Finder->addMatcher(
60 varDecl(isLocalVarDecl(), unless(isReferenced()),
61 unless(isExceptionVariable()), hasLocalStorage(), isDefinition(),
62 unless(hasType(isReferenceType())), unless(hasType(isTrivial())),
63 unless(hasAttr(attr::Kind::Unused)),
64 hasType(hasUnqualifiedDesugaredType(
65 anyOf(recordType(hasDeclaration(namedDecl(
66 matchesAnyListedName(IncludeTypes),
67 unless(matchesAnyListedName(ExcludeTypes))))),
68 templateSpecializationType(hasDeclaration(namedDecl(
69 matchesAnyListedName(IncludeTypes),
70 unless(matchesAnyListedName(ExcludeTypes)))))))))
71 .bind("var"),
72 this);
73}
74
76 const MatchFinder::MatchResult &Result) {
77 const auto *MatchedDecl = Result.Nodes.getNodeAs<VarDecl>("var");
78 diag(MatchedDecl->getLocation(), "unused local variable %0 of type %1")
79 << MatchedDecl << MatchedDecl->getType();
80}
81
83 const LangOptions &LangOpts) const {
84 return LangOpts.CPlusPlus;
85}
86
87std::optional<TraversalKind>
89 return TK_IgnoreUnlessSpelledInSource;
90}
91
92} // 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