2019-08-19 09:30:32 -07:00
|
|
|
use crate::utils::{snippet_with_applicability, span_lint_and_sugg};
|
2020-03-01 12:23:33 +09:00
|
|
|
use rustc_ast::ast::{BinOpKind, Expr, ExprKind, LitKind, UnOp};
|
2018-12-29 16:04:45 +01:00
|
|
|
use rustc_errors::Applicability;
|
2020-01-12 15:08:41 +09:00
|
|
|
use rustc_lint::{EarlyContext, EarlyLintPass};
|
2020-01-11 20:37:08 +09:00
|
|
|
use rustc_session::{declare_lint_pass, declare_tool_lint};
|
2020-01-04 11:00:00 +01:00
|
|
|
use rustc_span::source_map::Spanned;
|
2015-08-30 17:32:35 +02:00
|
|
|
|
2020-07-07 11:12:44 -04:00
|
|
|
const ALLOWED_ODD_FUNCTIONS: [&str; 14] = [
|
2020-04-10 10:40:49 +02:00
|
|
|
"asin",
|
|
|
|
"asinh",
|
|
|
|
"atan",
|
|
|
|
"atanh",
|
|
|
|
"cbrt",
|
|
|
|
"fract",
|
|
|
|
"round",
|
|
|
|
"signum",
|
|
|
|
"sin",
|
|
|
|
"sinh",
|
|
|
|
"tan",
|
|
|
|
"tanh",
|
|
|
|
"to_degrees",
|
|
|
|
"to_radians",
|
|
|
|
];
|
|
|
|
|
2018-03-28 15:24:26 +02:00
|
|
|
declare_clippy_lint! {
|
2019-03-05 11:50:33 -05:00
|
|
|
/// **What it does:** Checks for operations where precedence may be unclear
|
|
|
|
/// and suggests to add parentheses. Currently it catches the following:
|
|
|
|
/// * 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)
|
|
|
|
/// followed by a method call
|
|
|
|
///
|
|
|
|
/// **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.
|
|
|
|
///
|
|
|
|
/// **Known problems:** None.
|
|
|
|
///
|
|
|
|
/// **Example:**
|
|
|
|
/// * `1 << 2 + 3` equals 32, while `(1 << 2) + 3` equals 7
|
|
|
|
/// * `-1i32.abs()` equals -1, while `(-1i32).abs()` equals 1
|
2016-08-06 10:18:36 +02:00
|
|
|
pub PRECEDENCE,
|
2018-03-28 15:24:26 +02:00
|
|
|
complexity,
|
2016-08-06 10:18:36 +02:00
|
|
|
"operations where precedence may be unclear"
|
2016-02-06 00:13:29 +01:00
|
|
|
}
|
2015-08-30 17:32:35 +02:00
|
|
|
|
2019-04-08 13:43:55 -07:00
|
|
|
declare_lint_pass!(Precedence => [PRECEDENCE]);
|
2015-08-30 17:32:35 +02:00
|
|
|
|
2015-09-19 08:23:04 +05:30
|
|
|
impl EarlyLintPass for Precedence {
|
2018-07-23 13:01:12 +02:00
|
|
|
fn check_expr(&mut self, cx: &EarlyContext<'_>, expr: &Expr) {
|
2019-08-19 09:30:32 -07:00
|
|
|
if expr.span.from_expansion() {
|
2018-01-16 15:52:16 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2019-09-27 17:16:06 +02:00
|
|
|
if let ExprKind::Binary(Spanned { node: op, .. }, ref left, ref right) = expr.kind {
|
2018-11-27 15:13:57 +01:00
|
|
|
let span_sugg = |expr: &Expr, sugg, appl| {
|
2017-08-09 09:30:56 +02:00
|
|
|
span_lint_and_sugg(
|
|
|
|
cx,
|
|
|
|
PRECEDENCE,
|
|
|
|
expr.span,
|
|
|
|
"operator precedence can trip the unwary",
|
|
|
|
"consider parenthesizing your expression",
|
|
|
|
sugg,
|
2018-11-27 15:13:57 +01:00
|
|
|
appl,
|
2017-08-09 09:30:56 +02:00
|
|
|
);
|
2017-06-29 16:07:43 +02:00
|
|
|
};
|
2017-01-22 14:51:13 +01:00
|
|
|
|
2016-01-04 09:56:12 +05:30
|
|
|
if !is_bit_op(op) {
|
|
|
|
return;
|
|
|
|
}
|
2018-11-27 15:13:57 +01:00
|
|
|
let mut applicability = Applicability::MachineApplicable;
|
2015-10-13 13:48:48 +02:00
|
|
|
match (is_arith_expr(left), is_arith_expr(right)) {
|
2016-01-01 02:09:03 +05:30
|
|
|
(true, true) => {
|
2017-08-09 09:30:56 +02:00
|
|
|
let sugg = format!(
|
|
|
|
"({}) {} ({})",
|
2018-11-27 15:13:57 +01:00
|
|
|
snippet_with_applicability(cx, left.span, "..", &mut applicability),
|
2017-08-09 09:30:56 +02:00
|
|
|
op.to_string(),
|
2018-11-27 15:13:57 +01:00
|
|
|
snippet_with_applicability(cx, right.span, "..", &mut applicability)
|
2017-08-09 09:30:56 +02:00
|
|
|
);
|
2018-11-27 15:13:57 +01:00
|
|
|
span_sugg(expr, sugg, applicability);
|
2016-12-20 18:21:30 +01:00
|
|
|
},
|
2016-01-01 02:09:03 +05:30
|
|
|
(true, false) => {
|
2017-08-09 09:30:56 +02:00
|
|
|
let sugg = format!(
|
|
|
|
"({}) {} {}",
|
2018-11-27 15:13:57 +01:00
|
|
|
snippet_with_applicability(cx, left.span, "..", &mut applicability),
|
2017-08-09 09:30:56 +02:00
|
|
|
op.to_string(),
|
2018-11-27 15:13:57 +01:00
|
|
|
snippet_with_applicability(cx, right.span, "..", &mut applicability)
|
2017-08-09 09:30:56 +02:00
|
|
|
);
|
2018-11-27 15:13:57 +01:00
|
|
|
span_sugg(expr, sugg, applicability);
|
2016-12-20 18:21:30 +01:00
|
|
|
},
|
2016-01-01 02:09:03 +05:30
|
|
|
(false, true) => {
|
2017-08-09 09:30:56 +02:00
|
|
|
let sugg = format!(
|
|
|
|
"{} {} ({})",
|
2018-11-27 15:13:57 +01:00
|
|
|
snippet_with_applicability(cx, left.span, "..", &mut applicability),
|
2017-08-09 09:30:56 +02:00
|
|
|
op.to_string(),
|
2018-11-27 15:13:57 +01:00
|
|
|
snippet_with_applicability(cx, right.span, "..", &mut applicability)
|
2017-08-09 09:30:56 +02:00
|
|
|
);
|
2018-11-27 15:13:57 +01:00
|
|
|
span_sugg(expr, sugg, applicability);
|
2016-12-20 18:21:30 +01:00
|
|
|
},
|
2017-01-22 14:51:13 +01:00
|
|
|
(false, false) => (),
|
2015-08-30 17:32:35 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-09-27 17:16:06 +02:00
|
|
|
if let ExprKind::Unary(UnOp::Neg, ref rhs) = expr.kind {
|
2020-06-09 17:44:04 -04:00
|
|
|
if let ExprKind::MethodCall(ref path_segment, ref args, _) = rhs.kind {
|
2020-04-17 10:12:30 +02:00
|
|
|
let path_segment_str = path_segment.ident.name.as_str();
|
2015-08-30 17:32:35 +02:00
|
|
|
if let Some(slf) = args.first() {
|
2019-09-27 17:16:06 +02:00
|
|
|
if let ExprKind::Lit(ref lit) = slf.kind {
|
|
|
|
match lit.kind {
|
2019-11-07 13:27:00 +01:00
|
|
|
LitKind::Int(..) | LitKind::Float(..) => {
|
2020-07-07 11:12:44 -04:00
|
|
|
if ALLOWED_ODD_FUNCTIONS
|
2020-04-17 10:12:30 +02:00
|
|
|
.iter()
|
|
|
|
.any(|odd_function| **odd_function == *path_segment_str)
|
|
|
|
{
|
|
|
|
return;
|
2020-04-10 10:40:49 +02:00
|
|
|
}
|
2018-11-27 15:13:57 +01:00
|
|
|
let mut applicability = Applicability::MachineApplicable;
|
2017-08-09 09:30:56 +02: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 21:14:15 +01:00
|
|
|
format!(
|
|
|
|
"-({})",
|
|
|
|
snippet_with_applicability(cx, rhs.span, "..", &mut applicability)
|
|
|
|
),
|
2018-11-27 15:13:57 +01:00
|
|
|
applicability,
|
2017-08-09 09:30:56 +02:00
|
|
|
);
|
2016-12-20 18:21:30 +01:00
|
|
|
},
|
2016-01-04 09:56:12 +05:30
|
|
|
_ => (),
|
2015-08-30 17:32:35 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-11-17 14:22:57 +09:00
|
|
|
fn is_arith_expr(expr: &Expr) -> bool {
|
2019-09-27 17:16:06 +02:00
|
|
|
match expr.kind {
|
2016-04-14 20:14:03 +02:00
|
|
|
ExprKind::Binary(Spanned { node: op, .. }, _, _) => is_arith_op(op),
|
2016-01-04 09:56:12 +05:30
|
|
|
_ => false,
|
2015-08-30 17:32:35 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-09-18 08:37:41 +02:00
|
|
|
#[must_use]
|
2016-02-12 18:35:44 +01:00
|
|
|
fn is_bit_op(op: BinOpKind) -> bool {
|
2020-03-01 12:23:33 +09:00
|
|
|
use rustc_ast::ast::BinOpKind::{BitAnd, BitOr, BitXor, Shl, Shr};
|
2015-08-30 17:32:35 +02:00
|
|
|
match op {
|
2016-02-12 18:35:44 +01:00
|
|
|
BitXor | BitAnd | BitOr | Shl | Shr => true,
|
2016-01-04 09:56:12 +05:30
|
|
|
_ => false,
|
2015-08-30 17:32:35 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-09-18 08:37:41 +02:00
|
|
|
#[must_use]
|
2016-02-12 18:35:44 +01:00
|
|
|
fn is_arith_op(op: BinOpKind) -> bool {
|
2020-03-01 12:23:33 +09:00
|
|
|
use rustc_ast::ast::BinOpKind::{Add, Div, Mul, Rem, Sub};
|
2015-08-30 17:32:35 +02:00
|
|
|
match op {
|
2016-02-12 18:35:44 +01:00
|
|
|
Add | Sub | Mul | Div | Rem => true,
|
2016-01-04 09:56:12 +05:30
|
|
|
_ => false,
|
2015-08-30 17:32:35 +02:00
|
|
|
}
|
|
|
|
}
|