2018-09-15 07:21:58 +00:00
|
|
|
use crate::rustc::hir::*;
|
|
|
|
use crate::rustc::lint::{LateContext, LateLintPass, LintArray, LintPass};
|
|
|
|
use crate::rustc::{declare_tool_lint, lint_array};
|
2018-05-30 08:15:50 +00:00
|
|
|
use crate::utils::{in_macro, implements_trait, is_copy, multispan_sugg, snippet, span_lint, span_lint_and_then, SpanlessEq};
|
2015-04-30 09:48:43 +00:00
|
|
|
|
2016-08-06 07:55:04 +00:00
|
|
|
/// **What it does:** Checks for equal operands to comparison, logical and
|
|
|
|
/// bitwise, difference and division binary operators (`==`, `>`, etc., `&&`,
|
|
|
|
/// `||`, `&`, `|`, `^`, `-` and `/`).
|
2015-12-11 00:22:27 +00:00
|
|
|
///
|
2016-02-03 19:42:05 +00:00
|
|
|
/// **Why is this bad?** This is usually just a typo or a copy and paste error.
|
2015-12-11 00:22:27 +00:00
|
|
|
///
|
2016-08-06 07:55:04 +00:00
|
|
|
/// **Known problems:** False negatives: We had some false positives regarding
|
|
|
|
/// calls (notably [racer](https://github.com/phildawes/racer) had one instance
|
|
|
|
/// of `x.pop() && x.pop()`), so we removed matching any function or method
|
|
|
|
/// calls. We may introduce a whitelist of known pure functions in the future.
|
2015-12-11 00:22:27 +00:00
|
|
|
///
|
2016-07-15 22:25:44 +00:00
|
|
|
/// **Example:**
|
|
|
|
/// ```rust
|
|
|
|
/// x + 1 == x + 1
|
|
|
|
/// ```
|
2018-03-28 13:24:26 +00:00
|
|
|
declare_clippy_lint! {
|
2015-04-30 09:48:43 +00:00
|
|
|
pub EQ_OP,
|
2018-03-28 13:24:26 +00:00
|
|
|
correctness,
|
2015-08-13 08:32:35 +00:00
|
|
|
"equal operands on both sides of a comparison or bitwise combination (e.g. `x == x`)"
|
2015-04-30 09:48:43 +00:00
|
|
|
}
|
|
|
|
|
2017-08-09 07:30:56 +00:00
|
|
|
/// **What it does:** Checks for arguments to `==` which have their address
|
|
|
|
/// taken to satisfy a bound
|
2017-03-09 09:56:17 +00:00
|
|
|
/// and suggests to dereference the other argument instead
|
|
|
|
///
|
|
|
|
/// **Why is this bad?** It is more idiomatic to dereference the other argument.
|
|
|
|
///
|
|
|
|
/// **Known problems:** None
|
|
|
|
///
|
|
|
|
/// **Example:**
|
|
|
|
/// ```rust
|
|
|
|
/// &x == y
|
|
|
|
/// ```
|
2018-03-28 13:24:26 +00:00
|
|
|
declare_clippy_lint! {
|
2017-03-09 09:56:17 +00:00
|
|
|
pub OP_REF,
|
2018-03-28 13:24:26 +00:00
|
|
|
style,
|
2017-03-09 09:56:17 +00:00
|
|
|
"taking a reference to satisfy the type constraints on `==`"
|
|
|
|
}
|
|
|
|
|
2017-08-09 07:30:56 +00:00
|
|
|
#[derive(Copy, Clone)]
|
2015-04-30 09:48:43 +00:00
|
|
|
pub struct EqOp;
|
|
|
|
|
|
|
|
impl LintPass for EqOp {
|
|
|
|
fn get_lints(&self) -> LintArray {
|
2017-03-09 09:56:17 +00:00
|
|
|
lint_array!(EQ_OP, OP_REF)
|
2015-04-30 09:48:43 +00:00
|
|
|
}
|
2015-09-19 02:53:04 +00:00
|
|
|
}
|
2015-08-11 18:22:20 +00:00
|
|
|
|
2016-12-07 12:13:40 +00:00
|
|
|
impl<'a, 'tcx> LateLintPass<'a, 'tcx> for EqOp {
|
|
|
|
fn check_expr(&mut self, cx: &LateContext<'a, 'tcx>, e: &'tcx Expr) {
|
2018-07-12 07:30:57 +00:00
|
|
|
if let ExprKind::Binary(op, ref left, ref right) = e.node {
|
2018-05-29 11:17:37 +00:00
|
|
|
if in_macro(e.span) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if is_valid_operator(op) && SpanlessEq::new(cx).ignore_fn().eq_expr(left, right) {
|
2017-08-09 07:30:56 +00:00
|
|
|
span_lint(
|
|
|
|
cx,
|
|
|
|
EQ_OP,
|
|
|
|
e.span,
|
|
|
|
&format!("equal expressions as operands to `{}`", op.node.as_str()),
|
|
|
|
);
|
2017-04-28 16:13:09 +00:00
|
|
|
return;
|
2017-04-28 15:03:47 +00:00
|
|
|
}
|
|
|
|
let (trait_id, requires_ref) = match op.node {
|
2018-07-12 07:50:09 +00:00
|
|
|
BinOpKind::Add => (cx.tcx.lang_items().add_trait(), false),
|
|
|
|
BinOpKind::Sub => (cx.tcx.lang_items().sub_trait(), false),
|
|
|
|
BinOpKind::Mul => (cx.tcx.lang_items().mul_trait(), false),
|
|
|
|
BinOpKind::Div => (cx.tcx.lang_items().div_trait(), false),
|
|
|
|
BinOpKind::Rem => (cx.tcx.lang_items().rem_trait(), false),
|
2017-04-28 15:03:47 +00:00
|
|
|
// don't lint short circuiting ops
|
2018-07-12 07:50:09 +00:00
|
|
|
BinOpKind::And | BinOpKind::Or => return,
|
|
|
|
BinOpKind::BitXor => (cx.tcx.lang_items().bitxor_trait(), false),
|
|
|
|
BinOpKind::BitAnd => (cx.tcx.lang_items().bitand_trait(), false),
|
|
|
|
BinOpKind::BitOr => (cx.tcx.lang_items().bitor_trait(), false),
|
|
|
|
BinOpKind::Shl => (cx.tcx.lang_items().shl_trait(), false),
|
|
|
|
BinOpKind::Shr => (cx.tcx.lang_items().shr_trait(), false),
|
|
|
|
BinOpKind::Ne | BinOpKind::Eq => (cx.tcx.lang_items().eq_trait(), true),
|
|
|
|
BinOpKind::Lt | BinOpKind::Le | BinOpKind::Ge | BinOpKind::Gt => (cx.tcx.lang_items().ord_trait(), true),
|
2017-04-28 15:03:47 +00:00
|
|
|
};
|
|
|
|
if let Some(trait_id) = trait_id {
|
2018-08-01 20:48:41 +00:00
|
|
|
#[allow(clippy::match_same_arms)]
|
2017-04-28 15:03:47 +00:00
|
|
|
match (&left.node, &right.node) {
|
|
|
|
// do not suggest to dereference literals
|
2018-07-12 07:30:57 +00:00
|
|
|
(&ExprKind::Lit(..), _) | (_, &ExprKind::Lit(..)) => {},
|
2017-04-28 15:03:47 +00:00
|
|
|
// &foo == &bar
|
2018-07-12 07:30:57 +00:00
|
|
|
(&ExprKind::AddrOf(_, ref l), &ExprKind::AddrOf(_, ref r)) => {
|
2017-04-28 15:03:47 +00:00
|
|
|
let lty = cx.tables.expr_ty(l);
|
|
|
|
let rty = cx.tables.expr_ty(r);
|
2017-06-11 02:34:47 +00:00
|
|
|
let lcpy = is_copy(cx, lty);
|
|
|
|
let rcpy = is_copy(cx, rty);
|
2017-04-28 15:03:47 +00:00
|
|
|
// either operator autorefs or both args are copyable
|
2018-05-22 13:45:14 +00:00
|
|
|
if (requires_ref || (lcpy && rcpy)) && implements_trait(cx, lty, trait_id, &[rty.into()]) {
|
2017-08-09 07:30:56 +00:00
|
|
|
span_lint_and_then(
|
|
|
|
cx,
|
|
|
|
OP_REF,
|
|
|
|
e.span,
|
|
|
|
"needlessly taken reference of both operands",
|
|
|
|
|db| {
|
|
|
|
let lsnip = snippet(cx, l.span, "...").to_string();
|
|
|
|
let rsnip = snippet(cx, r.span, "...").to_string();
|
|
|
|
multispan_sugg(
|
|
|
|
db,
|
|
|
|
"use the values directly".to_string(),
|
|
|
|
vec![(left.span, lsnip), (right.span, rsnip)],
|
|
|
|
);
|
|
|
|
},
|
|
|
|
)
|
2018-05-22 13:45:14 +00:00
|
|
|
} else if lcpy && !rcpy && implements_trait(cx, lty, trait_id, &[cx.tables.expr_ty(right).into()]) {
|
2017-05-03 12:13:50 +00:00
|
|
|
span_lint_and_then(cx, OP_REF, e.span, "needlessly taken reference of left operand", |db| {
|
2017-04-28 15:03:47 +00:00
|
|
|
let lsnip = snippet(cx, l.span, "...").to_string();
|
|
|
|
db.span_suggestion(left.span, "use the left value directly", lsnip);
|
|
|
|
})
|
2018-05-22 13:45:14 +00:00
|
|
|
} else if !lcpy && rcpy && implements_trait(cx, cx.tables.expr_ty(left), trait_id, &[rty.into()]) {
|
2017-08-09 07:30:56 +00:00
|
|
|
span_lint_and_then(
|
|
|
|
cx,
|
|
|
|
OP_REF,
|
|
|
|
e.span,
|
|
|
|
"needlessly taken reference of right operand",
|
|
|
|
|db| {
|
|
|
|
let rsnip = snippet(cx, r.span, "...").to_string();
|
|
|
|
db.span_suggestion(right.span, "use the right value directly", rsnip);
|
|
|
|
},
|
|
|
|
)
|
2017-04-28 15:03:47 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
// &foo == bar
|
2018-07-12 07:30:57 +00:00
|
|
|
(&ExprKind::AddrOf(_, ref l), _) => {
|
2017-04-28 15:03:47 +00:00
|
|
|
let lty = cx.tables.expr_ty(l);
|
2017-06-11 02:34:47 +00:00
|
|
|
let lcpy = is_copy(cx, lty);
|
2018-05-22 13:45:14 +00:00
|
|
|
if (requires_ref || lcpy) && implements_trait(cx, lty, trait_id, &[cx.tables.expr_ty(right).into()]) {
|
2017-04-28 15:03:47 +00:00
|
|
|
span_lint_and_then(cx, OP_REF, e.span, "needlessly taken reference of left operand", |db| {
|
|
|
|
let lsnip = snippet(cx, l.span, "...").to_string();
|
|
|
|
db.span_suggestion(left.span, "use the left value directly", lsnip);
|
|
|
|
})
|
|
|
|
}
|
|
|
|
},
|
|
|
|
// foo == &bar
|
2018-07-12 07:30:57 +00:00
|
|
|
(_, &ExprKind::AddrOf(_, ref r)) => {
|
2017-04-28 15:03:47 +00:00
|
|
|
let rty = cx.tables.expr_ty(r);
|
2017-06-11 02:34:47 +00:00
|
|
|
let rcpy = is_copy(cx, rty);
|
2018-05-22 13:45:14 +00:00
|
|
|
if (requires_ref || rcpy) && implements_trait(cx, cx.tables.expr_ty(left), trait_id, &[rty.into()]) {
|
2017-04-28 15:03:47 +00:00
|
|
|
span_lint_and_then(cx, OP_REF, e.span, "taken reference of right operand", |db| {
|
|
|
|
let rsnip = snippet(cx, r.span, "...").to_string();
|
2017-05-03 10:51:47 +00:00
|
|
|
db.span_suggestion(right.span, "use the right value directly", rsnip);
|
2017-04-28 15:03:47 +00:00
|
|
|
})
|
2017-03-09 09:56:17 +00:00
|
|
|
}
|
2017-04-28 15:03:47 +00:00
|
|
|
},
|
|
|
|
_ => {},
|
2017-03-09 09:56:17 +00:00
|
|
|
}
|
2015-04-30 09:48:43 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-05-31 18:15:48 +00:00
|
|
|
fn is_valid_operator(op: BinOp) -> bool {
|
2015-04-30 09:48:43 +00:00
|
|
|
match op.node {
|
2018-07-12 07:50:09 +00:00
|
|
|
BinOpKind::Sub | BinOpKind::Div | BinOpKind::Eq | BinOpKind::Lt | BinOpKind::Le | BinOpKind::Gt | BinOpKind::Ge | BinOpKind::Ne | BinOpKind::And | BinOpKind::Or | BinOpKind::BitXor | BinOpKind::BitAnd | BinOpKind::BitOr => true,
|
2016-01-04 04:26:12 +00:00
|
|
|
_ => false,
|
2015-04-30 09:48:43 +00:00
|
|
|
}
|
|
|
|
}
|