2018-11-27 14:14:15 -06:00
|
|
|
use crate::utils::sugg::Sugg;
|
|
|
|
use crate::utils::{
|
2020-08-28 09:10:16 -05:00
|
|
|
differing_macro_contexts, eq_expr_value, is_type_diagnostic_item, snippet_with_applicability, span_lint_and_then,
|
|
|
|
walk_ptrs_ty,
|
2018-11-27 14:14:15 -06:00
|
|
|
};
|
|
|
|
use if_chain::if_chain;
|
2018-12-29 09:04:45 -06:00
|
|
|
use rustc_errors::Applicability;
|
2020-02-21 02:39:38 -06:00
|
|
|
use rustc_hir::{Block, Expr, ExprKind, PatKind, QPath, StmtKind};
|
2020-01-12 00:08:41 -06:00
|
|
|
use rustc_lint::{LateContext, LateLintPass};
|
2020-03-30 04:02:14 -05:00
|
|
|
use rustc_middle::ty;
|
2020-01-11 05:37:08 -06:00
|
|
|
use rustc_session::{declare_lint_pass, declare_tool_lint};
|
2016-02-27 17:46:02 -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 manual swapping.
|
|
|
|
///
|
|
|
|
/// **Why is this bad?** The `std::mem::swap` function exposes the intent better
|
|
|
|
/// without deinitializing or copying either variable.
|
|
|
|
///
|
|
|
|
/// **Known problems:** None.
|
|
|
|
///
|
|
|
|
/// **Example:**
|
2019-03-09 01:51:23 -06:00
|
|
|
/// ```rust
|
2019-08-02 01:13:54 -05:00
|
|
|
/// let mut a = 42;
|
|
|
|
/// let mut b = 1337;
|
|
|
|
///
|
2019-03-05 10:50:33 -06:00
|
|
|
/// let t = b;
|
|
|
|
/// b = a;
|
|
|
|
/// a = t;
|
|
|
|
/// ```
|
|
|
|
/// Use std::mem::swap():
|
|
|
|
/// ```rust
|
2019-08-02 01:13:54 -05:00
|
|
|
/// let mut a = 1;
|
|
|
|
/// let mut b = 2;
|
2019-03-05 10:50:33 -06:00
|
|
|
/// std::mem::swap(&mut a, &mut b);
|
|
|
|
/// ```
|
2016-02-27 17:46:02 -06:00
|
|
|
pub MANUAL_SWAP,
|
2018-03-28 08:24:26 -05:00
|
|
|
complexity,
|
2016-08-06 03:18:36 -05:00
|
|
|
"manual swap of two variables"
|
2016-02-27 17:46:02 -06:00
|
|
|
}
|
2016-02-27 17:01:15 -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 `foo = bar; bar = foo` sequences.
|
|
|
|
///
|
|
|
|
/// **Why is this bad?** This looks like a failed attempt to swap.
|
|
|
|
///
|
|
|
|
/// **Known problems:** None.
|
|
|
|
///
|
|
|
|
/// **Example:**
|
2019-03-09 01:51:23 -06:00
|
|
|
/// ```rust
|
|
|
|
/// # let mut a = 1;
|
|
|
|
/// # let mut b = 2;
|
2019-03-05 10:50:33 -06:00
|
|
|
/// a = b;
|
|
|
|
/// b = a;
|
|
|
|
/// ```
|
2020-03-17 20:50:39 -05:00
|
|
|
/// If swapping is intended, use `swap()` instead:
|
2019-08-18 14:37:47 -05:00
|
|
|
/// ```rust
|
|
|
|
/// # let mut a = 1;
|
|
|
|
/// # let mut b = 2;
|
|
|
|
/// std::mem::swap(&mut a, &mut b);
|
|
|
|
/// ```
|
2016-02-27 17:46:02 -06:00
|
|
|
pub ALMOST_SWAPPED,
|
2018-03-28 08:24:26 -05:00
|
|
|
correctness,
|
2016-02-27 17:01:15 -06:00
|
|
|
"`foo = bar; bar = foo` sequence"
|
|
|
|
}
|
|
|
|
|
2019-04-08 15:43:55 -05:00
|
|
|
declare_lint_pass!(Swap => [MANUAL_SWAP, ALMOST_SWAPPED]);
|
2016-02-27 17:01:15 -06:00
|
|
|
|
2020-06-25 15:41:36 -05:00
|
|
|
impl<'tcx> LateLintPass<'tcx> for Swap {
|
|
|
|
fn check_block(&mut self, cx: &LateContext<'tcx>, block: &'tcx Block<'_>) {
|
2016-02-27 17:46:02 -06:00
|
|
|
check_manual_swap(cx, block);
|
|
|
|
check_suspicious_swap(cx, block);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Implementation of the `MANUAL_SWAP` lint.
|
2020-06-25 15:41:36 -05:00
|
|
|
fn check_manual_swap(cx: &LateContext<'_>, block: &Block<'_>) {
|
2016-02-27 17:46:02 -06:00
|
|
|
for w in block.stmts.windows(3) {
|
2017-10-23 14:18:02 -05:00
|
|
|
if_chain! {
|
2016-02-27 17:46:02 -06:00
|
|
|
// let t = foo();
|
2019-09-27 10:16:06 -05:00
|
|
|
if let StmtKind::Local(ref tmp) = w[0].kind;
|
2017-10-23 14:18:02 -05:00
|
|
|
if let Some(ref tmp_init) = tmp.init;
|
2019-09-27 10:16:06 -05:00
|
|
|
if let PatKind::Binding(.., ident, None) = tmp.pat.kind;
|
2016-02-27 17:46:02 -06:00
|
|
|
|
|
|
|
// foo() = bar();
|
2019-09-27 10:16:06 -05:00
|
|
|
if let StmtKind::Semi(ref first) = w[1].kind;
|
2019-12-23 22:16:04 -06:00
|
|
|
if let ExprKind::Assign(ref lhs1, ref rhs1, _) = first.kind;
|
2016-02-27 17:46:02 -06:00
|
|
|
|
|
|
|
// bar() = t;
|
2019-09-27 10:16:06 -05:00
|
|
|
if let StmtKind::Semi(ref second) = w[2].kind;
|
2019-12-23 22:16:04 -06:00
|
|
|
if let ExprKind::Assign(ref lhs2, ref rhs2, _) = second.kind;
|
2019-09-27 10:16:06 -05:00
|
|
|
if let ExprKind::Path(QPath::Resolved(None, ref rhs2)) = rhs2.kind;
|
2017-10-23 14:18:02 -05:00
|
|
|
if rhs2.segments.len() == 1;
|
|
|
|
|
2018-06-28 08:46:58 -05:00
|
|
|
if ident.as_str() == rhs2.segments[0].ident.as_str();
|
2020-08-28 09:10:16 -05:00
|
|
|
if eq_expr_value(cx, tmp_init, lhs1);
|
|
|
|
if eq_expr_value(cx, rhs1, lhs2);
|
2017-10-23 14:18:02 -05:00
|
|
|
then {
|
2019-09-27 10:16:06 -05:00
|
|
|
if let ExprKind::Field(ref lhs1, _) = lhs1.kind {
|
|
|
|
if let ExprKind::Field(ref lhs2, _) = lhs2.kind {
|
2020-03-19 08:33:10 -05:00
|
|
|
if lhs1.hir_id.owner == lhs2.hir_id.owner {
|
2019-08-31 11:50:22 -05:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-12-03 06:42:05 -06:00
|
|
|
let mut applicability = Applicability::MachineApplicable;
|
2019-12-03 06:20:42 -06:00
|
|
|
|
2019-12-03 06:42:05 -06:00
|
|
|
let slice = check_for_slice(cx, lhs1, lhs2);
|
2019-12-03 06:20:42 -06:00
|
|
|
let (replace, what, sugg) = if let Slice::NotSwappable = slice {
|
|
|
|
return;
|
|
|
|
} else if let Slice::Swappable(slice, idx1, idx2) = slice {
|
2017-10-23 14:18:02 -05:00
|
|
|
if let Some(slice) = Sugg::hir_opt(cx, slice) {
|
2019-12-03 06:21:00 -06:00
|
|
|
(
|
|
|
|
false,
|
|
|
|
format!(" elements of `{}`", slice),
|
|
|
|
format!(
|
|
|
|
"{}.swap({}, {})",
|
|
|
|
slice.maybe_par(),
|
2019-12-03 06:42:05 -06:00
|
|
|
snippet_with_applicability(cx, idx1.span, "..", &mut applicability),
|
|
|
|
snippet_with_applicability(cx, idx2.span, "..", &mut applicability),
|
2019-12-03 06:21:00 -06:00
|
|
|
),
|
|
|
|
)
|
2017-10-23 14:18:02 -05:00
|
|
|
} else {
|
2018-08-21 05:46:18 -05:00
|
|
|
(false, String::new(), String::new())
|
2017-10-23 14:18:02 -05:00
|
|
|
}
|
|
|
|
} else if let (Some(first), Some(second)) = (Sugg::hir_opt(cx, lhs1), Sugg::hir_opt(cx, rhs1)) {
|
2019-12-03 06:21:00 -06:00
|
|
|
(
|
|
|
|
true,
|
|
|
|
format!(" `{}` and `{}`", first, second),
|
|
|
|
format!("std::mem::swap({}, {})", first.mut_addr(), second.mut_addr()),
|
|
|
|
)
|
2016-06-05 13:19:00 -05:00
|
|
|
} else {
|
2018-09-15 04:25:40 -05:00
|
|
|
(true, String::new(), String::new())
|
2017-10-23 14:18:02 -05:00
|
|
|
};
|
2017-11-04 14:55:56 -05:00
|
|
|
|
2017-10-23 14:18:02 -05:00
|
|
|
let span = w[0].span.to(second.span);
|
2017-11-04 14:55:56 -05:00
|
|
|
|
2019-12-03 06:21:00 -06:00
|
|
|
span_lint_and_then(
|
|
|
|
cx,
|
|
|
|
MANUAL_SWAP,
|
|
|
|
span,
|
|
|
|
&format!("this looks like you are swapping{} manually", what),
|
2020-04-17 01:08:00 -05:00
|
|
|
|diag| {
|
2019-12-03 06:21:00 -06:00
|
|
|
if !sugg.is_empty() {
|
2020-04-17 01:08:00 -05:00
|
|
|
diag.span_suggestion(
|
2019-12-03 06:21:00 -06:00
|
|
|
span,
|
|
|
|
"try",
|
|
|
|
sugg,
|
2019-12-03 06:42:05 -06:00
|
|
|
applicability,
|
2019-12-03 06:21:00 -06:00
|
|
|
);
|
2017-11-04 14:55:56 -05:00
|
|
|
|
2019-12-03 06:21:00 -06:00
|
|
|
if replace {
|
2020-04-17 01:08:00 -05:00
|
|
|
diag.note("or maybe you should use `std::mem::replace`?");
|
2019-12-03 06:21:00 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
);
|
2017-10-23 14:18:02 -05:00
|
|
|
}
|
|
|
|
}
|
2016-02-27 17:46:02 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-12-03 06:20:42 -06:00
|
|
|
enum Slice<'a> {
|
|
|
|
/// `slice.swap(idx1, idx2)` can be used
|
|
|
|
///
|
|
|
|
/// ## Example
|
|
|
|
///
|
|
|
|
/// ```rust
|
2019-12-03 09:29:05 -06:00
|
|
|
/// # let mut a = vec![0, 1];
|
2019-12-03 06:20:42 -06:00
|
|
|
/// let t = a[1];
|
|
|
|
/// a[1] = a[0];
|
|
|
|
/// a[0] = t;
|
|
|
|
/// // can be written as
|
|
|
|
/// a.swap(0, 1);
|
|
|
|
/// ```
|
2019-12-27 01:12:26 -06:00
|
|
|
Swappable(&'a Expr<'a>, &'a Expr<'a>, &'a Expr<'a>),
|
2019-12-03 06:20:42 -06:00
|
|
|
/// The `swap` function cannot be used.
|
|
|
|
///
|
|
|
|
/// ## Example
|
|
|
|
///
|
|
|
|
/// ```rust
|
2019-12-03 09:29:05 -06:00
|
|
|
/// # let mut a = [vec![1, 2], vec![3, 4]];
|
2019-12-03 06:20:42 -06:00
|
|
|
/// let t = a[0][1];
|
|
|
|
/// a[0][1] = a[1][0];
|
|
|
|
/// a[1][0] = t;
|
|
|
|
/// ```
|
|
|
|
NotSwappable,
|
|
|
|
/// Not a slice
|
|
|
|
None,
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Checks if both expressions are index operations into "slice-like" types.
|
2020-06-25 15:41:36 -05:00
|
|
|
fn check_for_slice<'a>(cx: &LateContext<'_>, lhs1: &'a Expr<'_>, lhs2: &'a Expr<'_>) -> Slice<'a> {
|
2019-12-03 06:20:42 -06:00
|
|
|
if let ExprKind::Index(ref lhs1, ref idx1) = lhs1.kind {
|
|
|
|
if let ExprKind::Index(ref lhs2, ref idx2) = lhs2.kind {
|
2020-08-28 09:10:16 -05:00
|
|
|
if eq_expr_value(cx, lhs1, lhs2) {
|
2020-07-17 03:47:04 -05:00
|
|
|
let ty = walk_ptrs_ty(cx.typeck_results().expr_ty(lhs1));
|
2019-12-03 06:20:42 -06:00
|
|
|
|
|
|
|
if matches!(ty.kind, ty::Slice(_))
|
|
|
|
|| matches!(ty.kind, ty::Array(_, _))
|
2020-04-13 01:57:34 -05:00
|
|
|
|| is_type_diagnostic_item(cx, ty, sym!(vec_type))
|
2020-04-23 01:09:42 -05:00
|
|
|
|| is_type_diagnostic_item(cx, ty, sym!(vecdeque_type))
|
2019-12-03 06:20:42 -06:00
|
|
|
{
|
|
|
|
return Slice::Swappable(lhs1, idx1, idx2);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
return Slice::NotSwappable;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Slice::None
|
|
|
|
}
|
|
|
|
|
2016-02-27 17:46:02 -06:00
|
|
|
/// Implementation of the `ALMOST_SWAPPED` lint.
|
2020-06-25 15:41:36 -05:00
|
|
|
fn check_suspicious_swap(cx: &LateContext<'_>, block: &Block<'_>) {
|
2016-02-27 17:46:02 -06:00
|
|
|
for w in block.stmts.windows(2) {
|
2017-10-23 14:18:02 -05:00
|
|
|
if_chain! {
|
2019-09-27 10:16:06 -05:00
|
|
|
if let StmtKind::Semi(ref first) = w[0].kind;
|
|
|
|
if let StmtKind::Semi(ref second) = w[1].kind;
|
2017-10-23 14:18:02 -05:00
|
|
|
if !differing_macro_contexts(first.span, second.span);
|
2019-12-23 22:16:04 -06:00
|
|
|
if let ExprKind::Assign(ref lhs0, ref rhs0, _) = first.kind;
|
|
|
|
if let ExprKind::Assign(ref lhs1, ref rhs1, _) = second.kind;
|
2020-08-28 09:10:16 -05:00
|
|
|
if eq_expr_value(cx, lhs0, rhs1);
|
|
|
|
if eq_expr_value(cx, lhs1, rhs0);
|
2017-10-23 14:18:02 -05:00
|
|
|
then {
|
|
|
|
let lhs0 = Sugg::hir_opt(cx, lhs0);
|
|
|
|
let rhs0 = Sugg::hir_opt(cx, rhs0);
|
|
|
|
let (what, lhs, rhs) = if let (Some(first), Some(second)) = (lhs0, rhs0) {
|
2017-11-04 14:56:05 -05:00
|
|
|
(
|
|
|
|
format!(" `{}` and `{}`", first, second),
|
|
|
|
first.mut_addr().to_string(),
|
|
|
|
second.mut_addr().to_string(),
|
|
|
|
)
|
2017-10-23 14:18:02 -05:00
|
|
|
} else {
|
2018-08-21 05:46:18 -05:00
|
|
|
(String::new(), String::new(), String::new())
|
2017-10-23 14:18:02 -05:00
|
|
|
};
|
2017-11-04 14:55:56 -05:00
|
|
|
|
2017-10-23 14:18:02 -05:00
|
|
|
let span = first.span.to(second.span);
|
2017-11-04 14:55:56 -05:00
|
|
|
|
2017-10-23 14:18:02 -05:00
|
|
|
span_lint_and_then(cx,
|
|
|
|
ALMOST_SWAPPED,
|
|
|
|
span,
|
|
|
|
&format!("this looks like you are trying to swap{}", what),
|
2020-04-17 01:08:00 -05:00
|
|
|
|diag| {
|
2017-10-23 14:18:02 -05:00
|
|
|
if !what.is_empty() {
|
2020-04-17 01:08:00 -05:00
|
|
|
diag.span_suggestion(
|
2018-09-18 10:07:54 -05:00
|
|
|
span,
|
|
|
|
"try",
|
|
|
|
format!(
|
|
|
|
"std::mem::swap({}, {})",
|
|
|
|
lhs,
|
|
|
|
rhs,
|
|
|
|
),
|
2018-09-18 12:01:17 -05:00
|
|
|
Applicability::MaybeIncorrect,
|
2018-09-18 10:07:54 -05:00
|
|
|
);
|
2020-04-17 01:08:00 -05:00
|
|
|
diag.note("or maybe you should use `std::mem::replace`?");
|
2017-10-23 14:18:02 -05:00
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
2016-02-27 17:01:15 -06:00
|
|
|
}
|
|
|
|
}
|