rust-clippy/clippy_lints/src/needless_borrow.rs

129 lines
4.6 KiB
Rust
Raw Normal View History

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};
use if_chain::if_chain;
use rustc_errors::Applicability;
2020-01-06 16:39:50 +00:00
use rustc_hir::{BindingAnnotation, BorrowKind, Expr, ExprKind, HirId, Item, Mutability, Pat, PatKind};
2020-01-12 06:08:41 +00:00
use rustc_lint::{LateContext, LateLintPass};
use rustc_middle::ty;
use rustc_middle::ty::adjustment::{Adjust, Adjustment};
2020-01-11 11:37:08 +00:00
use rustc_session::{declare_tool_lint, impl_lint_pass};
2016-04-26 13:49:53 +00:00
2018-03-28 13:24:26 +00:00
declare_clippy_lint! {
/// **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.
///
/// **Known problems:** None.
///
/// **Example:**
/// ```rust
/// // Bad
/// let x: &i32 = &&&&&&5;
///
/// // Good
/// let x: &i32 = &5;
/// ```
2016-04-26 13:49:53 +00:00
pub NEEDLESS_BORROW,
nursery,
2016-04-26 13:49:53 +00:00
"taking a reference that is going to be automatically dereferenced"
}
#[derive(Default)]
pub struct NeedlessBorrow {
2019-03-01 12:26:06 +00:00
derived_item: Option<HirId>,
}
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
impl<'a, 'tcx> LateLintPass<'a, 'tcx> for NeedlessBorrow {
2019-12-27 07:12:26 +00:00
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;
}
if let ExprKind::AddrOf(BorrowKind::Ref, Mutability::Not, ref inner) = e.kind {
if let ty::Ref(..) = cx.tables().expr_ty(inner).kind {
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",
|diag| {
2017-09-16 02:27:24 +00:00
if let Some(snippet) = snippet_opt(cx, inner.span) {
diag.span_suggestion(
e.span,
2018-09-18 15:07:54 +00:00
"change this to",
snippet,
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
}
}
}
}
2019-12-27 07:12:26 +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;
}
if_chain! {
2019-09-27 15:16:06 +00:00
if let PatKind::Binding(BindingAnnotation::Ref, .., name, _) = pat.kind;
if let ty::Ref(_, tam, mutbl) = cx.tables().pat_ty(pat).kind;
if mutbl == Mutability::Not;
if let ty::Ref(_, _, mutbl) = tam.kind;
// only lint immutable refs, because borrowed `&mut T` cannot be moved out
if mutbl == Mutability::Not;
then {
span_lint_and_then(
cx,
NEEDLESS_BORROW,
pat.span,
"this pattern creates a reference to a reference",
|diag| {
if let Some(snippet) = snippet_opt(cx, name.span) {
diag.span_suggestion(
2018-09-18 15:07:54 +00:00
pat.span,
"change this to",
snippet,
Applicability::MachineApplicable,
2018-09-18 15:07:54 +00:00
);
}
2017-09-16 02:27:24 +00:00
}
)
}
}
2016-08-01 14:59:14 +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))) {
debug_assert!(self.derived_item.is_none());
2019-03-01 12:26:06 +00:00
self.derived_item = Some(item.hir_id);
}
}
2019-12-22 14:42:41 +00:00
fn check_item_post(&mut self, _: &LateContext<'a, 'tcx>, item: &'tcx Item<'_>) {
if let Some(id) = self.derived_item {
2019-03-01 12:26:06 +00:00
if item.hir_id == id {
self.derived_item = None;
}
}
}
2016-04-26 13:49:53 +00:00
}