2021-03-15 19:55:45 -05:00
|
|
|
use clippy_utils::diagnostics::span_lint;
|
2018-11-27 14:14:15 -06:00
|
|
|
use if_chain::if_chain;
|
2020-02-21 02:39:38 -06:00
|
|
|
use rustc_hir::{BinOpKind, Expr, ExprKind, UnOp};
|
2020-01-12 00:08:41 -06:00
|
|
|
use rustc_lint::{LateContext, LateLintPass};
|
2020-01-11 05:37:08 -06:00
|
|
|
use rustc_session::{declare_lint_pass, declare_tool_lint};
|
2020-01-04 04:00:00 -06:00
|
|
|
use rustc_span::source_map::Span;
|
2016-04-17 16:33:21 -05:00
|
|
|
|
2018-05-30 03:15:50 -05:00
|
|
|
use crate::consts::{self, Constant};
|
2016-04-17 16:33:21 -05:00
|
|
|
|
2018-03-28 08:24:26 -05:00
|
|
|
declare_clippy_lint! {
|
2019-03-05 10:50:33 -06:00
|
|
|
/// **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 16:23:50 -06:00
|
|
|
/// ```ignore
|
2019-03-05 10:50:33 -06:00
|
|
|
/// x * -1
|
|
|
|
/// ```
|
2016-04-17 16:33:21 -05:00
|
|
|
pub NEG_MULTIPLY,
|
2018-03-28 08:24:26 -05:00
|
|
|
style,
|
2020-01-06 00:30:43 -06:00
|
|
|
"multiplying integers with `-1`"
|
2016-04-17 16:33:21 -05:00
|
|
|
}
|
|
|
|
|
2019-04-08 15:43:55 -05:00
|
|
|
declare_lint_pass!(NegMultiply => [NEG_MULTIPLY]);
|
2016-04-17 16:33:21 -05:00
|
|
|
|
2018-08-01 15:48:41 -05:00
|
|
|
#[allow(clippy::match_same_arms)]
|
2020-06-25 15:41:36 -05:00
|
|
|
impl<'tcx> LateLintPass<'tcx> for NegMultiply {
|
|
|
|
fn check_expr(&mut self, cx: &LateContext<'tcx>, e: &'tcx Expr<'_>) {
|
2019-09-29 11:40:38 -05:00
|
|
|
if let ExprKind::Binary(ref op, ref left, ref right) = e.kind {
|
|
|
|
if BinOpKind::Mul == op.node {
|
|
|
|
match (&left.kind, &right.kind) {
|
|
|
|
(&ExprKind::Unary(..), &ExprKind::Unary(..)) => {},
|
2021-02-09 02:15:53 -06:00
|
|
|
(&ExprKind::Unary(UnOp::Neg, ref lit), _) => check_mul(cx, e.span, lit, right),
|
|
|
|
(_, &ExprKind::Unary(UnOp::Neg, ref lit)) => check_mul(cx, e.span, lit, left),
|
2019-09-29 11:40:38 -05:00
|
|
|
_ => {},
|
|
|
|
}
|
2016-04-17 16:33:21 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-06-25 15:41:36 -05:00
|
|
|
fn check_mul(cx: &LateContext<'_>, span: Span, lit: &Expr<'_>, exp: &Expr<'_>) {
|
2017-10-23 14:18:02 -05:00
|
|
|
if_chain! {
|
2019-09-27 10:16:06 -05:00
|
|
|
if let ExprKind::Lit(ref l) = lit.kind;
|
2020-07-17 03:47:04 -05:00
|
|
|
if let Constant::Int(1) = consts::lit_to_constant(&l.node, cx.typeck_results().expr_ty_opt(lit));
|
|
|
|
if cx.typeck_results().expr_ty(exp).is_integral();
|
2017-10-23 14:18:02 -05:00
|
|
|
then {
|
2020-08-11 08:43:21 -05:00
|
|
|
span_lint(cx, NEG_MULTIPLY, span, "negation by multiplying with `-1`");
|
2017-10-23 14:18:02 -05:00
|
|
|
}
|
|
|
|
}
|
2016-04-17 16:33:21 -05:00
|
|
|
}
|