2018-10-06 16:18:06 +00: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 07:21:58 +00:00
|
|
|
use crate::rustc::lint::{EarlyContext, EarlyLintPass, LintArray, LintPass};
|
|
|
|
use crate::rustc::{declare_tool_lint, lint_array};
|
2018-11-20 13:06:29 +00:00
|
|
|
use crate::rustc_errors::Applicability;
|
2018-09-15 07:21:58 +00:00
|
|
|
use crate::syntax::ast::*;
|
|
|
|
use crate::syntax::source_map::Spanned;
|
2018-11-27 14:13:57 +00:00
|
|
|
use crate::utils::{in_macro, snippet_with_applicability, span_lint_and_sugg};
|
2015-08-30 15:32:35 +00:00
|
|
|
|
2016-08-06 07:55:04 +00:00
|
|
|
/// **What it does:** Checks for operations where precedence may be unclear
|
|
|
|
/// and suggests to add parentheses. Currently it catches the following:
|
2017-08-09 07:30:56 +00:00
|
|
|
/// * mixed usage of arithmetic and bit shifting/combining operators without
|
|
|
|
/// parentheses
|
|
|
|
/// * a "negative" numeric literal (which is really a unary `-` followed by a
|
|
|
|
/// numeric literal)
|
2016-07-15 22:25:44 +00:00
|
|
|
/// followed by a method call
|
2015-12-11 00:22:27 +00:00
|
|
|
///
|
2016-08-06 07:55:04 +00:00
|
|
|
/// **Why is this bad?** Not everyone knows the precedence of those operators by
|
|
|
|
/// heart, so expressions like these may trip others trying to reason about the
|
|
|
|
/// code.
|
2015-12-11 00:22:27 +00:00
|
|
|
///
|
2016-08-06 07:55:04 +00:00
|
|
|
/// **Known problems:** None.
|
2015-12-11 00:22:27 +00:00
|
|
|
///
|
2016-08-06 07:55:04 +00:00
|
|
|
/// **Example:**
|
2015-12-11 00:22:27 +00:00
|
|
|
/// * `1 << 2 + 3` equals 32, while `(1 << 2) + 3` equals 7
|
|
|
|
/// * `-1i32.abs()` equals -1, while `(-1i32).abs()` equals 1
|
2018-03-28 13:24:26 +00:00
|
|
|
declare_clippy_lint! {
|
2016-08-06 08:18:36 +00:00
|
|
|
pub PRECEDENCE,
|
2018-03-28 13:24:26 +00:00
|
|
|
complexity,
|
2016-08-06 08:18:36 +00:00
|
|
|
"operations where precedence may be unclear"
|
2016-02-05 23:13:29 +00:00
|
|
|
}
|
2015-08-30 15:32:35 +00:00
|
|
|
|
2017-08-09 07:30:56 +00:00
|
|
|
#[derive(Copy, Clone)]
|
2015-08-30 15:32:35 +00:00
|
|
|
pub struct Precedence;
|
|
|
|
|
|
|
|
impl LintPass for Precedence {
|
|
|
|
fn get_lints(&self) -> LintArray {
|
|
|
|
lint_array!(PRECEDENCE)
|
|
|
|
}
|
2015-09-19 02:53:04 +00:00
|
|
|
}
|
2015-08-30 15:32:35 +00:00
|
|
|
|
2015-09-19 02:53:04 +00:00
|
|
|
impl EarlyLintPass for Precedence {
|
2018-07-23 11:01:12 +00:00
|
|
|
fn check_expr(&mut self, cx: &EarlyContext<'_>, expr: &Expr) {
|
2018-01-16 14:52:16 +00:00
|
|
|
if in_macro(expr.span) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2016-04-14 18:14:03 +00:00
|
|
|
if let ExprKind::Binary(Spanned { node: op, .. }, ref left, ref right) = expr.node {
|
2018-11-27 14:13:57 +00:00
|
|
|
let span_sugg = |expr: &Expr, sugg, appl| {
|
2017-08-09 07:30:56 +00:00
|
|
|
span_lint_and_sugg(
|
|
|
|
cx,
|
|
|
|
PRECEDENCE,
|
|
|
|
expr.span,
|
|
|
|
"operator precedence can trip the unwary",
|
|
|
|
"consider parenthesizing your expression",
|
|
|
|
sugg,
|
2018-11-27 14:13:57 +00:00
|
|
|
appl,
|
2017-08-09 07:30:56 +00:00
|
|
|
);
|
2017-06-29 14:07:43 +00:00
|
|
|
};
|
2017-01-22 13:51:13 +00:00
|
|
|
|
2016-01-04 04:26:12 +00:00
|
|
|
if !is_bit_op(op) {
|
|
|
|
return;
|
|
|
|
}
|
2018-11-27 14:13:57 +00:00
|
|
|
let mut applicability = Applicability::MachineApplicable;
|
2015-10-13 11:48:48 +00:00
|
|
|
match (is_arith_expr(left), is_arith_expr(right)) {
|
2015-12-31 20:39:03 +00:00
|
|
|
(true, true) => {
|
2017-08-09 07:30:56 +00:00
|
|
|
let sugg = format!(
|
|
|
|
"({}) {} ({})",
|
2018-11-27 14:13:57 +00:00
|
|
|
snippet_with_applicability(cx, left.span, "..", &mut applicability),
|
2017-08-09 07:30:56 +00:00
|
|
|
op.to_string(),
|
2018-11-27 14:13:57 +00:00
|
|
|
snippet_with_applicability(cx, right.span, "..", &mut applicability)
|
2017-08-09 07:30:56 +00:00
|
|
|
);
|
2018-11-27 14:13:57 +00:00
|
|
|
span_sugg(expr, sugg, applicability);
|
2016-12-20 17:21:30 +00:00
|
|
|
},
|
2015-12-31 20:39:03 +00:00
|
|
|
(true, false) => {
|
2017-08-09 07:30:56 +00:00
|
|
|
let sugg = format!(
|
|
|
|
"({}) {} {}",
|
2018-11-27 14:13:57 +00:00
|
|
|
snippet_with_applicability(cx, left.span, "..", &mut applicability),
|
2017-08-09 07:30:56 +00:00
|
|
|
op.to_string(),
|
2018-11-27 14:13:57 +00:00
|
|
|
snippet_with_applicability(cx, right.span, "..", &mut applicability)
|
2017-08-09 07:30:56 +00:00
|
|
|
);
|
2018-11-27 14:13:57 +00:00
|
|
|
span_sugg(expr, sugg, applicability);
|
2016-12-20 17:21:30 +00:00
|
|
|
},
|
2015-12-31 20:39:03 +00:00
|
|
|
(false, true) => {
|
2017-08-09 07:30:56 +00:00
|
|
|
let sugg = format!(
|
|
|
|
"{} {} ({})",
|
2018-11-27 14:13:57 +00:00
|
|
|
snippet_with_applicability(cx, left.span, "..", &mut applicability),
|
2017-08-09 07:30:56 +00:00
|
|
|
op.to_string(),
|
2018-11-27 14:13:57 +00:00
|
|
|
snippet_with_applicability(cx, right.span, "..", &mut applicability)
|
2017-08-09 07:30:56 +00:00
|
|
|
);
|
2018-11-27 14:13:57 +00:00
|
|
|
span_sugg(expr, sugg, applicability);
|
2016-12-20 17:21:30 +00:00
|
|
|
},
|
2017-01-22 13:51:13 +00:00
|
|
|
(false, false) => (),
|
2015-08-30 15:32:35 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-02-12 17:35:44 +00:00
|
|
|
if let ExprKind::Unary(UnOp::Neg, ref rhs) = expr.node {
|
2017-07-10 08:17:40 +00:00
|
|
|
if let ExprKind::MethodCall(_, ref args) = rhs.node {
|
2015-08-30 15:32:35 +00:00
|
|
|
if let Some(slf) = args.first() {
|
2016-02-12 17:35:44 +00:00
|
|
|
if let ExprKind::Lit(ref lit) = slf.node {
|
2015-08-30 15:32:35 +00:00
|
|
|
match lit.node {
|
2017-09-05 09:33:04 +00:00
|
|
|
LitKind::Int(..) | LitKind::Float(..) | LitKind::FloatUnsuffixed(..) => {
|
2018-11-27 14:13:57 +00:00
|
|
|
let mut applicability = Applicability::MachineApplicable;
|
2017-08-09 07:30:56 +00:00
|
|
|
span_lint_and_sugg(
|
|
|
|
cx,
|
|
|
|
PRECEDENCE,
|
|
|
|
expr.span,
|
|
|
|
"unary minus has lower precedence than method call",
|
|
|
|
"consider adding parentheses to clarify your intent",
|
2018-11-27 14:13:57 +00:00
|
|
|
format!("-({})", snippet_with_applicability(cx, rhs.span, "..", &mut applicability)),
|
|
|
|
applicability,
|
2017-08-09 07:30:56 +00:00
|
|
|
);
|
2016-12-20 17:21:30 +00:00
|
|
|
},
|
2016-01-04 04:26:12 +00:00
|
|
|
_ => (),
|
2015-08-30 15:32:35 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-11-17 05:22:57 +00:00
|
|
|
fn is_arith_expr(expr: &Expr) -> bool {
|
2015-08-30 15:32:35 +00:00
|
|
|
match expr.node {
|
2016-04-14 18:14:03 +00:00
|
|
|
ExprKind::Binary(Spanned { node: op, .. }, _, _) => is_arith_op(op),
|
2016-01-04 04:26:12 +00:00
|
|
|
_ => false,
|
2015-08-30 15:32:35 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-02-12 17:35:44 +00:00
|
|
|
fn is_bit_op(op: BinOpKind) -> bool {
|
2018-09-15 07:21:58 +00:00
|
|
|
use crate::syntax::ast::BinOpKind::*;
|
2015-08-30 15:32:35 +00:00
|
|
|
match op {
|
2016-02-12 17:35:44 +00:00
|
|
|
BitXor | BitAnd | BitOr | Shl | Shr => true,
|
2016-01-04 04:26:12 +00:00
|
|
|
_ => false,
|
2015-08-30 15:32:35 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-02-12 17:35:44 +00:00
|
|
|
fn is_arith_op(op: BinOpKind) -> bool {
|
2018-09-15 07:21:58 +00:00
|
|
|
use crate::syntax::ast::BinOpKind::*;
|
2015-08-30 15:32:35 +00:00
|
|
|
match op {
|
2016-02-12 17:35:44 +00:00
|
|
|
Add | Sub | Mul | Div | Rem => true,
|
2016-01-04 04:26:12 +00:00
|
|
|
_ => false,
|
2015-08-30 15:32:35 +00:00
|
|
|
}
|
|
|
|
}
|