2018-11-27 20:14:15 +00:00
|
|
|
use if_chain::if_chain;
|
2018-12-29 15:04:45 +00:00
|
|
|
use rustc::hir::*;
|
|
|
|
use rustc::lint::{LateContext, LateLintPass, LintArray, LintPass};
|
|
|
|
use rustc::{declare_tool_lint, lint_array};
|
|
|
|
use syntax::source_map::{Span, Spanned};
|
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:**
|
|
|
|
/// ```rust
|
|
|
|
/// 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
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Copy, Clone)]
|
|
|
|
pub struct NegMultiply;
|
|
|
|
|
|
|
|
impl LintPass for NegMultiply {
|
|
|
|
fn get_lints(&self) -> LintArray {
|
|
|
|
lint_array!(NEG_MULTIPLY)
|
|
|
|
}
|
2019-01-26 19:40:55 +00:00
|
|
|
|
|
|
|
fn name(&self) -> &'static str {
|
|
|
|
"NegMultiply"
|
|
|
|
}
|
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 {
|
|
|
|
fn check_expr(&mut self, cx: &LateContext<'a, 'tcx>, e: &'tcx Expr) {
|
2018-11-27 20:14:15 +00:00
|
|
|
if let ExprKind::Binary(
|
|
|
|
Spanned {
|
|
|
|
node: BinOpKind::Mul, ..
|
|
|
|
},
|
|
|
|
ref l,
|
|
|
|
ref r,
|
|
|
|
) = e.node
|
|
|
|
{
|
2016-04-17 21:33:21 +00:00
|
|
|
match (&l.node, &r.node) {
|
2018-07-12 07:30:57 +00:00
|
|
|
(&ExprKind::Unary(..), &ExprKind::Unary(..)) => (),
|
|
|
|
(&ExprKind::Unary(UnNeg, ref lit), _) => check_mul(cx, e.span, lit, r),
|
|
|
|
(_, &ExprKind::Unary(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
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-07-23 11:01:12 +00:00
|
|
|
fn check_mul(cx: &LateContext<'_, '_>, span: Span, lit: &Expr, exp: &Expr) {
|
2017-10-23 19:18:02 +00:00
|
|
|
if_chain! {
|
2018-07-12 07:30:57 +00:00
|
|
|
if let ExprKind::Lit(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
|
|
|
}
|