[OptTable] Fix typo VALUE => VALUES (NFCI) (#121523)
[llvm-project.git] / clang-tools-extra / clang-tidy / performance / ForRangeCopyCheck.h
blobab9b89d31f93b7f3b71a67f15a572142014ac9e3
1 //===--- ForRangeCopyCheck.h - clang-tidy------------------------*- C++ -*-===//
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 //===----------------------------------------------------------------------===//
9 #ifndef LLVM_CLANG_TOOLS_EXTRA_CLANG_TIDY_PERFORMANCE_FORRANGECOPYCHECK_H
10 #define LLVM_CLANG_TOOLS_EXTRA_CLANG_TIDY_PERFORMANCE_FORRANGECOPYCHECK_H
12 #include "../ClangTidyCheck.h"
14 namespace clang::tidy::performance {
16 /// A check that detects copied loop variables and suggests using const
17 /// references.
18 /// For the user-facing documentation see:
19 /// http://clang.llvm.org/extra/clang-tidy/checks/performance/for-range-copy.html
20 class ForRangeCopyCheck : public ClangTidyCheck {
21 public:
22 ForRangeCopyCheck(StringRef Name, ClangTidyContext *Context);
23 bool isLanguageVersionSupported(const LangOptions &LangOpts) const override{
24 return LangOpts.CPlusPlus11;
26 void storeOptions(ClangTidyOptions::OptionMap &Opts) override;
27 void registerMatchers(ast_matchers::MatchFinder *Finder) override;
28 void check(const ast_matchers::MatchFinder::MatchResult &Result) override;
30 private:
31 // Checks if the loop variable is a const value and expensive to copy. If so
32 // suggests it be converted to a const reference.
33 bool handleConstValueCopy(const VarDecl &LoopVar, ASTContext &Context);
35 // Checks if the loop variable is a non-const value and whether only
36 // const methods are invoked on it or whether it is only used as a const
37 // reference argument. If so it suggests it be made a const reference.
38 bool handleCopyIsOnlyConstReferenced(const VarDecl &LoopVar,
39 const CXXForRangeStmt &ForRange,
40 ASTContext &Context);
42 const bool WarnOnAllAutoCopies;
43 const std::vector<StringRef> AllowedTypes;
46 } // namespace clang::tidy::performance
48 #endif // LLVM_CLANG_TOOLS_EXTRA_CLANG_TIDY_PERFORMANCE_FORRANGECOPYCHECK_H