2024-03-09 17:09:17 +01:00
|
|
|
use clippy_utils::diagnostics::{span_lint, span_lint_hir};
|
2021-03-25 19:29:11 +01:00
|
|
|
use clippy_utils::higher;
|
2020-01-07 01:39:50 +09:00
|
|
|
use rustc_hir as hir;
|
2020-01-09 16:13:22 +09:00
|
|
|
use rustc_hir::intravisit;
|
2020-01-12 15:08:41 +09:00
|
|
|
use rustc_lint::{LateContext, LateLintPass, LintContext};
|
2020-03-30 11:02:14 +02:00
|
|
|
use rustc_middle::lint::in_external_macro;
|
|
|
|
use rustc_middle::ty;
|
2023-11-25 17:45:27 +00:00
|
|
|
use rustc_session::declare_lint_pass;
|
2015-05-18 09:02:24 +02:00
|
|
|
|
2018-03-28 15:24:26 +02:00
|
|
|
declare_clippy_lint! {
|
2021-07-29 12:16:06 +02:00
|
|
|
/// ### What it does
|
|
|
|
/// Checks for instances of `mut mut` references.
|
2019-03-05 11:50:33 -05:00
|
|
|
///
|
2021-07-29 12:16:06 +02:00
|
|
|
/// ### Why is this bad?
|
|
|
|
/// Multiple `mut`s don't add anything meaningful to the
|
2019-03-05 11:50:33 -05:00
|
|
|
/// source. This is either a copy'n'paste error, or it shows a fundamental
|
|
|
|
/// misunderstanding of references.
|
|
|
|
///
|
2021-07-29 12:16:06 +02:00
|
|
|
/// ### Example
|
2023-10-23 13:49:18 +00:00
|
|
|
/// ```no_run
|
2019-08-03 18:42:05 +02:00
|
|
|
/// # let mut y = 1;
|
2019-03-05 11:50:33 -05:00
|
|
|
/// let x = &mut &mut y;
|
|
|
|
/// ```
|
2021-12-06 12:33:31 +01:00
|
|
|
#[clippy::version = "pre 1.29.0"]
|
2016-02-06 00:13:29 +01:00
|
|
|
pub MUT_MUT,
|
2018-03-28 15:24:26 +02:00
|
|
|
pedantic,
|
2019-01-31 01:15:29 +00:00
|
|
|
"usage of double-mut refs, e.g., `&mut &mut ...`"
|
2016-02-06 00:13:29 +01:00
|
|
|
}
|
2015-05-18 09:02:24 +02:00
|
|
|
|
2019-04-08 13:43:55 -07:00
|
|
|
declare_lint_pass!(MutMut => [MUT_MUT]);
|
2015-08-11 20:22:20 +02:00
|
|
|
|
2020-06-25 23:41:36 +03:00
|
|
|
impl<'tcx> LateLintPass<'tcx> for MutMut {
|
|
|
|
fn check_block(&mut self, cx: &LateContext<'tcx>, block: &'tcx hir::Block<'_>) {
|
2018-03-15 16:07:15 +01:00
|
|
|
intravisit::walk_block(&mut MutVisitor { cx }, block);
|
2016-06-21 22:54:22 +02:00
|
|
|
}
|
|
|
|
|
2020-06-25 23:41:36 +03:00
|
|
|
fn check_ty(&mut self, cx: &LateContext<'tcx>, ty: &'tcx hir::Ty<'_>) {
|
2024-03-08 21:50:45 -05:00
|
|
|
if in_external_macro(cx.sess(), ty.span) {
|
|
|
|
return;
|
|
|
|
}
|
2016-06-21 22:54:22 +02:00
|
|
|
|
2024-03-08 21:50:45 -05:00
|
|
|
if let hir::TyKind::Ref(
|
|
|
|
_,
|
|
|
|
hir::MutTy {
|
|
|
|
ty: pty,
|
|
|
|
mutbl: hir::Mutability::Mut,
|
|
|
|
},
|
|
|
|
) = ty.kind
|
|
|
|
{
|
|
|
|
if let hir::TyKind::Ref(
|
|
|
|
_,
|
|
|
|
hir::MutTy {
|
|
|
|
mutbl: hir::Mutability::Mut,
|
|
|
|
..
|
|
|
|
},
|
|
|
|
) = pty.kind
|
|
|
|
{
|
|
|
|
span_lint(
|
|
|
|
cx,
|
|
|
|
MUT_MUT,
|
|
|
|
ty.span,
|
|
|
|
"generally you want to avoid `&mut &mut _` if possible",
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
2016-06-21 22:54:22 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-06-20 01:36:23 +07:00
|
|
|
pub struct MutVisitor<'a, 'tcx> {
|
2020-06-25 23:41:36 +03:00
|
|
|
cx: &'a LateContext<'tcx>,
|
2016-06-21 22:54:22 +02:00
|
|
|
}
|
|
|
|
|
2016-12-06 11:32:21 +01:00
|
|
|
impl<'a, 'tcx> intravisit::Visitor<'tcx> for MutVisitor<'a, 'tcx> {
|
2019-12-27 16:12:26 +09:00
|
|
|
fn visit_expr(&mut self, expr: &'tcx hir::Expr<'_>) {
|
2018-07-24 07:55:38 +01:00
|
|
|
if in_external_macro(self.cx.sess(), expr.span) {
|
2016-05-17 16:34:15 +02:00
|
|
|
return;
|
2015-08-11 20:22:20 +02:00
|
|
|
}
|
|
|
|
|
2021-08-08 11:49:13 -03:00
|
|
|
if let Some(higher::ForLoop { arg, body, .. }) = higher::ForLoop::hir(expr) {
|
2016-06-21 22:54:22 +02:00
|
|
|
// A `for` loop lowers to:
|
|
|
|
// ```rust
|
|
|
|
// match ::std::iter::Iterator::next(&mut iter) {
|
|
|
|
// // ^^^^
|
|
|
|
// ```
|
|
|
|
// Let's ignore the generated code.
|
|
|
|
intravisit::walk_expr(self, arg);
|
|
|
|
intravisit::walk_expr(self, body);
|
2021-04-08 17:50:13 +02:00
|
|
|
} else if let hir::ExprKind::AddrOf(hir::BorrowKind::Ref, hir::Mutability::Mut, e) = expr.kind {
|
2019-12-21 18:38:45 +00:00
|
|
|
if let hir::ExprKind::AddrOf(hir::BorrowKind::Ref, hir::Mutability::Mut, _) = e.kind {
|
2024-03-09 17:09:17 +01:00
|
|
|
span_lint_hir(
|
2017-08-09 09:30:56 +02:00
|
|
|
self.cx,
|
|
|
|
MUT_MUT,
|
2024-03-09 17:09:17 +01:00
|
|
|
expr.hir_id,
|
2017-08-09 09:30:56 +02:00
|
|
|
expr.span,
|
|
|
|
"generally you want to avoid `&mut &mut _` if possible",
|
|
|
|
);
|
2022-11-21 20:34:47 +01:00
|
|
|
} else if let ty::Ref(_, ty, hir::Mutability::Mut) = self.cx.typeck_results().expr_ty(e).kind() {
|
|
|
|
if ty.peel_refs().is_sized(self.cx.tcx, self.cx.param_env) {
|
2024-03-09 17:09:17 +01:00
|
|
|
span_lint_hir(
|
2022-11-21 20:34:47 +01:00
|
|
|
self.cx,
|
|
|
|
MUT_MUT,
|
2024-03-09 17:09:17 +01:00
|
|
|
expr.hir_id,
|
2022-11-21 20:34:47 +01:00
|
|
|
expr.span,
|
|
|
|
"this expression mutably borrows a mutable reference. Consider reborrowing",
|
|
|
|
);
|
|
|
|
}
|
2016-05-17 16:34:15 +02:00
|
|
|
}
|
|
|
|
}
|
2016-01-24 10:16:56 +01:00
|
|
|
}
|
2015-05-18 10:41:15 +02:00
|
|
|
}
|