2016-04-17 21:33:21 +00:00
|
|
|
use rustc::hir::*;
|
|
|
|
use rustc::lint::*;
|
|
|
|
use syntax::codemap::{Span, Spanned};
|
|
|
|
|
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
|
|
|
|
|
|
|
/// **What it does:** Checks for multiplication by -1 as a form of negation.
|
|
|
|
///
|
|
|
|
/// **Why is this bad?** It's more readable to just negate.
|
|
|
|
///
|
2016-08-06 07:55:04 +00:00
|
|
|
/// **Known problems:** This only catches integers (for now).
|
2016-04-17 21:33:21 +00:00
|
|
|
///
|
2016-07-15 22:25:44 +00:00
|
|
|
/// **Example:**
|
|
|
|
/// ```rust
|
|
|
|
/// x * -1
|
|
|
|
/// ```
|
2018-03-28 13:24:26 +00:00
|
|
|
declare_clippy_lint! {
|
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
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Copy, Clone)]
|
|
|
|
pub struct NegMultiply;
|
|
|
|
|
|
|
|
impl LintPass for NegMultiply {
|
|
|
|
fn get_lints(&self) -> LintArray {
|
|
|
|
lint_array!(NEG_MULTIPLY)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[allow(match_same_arms)]
|
2016-12-07 12:13:40 +00:00
|
|
|
impl<'a, 'tcx> LateLintPass<'a, 'tcx> for NegMultiply {
|
|
|
|
fn check_expr(&mut self, cx: &LateContext<'a, 'tcx>, e: &'tcx Expr) {
|
2016-04-17 21:33:21 +00:00
|
|
|
if let ExprBinary(Spanned { node: BiMul, .. }, ref l, ref r) = e.node {
|
|
|
|
match (&l.node, &r.node) {
|
|
|
|
(&ExprUnary(..), &ExprUnary(..)) => (),
|
|
|
|
(&ExprUnary(UnNeg, ref lit), _) => check_mul(cx, e.span, lit, r),
|
|
|
|
(_, &ExprUnary(UnNeg, ref lit)) => check_mul(cx, e.span, lit, l),
|
2016-06-05 23:42:39 +00:00
|
|
|
_ => (),
|
2016-04-17 21:33:21 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn check_mul(cx: &LateContext, span: Span, lit: &Expr, exp: &Expr) {
|
2017-10-23 19:18:02 +00:00
|
|
|
if_chain! {
|
|
|
|
if let ExprLit(ref l) = lit.node;
|
2018-03-13 10:38:11 +00:00
|
|
|
if let Constant::Int(val) = consts::lit_to_constant(&l.node, cx.tables.expr_ty(lit));
|
2017-10-23 19:18:02 +00:00
|
|
|
if val == 1;
|
|
|
|
if cx.tables.expr_ty(exp).is_integral();
|
|
|
|
then {
|
|
|
|
span_lint(cx,
|
|
|
|
NEG_MULTIPLY,
|
|
|
|
span,
|
|
|
|
"Negation by multiplying with -1");
|
|
|
|
}
|
|
|
|
}
|
2016-04-17 21:33:21 +00:00
|
|
|
}
|