2018-07-24 01:55:38 -05:00
|
|
|
use crate::utils::{higher, span_lint};
|
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;
|
2020-01-12 00:08:41 -06:00
|
|
|
use rustc_lint::{LateContext, LateLintPass, LintContext};
|
2020-03-30 04:02:14 -05:00
|
|
|
use rustc_middle::hir::map::Map;
|
|
|
|
use rustc_middle::lint::in_external_macro;
|
|
|
|
use rustc_middle::ty;
|
2020-01-11 05:37:08 -06:00
|
|
|
use rustc_session::{declare_lint_pass, declare_tool_lint};
|
2015-05-18 02:02:24 -05: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 instances of `mut mut` references.
|
|
|
|
///
|
|
|
|
/// **Why is this bad?** Multiple `mut`s don't add anything meaningful to the
|
|
|
|
/// source. This is either a copy'n'paste error, or it shows a fundamental
|
|
|
|
/// misunderstanding of references.
|
|
|
|
///
|
|
|
|
/// **Known problems:** None.
|
|
|
|
///
|
|
|
|
/// **Example:**
|
|
|
|
/// ```rust
|
2019-08-03 11:42:05 -05:00
|
|
|
/// # let mut y = 1;
|
2019-03-05 10:50:33 -06:00
|
|
|
/// let x = &mut &mut y;
|
|
|
|
/// ```
|
2016-02-05 17:13:29 -06:00
|
|
|
pub MUT_MUT,
|
2018-03-28 08:24:26 -05:00
|
|
|
pedantic,
|
2019-01-30 19:15:29 -06:00
|
|
|
"usage of double-mut refs, e.g., `&mut &mut ...`"
|
2016-02-05 17:13:29 -06:00
|
|
|
}
|
2015-05-18 02:02:24 -05:00
|
|
|
|
2019-04-08 15:43:55 -05:00
|
|
|
declare_lint_pass!(MutMut => [MUT_MUT]);
|
2015-08-11 13:22:20 -05:00
|
|
|
|
2020-06-25 15:41:36 -05:00
|
|
|
impl<'tcx> LateLintPass<'tcx> for MutMut {
|
|
|
|
fn check_block(&mut self, cx: &LateContext<'tcx>, block: &'tcx hir::Block<'_>) {
|
2018-03-15 10:07:15 -05:00
|
|
|
intravisit::walk_block(&mut MutVisitor { cx }, block);
|
2016-06-21 15:54:22 -05:00
|
|
|
}
|
|
|
|
|
2020-06-25 15:41:36 -05:00
|
|
|
fn check_ty(&mut self, cx: &LateContext<'tcx>, ty: &'tcx hir::Ty<'_>) {
|
2020-01-09 01:13:22 -06:00
|
|
|
use rustc_hir::intravisit::Visitor;
|
2016-06-21 15:54:22 -05:00
|
|
|
|
2018-03-15 10:07:15 -05:00
|
|
|
MutVisitor { cx }.visit_ty(ty);
|
2016-06-21 15:54:22 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-06-19 13:36:23 -05:00
|
|
|
pub struct MutVisitor<'a, 'tcx> {
|
2020-06-25 15:41:36 -05:00
|
|
|
cx: &'a LateContext<'tcx>,
|
2016-06-21 15:54:22 -05:00
|
|
|
}
|
|
|
|
|
2016-12-06 04:32:21 -06:00
|
|
|
impl<'a, 'tcx> intravisit::Visitor<'tcx> for MutVisitor<'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-07-24 01:55:38 -05:00
|
|
|
if in_external_macro(self.cx.sess(), expr.span) {
|
2016-05-17 09:34:15 -05:00
|
|
|
return;
|
2015-08-11 13:22:20 -05:00
|
|
|
}
|
|
|
|
|
2021-02-11 08:04:38 -06:00
|
|
|
if let Some((_, arg, body, _)) = higher::for_loop(expr) {
|
2016-06-21 15:54:22 -05: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);
|
2019-12-21 12:38:45 -06:00
|
|
|
} else if let hir::ExprKind::AddrOf(hir::BorrowKind::Ref, hir::Mutability::Mut, ref e) = expr.kind {
|
|
|
|
if let hir::ExprKind::AddrOf(hir::BorrowKind::Ref, hir::Mutability::Mut, _) = e.kind {
|
2017-08-09 02:30:56 -05:00
|
|
|
span_lint(
|
|
|
|
self.cx,
|
|
|
|
MUT_MUT,
|
|
|
|
expr.span,
|
|
|
|
"generally you want to avoid `&mut &mut _` if possible",
|
|
|
|
);
|
2020-08-03 17:18:29 -05:00
|
|
|
} else if let ty::Ref(_, _, hir::Mutability::Mut) = self.cx.typeck_results().expr_ty(e).kind() {
|
2017-08-09 02:30:56 -05:00
|
|
|
span_lint(
|
|
|
|
self.cx,
|
|
|
|
MUT_MUT,
|
|
|
|
expr.span,
|
|
|
|
"this expression mutably borrows a mutable reference. Consider reborrowing",
|
|
|
|
);
|
2016-05-17 09:34:15 -05:00
|
|
|
}
|
|
|
|
}
|
2016-01-24 03:16:56 -06:00
|
|
|
}
|
|
|
|
|
2019-12-29 22:02:10 -06:00
|
|
|
fn visit_ty(&mut self, ty: &'tcx hir::Ty<'_>) {
|
2018-07-12 03:03:06 -05:00
|
|
|
if let hir::TyKind::Rptr(
|
2017-09-05 04:33:04 -05:00
|
|
|
_,
|
|
|
|
hir::MutTy {
|
|
|
|
ty: ref pty,
|
2019-12-21 12:38:45 -06:00
|
|
|
mutbl: hir::Mutability::Mut,
|
2017-09-05 04:33:04 -05:00
|
|
|
},
|
2019-09-27 10:16:06 -05:00
|
|
|
) = ty.kind
|
2017-08-09 02:30:56 -05:00
|
|
|
{
|
2018-07-12 03:03:06 -05:00
|
|
|
if let hir::TyKind::Rptr(
|
2017-09-05 04:33:04 -05:00
|
|
|
_,
|
|
|
|
hir::MutTy {
|
2019-12-21 12:38:45 -06:00
|
|
|
mutbl: hir::Mutability::Mut,
|
2019-11-11 11:24:12 -06:00
|
|
|
..
|
2017-09-05 04:33:04 -05:00
|
|
|
},
|
2019-09-27 10:16:06 -05:00
|
|
|
) = pty.kind
|
2017-09-05 04:33:04 -05:00
|
|
|
{
|
2017-08-09 02:30:56 -05:00
|
|
|
span_lint(
|
|
|
|
self.cx,
|
|
|
|
MUT_MUT,
|
|
|
|
ty.span,
|
|
|
|
"generally you want to avoid `&mut &mut _` if possible",
|
|
|
|
);
|
2016-05-17 09:34:15 -05:00
|
|
|
}
|
|
|
|
}
|
2016-06-21 15:54:22 -05:00
|
|
|
|
|
|
|
intravisit::walk_ty(self, ty);
|
2015-08-11 13:22:20 -05:00
|
|
|
}
|
2020-03-15 17:41:20 -05:00
|
|
|
fn nested_visit_map(&mut self) -> intravisit::NestedVisitorMap<Self::Map> {
|
2017-05-12 05:02:42 -05:00
|
|
|
intravisit::NestedVisitorMap::None
|
2016-12-06 04:32:21 -06:00
|
|
|
}
|
2015-05-18 03:41:15 -05:00
|
|
|
}
|