rust-clippy/clippy_lints/src/eq_op.rs

254 lines
11 KiB
Rust
Raw Normal View History

use clippy_utils::diagnostics::{multispan_sugg, span_lint, span_lint_and_then};
use clippy_utils::macros::{find_assert_eq_args, first_node_macro_backtrace};
use clippy_utils::source::snippet;
use clippy_utils::ty::{implements_trait, is_copy};
use clippy_utils::{ast_utils::is_useless_with_eq_exprs, eq_expr_value, is_in_test_function};
use if_chain::if_chain;
use rustc_errors::Applicability;
use rustc_hir::{BinOpKind, BorrowKind, Expr, ExprKind};
2020-01-12 06:08:41 +00:00
use rustc_lint::{LateContext, LateLintPass};
2020-01-11 11:37:08 +00:00
use rustc_session::{declare_lint_pass, declare_tool_lint};
2018-03-28 13:24:26 +00:00
declare_clippy_lint! {
/// ### What it does
/// Checks for equal operands to comparison, logical and
/// bitwise, difference and division binary operators (`==`, `>`, etc., `&&`,
/// `||`, `&`, `|`, `^`, `-` and `/`).
///
/// ### Why is this bad?
/// This is usually just a typo or a copy and paste error.
///
/// ### 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 list of known pure functions in the future.
///
/// ### Example
/// ```rust
/// # let x = 1;
/// if x + 1 == x + 1 {}
/// ```
/// or
/// ```rust
/// # let a = 3;
/// # let b = 4;
/// assert_eq!(a, a);
/// ```
#[clippy::version = "pre 1.29.0"]
pub EQ_OP,
2018-03-28 13:24:26 +00:00
correctness,
2019-01-31 01:15:29 +00:00
"equal operands on both sides of a comparison or bitwise combination (e.g., `x == x`)"
}
2018-03-28 13:24:26 +00:00
declare_clippy_lint! {
/// ### What it does
/// Checks for arguments to `==` which have their address
/// taken to satisfy a bound
/// 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
2019-03-05 22:23:50 +00:00
/// ```ignore
/// // Bad
/// &x == y
///
/// // Good
/// x == *y
/// ```
#[clippy::version = "pre 1.29.0"]
pub OP_REF,
2018-03-28 13:24:26 +00:00
style,
"taking a reference to satisfy the type constraints on `==`"
}
2019-04-08 20:43:55 +00:00
declare_lint_pass!(EqOp => [EQ_OP, OP_REF]);
impl<'tcx> LateLintPass<'tcx> for EqOp {
2019-01-13 15:19:02 +00:00
#[allow(clippy::similar_names, clippy::too_many_lines)]
fn check_expr(&mut self, cx: &LateContext<'tcx>, e: &'tcx Expr<'_>) {
if_chain! {
if let Some((macro_call, macro_name)) = first_node_macro_backtrace(cx, e).find_map(|macro_call| {
let name = cx.tcx.item_name(macro_call.def_id);
matches!(name.as_str(), "assert_eq" | "assert_ne" | "debug_assert_eq" | "debug_assert_ne")
.then(|| (macro_call, name))
});
if let Some((lhs, rhs, _)) = find_assert_eq_args(cx, e, macro_call.expn);
if eq_expr_value(cx, lhs, rhs);
if macro_call.is_local();
if !is_in_test_function(cx.tcx, e.hir_id);
then {
span_lint(
cx,
EQ_OP,
lhs.span.to(rhs.span),
&format!("identical args used in this `{}!` macro call", macro_name),
);
}
}
if let ExprKind::Binary(op, left, right) = e.kind {
2019-08-19 16:30:32 +00:00
if e.span.from_expansion() {
return;
}
let macro_with_not_op = |expr_kind: &ExprKind<'_>| {
if let ExprKind::Unary(_, expr) = *expr_kind {
expr.span.from_expansion()
} else {
false
}
};
if macro_with_not_op(&left.kind) || macro_with_not_op(&right.kind) {
return;
}
if is_useless_with_eq_exprs(op.node.into())
&& eq_expr_value(cx, left, right)
&& !is_in_test_function(cx.tcx, e.hir_id)
{
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),
2018-11-27 20:14:15 +00:00
BinOpKind::Lt | BinOpKind::Le | BinOpKind::Ge | BinOpKind::Gt => {
(cx.tcx.lang_items().partial_ord_trait(), true)
2018-11-27 20:14:15 +00:00
},
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)]
2019-09-27 15:16:06 +00:00
match (&left.kind, &right.kind) {
2017-04-28 15:03:47 +00:00
// 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
(&ExprKind::AddrOf(BorrowKind::Ref, _, l), &ExprKind::AddrOf(BorrowKind::Ref, _, r)) => {
2020-07-17 08:47:04 +00:00
let lty = cx.typeck_results().expr_ty(l);
let rty = cx.typeck_results().expr_ty(r);
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
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",
|diag| {
2017-08-09 07:30:56 +00:00
let lsnip = snippet(cx, l.span, "...").to_string();
let rsnip = snippet(cx, r.span, "...").to_string();
multispan_sugg(
diag,
"use the values directly",
2017-08-09 07:30:56 +00:00
vec![(left.span, lsnip), (right.span, rsnip)],
);
},
);
2018-11-27 20:14:15 +00:00
} else if lcpy
&& !rcpy
2020-07-17 08:47:04 +00:00
&& implements_trait(cx, lty, trait_id, &[cx.typeck_results().expr_ty(right).into()])
2018-11-27 20:14:15 +00:00
{
2020-04-17 06:09:09 +00:00
span_lint_and_then(
cx,
OP_REF,
e.span,
"needlessly taken reference of left operand",
|diag| {
let lsnip = snippet(cx, l.span, "...").to_string();
diag.span_suggestion(
left.span,
"use the left value directly",
lsnip,
Applicability::MaybeIncorrect, // FIXME #2597
);
},
);
2018-11-27 20:14:15 +00:00
} else if !lcpy
&& rcpy
2020-07-17 08:47:04 +00:00
&& implements_trait(cx, cx.typeck_results().expr_ty(left), trait_id, &[rty.into()])
2018-11-27 20:14:15 +00:00
{
2017-08-09 07:30:56 +00:00
span_lint_and_then(
cx,
OP_REF,
e.span,
"needlessly taken reference of right operand",
|diag| {
2017-08-09 07:30:56 +00:00
let rsnip = snippet(cx, r.span, "...").to_string();
diag.span_suggestion(
right.span,
"use the right value directly",
rsnip,
Applicability::MaybeIncorrect, // FIXME #2597
2018-09-18 15:07:54 +00:00
);
2017-08-09 07:30:56 +00:00
},
);
2017-04-28 15:03:47 +00:00
}
},
// &foo == bar
(&ExprKind::AddrOf(BorrowKind::Ref, _, l), _) => {
2020-07-17 08:47:04 +00:00
let lty = cx.typeck_results().expr_ty(l);
let lcpy = is_copy(cx, lty);
2018-11-27 20:14:15 +00:00
if (requires_ref || lcpy)
2020-07-17 08:47:04 +00:00
&& implements_trait(cx, lty, trait_id, &[cx.typeck_results().expr_ty(right).into()])
2018-11-27 20:14:15 +00:00
{
2020-04-17 06:09:09 +00:00
span_lint_and_then(
cx,
OP_REF,
e.span,
"needlessly taken reference of left operand",
|diag| {
let lsnip = snippet(cx, l.span, "...").to_string();
diag.span_suggestion(
left.span,
"use the left value directly",
lsnip,
Applicability::MaybeIncorrect, // FIXME #2597
);
},
);
2017-04-28 15:03:47 +00:00
}
},
// foo == &bar
(_, &ExprKind::AddrOf(BorrowKind::Ref, _, r)) => {
2020-07-17 08:47:04 +00:00
let rty = cx.typeck_results().expr_ty(r);
let rcpy = is_copy(cx, rty);
2018-11-27 20:14:15 +00:00
if (requires_ref || rcpy)
2020-07-17 08:47:04 +00:00
&& implements_trait(cx, cx.typeck_results().expr_ty(left), trait_id, &[rty.into()])
2018-11-27 20:14:15 +00:00
{
span_lint_and_then(cx, OP_REF, e.span, "taken reference of right operand", |diag| {
2017-04-28 15:03:47 +00:00
let rsnip = snippet(cx, r.span, "...").to_string();
diag.span_suggestion(
2018-09-18 15:07:54 +00:00
right.span,
"use the right value directly",
rsnip,
Applicability::MaybeIncorrect, // FIXME #2597
2018-09-18 15:07:54 +00:00
);
});
}
2017-04-28 15:03:47 +00:00
},
_ => {},
}
}
}
}
}