2016-04-26 13:49:53 +00:00
|
|
|
//! Checks for needless address of operations (`&`)
|
|
|
|
//!
|
|
|
|
//! This lint is **warn** by default
|
|
|
|
|
2019-08-19 16:30:32 +00:00
|
|
|
use crate::utils::{snippet_opt, span_lint_and_then};
|
2018-11-02 06:56:47 +00:00
|
|
|
use if_chain::if_chain;
|
2019-11-27 22:30:10 +00:00
|
|
|
use rustc::hir::{BindingAnnotation, BorrowKind, Expr, ExprKind, HirId, Item, Mutability, Pat, PatKind};
|
2019-12-03 23:16:03 +00:00
|
|
|
use rustc::impl_lint_pass;
|
2018-12-29 15:04:45 +00:00
|
|
|
use rustc::lint::{LateContext, LateLintPass, LintArray, LintPass};
|
|
|
|
use rustc::ty;
|
|
|
|
use rustc::ty::adjustment::{Adjust, Adjustment};
|
|
|
|
use rustc_errors::Applicability;
|
2019-12-03 23:16:03 +00:00
|
|
|
use rustc_session::declare_tool_lint;
|
2016-04-26 13:49:53 +00:00
|
|
|
|
2018-03-28 13:24:26 +00:00
|
|
|
declare_clippy_lint! {
|
2019-03-05 16:50:33 +00:00
|
|
|
/// **What it does:** Checks for address of operations (`&`) that are going to
|
|
|
|
/// be dereferenced immediately by the compiler.
|
|
|
|
///
|
|
|
|
/// **Why is this bad?** Suggests that the receiver of the expression borrows
|
|
|
|
/// the expression.
|
|
|
|
///
|
|
|
|
/// **Example:**
|
|
|
|
/// ```rust
|
|
|
|
/// let x: &i32 = &&&&&&5;
|
|
|
|
/// ```
|
|
|
|
///
|
|
|
|
/// **Known problems:** None.
|
2016-04-26 13:49:53 +00:00
|
|
|
pub NEEDLESS_BORROW,
|
2018-04-08 08:55:42 +00:00
|
|
|
nursery,
|
2016-04-26 13:49:53 +00:00
|
|
|
"taking a reference that is going to be automatically dereferenced"
|
|
|
|
}
|
|
|
|
|
2018-11-02 06:56:47 +00:00
|
|
|
#[derive(Default)]
|
|
|
|
pub struct NeedlessBorrow {
|
2019-03-01 12:26:06 +00:00
|
|
|
derived_item: Option<HirId>,
|
2018-11-02 06:56:47 +00:00
|
|
|
}
|
2016-04-26 13:49:53 +00:00
|
|
|
|
2019-04-08 20:43:55 +00:00
|
|
|
impl_lint_pass!(NeedlessBorrow => [NEEDLESS_BORROW]);
|
2016-04-26 13:49:53 +00:00
|
|
|
|
2016-12-07 12:13:40 +00:00
|
|
|
impl<'a, 'tcx> LateLintPass<'a, 'tcx> for NeedlessBorrow {
|
|
|
|
fn check_expr(&mut self, cx: &LateContext<'a, 'tcx>, e: &'tcx Expr) {
|
2019-08-19 16:30:32 +00:00
|
|
|
if e.span.from_expansion() || self.derived_item.is_some() {
|
2016-04-26 13:49:53 +00:00
|
|
|
return;
|
|
|
|
}
|
2019-12-21 18:38:45 +00:00
|
|
|
if let ExprKind::AddrOf(BorrowKind::Ref, Mutability::Not, ref inner) = e.kind {
|
2019-09-26 09:03:36 +00:00
|
|
|
if let ty::Ref(..) = cx.tables.expr_ty(inner).kind {
|
2017-06-04 21:28:01 +00:00
|
|
|
for adj3 in cx.tables.expr_adjustments(e).windows(3) {
|
2017-09-05 09:33:04 +00:00
|
|
|
if let [Adjustment {
|
2018-11-27 20:14:15 +00:00
|
|
|
kind: Adjust::Deref(_), ..
|
2017-09-05 09:33:04 +00:00
|
|
|
}, Adjustment {
|
2018-11-27 20:14:15 +00:00
|
|
|
kind: Adjust::Deref(_), ..
|
2017-09-05 09:33:04 +00:00
|
|
|
}, Adjustment {
|
|
|
|
kind: Adjust::Borrow(_),
|
|
|
|
..
|
|
|
|
}] = *adj3
|
|
|
|
{
|
2017-09-16 02:27:24 +00:00
|
|
|
span_lint_and_then(
|
2017-09-05 09:33:04 +00:00
|
|
|
cx,
|
|
|
|
NEEDLESS_BORROW,
|
|
|
|
e.span,
|
2017-09-16 02:27:24 +00:00
|
|
|
"this expression borrows a reference that is immediately dereferenced \
|
|
|
|
by the compiler",
|
|
|
|
|db| {
|
|
|
|
if let Some(snippet) = snippet_opt(cx, inner.span) {
|
2019-01-27 12:33:56 +00:00
|
|
|
db.span_suggestion(
|
2018-11-02 06:56:47 +00:00
|
|
|
e.span,
|
2018-09-18 15:07:54 +00:00
|
|
|
"change this to",
|
|
|
|
snippet,
|
2018-09-18 17:01:17 +00:00
|
|
|
Applicability::MachineApplicable,
|
2018-09-18 15:07:54 +00:00
|
|
|
);
|
2017-09-16 02:27:24 +00:00
|
|
|
}
|
2017-11-04 19:55:56 +00:00
|
|
|
},
|
2017-09-05 09:33:04 +00:00
|
|
|
);
|
2017-06-04 21:28:01 +00:00
|
|
|
}
|
2016-04-26 13:49:53 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-12-07 12:13:40 +00:00
|
|
|
fn check_pat(&mut self, cx: &LateContext<'a, 'tcx>, pat: &'tcx Pat) {
|
2019-08-19 16:30:32 +00:00
|
|
|
if pat.span.from_expansion() || self.derived_item.is_some() {
|
2016-08-01 14:59:14 +00:00
|
|
|
return;
|
|
|
|
}
|
2017-10-23 19:18:02 +00:00
|
|
|
if_chain! {
|
2019-09-27 15:16:06 +00:00
|
|
|
if let PatKind::Binding(BindingAnnotation::Ref, .., name, _) = pat.kind;
|
2019-09-26 09:03:36 +00:00
|
|
|
if let ty::Ref(_, tam, mutbl) = cx.tables.pat_ty(pat).kind;
|
2019-12-21 18:38:45 +00:00
|
|
|
if mutbl == Mutability::Not;
|
2019-09-26 09:03:36 +00:00
|
|
|
if let ty::Ref(_, _, mutbl) = tam.kind;
|
2017-01-10 14:56:54 +00:00
|
|
|
// only lint immutable refs, because borrowed `&mut T` cannot be moved out
|
2019-12-21 18:38:45 +00:00
|
|
|
if mutbl == Mutability::Not;
|
2017-10-23 19:18:02 +00: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) {
|
2019-01-27 12:33:56 +00:00
|
|
|
db.span_suggestion(
|
2018-09-18 15:07:54 +00:00
|
|
|
pat.span,
|
|
|
|
"change this to",
|
|
|
|
snippet,
|
2018-09-18 17:01:17 +00:00
|
|
|
Applicability::MachineApplicable,
|
2018-09-18 15:07:54 +00:00
|
|
|
);
|
2017-10-23 19:18:02 +00:00
|
|
|
}
|
2017-09-16 02:27:24 +00:00
|
|
|
}
|
2017-10-23 19:18:02 +00:00
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
2016-08-01 14:59:14 +00:00
|
|
|
}
|
2018-11-02 06:56:47 +00:00
|
|
|
|
2019-12-22 14:42:41 +00:00
|
|
|
fn check_item(&mut self, _: &LateContext<'a, 'tcx>, item: &'tcx Item<'_>) {
|
2019-05-17 21:53:54 +00:00
|
|
|
if item.attrs.iter().any(|a| a.check_name(sym!(automatically_derived))) {
|
2018-11-02 06:56:47 +00:00
|
|
|
debug_assert!(self.derived_item.is_none());
|
2019-03-01 12:26:06 +00:00
|
|
|
self.derived_item = Some(item.hir_id);
|
2018-11-02 06:56:47 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-12-22 14:42:41 +00:00
|
|
|
fn check_item_post(&mut self, _: &LateContext<'a, 'tcx>, item: &'tcx Item<'_>) {
|
2018-11-02 06:56:47 +00:00
|
|
|
if let Some(id) = self.derived_item {
|
2019-03-01 12:26:06 +00:00
|
|
|
if item.hir_id == id {
|
2018-11-02 06:56:47 +00:00
|
|
|
self.derived_item = None;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-04-26 13:49:53 +00:00
|
|
|
}
|