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 #include "FasterStringFindCheck.h" 14 #include "ForRangeCopyCheck.h" 15 #include "ImplicitConversionInLoopCheck.h" 16 #include "InefficientAlgorithmCheck.h" 17 #include "InefficientStringConcatenationCheck.h" 18 #include "InefficientVectorOperationCheck.h" 19 #include "MoveConstArgCheck.h" 20 #include "MoveConstructorInitCheck.h" 21 #include "NoexceptMoveConstructorCheck.h" 22 #include "TypePromotionInMathFnCheck.h" 23 #include "UnnecessaryCopyInitialization.h" 24 #include "UnnecessaryValueParamCheck.h" 25 26 namespace clang { 27 namespace tidy { 28 namespace performance { 29 30 class PerformanceModule : public ClangTidyModule { 31 public: 32 void addCheckFactories(ClangTidyCheckFactories &CheckFactories) override { 33 CheckFactories.registerCheck<FasterStringFindCheck>( 34 "performance-faster-string-find"); 35 CheckFactories.registerCheck<ForRangeCopyCheck>( 36 "performance-for-range-copy"); 37 CheckFactories.registerCheck<ImplicitConversionInLoopCheck>( 38 "performance-implicit-conversion-in-loop"); 39 CheckFactories.registerCheck<InefficientAlgorithmCheck>( 40 "performance-inefficient-algorithm"); 41 CheckFactories.registerCheck<InefficientStringConcatenationCheck>( 42 "performance-inefficient-string-concatenation"); 43 CheckFactories.registerCheck<InefficientVectorOperationCheck>( 44 "performance-inefficient-vector-operation"); 45 CheckFactories.registerCheck<MoveConstArgCheck>( 46 "performance-move-const-arg"); 47 CheckFactories.registerCheck<MoveConstructorInitCheck>( 48 "performance-move-constructor-init"); 49 CheckFactories.registerCheck<NoexceptMoveConstructorCheck>( 50 "performance-noexcept-move-constructor"); 51 CheckFactories.registerCheck<TypePromotionInMathFnCheck>( 52 "performance-type-promotion-in-math-fn"); 53 CheckFactories.registerCheck<UnnecessaryCopyInitialization>( 54 "performance-unnecessary-copy-initialization"); 55 CheckFactories.registerCheck<UnnecessaryValueParamCheck>( 56 "performance-unnecessary-value-param"); 57 } 58 }; 59 60 // Register the PerformanceModule using this statically initialized variable. 61 static ClangTidyModuleRegistry::Add<PerformanceModule> 62 X("performance-module", "Adds performance checks."); 63 64 } // namespace performance 65 66 // This anchor is used to force the linker to link in the generated object file 67 // and thus register the PerformanceModule. 68 volatile int PerformanceModuleAnchorSource = 0; 69 70 } // namespace tidy 71 } // namespace clang 72