clang-tools 22.0.0git
|
This check gives a warning if a loop variable has a too small type which might not be able to represent all values which are part of the whole range in which the loop iterates. More...
#include <TooSmallLoopVariableCheck.h>
Public Member Functions | |
TooSmallLoopVariableCheck (StringRef Name, ClangTidyContext *Context) | |
void | storeOptions (ClangTidyOptions::OptionMap &Opts) override |
void | registerMatchers (ast_matchers::MatchFinder *Finder) override |
The matcher for loops with suspicious integer loop variable. | |
void | check (const ast_matchers::MatchFinder::MatchResult &Result) override |
This check gives a warning if a loop variable has a too small type which might not be able to represent all values which are part of the whole range in which the loop iterates.
If the loop variable's type is too small we might end up in an infinite loop. Example:
For the user-facing documentation see: https://clang.llvm.org/extra/clang-tidy/checks/bugprone/too-small-loop-variable.html
Definition at line 28 of file TooSmallLoopVariableCheck.h.
clang::tidy::bugprone::TooSmallLoopVariableCheck::TooSmallLoopVariableCheck | ( | StringRef | Name, |
ClangTidyContext * | Context ) |
Definition at line 46 of file TooSmallLoopVariableCheck.cpp.
|
override |
Definition at line 185 of file TooSmallLoopVariableCheck.cpp.
References clang::tidy::bugprone::calcMagnitudeBits(), clang::tidy::bugprone::calcUpperBoundMagnitudeBits(), clang::tidy::bugprone::formatIntegralType(), clang::tidy::bugprone::LoopIncrementName, clang::tidy::bugprone::LoopUpperBoundName, and clang::tidy::bugprone::LoopVarName.
|
override |
The matcher for loops with suspicious integer loop variable.
In this general example, assuming 'j' and 'k' are of integral type:
The following string identifiers are bound to these parts of the AST: LoopVarName: 'j' (as a VarDecl) LoopVarCastName: 'j' (after implicit conversion) LoopUpperBoundName: '3 + 2' (as an Expr) LoopIncrementName: 'k' (as an Expr) LoopName: The entire for loop (as a ForStmt)
Definition at line 69 of file TooSmallLoopVariableCheck.cpp.
References clang::tidy::bugprone::LoopIncrementName, clang::tidy::bugprone::LoopName, clang::tidy::bugprone::LoopUpperBoundName, clang::tidy::bugprone::LoopVarCastName, and clang::tidy::bugprone::LoopVarName.
|
override |
Definition at line 51 of file TooSmallLoopVariableCheck.cpp.