2021-06-03 06:41:37 +00:00
|
|
|
use clippy_utils::consts::{self, Constant};
|
2021-12-30 14:10:43 +00:00
|
|
|
use clippy_utils::diagnostics::span_lint_and_sugg;
|
2023-03-10 09:53:50 +00:00
|
|
|
use clippy_utils::source::snippet_with_context;
|
2022-06-30 08:50:09 +00:00
|
|
|
use clippy_utils::sugg::has_enclosing_paren;
|
|
|
|
use rustc_ast::util::parser::PREC_PREFIX;
|
2021-12-30 14:10:43 +00:00
|
|
|
use rustc_errors::Applicability;
|
2020-02-21 08:39:38 +00:00
|
|
|
use rustc_hir::{BinOpKind, Expr, ExprKind, UnOp};
|
2020-01-12 06:08:41 +00:00
|
|
|
use rustc_lint::{LateContext, LateLintPass};
|
2023-12-01 17:21:58 +00:00
|
|
|
use rustc_session::declare_lint_pass;
|
2023-11-02 03:10:12 +00:00
|
|
|
use rustc_span::Span;
|
2016-04-17 21:33:21 +00:00
|
|
|
|
2018-03-28 13:24:26 +00:00
|
|
|
declare_clippy_lint! {
|
2021-07-29 10:16:06 +00:00
|
|
|
/// ### What it does
|
|
|
|
/// Checks for multiplication by -1 as a form of negation.
|
2019-03-05 16:50:33 +00:00
|
|
|
///
|
2021-07-29 10:16:06 +00:00
|
|
|
/// ### Why is this bad?
|
|
|
|
/// It's more readable to just negate.
|
2019-03-05 16:50:33 +00:00
|
|
|
///
|
2021-07-29 10:16:06 +00:00
|
|
|
/// ### Known problems
|
|
|
|
/// This only catches integers (for now).
|
2019-03-05 16:50:33 +00:00
|
|
|
///
|
2021-07-29 10:16:06 +00:00
|
|
|
/// ### Example
|
2022-06-16 15:39:06 +00:00
|
|
|
/// ```rust,ignore
|
2021-12-30 14:10:43 +00:00
|
|
|
/// let a = x * -1;
|
2022-06-16 15:39:06 +00:00
|
|
|
/// ```
|
2021-12-30 14:10:43 +00:00
|
|
|
///
|
2022-06-16 15:39:06 +00:00
|
|
|
/// Use instead:
|
|
|
|
/// ```rust,ignore
|
|
|
|
/// let a = -x;
|
2019-03-05 16:50:33 +00:00
|
|
|
/// ```
|
2021-12-06 11:33:31 +00:00
|
|
|
#[clippy::version = "pre 1.29.0"]
|
2016-04-17 21:33:21 +00:00
|
|
|
pub NEG_MULTIPLY,
|
2018-03-28 13:24:26 +00:00
|
|
|
style,
|
2021-12-30 14:10:43 +00:00
|
|
|
"multiplying integers by `-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
|
|
|
|
2020-06-25 20:41:36 +00:00
|
|
|
impl<'tcx> LateLintPass<'tcx> for NegMultiply {
|
|
|
|
fn check_expr(&mut self, cx: &LateContext<'tcx>, e: &'tcx Expr<'_>) {
|
2021-04-08 15:50:13 +00:00
|
|
|
if let ExprKind::Binary(ref op, left, right) = e.kind {
|
2019-09-29 16:40:38 +00:00
|
|
|
if BinOpKind::Mul == op.node {
|
|
|
|
match (&left.kind, &right.kind) {
|
|
|
|
(&ExprKind::Unary(..), &ExprKind::Unary(..)) => {},
|
2021-04-08 15:50:13 +00:00
|
|
|
(&ExprKind::Unary(UnOp::Neg, lit), _) => check_mul(cx, e.span, lit, right),
|
|
|
|
(_, &ExprKind::Unary(UnOp::Neg, lit)) => check_mul(cx, e.span, lit, left),
|
2019-09-29 16:40:38 +00:00
|
|
|
_ => {},
|
|
|
|
}
|
2016-04-17 21:33:21 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-06-25 20:41:36 +00:00
|
|
|
fn check_mul(cx: &LateContext<'_>, span: Span, lit: &Expr<'_>, exp: &Expr<'_>) {
|
2023-11-16 18:13:24 +00:00
|
|
|
if let ExprKind::Lit(l) = lit.kind
|
|
|
|
&& consts::lit_to_mir_constant(&l.node, cx.typeck_results().expr_ty_opt(lit)) == Constant::Int(1)
|
|
|
|
&& cx.typeck_results().expr_ty(exp).is_integral()
|
|
|
|
{
|
|
|
|
let mut applicability = Applicability::MachineApplicable;
|
|
|
|
let (snip, from_macro) = snippet_with_context(cx, exp.span, span.ctxt(), "..", &mut applicability);
|
|
|
|
let suggestion = if !from_macro && exp.precedence().order() < PREC_PREFIX && !has_enclosing_paren(&snip) {
|
|
|
|
format!("-({snip})")
|
|
|
|
} else {
|
|
|
|
format!("-{snip}")
|
|
|
|
};
|
|
|
|
span_lint_and_sugg(
|
|
|
|
cx,
|
|
|
|
NEG_MULTIPLY,
|
|
|
|
span,
|
|
|
|
"this multiplication by -1 can be written more succinctly",
|
|
|
|
"consider using",
|
|
|
|
suggestion,
|
|
|
|
applicability,
|
|
|
|
);
|
2017-10-23 19:18:02 +00:00
|
|
|
}
|
2016-04-17 21:33:21 +00:00
|
|
|
}
|