Gabor Horvath | 829e75a | 2017-07-14 12:15:55 +0000 | [diff] [blame] | 1 | //===--- BugproneTidyModule.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 "SuspiciousMemsetUsageCheck.h" |
Gabor Horvath | 46a9db4 | 2017-07-14 12:20:19 +0000 | [diff] [blame] | 14 | #include "UndefinedMemoryManipulationCheck.h" |
Gabor Horvath | 829e75a | 2017-07-14 12:15:55 +0000 | [diff] [blame] | 15 | |
| 16 | namespace clang { |
| 17 | namespace tidy { |
| 18 | namespace bugprone { |
| 19 | |
| 20 | class BugproneModule : public ClangTidyModule { |
| 21 | public: |
| 22 | void addCheckFactories(ClangTidyCheckFactories &CheckFactories) override { |
| 23 | CheckFactories.registerCheck<SuspiciousMemsetUsageCheck>( |
| 24 | "bugprone-suspicious-memset-usage"); |
Gabor Horvath | 46a9db4 | 2017-07-14 12:20:19 +0000 | [diff] [blame] | 25 | CheckFactories.registerCheck<UndefinedMemoryManipulationCheck>( |
| 26 | "bugprone-undefined-memory-manipulation"); |
Gabor Horvath | 829e75a | 2017-07-14 12:15:55 +0000 | [diff] [blame] | 27 | } |
| 28 | }; |
| 29 | |
| 30 | } // namespace bugprone |
| 31 | |
| 32 | // Register the BugproneTidyModule using this statically initialized variable. |
| 33 | static ClangTidyModuleRegistry::Add<bugprone::BugproneModule> |
| 34 | X("bugprone-module", "Adds checks for bugprone code constructs."); |
| 35 | |
| 36 | // This anchor is used to force the linker to link in the generated object file |
| 37 | // and thus register the BugproneModule. |
| 38 | volatile int BugproneModuleAnchorSource = 0; |
| 39 | |
| 40 | } // namespace tidy |
| 41 | } // namespace clang |