2020-01-09 01:13:22 -06:00
|
|
|
use crate::utils::{
|
|
|
|
get_trait_def_id, implements_trait, snippet_opt, span_lint_and_then, trait_ref_of_method, SpanlessEq,
|
|
|
|
};
|
|
|
|
use crate::utils::{higher, sugg};
|
2018-11-27 14:14:15 -06:00
|
|
|
use if_chain::if_chain;
|
2020-01-09 01:13:22 -06:00
|
|
|
use rustc::hir::map::Map;
|
2019-03-10 16:12:26 -05:00
|
|
|
use rustc_errors::Applicability;
|
2020-01-06 10:39:50 -06:00
|
|
|
use rustc_hir as hir;
|
2020-01-09 01:13:22 -06:00
|
|
|
use rustc_hir::intravisit::{walk_expr, NestedVisitorMap, Visitor};
|
2020-01-12 00:08:41 -06:00
|
|
|
use rustc_lint::{LateContext, LateLintPass};
|
2020-01-11 05:37:08 -06:00
|
|
|
use rustc_session::{declare_lint_pass, declare_tool_lint};
|
2019-01-30 19:15:29 -06:00
|
|
|
|
2018-03-28 08:24:26 -05:00
|
|
|
declare_clippy_lint! {
|
2019-03-05 10:50:33 -06:00
|
|
|
/// **What it does:** Checks for `a = a op b` or `a = b commutative_op a`
|
|
|
|
/// patterns.
|
|
|
|
///
|
|
|
|
/// **Why is this bad?** These can be written as the shorter `a op= b`.
|
|
|
|
///
|
|
|
|
/// **Known problems:** While forbidden by the spec, `OpAssign` traits may have
|
|
|
|
/// implementations that differ from the regular `Op` impl.
|
|
|
|
///
|
|
|
|
/// **Example:**
|
2019-01-30 19:15:29 -06:00
|
|
|
/// ```rust
|
2019-03-05 10:50:33 -06:00
|
|
|
/// let mut a = 5;
|
2019-03-10 17:01:56 -05:00
|
|
|
/// let b = 0;
|
|
|
|
/// // ...
|
2019-03-05 10:50:33 -06:00
|
|
|
/// a = a + b;
|
|
|
|
/// ```
|
2016-05-11 08:32:20 -05:00
|
|
|
pub ASSIGN_OP_PATTERN,
|
2018-03-28 08:24:26 -05:00
|
|
|
style,
|
2016-05-11 08:32:20 -05:00
|
|
|
"assigning the result of an operation on a variable to that same variable"
|
|
|
|
}
|
|
|
|
|
2018-03-28 08:24:26 -05:00
|
|
|
declare_clippy_lint! {
|
2019-03-05 10:50:33 -06:00
|
|
|
/// **What it does:** Checks for `a op= a op b` or `a op= b op a` patterns.
|
|
|
|
///
|
|
|
|
/// **Why is this bad?** Most likely these are bugs where one meant to write `a
|
|
|
|
/// op= b`.
|
|
|
|
///
|
|
|
|
/// **Known problems:** Clippy cannot know for sure if `a op= a op b` should have
|
2019-01-30 19:15:29 -06:00
|
|
|
/// been `a = a op a op b` or `a = a op b`/`a op= b`. Therefore, it suggests both.
|
2019-03-05 10:50:33 -06:00
|
|
|
/// If `a op= a op b` is really the correct behaviour it should be
|
|
|
|
/// written as `a = a op a op b` as it's less confusing.
|
|
|
|
///
|
|
|
|
/// **Example:**
|
2019-01-30 19:15:29 -06:00
|
|
|
/// ```rust
|
2019-03-05 10:50:33 -06:00
|
|
|
/// let mut a = 5;
|
2019-08-02 01:13:54 -05:00
|
|
|
/// let b = 2;
|
|
|
|
/// // ...
|
2019-03-05 10:50:33 -06:00
|
|
|
/// a += a + b;
|
|
|
|
/// ```
|
2016-07-20 08:29:24 -05:00
|
|
|
pub MISREFACTORED_ASSIGN_OP,
|
2018-03-28 08:24:26 -05:00
|
|
|
complexity,
|
2016-07-20 08:29:24 -05:00
|
|
|
"having a variable on both sides of an assign op"
|
|
|
|
}
|
|
|
|
|
2019-04-08 15:43:55 -05:00
|
|
|
declare_lint_pass!(AssignOps => [ASSIGN_OP_PATTERN, MISREFACTORED_ASSIGN_OP]);
|
2016-05-11 08:32:20 -05:00
|
|
|
|
2016-12-07 06:13:40 -06:00
|
|
|
impl<'a, 'tcx> LateLintPass<'a, 'tcx> for AssignOps {
|
2019-01-13 09:19:02 -06:00
|
|
|
#[allow(clippy::too_many_lines)]
|
2019-12-27 01:12:26 -06:00
|
|
|
fn check_expr(&mut self, cx: &LateContext<'a, 'tcx>, expr: &'tcx hir::Expr<'_>) {
|
2019-09-27 10:16:06 -05:00
|
|
|
match &expr.kind {
|
2018-12-29 10:27:26 -06:00
|
|
|
hir::ExprKind::AssignOp(op, lhs, rhs) => {
|
2019-09-27 10:16:06 -05:00
|
|
|
if let hir::ExprKind::Binary(binop, l, r) = &rhs.kind {
|
2019-03-08 02:44:22 -06:00
|
|
|
if op.node != binop.node {
|
|
|
|
return;
|
|
|
|
}
|
2019-03-07 01:14:26 -06:00
|
|
|
// lhs op= l op r
|
|
|
|
if SpanlessEq::new(cx).ignore_fn().eq_expr(lhs, l) {
|
|
|
|
lint_misrefactored_assign_op(cx, expr, *op, rhs, lhs, r);
|
|
|
|
}
|
|
|
|
// lhs op= l commutative_op r
|
|
|
|
if is_commutative(op.node) && SpanlessEq::new(cx).ignore_fn().eq_expr(lhs, r) {
|
|
|
|
lint_misrefactored_assign_op(cx, expr, *op, rhs, lhs, l);
|
2016-07-20 08:29:24 -05:00
|
|
|
}
|
|
|
|
}
|
2016-12-20 11:21:30 -06:00
|
|
|
},
|
2019-12-23 22:16:04 -06:00
|
|
|
hir::ExprKind::Assign(assignee, e, _) => {
|
2019-09-27 10:16:06 -05:00
|
|
|
if let hir::ExprKind::Binary(op, l, r) = &e.kind {
|
2019-02-22 19:19:50 -06:00
|
|
|
#[allow(clippy::cognitive_complexity)]
|
2019-12-27 01:12:26 -06:00
|
|
|
let lint = |assignee: &hir::Expr<'_>, rhs: &hir::Expr<'_>| {
|
2017-01-13 10:04:56 -06:00
|
|
|
let ty = cx.tables.expr_ty(assignee);
|
|
|
|
let rty = cx.tables.expr_ty(rhs);
|
2016-05-11 08:32:20 -05:00
|
|
|
macro_rules! ops {
|
2016-12-21 05:30:41 -06:00
|
|
|
($op:expr,
|
|
|
|
$cx:expr,
|
|
|
|
$ty:expr,
|
|
|
|
$rty:expr,
|
2018-07-16 08:07:39 -05:00
|
|
|
$($trait_name:ident),+) => {
|
2016-05-11 08:32:20 -05:00
|
|
|
match $op {
|
2018-07-16 08:07:39 -05:00
|
|
|
$(hir::BinOpKind::$trait_name => {
|
2019-05-17 16:53:54 -05:00
|
|
|
let [krate, module] = crate::utils::paths::OPS_MODULE;
|
|
|
|
let path: [&str; 3] = [krate, module, concat!(stringify!($trait_name), "Assign")];
|
2016-05-11 08:32:20 -05:00
|
|
|
let trait_id = if let Some(trait_id) = get_trait_def_id($cx, &path) {
|
|
|
|
trait_id
|
|
|
|
} else {
|
|
|
|
return; // useless if the trait doesn't exist
|
|
|
|
};
|
2016-12-19 04:13:07 -06:00
|
|
|
// check that we are not inside an `impl AssignOp` of this exact operation
|
2019-02-24 12:43:15 -06:00
|
|
|
let parent_fn = cx.tcx.hir().get_parent_item(e.hir_id);
|
2017-10-23 14:20:37 -05:00
|
|
|
if_chain! {
|
2019-03-07 00:42:38 -06:00
|
|
|
if let Some(trait_ref) = trait_ref_of_method(cx, parent_fn);
|
2019-05-03 19:03:12 -05:00
|
|
|
if trait_ref.path.res.def_id() == trait_id;
|
2017-10-23 14:20:37 -05:00
|
|
|
then { return; }
|
|
|
|
}
|
2017-06-10 21:34:47 -05:00
|
|
|
implements_trait($cx, $ty, trait_id, &[$rty])
|
2016-05-11 08:32:20 -05:00
|
|
|
},)*
|
|
|
|
_ => false,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2017-08-09 02:30:56 -05:00
|
|
|
if ops!(
|
|
|
|
op.node,
|
|
|
|
cx,
|
|
|
|
ty,
|
2018-05-22 08:45:14 -05:00
|
|
|
rty.into(),
|
2018-07-16 08:07:39 -05:00
|
|
|
Add,
|
|
|
|
Sub,
|
|
|
|
Mul,
|
|
|
|
Div,
|
|
|
|
Rem,
|
|
|
|
And,
|
|
|
|
Or,
|
|
|
|
BitAnd,
|
|
|
|
BitOr,
|
|
|
|
BitXor,
|
|
|
|
Shr,
|
|
|
|
Shl
|
2017-09-05 04:33:04 -05:00
|
|
|
) {
|
2017-08-09 02:30:56 -05:00
|
|
|
span_lint_and_then(
|
2016-06-05 18:42:39 -05:00
|
|
|
cx,
|
2017-08-09 02:30:56 -05:00
|
|
|
ASSIGN_OP_PATTERN,
|
|
|
|
expr.span,
|
|
|
|
"manual implementation of an assign operation",
|
2018-05-22 03:21:42 -05:00
|
|
|
|db| {
|
|
|
|
if let (Some(snip_a), Some(snip_r)) =
|
|
|
|
(snippet_opt(cx, assignee.span), snippet_opt(cx, rhs.span))
|
|
|
|
{
|
2019-01-27 06:33:56 -06:00
|
|
|
db.span_suggestion(
|
2018-05-22 03:21:42 -05:00
|
|
|
expr.span,
|
|
|
|
"replace it with",
|
|
|
|
format!("{} {}= {}", snip_a, op.node.as_str(), snip_r),
|
2018-09-18 12:01:17 -05:00
|
|
|
Applicability::MachineApplicable,
|
2018-05-22 03:21:42 -05:00
|
|
|
);
|
|
|
|
}
|
2017-08-09 02:30:56 -05:00
|
|
|
},
|
|
|
|
);
|
2016-05-11 08:32:20 -05:00
|
|
|
}
|
|
|
|
};
|
2018-01-30 10:45:35 -06:00
|
|
|
|
|
|
|
let mut visitor = ExprVisitor {
|
2018-03-15 10:07:15 -05:00
|
|
|
assignee,
|
2018-01-30 10:45:35 -06:00
|
|
|
counter: 0,
|
2018-05-22 03:21:42 -05:00
|
|
|
cx,
|
2018-01-30 10:45:35 -06:00
|
|
|
};
|
|
|
|
|
|
|
|
walk_expr(&mut visitor, e);
|
|
|
|
|
|
|
|
if visitor.counter == 1 {
|
|
|
|
// a = a op b
|
|
|
|
if SpanlessEq::new(cx).ignore_fn().eq_expr(assignee, l) {
|
|
|
|
lint(assignee, r);
|
|
|
|
}
|
|
|
|
// a = b commutative_op a
|
2018-10-10 10:05:16 -05:00
|
|
|
// Limited to primitive type as these ops are know to be commutative
|
|
|
|
if SpanlessEq::new(cx).ignore_fn().eq_expr(assignee, r)
|
2018-11-27 14:14:15 -06:00
|
|
|
&& cx.tables.expr_ty(assignee).is_primitive_ty()
|
|
|
|
{
|
2018-01-30 10:45:35 -06:00
|
|
|
match op.node {
|
2018-07-12 02:50:09 -05:00
|
|
|
hir::BinOpKind::Add
|
|
|
|
| hir::BinOpKind::Mul
|
|
|
|
| hir::BinOpKind::And
|
|
|
|
| hir::BinOpKind::Or
|
|
|
|
| hir::BinOpKind::BitXor
|
|
|
|
| hir::BinOpKind::BitAnd
|
|
|
|
| hir::BinOpKind::BitOr => {
|
2018-01-30 10:45:35 -06:00
|
|
|
lint(assignee, l);
|
|
|
|
},
|
|
|
|
_ => {},
|
|
|
|
}
|
2016-05-11 08:32:20 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-12-20 11:21:30 -06:00
|
|
|
},
|
|
|
|
_ => {},
|
2016-05-11 08:32:20 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-07-20 08:29:24 -05:00
|
|
|
|
2019-03-08 02:44:22 -06:00
|
|
|
fn lint_misrefactored_assign_op(
|
|
|
|
cx: &LateContext<'_, '_>,
|
2019-12-27 01:12:26 -06:00
|
|
|
expr: &hir::Expr<'_>,
|
2019-03-08 02:44:22 -06:00
|
|
|
op: hir::BinOp,
|
2019-12-27 01:12:26 -06:00
|
|
|
rhs: &hir::Expr<'_>,
|
|
|
|
assignee: &hir::Expr<'_>,
|
|
|
|
rhs_other: &hir::Expr<'_>,
|
2019-03-08 02:44:22 -06:00
|
|
|
) {
|
2019-03-07 01:14:26 -06:00
|
|
|
span_lint_and_then(
|
|
|
|
cx,
|
|
|
|
MISREFACTORED_ASSIGN_OP,
|
|
|
|
expr.span,
|
|
|
|
"variable appears on both sides of an assignment operation",
|
|
|
|
|db| {
|
2019-03-08 02:44:22 -06:00
|
|
|
if let (Some(snip_a), Some(snip_r)) = (snippet_opt(cx, assignee.span), snippet_opt(cx, rhs_other.span)) {
|
2019-03-07 01:14:26 -06:00
|
|
|
let a = &sugg::Sugg::hir(cx, assignee, "..");
|
|
|
|
let r = &sugg::Sugg::hir(cx, rhs, "..");
|
2019-03-08 02:44:22 -06:00
|
|
|
let long = format!("{} = {}", snip_a, sugg::make_binop(higher::binop(op.node), a, r));
|
2019-03-07 01:14:26 -06:00
|
|
|
db.span_suggestion(
|
|
|
|
expr.span,
|
|
|
|
&format!(
|
2020-01-06 00:30:43 -06:00
|
|
|
"Did you mean `{} = {} {} {}` or `{}`? Consider replacing it with",
|
2019-03-07 01:14:26 -06:00
|
|
|
snip_a,
|
|
|
|
snip_a,
|
|
|
|
op.node.as_str(),
|
|
|
|
snip_r,
|
|
|
|
long
|
|
|
|
),
|
|
|
|
format!("{} {}= {}", snip_a, op.node.as_str(), snip_r),
|
2019-09-19 16:48:39 -05:00
|
|
|
Applicability::MaybeIncorrect,
|
2019-03-07 01:14:26 -06:00
|
|
|
);
|
|
|
|
db.span_suggestion(
|
|
|
|
expr.span,
|
|
|
|
"or",
|
|
|
|
long,
|
2019-09-19 16:48:39 -05:00
|
|
|
Applicability::MaybeIncorrect, // snippet
|
2019-03-07 01:14:26 -06:00
|
|
|
);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2019-09-18 01:37:41 -05:00
|
|
|
#[must_use]
|
2018-07-12 02:50:09 -05:00
|
|
|
fn is_commutative(op: hir::BinOpKind) -> bool {
|
2020-01-06 10:39:50 -06:00
|
|
|
use rustc_hir::BinOpKind::*;
|
2016-07-20 08:29:24 -05:00
|
|
|
match op {
|
2018-07-12 02:50:09 -05:00
|
|
|
Add | Mul | And | Or | BitXor | BitAnd | BitOr | Eq | Ne => true,
|
|
|
|
Sub | Div | Rem | Shl | Shr | Lt | Le | Ge | Gt => false,
|
2016-07-20 08:29:24 -05:00
|
|
|
}
|
|
|
|
}
|
2018-01-30 10:45:35 -06:00
|
|
|
|
2019-06-19 13:36:23 -05:00
|
|
|
struct ExprVisitor<'a, 'tcx> {
|
2019-12-27 01:12:26 -06:00
|
|
|
assignee: &'a hir::Expr<'a>,
|
2018-01-30 10:45:35 -06:00
|
|
|
counter: u8,
|
|
|
|
cx: &'a LateContext<'a, 'tcx>,
|
|
|
|
}
|
|
|
|
|
2019-06-19 13:36:23 -05:00
|
|
|
impl<'a, 'tcx> Visitor<'tcx> for ExprVisitor<'a, 'tcx> {
|
2020-01-09 01:13:22 -06:00
|
|
|
type Map = Map<'tcx>;
|
|
|
|
|
2019-12-27 01:12:26 -06:00
|
|
|
fn visit_expr(&mut self, expr: &'tcx hir::Expr<'_>) {
|
2018-03-15 10:07:15 -05:00
|
|
|
if SpanlessEq::new(self.cx).ignore_fn().eq_expr(self.assignee, expr) {
|
2018-01-30 10:45:35 -06:00
|
|
|
self.counter += 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
walk_expr(self, expr);
|
|
|
|
}
|
2020-01-09 01:13:22 -06:00
|
|
|
fn nested_visit_map(&mut self) -> NestedVisitorMap<'_, Self::Map> {
|
2018-01-30 10:45:35 -06:00
|
|
|
NestedVisitorMap::None
|
|
|
|
}
|
|
|
|
}
|