2018-09-15 02:21:58 -05:00
|
|
|
use crate::rustc::hir;
|
|
|
|
use crate::rustc::hir::intravisit;
|
|
|
|
use crate::rustc::lint::{LateContext, LateLintPass, LintArray, LintPass, in_external_macro, LintContext};
|
|
|
|
use crate::rustc::{declare_tool_lint, lint_array};
|
|
|
|
use crate::rustc::ty;
|
2018-07-24 01:55:38 -05:00
|
|
|
use crate::utils::{higher, span_lint};
|
2015-05-18 02:02:24 -05:00
|
|
|
|
2016-08-06 02:55:04 -05:00
|
|
|
/// **What it does:** Checks for instances of `mut mut` references.
|
2015-12-10 18:22:27 -06:00
|
|
|
///
|
2016-08-06 02:55:04 -05:00
|
|
|
/// **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.
|
2015-12-10 18:22:27 -06:00
|
|
|
///
|
2016-08-06 02:55:04 -05:00
|
|
|
/// **Known problems:** None.
|
2015-12-10 18:22:27 -06:00
|
|
|
///
|
2016-07-15 17:25:44 -05:00
|
|
|
/// **Example:**
|
|
|
|
/// ```rust
|
|
|
|
/// let x = &mut &mut y;
|
|
|
|
/// ```
|
2018-03-28 08:24:26 -05:00
|
|
|
declare_clippy_lint! {
|
2016-02-05 17:13:29 -06:00
|
|
|
pub MUT_MUT,
|
2018-03-28 08:24:26 -05:00
|
|
|
pedantic,
|
2016-07-15 17:25:44 -05: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
|
|
|
|
2017-08-09 02:30:56 -05:00
|
|
|
#[derive(Copy, Clone)]
|
2015-05-18 02:02:24 -05:00
|
|
|
pub struct MutMut;
|
|
|
|
|
|
|
|
impl LintPass for MutMut {
|
2015-08-11 13:22:20 -05:00
|
|
|
fn get_lints(&self) -> LintArray {
|
2015-05-18 02:02:24 -05:00
|
|
|
lint_array!(MUT_MUT)
|
2015-08-11 13:22:20 -05:00
|
|
|
}
|
2015-09-18 21:53:04 -05:00
|
|
|
}
|
2015-08-11 13:22:20 -05:00
|
|
|
|
2016-12-07 06:13:40 -06:00
|
|
|
impl<'a, 'tcx> LateLintPass<'a, 'tcx> for MutMut {
|
|
|
|
fn check_block(&mut self, cx: &LateContext<'a, '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
|
|
|
}
|
|
|
|
|
2016-12-07 06:13:40 -06:00
|
|
|
fn check_ty(&mut self, cx: &LateContext<'a, 'tcx>, ty: &'tcx hir::Ty) {
|
2018-09-15 02:21:58 -05:00
|
|
|
use crate::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
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub struct MutVisitor<'a, 'tcx: 'a> {
|
|
|
|
cx: &'a LateContext<'a, 'tcx>,
|
|
|
|
}
|
|
|
|
|
2016-12-06 04:32:21 -06:00
|
|
|
impl<'a, 'tcx> intravisit::Visitor<'tcx> for MutVisitor<'a, 'tcx> {
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2016-06-29 17:08:43 -05: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);
|
2018-07-12 02:30:57 -05:00
|
|
|
} else if let hir::ExprKind::AddrOf(hir::MutMutable, ref e) = expr.node {
|
|
|
|
if let hir::ExprKind::AddrOf(hir::MutMutable, _) = e.node {
|
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",
|
|
|
|
);
|
2018-08-22 16:34:52 -05:00
|
|
|
} else if let ty::Ref(
|
2017-09-05 04:33:04 -05:00
|
|
|
_,
|
2018-05-11 01:37:48 -05:00
|
|
|
_,
|
2018-05-11 02:50:29 -05:00
|
|
|
hir::MutMutable,
|
2017-09-05 04:33:04 -05:00
|
|
|
) = self.cx.tables.expr_ty(e).sty
|
|
|
|
{
|
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
|
|
|
}
|
|
|
|
|
2016-12-06 04:32:21 -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,
|
|
|
|
mutbl: hir::MutMutable,
|
|
|
|
},
|
|
|
|
) = ty.node
|
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 {
|
|
|
|
mutbl: hir::MutMutable,
|
|
|
|
..
|
|
|
|
},
|
|
|
|
) = pty.node
|
|
|
|
{
|
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
|
|
|
}
|
2016-12-06 04:32:21 -06:00
|
|
|
fn nested_visit_map<'this>(&'this mut self) -> intravisit::NestedVisitorMap<'this, 'tcx> {
|
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
|
|
|
}
|