rust-clippy/clippy_lints/src/neg_multiply.rs

56 lines
1.8 KiB
Rust
Raw Normal View History

use clippy_utils::consts::{self, Constant};
use clippy_utils::diagnostics::span_lint;
2018-11-27 20:14:15 +00:00
use if_chain::if_chain;
2020-02-21 08:39:38 +00:00
use rustc_hir::{BinOpKind, Expr, ExprKind, UnOp};
2020-01-12 06:08:41 +00:00
use rustc_lint::{LateContext, LateLintPass};
2020-01-11 11:37:08 +00:00
use rustc_session::{declare_lint_pass, declare_tool_lint};
use rustc_span::source_map::Span;
2018-03-28 13:24:26 +00:00
declare_clippy_lint! {
/// ### What it does
/// Checks for multiplication by -1 as a form of negation.
///
/// ### Why is this bad?
/// It's more readable to just negate.
///
/// ### Known problems
/// This only catches integers (for now).
///
/// ### Example
2019-03-05 22:23:50 +00:00
/// ```ignore
/// x * -1
/// ```
pub NEG_MULTIPLY,
2018-03-28 13:24:26 +00:00
style,
2020-01-06 06:30:43 +00:00
"multiplying integers with `-1`"
}
2019-04-08 20:43:55 +00:00
declare_lint_pass!(NegMultiply => [NEG_MULTIPLY]);
2018-08-01 20:48:41 +00:00
#[allow(clippy::match_same_arms)]
impl<'tcx> LateLintPass<'tcx> for NegMultiply {
fn check_expr(&mut self, cx: &LateContext<'tcx>, e: &'tcx Expr<'_>) {
if let ExprKind::Binary(ref op, left, right) = e.kind {
2019-09-29 16:40:38 +00:00
if BinOpKind::Mul == op.node {
match (&left.kind, &right.kind) {
(&ExprKind::Unary(..), &ExprKind::Unary(..)) => {},
(&ExprKind::Unary(UnOp::Neg, lit), _) => check_mul(cx, e.span, lit, right),
(_, &ExprKind::Unary(UnOp::Neg, lit)) => check_mul(cx, e.span, lit, left),
2019-09-29 16:40:38 +00:00
_ => {},
}
}
}
}
}
fn check_mul(cx: &LateContext<'_>, span: Span, lit: &Expr<'_>, exp: &Expr<'_>) {
if_chain! {
2019-09-27 15:16:06 +00:00
if let ExprKind::Lit(ref l) = lit.kind;
if consts::lit_to_constant(&l.node, cx.typeck_results().expr_ty_opt(lit)) == Constant::Int(1);
2020-07-17 08:47:04 +00:00
if cx.typeck_results().expr_ty(exp).is_integral();
then {
span_lint(cx, NEG_MULTIPLY, span, "negation by multiplying with `-1`");
}
}
}