clang-tools  9.0.0
PortabilityTidyModule.cpp
Go to the documentation of this file.
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 "SIMDIntrinsicsCheck.h"
13 
14 namespace clang {
15 namespace tidy {
16 namespace portability {
17 
19 public:
20  void addCheckFactories(ClangTidyCheckFactories &CheckFactories) override {
21  CheckFactories.registerCheck<SIMDIntrinsicsCheck>(
22  "portability-simd-intrinsics");
23  }
24 };
25 
26 // Register the PortabilityModule using this statically initialized variable.
27 static ClangTidyModuleRegistry::Add<PortabilityModule>
28  X("portability-module", "Adds portability-related checks.");
29 
30 } // namespace portability
31 
32 // This anchor is used to force the linker to link in the generated object file
33 // and thus register the PortabilityModule.
35 
36 } // namespace tidy
37 } // namespace clang
void registerCheck(StringRef CheckName)
Registers the CheckType with the name Name.
A collection of ClangTidyCheckFactory instances.
void addCheckFactories(ClangTidyCheckFactories &CheckFactories) override
Implement this function in order to register all CheckFactories belonging to this module...
A clang-tidy module groups a number of ClangTidyChecks and gives them a prefixed name.
volatile int PortabilityModuleAnchorSource
Find SIMD intrinsics calls and suggest std::experimental::simd alternatives.
===– Representation.cpp - ClangDoc Representation --------—*- C++ -*-===//
static ClangTidyModuleRegistry::Add< PortabilityModule > X("portability-module", "Adds portability-related checks.")