1 //===--- MPITidyModule.cpp - clang-tidy -----------------------------------===//
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
7 //===----------------------------------------------------------------------===//
9 #include "../ClangTidy.h"
10 #include "../ClangTidyModule.h"
11 #include "../ClangTidyModuleRegistry.h"
12 #include "BufferDerefCheck.h"
13 #include "TypeMismatchCheck.h"
15 namespace clang::tidy
{
18 class MPIModule
: public ClangTidyModule
{
20 void addCheckFactories(ClangTidyCheckFactories
&CheckFactories
) override
{
21 CheckFactories
.registerCheck
<BufferDerefCheck
>("mpi-buffer-deref");
22 CheckFactories
.registerCheck
<TypeMismatchCheck
>("mpi-type-mismatch");
28 // Register the MPITidyModule using this statically initialized variable.
29 static ClangTidyModuleRegistry::Add
<mpi::MPIModule
>
30 X("mpi-module", "Adds MPI clang-tidy checks.");
32 // This anchor is used to force the linker to link in the generated object file
33 // and thus register the MPIModule.
34 volatile int MPIModuleAnchorSource
= 0;
36 } // namespace clang::tidy