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