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