2016-04-26 13:49:53 +00:00
|
|
|
//! Checks for needless address of operations (`&`)
|
|
|
|
//!
|
|
|
|
//! This lint is **warn** by default
|
|
|
|
|
|
|
|
use rustc::lint::*;
|
2016-08-01 14:59:14 +00:00
|
|
|
use rustc::hir::{ExprAddrOf, Expr, MutImmutable, Pat, PatKind, BindingMode};
|
2016-04-26 13:49:53 +00:00
|
|
|
use rustc::ty::TyRef;
|
|
|
|
use utils::{span_lint, in_macro};
|
2016-05-27 10:12:38 +00:00
|
|
|
use rustc::ty::adjustment::AutoAdjustment::AdjustDerefRef;
|
2016-04-26 13:49:53 +00:00
|
|
|
|
2016-08-06 07:55:04 +00:00
|
|
|
/// **What it does:** Checks for address of operations (`&`) that are going to
|
|
|
|
/// be dereferenced immediately by the compiler.
|
2016-04-26 13:49:53 +00:00
|
|
|
///
|
2016-08-06 07:55:04 +00:00
|
|
|
/// **Why is this bad?** Suggests that the receiver of the expression borrows
|
|
|
|
/// the expression.
|
2016-04-26 13:49:53 +00:00
|
|
|
///
|
2016-08-06 07:55:04 +00:00
|
|
|
/// **Known problems:** None.
|
2016-04-26 13:49:53 +00:00
|
|
|
///
|
2016-07-15 22:25:44 +00:00
|
|
|
/// **Example:**
|
|
|
|
/// ```rust
|
|
|
|
/// let x: &i32 = &&&&&&5;
|
|
|
|
/// ```
|
2016-04-26 13:49:53 +00:00
|
|
|
declare_lint! {
|
|
|
|
pub NEEDLESS_BORROW,
|
|
|
|
Warn,
|
|
|
|
"taking a reference that is going to be automatically dereferenced"
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Copy,Clone)]
|
|
|
|
pub struct NeedlessBorrow;
|
|
|
|
|
|
|
|
impl LintPass for NeedlessBorrow {
|
|
|
|
fn get_lints(&self) -> LintArray {
|
|
|
|
lint_array!(NEEDLESS_BORROW)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl LateLintPass for NeedlessBorrow {
|
|
|
|
fn check_expr(&mut self, cx: &LateContext, e: &Expr) {
|
|
|
|
if in_macro(cx, e.span) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if let ExprAddrOf(MutImmutable, ref inner) = e.node {
|
|
|
|
if let TyRef(..) = cx.tcx.expr_ty(inner).sty {
|
2016-05-27 10:12:38 +00:00
|
|
|
if let Some(&AdjustDerefRef(ref deref)) = cx.tcx.tables.borrow().adjustments.get(&e.id) {
|
|
|
|
if deref.autoderefs > 1 && deref.autoref.is_some() {
|
|
|
|
span_lint(cx,
|
|
|
|
NEEDLESS_BORROW,
|
|
|
|
e.span,
|
2016-06-05 23:42:39 +00:00
|
|
|
"this expression borrows a reference that is immediately dereferenced by the \
|
|
|
|
compiler");
|
2016-05-27 10:12:38 +00:00
|
|
|
}
|
2016-04-26 13:49:53 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-08-01 14:59:14 +00:00
|
|
|
fn check_pat(&mut self, cx: &LateContext, pat: &Pat) {
|
|
|
|
if in_macro(cx, pat.span) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if let PatKind::Binding(BindingMode::BindByRef(MutImmutable), _, _) = pat.node {
|
|
|
|
if let TyRef(_, ref tam) = cx.tcx.pat_ty(pat).sty {
|
|
|
|
if tam.mutbl == MutImmutable {
|
|
|
|
if let TyRef(..) = tam.ty.sty {
|
|
|
|
span_lint(cx,
|
|
|
|
NEEDLESS_BORROW,
|
|
|
|
pat.span,
|
|
|
|
"this pattern creates a reference to a reference")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-04-26 13:49:53 +00:00
|
|
|
}
|