2018-11-27 20:14:15 +00:00
|
|
|
|
use if_chain::if_chain;
|
2020-03-01 03:23:33 +00:00
|
|
|
|
use rustc_ast::ast::LitKind;
|
2018-12-29 15:04:45 +00:00
|
|
|
|
use rustc_errors::Applicability;
|
2020-01-09 07:13:22 +00:00
|
|
|
|
use rustc_hir::intravisit::FnKind;
|
2020-02-21 08:39:38 +00:00
|
|
|
|
use rustc_hir::{
|
2020-07-14 12:59:59 +00:00
|
|
|
|
self as hir, def, BinOpKind, BindingAnnotation, Body, Expr, ExprKind, FnDecl, HirId, Mutability, PatKind, Stmt,
|
|
|
|
|
StmtKind, TyKind, UnOp,
|
2020-02-21 08:39:38 +00:00
|
|
|
|
};
|
2020-01-12 06:08:41 +00:00
|
|
|
|
use rustc_lint::{LateContext, LateLintPass};
|
2020-07-14 12:59:59 +00:00
|
|
|
|
use rustc_middle::ty::{self, Ty};
|
2020-01-11 11:37:08 +00:00
|
|
|
|
use rustc_session::{declare_lint_pass, declare_tool_lint};
|
2020-04-26 22:12:51 +00:00
|
|
|
|
use rustc_span::hygiene::DesugaringKind;
|
2020-01-04 10:00:00 +00:00
|
|
|
|
use rustc_span::source_map::{ExpnKind, Span};
|
2015-05-06 08:01:49 +00:00
|
|
|
|
|
2019-01-31 01:15:29 +00:00
|
|
|
|
use crate::consts::{constant, Constant};
|
2019-03-10 21:12:26 +00:00
|
|
|
|
use crate::utils::sugg::Sugg;
|
2019-01-31 01:15:29 +00:00
|
|
|
|
use crate::utils::{
|
2020-04-19 13:56:47 +00:00
|
|
|
|
get_item_name, get_parent_expr, higher, implements_trait, in_constant, is_integer_const, iter_input_pats,
|
2019-10-02 15:38:00 +00:00
|
|
|
|
last_path_segment, match_qpath, match_trait_method, paths, snippet, snippet_opt, span_lint, span_lint_and_sugg,
|
|
|
|
|
span_lint_and_then, span_lint_hir_and_then, walk_ptrs_ty, SpanlessEq,
|
2019-01-31 01:15:29 +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 function arguments and let bindings denoted as
|
|
|
|
|
/// `ref`.
|
|
|
|
|
///
|
|
|
|
|
/// **Why is this bad?** The `ref` declaration makes the function take an owned
|
|
|
|
|
/// value, but turns the argument into a reference (which means that the value
|
|
|
|
|
/// is destroyed when exiting the function). This adds not much value: either
|
|
|
|
|
/// take a reference type, or take an owned value and create references in the
|
|
|
|
|
/// body.
|
|
|
|
|
///
|
|
|
|
|
/// For let bindings, `let x = &foo;` is preferred over `let ref x = foo`. The
|
|
|
|
|
/// type of `x` is more obvious with the former.
|
|
|
|
|
///
|
|
|
|
|
/// **Known problems:** If the argument is dereferenced within the function,
|
|
|
|
|
/// removing the `ref` will lead to errors. This can be fixed by removing the
|
2019-01-31 01:15:29 +00:00
|
|
|
|
/// dereferences, e.g., changing `*x` to `x` within the function.
|
2019-03-05 16:50:33 +00:00
|
|
|
|
///
|
|
|
|
|
/// **Example:**
|
2020-06-09 14:36:01 +00:00
|
|
|
|
/// ```rust,ignore
|
|
|
|
|
/// // Bad
|
2019-03-05 16:50:33 +00:00
|
|
|
|
/// fn foo(ref x: u8) -> bool {
|
2019-03-10 22:01:56 +00:00
|
|
|
|
/// true
|
2019-03-05 16:50:33 +00:00
|
|
|
|
/// }
|
2020-06-09 14:36:01 +00:00
|
|
|
|
///
|
|
|
|
|
/// // Good
|
|
|
|
|
/// fn foo(x: &u8) -> bool {
|
|
|
|
|
/// true
|
|
|
|
|
/// }
|
2019-03-05 16:50:33 +00:00
|
|
|
|
/// ```
|
2016-08-06 08:18:36 +00:00
|
|
|
|
pub TOPLEVEL_REF_ARG,
|
2018-03-28 13:24:26 +00:00
|
|
|
|
style,
|
2016-08-06 08:18:36 +00:00
|
|
|
|
"an entire binding declared as `ref`, in a function argument or a `let` statement"
|
2016-02-05 23:13:29 +00:00
|
|
|
|
}
|
2014-12-24 23:15:22 +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 comparisons to NaN.
|
|
|
|
|
///
|
2019-08-19 19:38:33 +00:00
|
|
|
|
/// **Why is this bad?** NaN does not compare meaningfully to anything – not
|
|
|
|
|
/// even itself – so those comparisons are simply wrong.
|
2019-03-05 16:50:33 +00:00
|
|
|
|
///
|
|
|
|
|
/// **Known problems:** None.
|
|
|
|
|
///
|
|
|
|
|
/// **Example:**
|
2019-03-09 07:51:23 +00:00
|
|
|
|
/// ```rust
|
|
|
|
|
/// # let x = 1.0;
|
|
|
|
|
///
|
2020-06-09 14:36:01 +00:00
|
|
|
|
/// // Bad
|
2020-04-06 21:53:11 +00:00
|
|
|
|
/// if x == f32::NAN { }
|
2020-06-09 14:36:01 +00:00
|
|
|
|
///
|
|
|
|
|
/// // Good
|
|
|
|
|
/// if x.is_nan() { }
|
2019-03-05 16:50:33 +00:00
|
|
|
|
/// ```
|
2016-08-24 19:47:46 +00:00
|
|
|
|
pub CMP_NAN,
|
2018-03-28 13:24:26 +00:00
|
|
|
|
correctness,
|
2020-01-06 06:30:43 +00:00
|
|
|
|
"comparisons to `NAN`, which will always return false, probably not intended"
|
2016-08-24 19:47:46 +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 (in-)equality comparisons on floating-point
|
|
|
|
|
/// values (apart from zero), except in functions called `*eq*` (which probably
|
|
|
|
|
/// implement equality for a type involving floats).
|
|
|
|
|
///
|
|
|
|
|
/// **Why is this bad?** Floating point calculations are usually imprecise, so
|
|
|
|
|
/// asking if two values are *exactly* equal is asking for trouble. For a good
|
|
|
|
|
/// guide on what to do, see [the floating point
|
|
|
|
|
/// guide](http://www.floating-point-gui.de/errors/comparison).
|
|
|
|
|
///
|
|
|
|
|
/// **Known problems:** None.
|
|
|
|
|
///
|
|
|
|
|
/// **Example:**
|
2019-03-09 07:51:23 +00:00
|
|
|
|
/// ```rust
|
|
|
|
|
/// let x = 1.2331f64;
|
|
|
|
|
/// let y = 1.2332f64;
|
2020-06-09 14:36:01 +00:00
|
|
|
|
///
|
|
|
|
|
/// // Bad
|
2019-03-09 07:51:23 +00:00
|
|
|
|
/// if y == 1.23f64 { }
|
|
|
|
|
/// if y != x {} // where both are floats
|
2020-06-09 14:36:01 +00:00
|
|
|
|
///
|
|
|
|
|
/// // Good
|
|
|
|
|
/// let error = 0.01f64; // Use an epsilon for comparison
|
|
|
|
|
/// if (y - 1.23f64).abs() < error { }
|
|
|
|
|
/// if (y - x).abs() > error { }
|
2019-03-05 16:50:33 +00:00
|
|
|
|
/// ```
|
2016-08-24 19:47:46 +00:00
|
|
|
|
pub FLOAT_CMP,
|
2018-03-29 11:41:53 +00:00
|
|
|
|
correctness,
|
2016-08-24 19:47:46 +00:00
|
|
|
|
"using `==` or `!=` on float values instead of comparing difference with an epsilon"
|
|
|
|
|
}
|
|
|
|
|
|
2018-03-28 13:24:26 +00:00
|
|
|
|
declare_clippy_lint! {
|
2019-03-05 16:50:33 +00:00
|
|
|
|
/// **What it does:** Checks for conversions to owned values just for the sake
|
|
|
|
|
/// of a comparison.
|
|
|
|
|
///
|
|
|
|
|
/// **Why is this bad?** The comparison can operate on a reference, so creating
|
|
|
|
|
/// an owned value effectively throws it away directly afterwards, which is
|
|
|
|
|
/// needlessly consuming code and heap space.
|
|
|
|
|
///
|
|
|
|
|
/// **Known problems:** None.
|
|
|
|
|
///
|
|
|
|
|
/// **Example:**
|
|
|
|
|
/// ```rust
|
2019-08-03 06:01:27 +00:00
|
|
|
|
/// # let x = "foo";
|
|
|
|
|
/// # let y = String::from("foo");
|
|
|
|
|
/// if x.to_owned() == y {}
|
2019-03-05 16:50:33 +00:00
|
|
|
|
/// ```
|
2019-08-20 14:23:53 +00:00
|
|
|
|
/// Could be written as
|
|
|
|
|
/// ```rust
|
|
|
|
|
/// # let x = "foo";
|
|
|
|
|
/// # let y = String::from("foo");
|
|
|
|
|
/// if x == y {}
|
|
|
|
|
/// ```
|
2016-08-24 19:47:46 +00:00
|
|
|
|
pub CMP_OWNED,
|
2018-03-28 13:24:26 +00:00
|
|
|
|
perf,
|
2019-01-31 01:15:29 +00:00
|
|
|
|
"creating owned instances for comparing with others, e.g., `x == \"foo\".to_string()`"
|
2016-08-24 19:47:46 +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 getting the remainder of a division by one.
|
|
|
|
|
///
|
|
|
|
|
/// **Why is this bad?** The result can only ever be zero. No one will write
|
|
|
|
|
/// such code deliberately, unless trying to win an Underhanded Rust
|
|
|
|
|
/// Contest. Even for that contest, it's probably a bad idea. Use something more
|
|
|
|
|
/// underhanded.
|
|
|
|
|
///
|
|
|
|
|
/// **Known problems:** None.
|
|
|
|
|
///
|
|
|
|
|
/// **Example:**
|
2019-03-09 07:51:23 +00:00
|
|
|
|
/// ```rust
|
|
|
|
|
/// # let x = 1;
|
|
|
|
|
/// let a = x % 1;
|
2019-03-05 16:50:33 +00:00
|
|
|
|
/// ```
|
2016-08-24 19:47:46 +00:00
|
|
|
|
pub MODULO_ONE,
|
2018-03-28 13:24:26 +00:00
|
|
|
|
correctness,
|
2016-08-24 19:47:46 +00:00
|
|
|
|
"taking a number modulo 1, which always returns 0"
|
|
|
|
|
}
|
|
|
|
|
|
2018-03-28 13:24:26 +00:00
|
|
|
|
declare_clippy_lint! {
|
2019-03-05 16:50:33 +00:00
|
|
|
|
/// **What it does:** Checks for the use of bindings with a single leading
|
|
|
|
|
/// underscore.
|
|
|
|
|
///
|
|
|
|
|
/// **Why is this bad?** A single leading underscore is usually used to indicate
|
|
|
|
|
/// that a binding will not be used. Using such a binding breaks this
|
|
|
|
|
/// expectation.
|
|
|
|
|
///
|
|
|
|
|
/// **Known problems:** The lint does not work properly with desugaring and
|
|
|
|
|
/// macro, it has been allowed in the mean time.
|
|
|
|
|
///
|
|
|
|
|
/// **Example:**
|
|
|
|
|
/// ```rust
|
|
|
|
|
/// let _x = 0;
|
|
|
|
|
/// let y = _x + 1; // Here we are using `_x`, even though it has a leading
|
|
|
|
|
/// // underscore. We should rename `_x` to `x`
|
|
|
|
|
/// ```
|
2016-08-24 19:47:46 +00:00
|
|
|
|
pub USED_UNDERSCORE_BINDING,
|
2018-03-28 13:24:26 +00:00
|
|
|
|
pedantic,
|
2016-08-24 19:47:46 +00:00
|
|
|
|
"using a binding which is prefixed with an underscore"
|
|
|
|
|
}
|
|
|
|
|
|
2018-03-28 13:24:26 +00:00
|
|
|
|
declare_clippy_lint! {
|
2019-03-05 16:50:33 +00:00
|
|
|
|
/// **What it does:** Checks for the use of short circuit boolean conditions as
|
|
|
|
|
/// a
|
|
|
|
|
/// statement.
|
|
|
|
|
///
|
|
|
|
|
/// **Why is this bad?** Using a short circuit boolean condition as a statement
|
|
|
|
|
/// may hide the fact that the second part is executed or not depending on the
|
|
|
|
|
/// outcome of the first part.
|
|
|
|
|
///
|
|
|
|
|
/// **Known problems:** None.
|
|
|
|
|
///
|
|
|
|
|
/// **Example:**
|
2019-08-02 06:13:54 +00:00
|
|
|
|
/// ```rust,ignore
|
2019-03-05 16:50:33 +00:00
|
|
|
|
/// f() && g(); // We should write `if f() { g(); }`.
|
|
|
|
|
/// ```
|
2016-12-29 23:00:55 +00:00
|
|
|
|
pub SHORT_CIRCUIT_STATEMENT,
|
2018-03-28 13:24:26 +00:00
|
|
|
|
complexity,
|
2016-12-29 23:00:55 +00:00
|
|
|
|
"using a short circuit boolean condition as a statement"
|
|
|
|
|
}
|
|
|
|
|
|
2018-03-28 13:24:26 +00:00
|
|
|
|
declare_clippy_lint! {
|
2019-03-05 16:50:33 +00:00
|
|
|
|
/// **What it does:** Catch casts from `0` to some pointer type
|
|
|
|
|
///
|
|
|
|
|
/// **Why is this bad?** This generally means `null` and is better expressed as
|
|
|
|
|
/// {`std`, `core`}`::ptr::`{`null`, `null_mut`}.
|
|
|
|
|
///
|
|
|
|
|
/// **Known problems:** None.
|
|
|
|
|
///
|
|
|
|
|
/// **Example:**
|
|
|
|
|
///
|
2019-03-09 07:51:23 +00:00
|
|
|
|
/// ```rust
|
2020-06-09 14:36:01 +00:00
|
|
|
|
/// // Bad
|
2019-03-09 07:51:23 +00:00
|
|
|
|
/// let a = 0 as *const u32;
|
2020-06-09 14:36:01 +00:00
|
|
|
|
///
|
|
|
|
|
/// // Good
|
|
|
|
|
/// let a = std::ptr::null::<u32>();
|
2019-03-05 16:50:33 +00:00
|
|
|
|
/// ```
|
2017-03-07 11:58:07 +00:00
|
|
|
|
pub ZERO_PTR,
|
2018-03-28 13:24:26 +00:00
|
|
|
|
style,
|
2020-01-06 06:30:43 +00:00
|
|
|
|
"using `0 as *{const, mut} T`"
|
2017-03-07 11:58:07 +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 (in-)equality comparisons on floating-point
|
|
|
|
|
/// value and constant, except in functions called `*eq*` (which probably
|
|
|
|
|
/// implement equality for a type involving floats).
|
|
|
|
|
///
|
|
|
|
|
/// **Why is this bad?** Floating point calculations are usually imprecise, so
|
|
|
|
|
/// asking if two values are *exactly* equal is asking for trouble. For a good
|
|
|
|
|
/// guide on what to do, see [the floating point
|
|
|
|
|
/// guide](http://www.floating-point-gui.de/errors/comparison).
|
|
|
|
|
///
|
|
|
|
|
/// **Known problems:** None.
|
|
|
|
|
///
|
|
|
|
|
/// **Example:**
|
|
|
|
|
/// ```rust
|
2019-08-03 19:24:50 +00:00
|
|
|
|
/// let x: f64 = 1.0;
|
|
|
|
|
/// const ONE: f64 = 1.00;
|
2020-06-09 14:36:01 +00:00
|
|
|
|
///
|
|
|
|
|
/// // Bad
|
|
|
|
|
/// if x == ONE { } // where both are floats
|
|
|
|
|
///
|
|
|
|
|
/// // Good
|
|
|
|
|
/// let error = 0.1f64; // Use an epsilon for comparison
|
|
|
|
|
/// if (x - ONE).abs() < error { }
|
2019-03-05 16:50:33 +00:00
|
|
|
|
/// ```
|
2017-11-04 08:32:58 +00:00
|
|
|
|
pub FLOAT_CMP_CONST,
|
2018-03-28 13:24:26 +00:00
|
|
|
|
restriction,
|
2017-11-04 08:32:58 +00:00
|
|
|
|
"using `==` or `!=` on float constants instead of comparing difference with an epsilon"
|
|
|
|
|
}
|
|
|
|
|
|
2019-04-08 20:43:55 +00:00
|
|
|
|
declare_lint_pass!(MiscLints => [
|
|
|
|
|
TOPLEVEL_REF_ARG,
|
|
|
|
|
CMP_NAN,
|
|
|
|
|
FLOAT_CMP,
|
|
|
|
|
CMP_OWNED,
|
|
|
|
|
MODULO_ONE,
|
|
|
|
|
USED_UNDERSCORE_BINDING,
|
|
|
|
|
SHORT_CIRCUIT_STATEMENT,
|
|
|
|
|
ZERO_PTR,
|
|
|
|
|
FLOAT_CMP_CONST
|
|
|
|
|
]);
|
2014-12-24 23:15:22 +00:00
|
|
|
|
|
2020-06-25 20:41:36 +00:00
|
|
|
|
impl<'tcx> LateLintPass<'tcx> for MiscLints {
|
2016-12-21 11:14:54 +00:00
|
|
|
|
fn check_fn(
|
|
|
|
|
&mut self,
|
2020-06-25 20:41:36 +00:00
|
|
|
|
cx: &LateContext<'tcx>,
|
2016-12-21 11:14:54 +00:00
|
|
|
|
k: FnKind<'tcx>,
|
2019-12-30 04:02:10 +00:00
|
|
|
|
decl: &'tcx FnDecl<'_>,
|
2019-12-22 14:42:41 +00:00
|
|
|
|
body: &'tcx Body<'_>,
|
2016-12-21 11:14:54 +00:00
|
|
|
|
_: Span,
|
2019-02-20 10:11:11 +00:00
|
|
|
|
_: HirId,
|
2016-12-21 11:14:54 +00:00
|
|
|
|
) {
|
2016-03-23 15:11:24 +00:00
|
|
|
|
if let FnKind::Closure(_) = k {
|
2015-08-16 11:54:03 +00:00
|
|
|
|
// Does not apply to closures
|
2016-01-04 04:26:12 +00:00
|
|
|
|
return;
|
2015-08-16 11:54:03 +00:00
|
|
|
|
}
|
2017-01-04 21:46:41 +00:00
|
|
|
|
for arg in iter_input_pats(decl, body) {
|
2020-06-09 14:36:01 +00:00
|
|
|
|
if let PatKind::Binding(BindingAnnotation::Ref | BindingAnnotation::RefMut, ..) = arg.pat.kind {
|
|
|
|
|
span_lint(
|
|
|
|
|
cx,
|
|
|
|
|
TOPLEVEL_REF_ARG,
|
|
|
|
|
arg.pat.span,
|
|
|
|
|
"`ref` directly on a function argument is ignored. \
|
|
|
|
|
Consider using a reference type instead.",
|
|
|
|
|
);
|
2014-12-24 23:15:22 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2016-08-24 19:47:46 +00:00
|
|
|
|
|
2020-06-25 20:41:36 +00:00
|
|
|
|
fn check_stmt(&mut self, cx: &LateContext<'tcx>, stmt: &'tcx Stmt<'_>) {
|
2017-10-23 19:18:02 +00:00
|
|
|
|
if_chain! {
|
2019-09-27 15:16:06 +00:00
|
|
|
|
if let StmtKind::Local(ref local) = stmt.kind;
|
|
|
|
|
if let PatKind::Binding(an, .., name, None) = local.pat.kind;
|
2019-09-26 01:46:51 +00:00
|
|
|
|
if let Some(ref init) = local.init;
|
2020-04-19 13:56:47 +00:00
|
|
|
|
if !higher::is_from_for_desugar(local);
|
2017-10-23 19:18:02 +00:00
|
|
|
|
then {
|
|
|
|
|
if an == BindingAnnotation::Ref || an == BindingAnnotation::RefMut {
|
2019-09-26 01:46:51 +00:00
|
|
|
|
let sugg_init = if init.span.from_expansion() {
|
|
|
|
|
Sugg::hir_with_macro_callsite(cx, init, "..")
|
|
|
|
|
} else {
|
|
|
|
|
Sugg::hir(cx, init, "..")
|
|
|
|
|
};
|
|
|
|
|
let (mutopt, initref) = if an == BindingAnnotation::RefMut {
|
2019-04-19 13:18:32 +00:00
|
|
|
|
("mut ", sugg_init.mut_addr())
|
2017-10-23 19:18:02 +00:00
|
|
|
|
} else {
|
2019-04-19 13:18:32 +00:00
|
|
|
|
("", sugg_init.addr())
|
2017-10-23 19:18:02 +00:00
|
|
|
|
};
|
2019-09-26 01:46:51 +00:00
|
|
|
|
let tyopt = if let Some(ref ty) = local.ty {
|
2017-10-23 19:18:02 +00:00
|
|
|
|
format!(": &{mutopt}{ty}", mutopt=mutopt, ty=snippet(cx, ty.span, "_"))
|
|
|
|
|
} else {
|
2018-08-21 10:46:18 +00:00
|
|
|
|
String::new()
|
2017-10-23 19:18:02 +00:00
|
|
|
|
};
|
2019-09-26 01:46:51 +00:00
|
|
|
|
span_lint_hir_and_then(
|
|
|
|
|
cx,
|
2017-10-23 19:18:02 +00:00
|
|
|
|
TOPLEVEL_REF_ARG,
|
2019-04-19 13:18:32 +00:00
|
|
|
|
init.hir_id,
|
2019-09-26 01:46:51 +00:00
|
|
|
|
local.pat.span,
|
2017-10-23 19:18:02 +00:00
|
|
|
|
"`ref` on an entire `let` pattern is discouraged, take a reference with `&` instead",
|
2020-04-17 06:08:00 +00:00
|
|
|
|
|diag| {
|
|
|
|
|
diag.span_suggestion(
|
2019-09-26 01:46:51 +00:00
|
|
|
|
stmt.span,
|
2018-09-18 15:07:54 +00:00
|
|
|
|
"try",
|
|
|
|
|
format!(
|
|
|
|
|
"let {name}{tyopt} = {initref};",
|
2019-09-26 01:46:51 +00:00
|
|
|
|
name=snippet(cx, name.span, "_"),
|
2018-09-18 15:07:54 +00:00
|
|
|
|
tyopt=tyopt,
|
|
|
|
|
initref=initref,
|
|
|
|
|
),
|
2019-09-26 01:46:51 +00:00
|
|
|
|
Applicability::MachineApplicable,
|
2018-09-18 15:07:54 +00:00
|
|
|
|
);
|
2017-10-23 19:18:02 +00:00
|
|
|
|
}
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
if_chain! {
|
2019-09-27 15:16:06 +00:00
|
|
|
|
if let StmtKind::Semi(ref expr) = stmt.kind;
|
|
|
|
|
if let ExprKind::Binary(ref binop, ref a, ref b) = expr.kind;
|
2018-07-12 07:50:09 +00:00
|
|
|
|
if binop.node == BinOpKind::And || binop.node == BinOpKind::Or;
|
2017-10-23 19:18:02 +00:00
|
|
|
|
if let Some(sugg) = Sugg::hir_opt(cx, a);
|
|
|
|
|
then {
|
2017-08-01 07:11:05 +00:00
|
|
|
|
span_lint_and_then(cx,
|
2017-10-23 19:18:02 +00:00
|
|
|
|
SHORT_CIRCUIT_STATEMENT,
|
2019-09-26 01:46:51 +00:00
|
|
|
|
stmt.span,
|
2017-10-23 19:18:02 +00:00
|
|
|
|
"boolean short circuit operator in statement may be clearer using an explicit test",
|
2020-04-17 06:08:00 +00:00
|
|
|
|
|diag| {
|
2018-07-12 07:50:09 +00:00
|
|
|
|
let sugg = if binop.node == BinOpKind::Or { !sugg } else { sugg };
|
2020-04-17 06:08:00 +00:00
|
|
|
|
diag.span_suggestion(
|
2019-09-26 01:46:51 +00:00
|
|
|
|
stmt.span,
|
2018-09-18 15:07:54 +00:00
|
|
|
|
"replace it with",
|
|
|
|
|
format!(
|
|
|
|
|
"if {} {{ {}; }}",
|
2018-10-09 02:04:29 +00:00
|
|
|
|
sugg,
|
2018-09-18 15:07:54 +00:00
|
|
|
|
&snippet(cx, b.span, ".."),
|
|
|
|
|
),
|
2018-09-18 17:01:17 +00:00
|
|
|
|
Applicability::MachineApplicable, // snippet
|
2018-09-18 15:07:54 +00:00
|
|
|
|
);
|
2017-10-23 19:18:02 +00:00
|
|
|
|
});
|
2017-08-01 07:11:05 +00:00
|
|
|
|
}
|
2017-10-23 19:18:02 +00:00
|
|
|
|
};
|
2015-09-22 07:08:42 +00:00
|
|
|
|
}
|
2015-05-04 12:11:15 +00:00
|
|
|
|
|
2020-06-25 20:41:36 +00:00
|
|
|
|
fn check_expr(&mut self, cx: &LateContext<'tcx>, expr: &'tcx Expr<'_>) {
|
2019-09-27 15:16:06 +00:00
|
|
|
|
match expr.kind {
|
2018-07-12 07:30:57 +00:00
|
|
|
|
ExprKind::Cast(ref e, ref ty) => {
|
2017-03-07 11:58:07 +00:00
|
|
|
|
check_cast(cx, expr.span, e, ty);
|
|
|
|
|
return;
|
|
|
|
|
},
|
2018-07-12 07:30:57 +00:00
|
|
|
|
ExprKind::Binary(ref cmp, ref left, ref right) => {
|
2017-03-07 11:58:07 +00:00
|
|
|
|
let op = cmp.node;
|
|
|
|
|
if op.is_comparison() {
|
2019-12-18 03:18:42 +00:00
|
|
|
|
check_nan(cx, left, expr);
|
|
|
|
|
check_nan(cx, right, expr);
|
2020-07-14 12:59:59 +00:00
|
|
|
|
check_to_owned(cx, left, right, true);
|
|
|
|
|
check_to_owned(cx, right, left, false);
|
2016-01-04 04:26:12 +00:00
|
|
|
|
}
|
2018-07-12 07:50:09 +00:00
|
|
|
|
if (op == BinOpKind::Eq || op == BinOpKind::Ne) && (is_float(cx, left) || is_float(cx, right)) {
|
2017-03-07 11:58:07 +00:00
|
|
|
|
if is_allowed(cx, left) || is_allowed(cx, right) {
|
2015-09-06 19:03:09 +00:00
|
|
|
|
return;
|
|
|
|
|
}
|
2019-07-15 17:46:58 +00:00
|
|
|
|
|
|
|
|
|
// Allow comparing the results of signum()
|
|
|
|
|
if is_signum(cx, left) && is_signum(cx, right) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2017-03-07 11:58:07 +00:00
|
|
|
|
if let Some(name) = get_item_name(cx, expr) {
|
2017-03-30 08:21:13 +00:00
|
|
|
|
let name = name.as_str();
|
2018-11-27 20:14:15 +00:00
|
|
|
|
if name == "eq"
|
|
|
|
|
|| name == "ne"
|
|
|
|
|
|| name == "is_nan"
|
|
|
|
|
|| name.starts_with("eq_")
|
2017-11-04 19:55:56 +00:00
|
|
|
|
|| name.ends_with("_eq")
|
2017-08-09 07:30:56 +00:00
|
|
|
|
{
|
2017-03-07 11:58:07 +00:00
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
}
|
2020-04-06 07:06:50 +00:00
|
|
|
|
let is_comparing_arrays = is_array(cx, left) || is_array(cx, right);
|
2020-04-06 07:40:53 +00:00
|
|
|
|
let (lint, msg) = get_lint_and_message(
|
|
|
|
|
is_named_constant(cx, left) || is_named_constant(cx, right),
|
|
|
|
|
is_comparing_arrays,
|
|
|
|
|
);
|
2020-04-17 06:08:00 +00:00
|
|
|
|
span_lint_and_then(cx, lint, expr.span, msg, |diag| {
|
2017-03-07 11:58:07 +00:00
|
|
|
|
let lhs = Sugg::hir(cx, left, "..");
|
|
|
|
|
let rhs = Sugg::hir(cx, right, "..");
|
|
|
|
|
|
2020-04-06 13:29:54 +00:00
|
|
|
|
if !is_comparing_arrays {
|
2020-04-17 06:08:00 +00:00
|
|
|
|
diag.span_suggestion(
|
2020-03-20 09:51:48 +00:00
|
|
|
|
expr.span,
|
|
|
|
|
"consider comparing them within some error",
|
|
|
|
|
format!(
|
|
|
|
|
"({}).abs() {} error",
|
|
|
|
|
lhs - rhs,
|
|
|
|
|
if op == BinOpKind::Eq { '<' } else { '>' }
|
|
|
|
|
),
|
|
|
|
|
Applicability::HasPlaceholders, // snippet
|
|
|
|
|
);
|
|
|
|
|
}
|
2020-04-17 06:08:00 +00:00
|
|
|
|
diag.note("`f32::EPSILON` and `f64::EPSILON` are available for the `error`");
|
2017-03-07 11:58:07 +00:00
|
|
|
|
});
|
2019-09-09 15:01:01 +00:00
|
|
|
|
} else if op == BinOpKind::Rem && is_integer_const(cx, right, 1) {
|
2017-03-07 11:58:07 +00:00
|
|
|
|
span_lint(cx, MODULO_ONE, expr.span, "any number modulo 1 will be 0");
|
2015-09-02 08:30:11 +00:00
|
|
|
|
}
|
2017-03-07 11:58:07 +00:00
|
|
|
|
},
|
2017-03-13 10:32:58 +00:00
|
|
|
|
_ => {},
|
2016-08-24 19:47:46 +00:00
|
|
|
|
}
|
2020-04-26 22:12:51 +00:00
|
|
|
|
if in_attributes_expansion(expr) || expr.span.is_desugaring(DesugaringKind::Await) {
|
|
|
|
|
// Don't lint things expanded by #[derive(...)], etc or `await` desugaring
|
2016-08-24 19:47:46 +00:00
|
|
|
|
return;
|
|
|
|
|
}
|
2019-09-27 15:16:06 +00:00
|
|
|
|
let binding = match expr.kind {
|
2018-07-12 07:30:57 +00:00
|
|
|
|
ExprKind::Path(ref qpath) => {
|
2018-06-28 13:46:58 +00:00
|
|
|
|
let binding = last_path_segment(qpath).ident.as_str();
|
2016-12-02 16:38:31 +00:00
|
|
|
|
if binding.starts_with('_') &&
|
|
|
|
|
!binding.starts_with("__") &&
|
2017-03-09 09:58:31 +00:00
|
|
|
|
binding != "_result" && // FIXME: #944
|
2016-12-02 16:38:31 +00:00
|
|
|
|
is_used(cx, expr) &&
|
|
|
|
|
// don't lint if the declaration is in a macro
|
2020-06-26 02:55:23 +00:00
|
|
|
|
non_macro_local(cx, cx.qpath_res(qpath, expr.hir_id))
|
2017-08-09 07:30:56 +00:00
|
|
|
|
{
|
2016-12-02 16:38:31 +00:00
|
|
|
|
Some(binding)
|
2016-08-24 19:47:46 +00:00
|
|
|
|
} else {
|
|
|
|
|
None
|
|
|
|
|
}
|
2016-12-20 17:21:30 +00:00
|
|
|
|
},
|
2018-07-12 07:30:57 +00:00
|
|
|
|
ExprKind::Field(_, ident) => {
|
2018-05-29 08:56:58 +00:00
|
|
|
|
let name = ident.as_str();
|
2016-08-24 19:47:46 +00:00
|
|
|
|
if name.starts_with('_') && !name.starts_with("__") {
|
|
|
|
|
Some(name)
|
|
|
|
|
} else {
|
|
|
|
|
None
|
|
|
|
|
}
|
2016-12-20 17:21:30 +00:00
|
|
|
|
},
|
2016-08-24 19:47:46 +00:00
|
|
|
|
_ => None,
|
|
|
|
|
};
|
|
|
|
|
if let Some(binding) = binding {
|
2017-08-09 07:30:56 +00:00
|
|
|
|
span_lint(
|
|
|
|
|
cx,
|
|
|
|
|
USED_UNDERSCORE_BINDING,
|
|
|
|
|
expr.span,
|
|
|
|
|
&format!(
|
|
|
|
|
"used binding `{}` which is prefixed with an underscore. A leading \
|
2017-09-05 09:33:04 +00:00
|
|
|
|
underscore signals that a binding will not be used.",
|
2017-08-09 07:30:56 +00:00
|
|
|
|
binding
|
|
|
|
|
),
|
|
|
|
|
);
|
2016-08-24 19:47:46 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
2015-05-06 08:01:49 +00:00
|
|
|
|
}
|
|
|
|
|
|
2020-04-06 07:40:53 +00:00
|
|
|
|
fn get_lint_and_message(
|
|
|
|
|
is_comparing_constants: bool,
|
|
|
|
|
is_comparing_arrays: bool,
|
|
|
|
|
) -> (&'static rustc_lint::Lint, &'static str) {
|
|
|
|
|
if is_comparing_constants {
|
|
|
|
|
(
|
|
|
|
|
FLOAT_CMP_CONST,
|
|
|
|
|
if is_comparing_arrays {
|
|
|
|
|
"strict comparison of `f32` or `f64` constant arrays"
|
|
|
|
|
} else {
|
|
|
|
|
"strict comparison of `f32` or `f64` constant"
|
|
|
|
|
},
|
|
|
|
|
)
|
|
|
|
|
} else {
|
|
|
|
|
(
|
|
|
|
|
FLOAT_CMP,
|
|
|
|
|
if is_comparing_arrays {
|
|
|
|
|
"strict comparison of `f32` or `f64` arrays"
|
|
|
|
|
} else {
|
|
|
|
|
"strict comparison of `f32` or `f64`"
|
|
|
|
|
},
|
|
|
|
|
)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2020-06-25 20:41:36 +00:00
|
|
|
|
fn check_nan(cx: &LateContext<'_>, expr: &Expr<'_>, cmp_expr: &Expr<'_>) {
|
2019-12-18 03:18:42 +00:00
|
|
|
|
if_chain! {
|
|
|
|
|
if !in_constant(cx, cmp_expr.hir_id);
|
2020-06-25 23:56:23 +00:00
|
|
|
|
if let Some((value, _)) = constant(cx, cx.tables(), expr);
|
2019-12-18 03:18:42 +00:00
|
|
|
|
then {
|
|
|
|
|
let needs_lint = match value {
|
|
|
|
|
Constant::F32(num) => num.is_nan(),
|
|
|
|
|
Constant::F64(num) => num.is_nan(),
|
|
|
|
|
_ => false,
|
|
|
|
|
};
|
2019-12-18 02:51:30 +00:00
|
|
|
|
|
2019-12-18 03:18:42 +00:00
|
|
|
|
if needs_lint {
|
|
|
|
|
span_lint(
|
|
|
|
|
cx,
|
|
|
|
|
CMP_NAN,
|
|
|
|
|
cmp_expr.span,
|
2020-04-06 21:53:11 +00:00
|
|
|
|
"doomed comparison with `NAN`, use `{f32,f64}::is_nan()` instead",
|
2019-12-18 03:18:42 +00:00
|
|
|
|
);
|
|
|
|
|
}
|
2017-01-23 01:57:17 +00:00
|
|
|
|
}
|
2017-03-07 11:58:07 +00:00
|
|
|
|
}
|
2016-08-24 19:47:46 +00:00
|
|
|
|
}
|
|
|
|
|
|
2020-06-25 20:41:36 +00:00
|
|
|
|
fn is_named_constant<'tcx>(cx: &LateContext<'tcx>, expr: &'tcx Expr<'_>) -> bool {
|
2020-06-25 23:56:23 +00:00
|
|
|
|
if let Some((_, res)) = constant(cx, cx.tables(), expr) {
|
2017-11-04 08:32:58 +00:00
|
|
|
|
res
|
|
|
|
|
} else {
|
2018-11-27 20:14:15 +00:00
|
|
|
|
false
|
2017-11-04 08:32:58 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2020-06-25 20:41:36 +00:00
|
|
|
|
fn is_allowed<'tcx>(cx: &LateContext<'tcx>, expr: &'tcx Expr<'_>) -> bool {
|
2020-06-25 23:56:23 +00:00
|
|
|
|
match constant(cx, cx.tables(), expr) {
|
2018-03-13 10:38:11 +00:00
|
|
|
|
Some((Constant::F32(f), _)) => f == 0.0 || f.is_infinite(),
|
|
|
|
|
Some((Constant::F64(f), _)) => f == 0.0 || f.is_infinite(),
|
2020-03-20 09:40:44 +00:00
|
|
|
|
Some((Constant::Vec(vec), _)) => vec.iter().all(|f| match f {
|
|
|
|
|
Constant::F32(f) => *f == 0.0 || (*f).is_infinite(),
|
|
|
|
|
Constant::F64(f) => *f == 0.0 || (*f).is_infinite(),
|
|
|
|
|
_ => false,
|
|
|
|
|
}),
|
2018-03-13 10:38:11 +00:00
|
|
|
|
_ => false,
|
2016-01-04 04:26:12 +00:00
|
|
|
|
}
|
2015-11-10 10:19:33 +00:00
|
|
|
|
}
|
|
|
|
|
|
2019-07-15 17:46:58 +00:00
|
|
|
|
// Return true if `expr` is the result of `signum()` invoked on a float value.
|
2020-06-25 20:41:36 +00:00
|
|
|
|
fn is_signum(cx: &LateContext<'_>, expr: &Expr<'_>) -> bool {
|
2019-07-15 17:46:58 +00:00
|
|
|
|
// The negation of a signum is still a signum
|
2020-01-06 16:39:50 +00:00
|
|
|
|
if let ExprKind::Unary(UnOp::UnNeg, ref child_expr) = expr.kind {
|
2019-07-15 17:46:58 +00:00
|
|
|
|
return is_signum(cx, &child_expr);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if_chain! {
|
2020-06-09 21:44:04 +00:00
|
|
|
|
if let ExprKind::MethodCall(ref method_name, _, ref expressions, _) = expr.kind;
|
2019-07-15 17:46:58 +00:00
|
|
|
|
if sym!(signum) == method_name.ident.name;
|
|
|
|
|
// Check that the receiver of the signum() is a float (expressions[0] is the receiver of
|
|
|
|
|
// the method call)
|
|
|
|
|
then {
|
2019-07-15 19:00:07 +00:00
|
|
|
|
return is_float(cx, &expressions[0]);
|
2019-07-15 17:46:58 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
2019-07-15 19:00:07 +00:00
|
|
|
|
false
|
2019-07-15 17:46:58 +00:00
|
|
|
|
}
|
|
|
|
|
|
2020-06-25 20:41:36 +00:00
|
|
|
|
fn is_float(cx: &LateContext<'_>, expr: &Expr<'_>) -> bool {
|
2020-06-25 23:56:23 +00:00
|
|
|
|
let value = &walk_ptrs_ty(cx.tables().expr_ty(expr)).kind;
|
2019-07-31 11:52:12 +00:00
|
|
|
|
|
|
|
|
|
if let ty::Array(arr_ty, _) = value {
|
2020-03-17 08:03:36 +00:00
|
|
|
|
return matches!(arr_ty.kind, ty::Float(_));
|
2019-07-31 11:52:12 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
matches!(value, ty::Float(_))
|
2015-05-06 08:01:49 +00:00
|
|
|
|
}
|
2015-05-06 10:59:08 +00:00
|
|
|
|
|
2020-06-25 20:41:36 +00:00
|
|
|
|
fn is_array(cx: &LateContext<'_>, expr: &Expr<'_>) -> bool {
|
2020-06-25 23:56:23 +00:00
|
|
|
|
matches!(&walk_ptrs_ty(cx.tables().expr_ty(expr)).kind, ty::Array(_, _))
|
2020-03-20 09:51:48 +00:00
|
|
|
|
}
|
|
|
|
|
|
2020-07-14 12:59:59 +00:00
|
|
|
|
fn check_to_owned(cx: &LateContext<'_>, expr: &Expr<'_>, other: &Expr<'_>, left: bool) {
|
|
|
|
|
#[derive(Default)]
|
|
|
|
|
struct EqImpl {
|
|
|
|
|
ty_eq_other: bool,
|
|
|
|
|
other_eq_ty: bool,
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
impl EqImpl {
|
|
|
|
|
fn is_implemented(&self) -> bool {
|
|
|
|
|
self.ty_eq_other || self.other_eq_ty
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fn symmetric_partial_eq<'tcx>(cx: &LateContext<'tcx>, ty: Ty<'tcx>, other: Ty<'tcx>) -> Option<EqImpl> {
|
|
|
|
|
cx.tcx.lang_items().eq_trait().map(|def_id| EqImpl {
|
|
|
|
|
ty_eq_other: implements_trait(cx, ty, def_id, &[other.into()]),
|
|
|
|
|
other_eq_ty: implements_trait(cx, other, def_id, &[ty.into()]),
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
|
2019-09-27 15:16:06 +00:00
|
|
|
|
let (arg_ty, snip) = match expr.kind {
|
2020-06-09 21:44:04 +00:00
|
|
|
|
ExprKind::MethodCall(.., ref args, _) if args.len() == 1 => {
|
2019-05-17 21:53:54 +00:00
|
|
|
|
if match_trait_method(cx, expr, &paths::TO_STRING) || match_trait_method(cx, expr, &paths::TO_OWNED) {
|
2020-07-14 12:59:59 +00:00
|
|
|
|
(cx.tables().expr_ty(&args[0]), snippet(cx, args[0].span, ".."))
|
2016-01-04 04:26:12 +00:00
|
|
|
|
} else {
|
|
|
|
|
return;
|
|
|
|
|
}
|
2016-12-20 17:21:30 +00:00
|
|
|
|
},
|
2018-11-27 20:14:15 +00:00
|
|
|
|
ExprKind::Call(ref path, ref v) if v.len() == 1 => {
|
2019-09-27 15:16:06 +00:00
|
|
|
|
if let ExprKind::Path(ref path) = path.kind {
|
2019-05-17 22:58:25 +00:00
|
|
|
|
if match_qpath(path, &["String", "from_str"]) || match_qpath(path, &["String", "from"]) {
|
2020-07-14 12:59:59 +00:00
|
|
|
|
(cx.tables().expr_ty(&v[0]), snippet(cx, v[0].span, ".."))
|
2018-11-27 20:14:15 +00:00
|
|
|
|
} else {
|
|
|
|
|
return;
|
|
|
|
|
}
|
2015-10-12 22:46:05 +00:00
|
|
|
|
} else {
|
2016-01-04 04:26:12 +00:00
|
|
|
|
return;
|
2015-08-11 15:02:04 +00:00
|
|
|
|
}
|
2016-12-20 17:21:30 +00:00
|
|
|
|
},
|
2016-01-04 04:26:12 +00:00
|
|
|
|
_ => return,
|
2015-10-12 22:46:05 +00:00
|
|
|
|
};
|
2016-01-18 14:35:50 +00:00
|
|
|
|
|
2020-07-14 12:59:59 +00:00
|
|
|
|
let other_ty = cx.tables().expr_ty(other);
|
2016-01-18 14:35:50 +00:00
|
|
|
|
|
2020-07-14 12:59:59 +00:00
|
|
|
|
let without_deref = symmetric_partial_eq(cx, arg_ty, other_ty).unwrap_or_default();
|
|
|
|
|
let with_deref = arg_ty
|
|
|
|
|
.builtin_deref(true)
|
|
|
|
|
.and_then(|tam| symmetric_partial_eq(cx, tam.ty, other_ty))
|
|
|
|
|
.unwrap_or_default();
|
2018-10-09 02:04:29 +00:00
|
|
|
|
|
2020-07-14 12:59:59 +00:00
|
|
|
|
if !with_deref.is_implemented() && !without_deref.is_implemented() {
|
2016-01-18 14:35:50 +00:00
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2020-07-14 12:59:59 +00:00
|
|
|
|
let other_gets_derefed = matches!(other.kind, ExprKind::Unary(UnOp::UnDeref, _));
|
2018-10-10 02:25:03 +00:00
|
|
|
|
|
2018-10-12 11:48:54 +00:00
|
|
|
|
let lint_span = if other_gets_derefed {
|
|
|
|
|
expr.span.to(other.span)
|
2018-10-10 02:25:03 +00:00
|
|
|
|
} else {
|
2018-10-12 11:48:54 +00:00
|
|
|
|
expr.span
|
2018-10-10 02:25:03 +00:00
|
|
|
|
};
|
|
|
|
|
|
2017-08-09 07:30:56 +00:00
|
|
|
|
span_lint_and_then(
|
|
|
|
|
cx,
|
|
|
|
|
CMP_OWNED,
|
2018-10-10 02:25:03 +00:00
|
|
|
|
lint_span,
|
2017-08-09 07:30:56 +00:00
|
|
|
|
"this creates an owned instance just for comparison",
|
2020-04-17 06:08:00 +00:00
|
|
|
|
|diag| {
|
2019-01-31 01:15:29 +00:00
|
|
|
|
// This also catches `PartialEq` implementations that call `to_owned`.
|
2018-10-12 11:34:41 +00:00
|
|
|
|
if other_gets_derefed {
|
2020-04-17 06:08:00 +00:00
|
|
|
|
diag.span_label(lint_span, "try implementing the comparison without allocating");
|
2018-10-12 11:34:41 +00:00
|
|
|
|
return;
|
|
|
|
|
}
|
2018-10-12 11:48:54 +00:00
|
|
|
|
|
2020-07-14 12:59:59 +00:00
|
|
|
|
let expr_snip;
|
|
|
|
|
let eq_impl;
|
|
|
|
|
if with_deref.is_implemented() {
|
|
|
|
|
expr_snip = format!("*{}", snip);
|
|
|
|
|
eq_impl = with_deref;
|
2018-10-12 11:48:54 +00:00
|
|
|
|
} else {
|
2020-07-14 12:59:59 +00:00
|
|
|
|
expr_snip = snip.to_string();
|
|
|
|
|
eq_impl = without_deref;
|
2018-10-12 11:48:54 +00:00
|
|
|
|
};
|
|
|
|
|
|
2020-07-14 12:59:59 +00:00
|
|
|
|
let span;
|
|
|
|
|
let hint;
|
|
|
|
|
if (eq_impl.ty_eq_other && left) || (eq_impl.other_eq_ty && !left) {
|
|
|
|
|
span = expr.span;
|
|
|
|
|
hint = expr_snip;
|
|
|
|
|
} else {
|
|
|
|
|
span = expr.span.to(other.span);
|
|
|
|
|
if eq_impl.ty_eq_other {
|
|
|
|
|
hint = format!("{} == {}", expr_snip, snippet(cx, other.span, ".."));
|
|
|
|
|
} else {
|
|
|
|
|
hint = format!("{} == {}", snippet(cx, other.span, ".."), expr_snip);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2020-04-17 06:08:00 +00:00
|
|
|
|
diag.span_suggestion(
|
2020-07-14 12:59:59 +00:00
|
|
|
|
span,
|
2018-09-18 15:07:54 +00:00
|
|
|
|
"try",
|
2020-07-14 12:59:59 +00:00
|
|
|
|
hint,
|
2018-09-18 17:01:17 +00:00
|
|
|
|
Applicability::MachineApplicable, // snippet
|
2018-09-18 15:07:54 +00:00
|
|
|
|
);
|
2017-08-09 07:30:56 +00:00
|
|
|
|
},
|
|
|
|
|
);
|
2015-05-21 14:37:38 +00:00
|
|
|
|
}
|
2015-08-11 16:55:07 +00:00
|
|
|
|
|
2017-08-09 07:30:56 +00:00
|
|
|
|
/// Heuristic to see if an expression is used. Should be compatible with
|
|
|
|
|
/// `unused_variables`'s idea
|
2015-12-21 09:03:12 +00:00
|
|
|
|
/// of what it means for an expression to be "used".
|
2020-06-25 20:41:36 +00:00
|
|
|
|
fn is_used(cx: &LateContext<'_>, expr: &Expr<'_>) -> bool {
|
2020-07-14 12:59:59 +00:00
|
|
|
|
get_parent_expr(cx, expr).map_or(true, |parent| match parent.kind {
|
|
|
|
|
ExprKind::Assign(_, ref rhs, _) | ExprKind::AssignOp(_, _, ref rhs) => SpanlessEq::new(cx).eq_expr(rhs, expr),
|
|
|
|
|
_ => is_used(cx, parent),
|
|
|
|
|
})
|
2015-12-19 00:04:33 +00:00
|
|
|
|
}
|
2015-12-21 09:03:12 +00:00
|
|
|
|
|
2019-01-31 01:15:29 +00:00
|
|
|
|
/// Tests whether an expression is in a macro expansion (e.g., something
|
2019-03-10 17:19:47 +00:00
|
|
|
|
/// generated by `#[derive(...)]` or the like).
|
2019-12-27 07:12:26 +00:00
|
|
|
|
fn in_attributes_expansion(expr: &Expr<'_>) -> bool {
|
2019-12-31 00:17:56 +00:00
|
|
|
|
use rustc_span::hygiene::MacroKind;
|
2019-08-16 16:29:30 +00:00
|
|
|
|
if expr.span.from_expansion() {
|
|
|
|
|
let data = expr.span.ctxt().outer_expn_data();
|
2020-07-14 12:59:59 +00:00
|
|
|
|
matches!(data.kind, ExpnKind::Macro(MacroKind::Attr, _))
|
2019-08-16 16:29:30 +00:00
|
|
|
|
} else {
|
|
|
|
|
false
|
|
|
|
|
}
|
2015-12-21 09:03:12 +00:00
|
|
|
|
}
|
2016-06-15 14:27:56 +00:00
|
|
|
|
|
2019-05-04 00:03:12 +00:00
|
|
|
|
/// Tests whether `res` is a variable defined outside a macro.
|
2020-06-25 20:41:36 +00:00
|
|
|
|
fn non_macro_local(cx: &LateContext<'_>, res: def::Res) -> bool {
|
2019-06-02 16:30:40 +00:00
|
|
|
|
if let def::Res::Local(id) = res {
|
2019-08-19 16:30:32 +00:00
|
|
|
|
!cx.tcx.hir().span(id).from_expansion()
|
2019-06-02 16:30:40 +00:00
|
|
|
|
} else {
|
|
|
|
|
false
|
2016-06-15 14:27:56 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
2017-03-07 11:58:07 +00:00
|
|
|
|
|
2020-07-14 12:59:59 +00:00
|
|
|
|
fn check_cast(cx: &LateContext<'_>, span: Span, e: &Expr<'_>, ty: &hir::Ty<'_>) {
|
2017-10-23 19:18:02 +00:00
|
|
|
|
if_chain! {
|
2019-10-02 15:38:00 +00:00
|
|
|
|
if let TyKind::Ptr(ref mut_ty) = ty.kind;
|
2019-09-27 15:16:06 +00:00
|
|
|
|
if let ExprKind::Lit(ref lit) = e.kind;
|
2019-10-02 15:38:00 +00:00
|
|
|
|
if let LitKind::Int(0, _) = lit.node;
|
2019-02-24 18:43:15 +00:00
|
|
|
|
if !in_constant(cx, e.hir_id);
|
2017-10-23 19:18:02 +00:00
|
|
|
|
then {
|
2019-10-02 15:38:00 +00:00
|
|
|
|
let (msg, sugg_fn) = match mut_ty.mutbl {
|
2019-12-21 18:38:45 +00:00
|
|
|
|
Mutability::Mut => ("`0 as *mut _` detected", "std::ptr::null_mut"),
|
|
|
|
|
Mutability::Not => ("`0 as *const _` detected", "std::ptr::null"),
|
2017-10-23 19:18:02 +00:00
|
|
|
|
};
|
2019-10-02 15:38:00 +00:00
|
|
|
|
|
|
|
|
|
let (sugg, appl) = if let TyKind::Infer = mut_ty.ty.kind {
|
|
|
|
|
(format!("{}()", sugg_fn), Applicability::MachineApplicable)
|
|
|
|
|
} else if let Some(mut_ty_snip) = snippet_opt(cx, mut_ty.ty.span) {
|
|
|
|
|
(format!("{}::<{}>()", sugg_fn, mut_ty_snip), Applicability::MachineApplicable)
|
|
|
|
|
} else {
|
|
|
|
|
// `MaybeIncorrect` as type inference may not work with the suggested code
|
|
|
|
|
(format!("{}()", sugg_fn), Applicability::MaybeIncorrect)
|
|
|
|
|
};
|
|
|
|
|
span_lint_and_sugg(cx, ZERO_PTR, span, msg, "try", sugg, appl);
|
2017-10-23 19:18:02 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
2017-03-07 11:58:07 +00:00
|
|
|
|
}
|