9#ifndef LLVM_CLANG_TOOLS_EXTRA_CLANG_TIDY_READABILITY_MAGICNUMBERSCHECK_H
10#define LLVM_CLANG_TOOLS_EXTRA_CLANG_TIDY_READABILITY_MAGICNUMBERSCHECK_H
12#include "../ClangTidyCheck.h"
13#include "clang/Lex/Lexer.h"
14#include <llvm/ADT/APFloat.h>
15#include <llvm/ADT/SmallVector.h>
28 void check(
const ast_matchers::MatchFinder::MatchResult &Result)
override;
31 bool isConstant(
const clang::ast_matchers::MatchFinder::MatchResult &Result,
32 const clang::Expr &ExprResult)
const;
34 bool isIgnoredValue(
const IntegerLiteral *Literal)
const;
35 bool isIgnoredValue(
const FloatingLiteral *Literal)
const;
37 bool isSyntheticValue(
const clang::SourceManager *,
38 const FloatingLiteral *)
const {
41 bool isSyntheticValue(
const clang::SourceManager *SourceManager,
42 const IntegerLiteral *Literal)
const;
44 bool isBitFieldWidth(
const clang::ast_matchers::MatchFinder::MatchResult &,
45 const FloatingLiteral &)
const {
49 bool isBitFieldWidth(
const clang::ast_matchers::MatchFinder::MatchResult &Result,
50 const IntegerLiteral &Literal)
const;
52 bool isUserDefinedLiteral(
53 const clang::ast_matchers::MatchFinder::MatchResult &Result,
54 const clang::Expr &Literal)
const;
57 void checkBoundMatch(
const ast_matchers::MatchFinder::MatchResult &Result,
58 const char *BoundName) {
59 const L *MatchedLiteral = Result.Nodes.getNodeAs<L>(BoundName);
63 if (Result.SourceManager->isMacroBodyExpansion(
64 MatchedLiteral->getLocation()))
67 if (isIgnoredValue(MatchedLiteral))
70 if (isConstant(Result, *MatchedLiteral))
73 if (isSyntheticValue(Result.SourceManager, MatchedLiteral))
76 if (isBitFieldWidth(Result, *MatchedLiteral))
79 if (IgnoreUserDefinedLiterals &&
80 isUserDefinedLiteral(Result, *MatchedLiteral))
83 const StringRef LiteralSourceText = Lexer::getSourceText(
84 CharSourceRange::getTokenRange(MatchedLiteral->getSourceRange()),
87 diag(MatchedLiteral->getLocation(),
88 "%0 is a magic number; consider replacing it with a named constant")
92 const bool IgnoreAllFloatingPointValues;
93 const bool IgnoreBitFieldsWidths;
94 const bool IgnorePowersOf2IntegerValues;
95 const bool IgnoreTypeAliases;
96 const bool IgnoreUserDefinedLiterals;
97 const StringRef RawIgnoredIntegerValues;
98 const StringRef RawIgnoredFloatingPointValues;
100 constexpr static unsigned SensibleNumberOfMagicValueExceptions = 16;
102 constexpr static llvm::APFloat::roundingMode DefaultRoundingMode =
103 llvm::APFloat::rmNearestTiesToEven;
105 llvm::SmallVector<int64_t, SensibleNumberOfMagicValueExceptions>
106 IgnoredIntegerValues;
107 llvm::SmallVector<float, SensibleNumberOfMagicValueExceptions>
108 IgnoredFloatingPointValues;
109 llvm::SmallVector<double, SensibleNumberOfMagicValueExceptions>
110 IgnoredDoublePointValues;
llvm::SmallString< 256U > Name
Base class for all clang-tidy checks.
DiagnosticBuilder diag(SourceLocation Loc, StringRef Description, DiagnosticIDs::Level Level=DiagnosticIDs::Warning)
Add a diagnostic with the check's name.
const LangOptions & getLangOpts() const
Returns the language options from the context.
Every ClangTidyCheck reports errors through a DiagnosticsEngine provided by this context.
Detects magic numbers, integer and floating point literals embedded in code.
void storeOptions(ClangTidyOptions::OptionMap &Opts) override
Should store all options supported by this check with their current values or default values for opti...
void check(const ast_matchers::MatchFinder::MatchResult &Result) override
ClangTidyChecks that register ASTMatchers should do the actual work in here.
void registerMatchers(ast_matchers::MatchFinder *Finder) override
Override this to register AST matchers with Finder.
llvm::StringMap< ClangTidyValue > OptionMap