1 //===--- PortabilityTidyModule.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 9 #include "../ClangTidy.h" 10 #include "../ClangTidyModule.h" 11 #include "../ClangTidyModuleRegistry.h" 12 #include "RestrictSystemIncludesCheck.h" 13 #include "SIMDIntrinsicsCheck.h" 14 #include "StdAllocatorConstCheck.h" 15 16 namespace clang { 17 namespace tidy { 18 namespace portability { 19 20 class PortabilityModule : public ClangTidyModule { 21 public: addCheckFactories(ClangTidyCheckFactories & CheckFactories)22 void addCheckFactories(ClangTidyCheckFactories &CheckFactories) override { 23 CheckFactories.registerCheck<RestrictSystemIncludesCheck>( 24 "portability-restrict-system-includes"); 25 CheckFactories.registerCheck<SIMDIntrinsicsCheck>( 26 "portability-simd-intrinsics"); 27 CheckFactories.registerCheck<StdAllocatorConstCheck>( 28 "portability-std-allocator-const"); 29 } 30 }; 31 32 // Register the PortabilityModule using this statically initialized variable. 33 static ClangTidyModuleRegistry::Add<PortabilityModule> 34 X("portability-module", "Adds portability-related checks."); 35 36 } // namespace portability 37 38 // This anchor is used to force the linker to link in the generated object file 39 // and thus register the PortabilityModule. 40 volatile int PortabilityModuleAnchorSource = 0; 41 42 } // namespace tidy 43 } // namespace clang 44