blob: f88a126e5d755dc1f1584ce3db2b1afd41ccf592 [file] [log] [blame]
Alexander Kornienko5aebfe22016-01-29 15:54:26 +00001//===--- ForRangeCopyCheck.h - clang-tidy------------------------*- C++ -*-===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9
10#ifndef LLVM_CLANG_TOOLS_EXTRA_CLANG_TIDY_PERFORMANCE_FORRANGECOPYCHECK_H
11#define LLVM_CLANG_TOOLS_EXTRA_CLANG_TIDY_PERFORMANCE_FORRANGECOPYCHECK_H
12
13#include "../ClangTidy.h"
14
15namespace clang {
16namespace tidy {
17namespace performance {
18
19/// A check that detects copied loop variables and suggests using const
20/// references.
21/// For the user-facing documentation see:
22/// http://clang.llvm.org/extra/clang-tidy/checks/performance-for-range-copy.html
23class ForRangeCopyCheck : public ClangTidyCheck {
24public:
25 ForRangeCopyCheck(StringRef Name, ClangTidyContext *Context);
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;
29
30private:
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);
34
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);
41
42 const bool WarnOnAllAutoCopies;
43};
44
45} // namespace performance
46} // namespace tidy
47} // namespace clang
48
49#endif // LLVM_CLANG_TOOLS_EXTRA_CLANG_TIDY_PERFORMANCE_FORRANGECOPYCHECK_H