2018-05-23 15:58:41 +08:00
|
|
|
//===--- NarrowingConversionsCheck.h - clang-tidy----------------*- C++ -*-===//
|
|
|
|
//
|
2019-01-19 16:50:56 +08:00
|
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
2018-05-23 15:58:41 +08:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef LLVM_CLANG_TOOLS_EXTRA_CLANG_TIDY_CPPCOREGUIDELINES_NARROWING_CONVERSIONS_H
|
|
|
|
#define LLVM_CLANG_TOOLS_EXTRA_CLANG_TIDY_CPPCOREGUIDELINES_NARROWING_CONVERSIONS_H
|
|
|
|
|
2020-06-29 23:05:51 +08:00
|
|
|
#include "../ClangTidyCheck.h"
|
2018-05-23 15:58:41 +08:00
|
|
|
|
|
|
|
namespace clang {
|
|
|
|
namespace tidy {
|
|
|
|
namespace cppcoreguidelines {
|
|
|
|
|
|
|
|
/// Checks for narrowing conversions, e.g:
|
|
|
|
/// int i = 0;
|
|
|
|
/// i += 0.1;
|
|
|
|
///
|
|
|
|
/// For the user-facing documentation see:
|
|
|
|
/// http://clang.llvm.org/extra/clang-tidy/checks/cppcoreguidelines-narrowing-conversions.html
|
|
|
|
class NarrowingConversionsCheck : public ClangTidyCheck {
|
|
|
|
public:
|
[clang-tidy] Improving narrowing conversions
Summary:
Newly flagged narrowing conversions:
- integer to narrower signed integer (this is compiler implementation defined),
- integer - floating point narrowing conversions,
- floating point - integer narrowing conversions,
- constants with narrowing conversions (even in ternary operator).
Reviewers: hokein, alexfh, aaron.ballman, JonasToth
Reviewed By: aaron.ballman, JonasToth
Subscribers: lebedev.ri, courbet, nemanjai, xazax.hun, kbarton, cfe-commits
Tags: #clang-tools-extra
Differential Revision: https://reviews.llvm.org/D53488
llvm-svn: 347570
2018-11-27 00:25:55 +08:00
|
|
|
NarrowingConversionsCheck(StringRef Name, ClangTidyContext *Context);
|
|
|
|
|
2020-06-22 02:01:09 +08:00
|
|
|
void storeOptions(ClangTidyOptions::OptionMap &Opts) override;
|
|
|
|
|
2018-05-23 15:58:41 +08:00
|
|
|
void registerMatchers(ast_matchers::MatchFinder *Finder) override;
|
|
|
|
void check(const ast_matchers::MatchFinder::MatchResult &Result) override;
|
[clang-tidy] Improving narrowing conversions
Summary:
Newly flagged narrowing conversions:
- integer to narrower signed integer (this is compiler implementation defined),
- integer - floating point narrowing conversions,
- floating point - integer narrowing conversions,
- constants with narrowing conversions (even in ternary operator).
Reviewers: hokein, alexfh, aaron.ballman, JonasToth
Reviewed By: aaron.ballman, JonasToth
Subscribers: lebedev.ri, courbet, nemanjai, xazax.hun, kbarton, cfe-commits
Tags: #clang-tools-extra
Differential Revision: https://reviews.llvm.org/D53488
llvm-svn: 347570
2018-11-27 00:25:55 +08:00
|
|
|
|
|
|
|
private:
|
|
|
|
void diagNarrowType(SourceLocation SourceLoc, const Expr &Lhs,
|
|
|
|
const Expr &Rhs);
|
|
|
|
|
|
|
|
void diagNarrowTypeToSignedInt(SourceLocation SourceLoc, const Expr &Lhs,
|
|
|
|
const Expr &Rhs);
|
|
|
|
|
|
|
|
void diagNarrowIntegerConstant(SourceLocation SourceLoc, const Expr &Lhs,
|
|
|
|
const Expr &Rhs, const llvm::APSInt &Value);
|
|
|
|
|
|
|
|
void diagNarrowIntegerConstantToSignedInt(SourceLocation SourceLoc,
|
|
|
|
const Expr &Lhs, const Expr &Rhs,
|
|
|
|
const llvm::APSInt &Value,
|
|
|
|
const uint64_t HexBits);
|
|
|
|
|
|
|
|
void diagNarrowConstant(SourceLocation SourceLoc, const Expr &Lhs,
|
|
|
|
const Expr &Rhs);
|
|
|
|
|
|
|
|
void diagConstantCast(SourceLocation SourceLoc, const Expr &Lhs,
|
|
|
|
const Expr &Rhs);
|
|
|
|
|
|
|
|
void diagNarrowTypeOrConstant(const ASTContext &Context,
|
|
|
|
SourceLocation SourceLoc, const Expr &Lhs,
|
|
|
|
const Expr &Rhs);
|
|
|
|
|
|
|
|
void handleIntegralCast(const ASTContext &Context, SourceLocation SourceLoc,
|
|
|
|
const Expr &Lhs, const Expr &Rhs);
|
|
|
|
|
|
|
|
void handleIntegralToBoolean(const ASTContext &Context,
|
|
|
|
SourceLocation SourceLoc, const Expr &Lhs,
|
|
|
|
const Expr &Rhs);
|
|
|
|
|
|
|
|
void handleIntegralToFloating(const ASTContext &Context,
|
|
|
|
SourceLocation SourceLoc, const Expr &Lhs,
|
|
|
|
const Expr &Rhs);
|
|
|
|
|
|
|
|
void handleFloatingToIntegral(const ASTContext &Context,
|
|
|
|
SourceLocation SourceLoc, const Expr &Lhs,
|
|
|
|
const Expr &Rhs);
|
|
|
|
|
|
|
|
void handleFloatingToBoolean(const ASTContext &Context,
|
|
|
|
SourceLocation SourceLoc, const Expr &Lhs,
|
|
|
|
const Expr &Rhs);
|
|
|
|
|
|
|
|
void handleBooleanToSignedIntegral(const ASTContext &Context,
|
|
|
|
SourceLocation SourceLoc, const Expr &Lhs,
|
|
|
|
const Expr &Rhs);
|
|
|
|
|
|
|
|
void handleFloatingCast(const ASTContext &Context, SourceLocation SourceLoc,
|
|
|
|
const Expr &Lhs, const Expr &Rhs);
|
|
|
|
|
|
|
|
void handleBinaryOperator(const ASTContext &Context, SourceLocation SourceLoc,
|
|
|
|
const Expr &Lhs, const Expr &Rhs);
|
|
|
|
|
|
|
|
bool handleConditionalOperator(const ASTContext &Context, const Expr &Lhs,
|
|
|
|
const Expr &Rhs);
|
|
|
|
|
|
|
|
void handleImplicitCast(const ASTContext &Context,
|
|
|
|
const ImplicitCastExpr &Cast);
|
|
|
|
|
|
|
|
void handleBinaryOperator(const ASTContext &Context,
|
|
|
|
const BinaryOperator &Op);
|
|
|
|
|
2021-06-10 23:12:12 +08:00
|
|
|
bool isWarningInhibitedByEquivalentSize(const ASTContext &Context,
|
|
|
|
const BuiltinType &FromType,
|
|
|
|
const BuiltinType &ToType) const;
|
|
|
|
|
2021-06-10 20:41:57 +08:00
|
|
|
const bool WarnOnIntegerNarrowingConversion;
|
2021-12-16 21:24:09 +08:00
|
|
|
const bool WarnOnIntegerToFloatingPointNarrowingConversion;
|
[clang-tidy] Improving narrowing conversions
Summary:
Newly flagged narrowing conversions:
- integer to narrower signed integer (this is compiler implementation defined),
- integer - floating point narrowing conversions,
- floating point - integer narrowing conversions,
- constants with narrowing conversions (even in ternary operator).
Reviewers: hokein, alexfh, aaron.ballman, JonasToth
Reviewed By: aaron.ballman, JonasToth
Subscribers: lebedev.ri, courbet, nemanjai, xazax.hun, kbarton, cfe-commits
Tags: #clang-tools-extra
Differential Revision: https://reviews.llvm.org/D53488
llvm-svn: 347570
2018-11-27 00:25:55 +08:00
|
|
|
const bool WarnOnFloatingPointNarrowingConversion;
|
2021-05-13 02:25:22 +08:00
|
|
|
const bool WarnWithinTemplateInstantiation;
|
|
|
|
const bool WarnOnEquivalentBitWidth;
|
|
|
|
const std::string IgnoreConversionFromTypes;
|
[clang-tidy] Improving narrowing conversions
Summary:
Newly flagged narrowing conversions:
- integer to narrower signed integer (this is compiler implementation defined),
- integer - floating point narrowing conversions,
- floating point - integer narrowing conversions,
- constants with narrowing conversions (even in ternary operator).
Reviewers: hokein, alexfh, aaron.ballman, JonasToth
Reviewed By: aaron.ballman, JonasToth
Subscribers: lebedev.ri, courbet, nemanjai, xazax.hun, kbarton, cfe-commits
Tags: #clang-tools-extra
Differential Revision: https://reviews.llvm.org/D53488
llvm-svn: 347570
2018-11-27 00:25:55 +08:00
|
|
|
const bool PedanticMode;
|
2018-05-23 15:58:41 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace cppcoreguidelines
|
|
|
|
} // namespace tidy
|
|
|
|
} // namespace clang
|
|
|
|
|
|
|
|
#endif // LLVM_CLANG_TOOLS_EXTRA_CLANG_TIDY_CPPCOREGUIDELINES_NARROWING_CONVERSIONS_H
|