2018-10-06 11:18:06 -05:00
|
|
|
// Copyright 2014-2018 The Rust Project Developers. See the COPYRIGHT
|
|
|
|
// file at the top-level directory of this distribution.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
// option. This file may not be copied, modified, or distributed
|
|
|
|
// except according to those terms.
|
|
|
|
|
|
|
|
|
2018-09-15 02:21:58 -05:00
|
|
|
use crate::rustc::hir::*;
|
|
|
|
use crate::rustc::lint::{LateContext, LateLintPass, LintArray, LintPass};
|
|
|
|
use crate::rustc::{declare_tool_lint, lint_array};
|
2018-07-19 03:00:54 -05:00
|
|
|
use if_chain::if_chain;
|
2018-09-15 02:21:58 -05:00
|
|
|
use crate::syntax::source_map::{Span, Spanned};
|
2016-04-17 16:33:21 -05:00
|
|
|
|
2018-05-30 03:15:50 -05:00
|
|
|
use crate::consts::{self, Constant};
|
|
|
|
use crate::utils::span_lint;
|
2016-04-17 16:33:21 -05: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 02:55:04 -05:00
|
|
|
/// **Known problems:** This only catches integers (for now).
|
2016-04-17 16:33:21 -05:00
|
|
|
///
|
2016-07-15 17:25:44 -05:00
|
|
|
/// **Example:**
|
|
|
|
/// ```rust
|
|
|
|
/// x * -1
|
|
|
|
/// ```
|
2018-03-28 08:24:26 -05:00
|
|
|
declare_clippy_lint! {
|
2016-04-17 16:33:21 -05:00
|
|
|
pub NEG_MULTIPLY,
|
2018-03-28 08:24:26 -05:00
|
|
|
style,
|
2016-08-06 03:18:36 -05:00
|
|
|
"multiplying integers with -1"
|
2016-04-17 16:33:21 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Copy, Clone)]
|
|
|
|
pub struct NegMultiply;
|
|
|
|
|
|
|
|
impl LintPass for NegMultiply {
|
|
|
|
fn get_lints(&self) -> LintArray {
|
|
|
|
lint_array!(NEG_MULTIPLY)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-08-01 15:48:41 -05:00
|
|
|
#[allow(clippy::match_same_arms)]
|
2016-12-07 06:13:40 -06:00
|
|
|
impl<'a, 'tcx> LateLintPass<'a, 'tcx> for NegMultiply {
|
|
|
|
fn check_expr(&mut self, cx: &LateContext<'a, 'tcx>, e: &'tcx Expr) {
|
2018-07-12 02:50:09 -05:00
|
|
|
if let ExprKind::Binary(Spanned { node: BinOpKind::Mul, .. }, ref l, ref r) = e.node {
|
2016-04-17 16:33:21 -05:00
|
|
|
match (&l.node, &r.node) {
|
2018-07-12 02:30:57 -05: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 18:42:39 -05:00
|
|
|
_ => (),
|
2016-04-17 16:33:21 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-07-23 06:01:12 -05:00
|
|
|
fn check_mul(cx: &LateContext<'_, '_>, span: Span, lit: &Expr, exp: &Expr) {
|
2017-10-23 14:18:02 -05:00
|
|
|
if_chain! {
|
2018-07-12 02:30:57 -05:00
|
|
|
if let ExprKind::Lit(ref l) = lit.node;
|
2018-03-13 05:38:11 -05:00
|
|
|
if let Constant::Int(val) = consts::lit_to_constant(&l.node, cx.tables.expr_ty(lit));
|
2017-10-23 14:18:02 -05: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 16:33:21 -05:00
|
|
|
}
|