clang-tools  3.8.0
PerformanceTidyModule.cpp
Go to the documentation of this file.
1 //===--- PeformanceTidyModule.cpp - clang-tidy ----------------------------===//
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 #include "../ClangTidy.h"
11 #include "../ClangTidyModule.h"
12 #include "../ClangTidyModuleRegistry.h"
13 
15 
16 namespace clang {
17 namespace tidy {
18 namespace performance {
19 
21 public:
22  void addCheckFactories(ClangTidyCheckFactories &CheckFactories) override {
24  "performance-unnecessary-copy-initialization");
25  }
26 };
27 
28 // Register the PerformanceModule using this statically initialized variable.
29 static ClangTidyModuleRegistry::Add<PerformanceModule>
30  X("performance-module", "Adds performance checks.");
31 
32 } // namespace performance
33 
34 // This anchor is used to force the linker to link in the generated object file
35 // and thus register the PerformanceModule.
37 
38 } // namespace tidy
39 } // namespace clang
void registerCheck(StringRef CheckName)
Registers the CheckType with the name Name.
A collection of ClangTidyCheckFactory instances.
volatile int PerformanceModuleAnchorSource
A clang-tidy module groups a number of ClangTidyChecks and gives them a prefixed name.
void addCheckFactories(ClangTidyCheckFactories &CheckFactories) override
Implement this function in order to register all CheckFactories belonging to this module...
static ClangTidyModuleRegistry::Add< PerformanceModule > X("performance-module","Adds performance checks.")