2016-04-26 15:49:53 +02:00
|
|
|
//! Checks for needless address of operations (`&`)
|
|
|
|
//!
|
|
|
|
//! This lint is **warn** by default
|
|
|
|
|
|
|
|
use rustc::lint::*;
|
2018-07-19 00:53:23 -07:00
|
|
|
use rustc::{declare_lint, lint_array};
|
2018-07-19 01:00:54 -07:00
|
|
|
use if_chain::if_chain;
|
2018-07-12 15:30:57 +08:00
|
|
|
use rustc::hir::{BindingAnnotation, Expr, ExprKind, MutImmutable, Pat, PatKind};
|
2016-11-16 21:57:56 +01:00
|
|
|
use rustc::ty;
|
2017-09-05 11:33:04 +02:00
|
|
|
use rustc::ty::adjustment::{Adjust, Adjustment};
|
2018-05-30 10:15:50 +02:00
|
|
|
use crate::utils::{in_macro, snippet_opt, span_lint_and_then};
|
2016-04-26 15:49:53 +02:00
|
|
|
|
2016-08-06 09:55:04 +02:00
|
|
|
/// **What it does:** Checks for address of operations (`&`) that are going to
|
|
|
|
/// be dereferenced immediately by the compiler.
|
2016-04-26 15:49:53 +02:00
|
|
|
///
|
2016-08-06 09:55:04 +02:00
|
|
|
/// **Why is this bad?** Suggests that the receiver of the expression borrows
|
|
|
|
/// the expression.
|
2016-04-26 15:49:53 +02:00
|
|
|
///
|
2016-07-16 00:25:44 +02:00
|
|
|
/// **Example:**
|
|
|
|
/// ```rust
|
|
|
|
/// let x: &i32 = &&&&&&5;
|
|
|
|
/// ```
|
2018-07-25 14:54:09 +02:00
|
|
|
///
|
|
|
|
/// **Known problems:** This will cause false positives in code generated by `derive`.
|
|
|
|
/// For instance in the following snippet:
|
|
|
|
/// ```rust
|
|
|
|
/// #[derive(Debug)]
|
|
|
|
/// pub enum Error {
|
|
|
|
/// Type(
|
|
|
|
/// &'static str,
|
|
|
|
/// ),
|
|
|
|
/// }
|
|
|
|
/// ```
|
|
|
|
/// A warning will be emitted that `&'static str` should be replaced with `&'static str`,
|
|
|
|
/// however there is nothing that can or should be done to fix this.
|
2018-03-28 15:24:26 +02:00
|
|
|
declare_clippy_lint! {
|
2016-04-26 15:49:53 +02:00
|
|
|
pub NEEDLESS_BORROW,
|
2018-04-08 10:55:42 +02:00
|
|
|
nursery,
|
2016-04-26 15:49:53 +02:00
|
|
|
"taking a reference that is going to be automatically dereferenced"
|
|
|
|
}
|
|
|
|
|
2017-08-09 09:30:56 +02:00
|
|
|
#[derive(Copy, Clone)]
|
2016-04-26 15:49:53 +02:00
|
|
|
pub struct NeedlessBorrow;
|
|
|
|
|
|
|
|
impl LintPass for NeedlessBorrow {
|
|
|
|
fn get_lints(&self) -> LintArray {
|
|
|
|
lint_array!(NEEDLESS_BORROW)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-12-07 13:13:40 +01:00
|
|
|
impl<'a, 'tcx> LateLintPass<'a, 'tcx> for NeedlessBorrow {
|
|
|
|
fn check_expr(&mut self, cx: &LateContext<'a, 'tcx>, e: &'tcx Expr) {
|
2017-04-01 00:14:04 +02:00
|
|
|
if in_macro(e.span) {
|
2016-04-26 15:49:53 +02:00
|
|
|
return;
|
|
|
|
}
|
2018-07-12 15:30:57 +08:00
|
|
|
if let ExprKind::AddrOf(MutImmutable, ref inner) = e.node {
|
2017-01-13 17:04:56 +01:00
|
|
|
if let ty::TyRef(..) = cx.tables.expr_ty(inner).sty {
|
2017-06-05 00:28:01 +03:00
|
|
|
for adj3 in cx.tables.expr_adjustments(e).windows(3) {
|
2017-09-05 11:33:04 +02:00
|
|
|
if let [Adjustment {
|
|
|
|
kind: Adjust::Deref(_),
|
|
|
|
..
|
|
|
|
}, Adjustment {
|
|
|
|
kind: Adjust::Deref(_),
|
|
|
|
..
|
|
|
|
}, Adjustment {
|
|
|
|
kind: Adjust::Borrow(_),
|
|
|
|
..
|
|
|
|
}] = *adj3
|
|
|
|
{
|
2017-09-16 11:27:24 +09:00
|
|
|
span_lint_and_then(
|
2017-09-05 11:33:04 +02:00
|
|
|
cx,
|
|
|
|
NEEDLESS_BORROW,
|
|
|
|
e.span,
|
2017-09-16 11:27:24 +09:00
|
|
|
"this expression borrows a reference that is immediately dereferenced \
|
|
|
|
by the compiler",
|
|
|
|
|db| {
|
|
|
|
if let Some(snippet) = snippet_opt(cx, inner.span) {
|
|
|
|
db.span_suggestion(e.span, "change this to", snippet);
|
|
|
|
}
|
2017-11-05 04:55:56 +09:00
|
|
|
},
|
2017-09-05 11:33:04 +02:00
|
|
|
);
|
2017-06-05 00:28:01 +03:00
|
|
|
}
|
2016-04-26 15:49:53 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-12-07 13:13:40 +01:00
|
|
|
fn check_pat(&mut self, cx: &LateContext<'a, 'tcx>, pat: &'tcx Pat) {
|
2017-04-01 00:14:04 +02:00
|
|
|
if in_macro(pat.span) {
|
2016-08-01 16:59:14 +02:00
|
|
|
return;
|
|
|
|
}
|
2017-10-23 15:18:02 -04:00
|
|
|
if_chain! {
|
|
|
|
if let PatKind::Binding(BindingAnnotation::Ref, _, name, _) = pat.node;
|
2018-05-11 08:37:48 +02:00
|
|
|
if let ty::TyRef(_, tam, mutbl) = cx.tables.pat_ty(pat).sty;
|
|
|
|
if mutbl == MutImmutable;
|
|
|
|
if let ty::TyRef(_, _, mutbl) = tam.sty;
|
2017-01-10 23:56:54 +09:00
|
|
|
// only lint immutable refs, because borrowed `&mut T` cannot be moved out
|
2018-05-11 08:37:48 +02:00
|
|
|
if mutbl == MutImmutable;
|
2017-10-23 15:18:02 -04:00
|
|
|
then {
|
|
|
|
span_lint_and_then(
|
|
|
|
cx,
|
|
|
|
NEEDLESS_BORROW,
|
|
|
|
pat.span,
|
|
|
|
"this pattern creates a reference to a reference",
|
|
|
|
|db| {
|
|
|
|
if let Some(snippet) = snippet_opt(cx, name.span) {
|
|
|
|
db.span_suggestion(pat.span, "change this to", snippet);
|
|
|
|
}
|
2017-09-16 11:27:24 +09:00
|
|
|
}
|
2017-10-23 15:18:02 -04:00
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
2016-08-01 16:59:14 +02:00
|
|
|
}
|
2016-04-26 15:49:53 +02:00
|
|
|
}
|