9#ifndef LLVM_CLANG_TOOLS_EXTRA_CLANG_TIDY_BUGPRONE_IMPLICITWIDENINGOFMULTIPLICATIONRESULTCHECK_H
10#define LLVM_CLANG_TOOLS_EXTRA_CLANG_TIDY_BUGPRONE_IMPLICITWIDENINGOFMULTIPLICATIONRESULTCHECK_H
12#include "../ClangTidyCheck.h"
13#include "../utils/IncludeInserter.h"
23 const ast_matchers::MatchFinder::MatchResult *Result;
24 bool ShouldUseCXXStaticCast;
25 bool ShouldUseCXXHeader;
27 std::optional<FixItHint> includeStddefHeader(SourceLocation File);
29 void handleImplicitCastExpr(
const ImplicitCastExpr *ICE);
30 void handlePointerOffsetting(
const Expr *
E);
36 Preprocessor *ModuleExpanderPP)
override;
38 void check(
const ast_matchers::MatchFinder::MatchResult &Result)
override;
42 const bool UseCXXStaticCastsInCppSources;
43 const bool UseCXXHeadersInCppSources;
44 const bool IgnoreConstantIntExpr;
llvm::SmallString< 256U > Name
Base class for all clang-tidy checks.
Every ClangTidyCheck reports errors through a DiagnosticsEngine provided by this context.
Diagnoses instances of an implicit widening of multiplication result.
void registerPPCallbacks(const SourceManager &SM, Preprocessor *PP, Preprocessor *ModuleExpanderPP) override
Override this to register PPCallbacks in the preprocessor.
void storeOptions(ClangTidyOptions::OptionMap &Opts) override
Should store all options supported by this check with their current values or default values for opti...
void registerMatchers(ast_matchers::MatchFinder *Finder) override
Override this to register AST matchers with Finder.
void check(const ast_matchers::MatchFinder::MatchResult &Result) override
ClangTidyChecks that register ASTMatchers should do the actual work in here.
Produces fixes to insert specified includes to source files, if not yet present.
llvm::StringMap< ClangTidyValue > OptionMap