2019-09-02 09:26:04 -05:00
|
|
|
use crate::utils::{in_macro, snippet_with_applicability, span_lint_and_sugg};
|
2018-11-20 07:06:29 -06:00
|
|
|
use if_chain::if_chain;
|
2019-12-03 17:16:03 -06:00
|
|
|
use rustc::declare_lint_pass;
|
2018-12-29 09:04:45 -06:00
|
|
|
use rustc::lint::{EarlyContext, EarlyLintPass, LintArray, LintPass};
|
|
|
|
use rustc_errors::Applicability;
|
2019-12-03 17:16:03 -06:00
|
|
|
use rustc_session::declare_tool_lint;
|
2018-12-29 09:04:45 -06:00
|
|
|
use syntax::ast::{Expr, ExprKind, UnOp};
|
2016-11-22 12:22:37 -06:00
|
|
|
|
2018-03-28 08:24:26 -05:00
|
|
|
declare_clippy_lint! {
|
2019-03-05 10:50:33 -06:00
|
|
|
/// **What it does:** Checks for usage of `*&` and `*&mut` in expressions.
|
|
|
|
///
|
|
|
|
/// **Why is this bad?** Immediately dereferencing a reference is no-op and
|
|
|
|
/// makes the code less clear.
|
|
|
|
///
|
|
|
|
/// **Known problems:** Multiple dereference/addrof pairs are not handled so
|
|
|
|
/// the suggested fix for `x = **&&y` is `x = *&y`, which is still incorrect.
|
|
|
|
///
|
|
|
|
/// **Example:**
|
2019-08-02 01:13:54 -05:00
|
|
|
/// ```rust,ignore
|
2019-03-05 10:50:33 -06:00
|
|
|
/// let a = f(*&mut b);
|
|
|
|
/// let c = *&d;
|
|
|
|
/// ```
|
2016-11-22 12:22:37 -06:00
|
|
|
pub DEREF_ADDROF,
|
2018-03-28 08:24:26 -05:00
|
|
|
complexity,
|
2016-11-22 12:22:37 -06:00
|
|
|
"use of `*&` or `*&mut` in an expression"
|
|
|
|
}
|
|
|
|
|
2019-04-08 15:43:55 -05:00
|
|
|
declare_lint_pass!(DerefAddrOf => [DEREF_ADDROF]);
|
2016-11-22 12:22:37 -06:00
|
|
|
|
2016-11-25 08:54:07 -06:00
|
|
|
fn without_parens(mut e: &Expr) -> &Expr {
|
2019-09-27 10:16:06 -05:00
|
|
|
while let ExprKind::Paren(ref child_e) = e.kind {
|
2016-11-25 08:54:07 -06:00
|
|
|
e = child_e;
|
|
|
|
}
|
|
|
|
e
|
|
|
|
}
|
|
|
|
|
2019-04-08 15:43:55 -05:00
|
|
|
impl EarlyLintPass for DerefAddrOf {
|
2018-07-23 06:01:12 -05:00
|
|
|
fn check_expr(&mut self, cx: &EarlyContext<'_>, e: &Expr) {
|
2018-05-28 02:50:25 -05:00
|
|
|
if_chain! {
|
2019-09-27 10:16:06 -05:00
|
|
|
if let ExprKind::Unary(UnOp::Deref, ref deref_target) = e.kind;
|
2019-11-27 16:34:32 -06:00
|
|
|
if let ExprKind::AddrOf(_, _, ref addrof_target) = without_parens(deref_target).kind;
|
2019-09-02 09:26:04 -05:00
|
|
|
if !in_macro(addrof_target.span);
|
2018-05-28 02:50:25 -05:00
|
|
|
then {
|
2018-11-27 08:13:57 -06:00
|
|
|
let mut applicability = Applicability::MachineApplicable;
|
2017-08-09 02:30:56 -05:00
|
|
|
span_lint_and_sugg(
|
|
|
|
cx,
|
|
|
|
DEREF_ADDROF,
|
|
|
|
e.span,
|
|
|
|
"immediately dereferencing a reference",
|
|
|
|
"try this",
|
2018-11-27 08:13:57 -06:00
|
|
|
format!("{}", snippet_with_applicability(cx, addrof_target.span, "_", &mut applicability)),
|
|
|
|
applicability,
|
2017-08-09 02:30:56 -05:00
|
|
|
);
|
2016-11-22 12:22:37 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-05-28 02:29:02 -05:00
|
|
|
|
|
|
|
declare_clippy_lint! {
|
2019-03-05 10:50:33 -06:00
|
|
|
/// **What it does:** Checks for references in expressions that use
|
|
|
|
/// auto dereference.
|
|
|
|
///
|
|
|
|
/// **Why is this bad?** The reference is a no-op and is automatically
|
|
|
|
/// dereferenced by the compiler and makes the code less clear.
|
|
|
|
///
|
|
|
|
/// **Example:**
|
|
|
|
/// ```rust
|
|
|
|
/// struct Point(u32, u32);
|
2019-08-02 01:13:54 -05:00
|
|
|
/// let point = Point(30, 20);
|
|
|
|
/// let x = (&point).0;
|
2019-03-05 10:50:33 -06:00
|
|
|
/// ```
|
2018-05-28 02:29:02 -05:00
|
|
|
pub REF_IN_DEREF,
|
|
|
|
complexity,
|
|
|
|
"Use of reference in auto dereference expression."
|
|
|
|
}
|
|
|
|
|
2019-04-08 15:43:55 -05:00
|
|
|
declare_lint_pass!(RefInDeref => [REF_IN_DEREF]);
|
2018-05-28 02:29:02 -05:00
|
|
|
|
2019-04-08 15:43:55 -05:00
|
|
|
impl EarlyLintPass for RefInDeref {
|
2018-07-23 06:01:12 -05:00
|
|
|
fn check_expr(&mut self, cx: &EarlyContext<'_>, e: &Expr) {
|
2018-05-28 02:29:02 -05:00
|
|
|
if_chain! {
|
2019-09-27 10:16:06 -05:00
|
|
|
if let ExprKind::Field(ref object, _) = e.kind;
|
|
|
|
if let ExprKind::Paren(ref parened) = object.kind;
|
2019-11-27 16:34:32 -06:00
|
|
|
if let ExprKind::AddrOf(_, _, ref inner) = parened.kind;
|
2018-05-28 02:29:02 -05:00
|
|
|
then {
|
2018-11-27 08:13:57 -06:00
|
|
|
let mut applicability = Applicability::MachineApplicable;
|
2018-05-28 02:29:02 -05:00
|
|
|
span_lint_and_sugg(
|
|
|
|
cx,
|
|
|
|
REF_IN_DEREF,
|
|
|
|
object.span,
|
|
|
|
"Creating a reference that is immediately dereferenced.",
|
|
|
|
"try this",
|
2018-12-09 10:25:45 -06:00
|
|
|
snippet_with_applicability(cx, inner.span, "_", &mut applicability).to_string(),
|
2018-11-27 08:13:57 -06:00
|
|
|
applicability,
|
2018-05-28 02:29:02 -05:00
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|