clang-tools 17.0.0git
MagicNumbersCheck.h
Go to the documentation of this file.
1//===--- MagicNumbersCheck.h - clang-tidy-----------------------*- C++ -*-===//
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#ifndef LLVM_CLANG_TOOLS_EXTRA_CLANG_TIDY_READABILITY_MAGICNUMBERSCHECK_H
10#define LLVM_CLANG_TOOLS_EXTRA_CLANG_TIDY_READABILITY_MAGICNUMBERSCHECK_H
11
12#include "../ClangTidyCheck.h"
13#include "clang/Lex/Lexer.h"
14#include <llvm/ADT/APFloat.h>
15#include <llvm/ADT/SmallVector.h>
16
18
19/// Detects magic numbers, integer and floating point literals embedded in code.
20///
21/// For the user-facing documentation see:
22/// http://clang.llvm.org/extra/clang-tidy/checks/readability/magic-numbers.html
24public:
25 MagicNumbersCheck(StringRef Name, ClangTidyContext *Context);
26 void storeOptions(ClangTidyOptions::OptionMap &Opts) override;
27 void registerMatchers(ast_matchers::MatchFinder *Finder) override;
28 void check(const ast_matchers::MatchFinder::MatchResult &Result) override;
29
30private:
31 bool isConstant(const clang::ast_matchers::MatchFinder::MatchResult &Result,
32 const clang::Expr &ExprResult) const;
33
34 bool isIgnoredValue(const IntegerLiteral *Literal) const;
35 bool isIgnoredValue(const FloatingLiteral *Literal) const;
36
37 bool isSyntheticValue(const clang::SourceManager *,
38 const FloatingLiteral *) const {
39 return false;
40 }
41 bool isSyntheticValue(const clang::SourceManager *SourceManager,
42 const IntegerLiteral *Literal) const;
43
44 bool isBitFieldWidth(const clang::ast_matchers::MatchFinder::MatchResult &,
45 const FloatingLiteral &) const {
46 return false;
47 }
48
49 bool isBitFieldWidth(const clang::ast_matchers::MatchFinder::MatchResult &Result,
50 const IntegerLiteral &Literal) const;
51
52 template <typename L>
53 void checkBoundMatch(const ast_matchers::MatchFinder::MatchResult &Result,
54 const char *BoundName) {
55 const L *MatchedLiteral = Result.Nodes.getNodeAs<L>(BoundName);
56 if (!MatchedLiteral)
57 return;
58
59 if (Result.SourceManager->isMacroBodyExpansion(
60 MatchedLiteral->getLocation()))
61 return;
62
63 if (isIgnoredValue(MatchedLiteral))
64 return;
65
66 if (isConstant(Result, *MatchedLiteral))
67 return;
68
69 if (isSyntheticValue(Result.SourceManager, MatchedLiteral))
70 return;
71
72 if (isBitFieldWidth(Result, *MatchedLiteral))
73 return;
74
75 const StringRef LiteralSourceText = Lexer::getSourceText(
76 CharSourceRange::getTokenRange(MatchedLiteral->getSourceRange()),
77 *Result.SourceManager, getLangOpts());
78
79 diag(MatchedLiteral->getLocation(),
80 "%0 is a magic number; consider replacing it with a named constant")
81 << LiteralSourceText;
82 }
83
84 const bool IgnoreAllFloatingPointValues;
85 const bool IgnoreBitFieldsWidths;
86 const bool IgnorePowersOf2IntegerValues;
87 const bool IgnoreTypeAliases;
88 const StringRef RawIgnoredIntegerValues;
89 const StringRef RawIgnoredFloatingPointValues;
90
91 constexpr static unsigned SensibleNumberOfMagicValueExceptions = 16;
92
93 constexpr static llvm::APFloat::roundingMode DefaultRoundingMode =
94 llvm::APFloat::rmNearestTiesToEven;
95
96 llvm::SmallVector<int64_t, SensibleNumberOfMagicValueExceptions>
97 IgnoredIntegerValues;
98 llvm::SmallVector<float, SensibleNumberOfMagicValueExceptions>
99 IgnoredFloatingPointValues;
100 llvm::SmallVector<double, SensibleNumberOfMagicValueExceptions>
101 IgnoredDoublePointValues;
102};
103
104} // namespace clang::tidy::readability
105
106#endif // LLVM_CLANG_TOOLS_EXTRA_CLANG_TIDY_READABILITY_MAGICNUMBERSCHECK_H
Token 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