1 //===--- MacroUsageCheck.h - clang-tidy--------------------------*- C++ -*-===//
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 #ifndef LLVM_CLANG_TOOLS_EXTRA_CLANG_TIDY_CPPCOREGUIDELINES_MACROUSAGECHECK_H
10 #define LLVM_CLANG_TOOLS_EXTRA_CLANG_TIDY_CPPCOREGUIDELINES_MACROUSAGECHECK_H
12 #include "../ClangTidyCheck.h"
13 #include "clang/Lex/MacroInfo.h"
18 namespace tidy::cppcoreguidelines
{
20 /// Find macro usage that is considered problematic because better language
21 /// constructs exist for the task.
23 /// For the user-facing documentation see:
24 /// http://clang.llvm.org/extra/clang-tidy/checks/cppcoreguidelines/macro-usage.html
25 class MacroUsageCheck
: public ClangTidyCheck
{
27 MacroUsageCheck(StringRef Name
, ClangTidyContext
*Context
)
28 : ClangTidyCheck(Name
, Context
),
29 AllowedRegexp(Options
.get("AllowedRegexp", "^DEBUG_*")),
30 CheckCapsOnly(Options
.get("CheckCapsOnly", false)),
31 IgnoreCommandLineMacros(Options
.get("IgnoreCommandLineMacros", true)) {}
32 bool isLanguageVersionSupported(const LangOptions
&LangOpts
) const override
{
33 return LangOpts
.CPlusPlus11
;
35 void storeOptions(ClangTidyOptions::OptionMap
&Opts
) override
;
36 void registerPPCallbacks(const SourceManager
&SM
, Preprocessor
*PP
,
37 Preprocessor
*ModuleExpanderPP
) override
;
38 void warnMacro(const MacroDirective
*MD
, StringRef MacroName
);
39 void warnNaming(const MacroDirective
*MD
, StringRef MacroName
);
42 /// A regular expression that defines how allowed macros must look like.
43 std::string AllowedRegexp
;
44 /// Control if only the check shall only test on CAPS_ONLY macros.
46 /// Should the macros without a valid location be diagnosed?
47 bool IgnoreCommandLineMacros
;
50 } // namespace tidy::cppcoreguidelines
53 #endif // LLVM_CLANG_TOOLS_EXTRA_CLANG_TIDY_CPPCOREGUIDELINES_MACROUSAGECHECK_H