2018-11-27 14:14:15 -06:00
|
|
|
|
use if_chain::if_chain;
|
2020-02-29 21:23:33 -06:00
|
|
|
|
use rustc_ast::ast::LitKind;
|
2018-12-29 09:04:45 -06:00
|
|
|
|
use rustc_errors::Applicability;
|
2020-01-09 01:13:22 -06:00
|
|
|
|
use rustc_hir::intravisit::FnKind;
|
2020-02-21 02:39:38 -06:00
|
|
|
|
use rustc_hir::{
|
2020-07-14 07:59:59 -05:00
|
|
|
|
self as hir, def, BinOpKind, BindingAnnotation, Body, Expr, ExprKind, FnDecl, HirId, Mutability, PatKind, Stmt,
|
|
|
|
|
StmtKind, TyKind, UnOp,
|
2020-02-21 02:39:38 -06:00
|
|
|
|
};
|
2020-01-12 00:08:41 -06:00
|
|
|
|
use rustc_lint::{LateContext, LateLintPass};
|
2020-07-14 07:59:59 -05:00
|
|
|
|
use rustc_middle::ty::{self, Ty};
|
2020-01-11 05:37:08 -06:00
|
|
|
|
use rustc_session::{declare_lint_pass, declare_tool_lint};
|
2020-04-26 17:12:51 -05:00
|
|
|
|
use rustc_span::hygiene::DesugaringKind;
|
2020-01-04 04:00:00 -06:00
|
|
|
|
use rustc_span::source_map::{ExpnKind, Span};
|
2015-05-06 03:01:49 -05:00
|
|
|
|
|
2019-01-30 19:15:29 -06:00
|
|
|
|
use crate::consts::{constant, Constant};
|
2019-03-10 16:12:26 -05:00
|
|
|
|
use crate::utils::sugg::Sugg;
|
2019-01-30 19:15:29 -06:00
|
|
|
|
use crate::utils::{
|
2020-04-19 08:56:47 -05:00
|
|
|
|
get_item_name, get_parent_expr, higher, implements_trait, in_constant, is_integer_const, iter_input_pats,
|
2019-10-02 10:38:00 -05:00
|
|
|
|
last_path_segment, match_qpath, match_trait_method, paths, snippet, snippet_opt, span_lint, span_lint_and_sugg,
|
2020-09-10 22:06:49 -05:00
|
|
|
|
span_lint_and_then, span_lint_hir_and_then, SpanlessEq,
|
2019-01-30 19:15:29 -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 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-30 19:15:29 -06:00
|
|
|
|
/// dereferences, e.g., changing `*x` to `x` within the function.
|
2019-03-05 10:50:33 -06:00
|
|
|
|
///
|
|
|
|
|
/// **Example:**
|
2020-06-09 09:36:01 -05:00
|
|
|
|
/// ```rust,ignore
|
|
|
|
|
/// // Bad
|
2019-03-05 10:50:33 -06:00
|
|
|
|
/// fn foo(ref x: u8) -> bool {
|
2019-03-10 17:01:56 -05:00
|
|
|
|
/// true
|
2019-03-05 10:50:33 -06:00
|
|
|
|
/// }
|
2020-06-09 09:36:01 -05:00
|
|
|
|
///
|
|
|
|
|
/// // Good
|
|
|
|
|
/// fn foo(x: &u8) -> bool {
|
|
|
|
|
/// true
|
|
|
|
|
/// }
|
2019-03-05 10:50:33 -06:00
|
|
|
|
/// ```
|
2016-08-06 03:18:36 -05:00
|
|
|
|
pub TOPLEVEL_REF_ARG,
|
2018-03-28 08:24:26 -05:00
|
|
|
|
style,
|
2016-08-06 03:18:36 -05:00
|
|
|
|
"an entire binding declared as `ref`, in a function argument or a `let` statement"
|
2016-02-05 17:13:29 -06:00
|
|
|
|
}
|
2014-12-24 17:15:22 -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 comparisons to NaN.
|
|
|
|
|
///
|
2019-08-19 14:38:33 -05:00
|
|
|
|
/// **Why is this bad?** NaN does not compare meaningfully to anything – not
|
|
|
|
|
/// even itself – so those comparisons are simply wrong.
|
2019-03-05 10:50:33 -06:00
|
|
|
|
///
|
|
|
|
|
/// **Known problems:** None.
|
|
|
|
|
///
|
|
|
|
|
/// **Example:**
|
2019-03-09 01:51:23 -06:00
|
|
|
|
/// ```rust
|
|
|
|
|
/// # let x = 1.0;
|
|
|
|
|
///
|
2020-06-09 09:36:01 -05:00
|
|
|
|
/// // Bad
|
2020-04-06 16:53:11 -05:00
|
|
|
|
/// if x == f32::NAN { }
|
2020-06-09 09:36:01 -05:00
|
|
|
|
///
|
|
|
|
|
/// // Good
|
|
|
|
|
/// if x.is_nan() { }
|
2019-03-05 10:50:33 -06:00
|
|
|
|
/// ```
|
2016-08-24 14:47:46 -05:00
|
|
|
|
pub CMP_NAN,
|
2018-03-28 08:24:26 -05:00
|
|
|
|
correctness,
|
2020-01-06 00:30:43 -06:00
|
|
|
|
"comparisons to `NAN`, which will always return false, probably not intended"
|
2016-08-24 14:47:46 -05: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 (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 01:51:23 -06:00
|
|
|
|
/// ```rust
|
|
|
|
|
/// let x = 1.2331f64;
|
|
|
|
|
/// let y = 1.2332f64;
|
2020-06-09 09:36:01 -05:00
|
|
|
|
///
|
|
|
|
|
/// // Bad
|
2019-03-09 01:51:23 -06:00
|
|
|
|
/// if y == 1.23f64 { }
|
|
|
|
|
/// if y != x {} // where both are floats
|
2020-06-09 09:36:01 -05:00
|
|
|
|
///
|
|
|
|
|
/// // Good
|
2020-09-15 11:29:41 -05:00
|
|
|
|
/// let error_margin = f64::EPSILON; // Use an epsilon for comparison
|
2020-07-26 14:07:07 -05:00
|
|
|
|
/// // Or, if Rust <= 1.42, use `std::f64::EPSILON` constant instead.
|
2020-09-15 11:29:41 -05:00
|
|
|
|
/// // let error_margin = std::f64::EPSILON;
|
|
|
|
|
/// if (y - 1.23f64).abs() < error_margin { }
|
|
|
|
|
/// if (y - x).abs() > error_margin { }
|
2019-03-05 10:50:33 -06:00
|
|
|
|
/// ```
|
2016-08-24 14:47:46 -05:00
|
|
|
|
pub FLOAT_CMP,
|
2018-03-29 06:41:53 -05:00
|
|
|
|
correctness,
|
2016-08-24 14:47:46 -05:00
|
|
|
|
"using `==` or `!=` on float values instead of comparing difference with an epsilon"
|
|
|
|
|
}
|
|
|
|
|
|
2018-03-28 08:24:26 -05:00
|
|
|
|
declare_clippy_lint! {
|
2019-03-05 10:50:33 -06: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 01:01:27 -05:00
|
|
|
|
/// # let x = "foo";
|
|
|
|
|
/// # let y = String::from("foo");
|
|
|
|
|
/// if x.to_owned() == y {}
|
2019-03-05 10:50:33 -06:00
|
|
|
|
/// ```
|
2019-08-20 09:23:53 -05:00
|
|
|
|
/// Could be written as
|
|
|
|
|
/// ```rust
|
|
|
|
|
/// # let x = "foo";
|
|
|
|
|
/// # let y = String::from("foo");
|
|
|
|
|
/// if x == y {}
|
|
|
|
|
/// ```
|
2016-08-24 14:47:46 -05:00
|
|
|
|
pub CMP_OWNED,
|
2018-03-28 08:24:26 -05:00
|
|
|
|
perf,
|
2019-01-30 19:15:29 -06:00
|
|
|
|
"creating owned instances for comparing with others, e.g., `x == \"foo\".to_string()`"
|
2016-08-24 14:47:46 -05: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 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 01:51:23 -06:00
|
|
|
|
/// ```rust
|
|
|
|
|
/// # let x = 1;
|
|
|
|
|
/// let a = x % 1;
|
2019-03-05 10:50:33 -06:00
|
|
|
|
/// ```
|
2016-08-24 14:47:46 -05:00
|
|
|
|
pub MODULO_ONE,
|
2018-03-28 08:24:26 -05:00
|
|
|
|
correctness,
|
2016-08-24 14:47:46 -05:00
|
|
|
|
"taking a number modulo 1, which always returns 0"
|
|
|
|
|
}
|
|
|
|
|
|
2018-03-28 08:24:26 -05:00
|
|
|
|
declare_clippy_lint! {
|
2019-03-05 10:50:33 -06: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 14:47:46 -05:00
|
|
|
|
pub USED_UNDERSCORE_BINDING,
|
2018-03-28 08:24:26 -05:00
|
|
|
|
pedantic,
|
2016-08-24 14:47:46 -05:00
|
|
|
|
"using a binding which is prefixed with an underscore"
|
|
|
|
|
}
|
|
|
|
|
|
2018-03-28 08:24:26 -05:00
|
|
|
|
declare_clippy_lint! {
|
2019-03-05 10:50:33 -06: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 01:13:54 -05:00
|
|
|
|
/// ```rust,ignore
|
2019-03-05 10:50:33 -06:00
|
|
|
|
/// f() && g(); // We should write `if f() { g(); }`.
|
|
|
|
|
/// ```
|
2016-12-29 17:00:55 -06:00
|
|
|
|
pub SHORT_CIRCUIT_STATEMENT,
|
2018-03-28 08:24:26 -05:00
|
|
|
|
complexity,
|
2016-12-29 17:00:55 -06:00
|
|
|
|
"using a short circuit boolean condition as a statement"
|
|
|
|
|
}
|
|
|
|
|
|
2018-03-28 08:24:26 -05:00
|
|
|
|
declare_clippy_lint! {
|
2019-03-05 10:50:33 -06: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 01:51:23 -06:00
|
|
|
|
/// ```rust
|
2020-06-09 09:36:01 -05:00
|
|
|
|
/// // Bad
|
2019-03-09 01:51:23 -06:00
|
|
|
|
/// let a = 0 as *const u32;
|
2020-06-09 09:36:01 -05:00
|
|
|
|
///
|
|
|
|
|
/// // Good
|
|
|
|
|
/// let a = std::ptr::null::<u32>();
|
2019-03-05 10:50:33 -06:00
|
|
|
|
/// ```
|
2017-03-07 05:58:07 -06:00
|
|
|
|
pub ZERO_PTR,
|
2018-03-28 08:24:26 -05:00
|
|
|
|
style,
|
2020-01-06 00:30:43 -06:00
|
|
|
|
"using `0 as *{const, mut} T`"
|
2017-03-07 05:58:07 -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 (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 14:24:50 -05:00
|
|
|
|
/// let x: f64 = 1.0;
|
|
|
|
|
/// const ONE: f64 = 1.00;
|
2020-06-09 09:36:01 -05:00
|
|
|
|
///
|
|
|
|
|
/// // Bad
|
2020-07-26 14:07:07 -05:00
|
|
|
|
/// if x == ONE { } // where both are floats
|
2020-06-09 09:36:01 -05:00
|
|
|
|
///
|
|
|
|
|
/// // Good
|
2020-09-15 11:29:41 -05:00
|
|
|
|
/// let error_margin = f64::EPSILON; // Use an epsilon for comparison
|
2020-07-26 14:07:07 -05:00
|
|
|
|
/// // Or, if Rust <= 1.42, use `std::f64::EPSILON` constant instead.
|
2020-09-15 11:29:41 -05:00
|
|
|
|
/// // let error_margin = std::f64::EPSILON;
|
|
|
|
|
/// if (x - ONE).abs() < error_margin { }
|
2019-03-05 10:50:33 -06:00
|
|
|
|
/// ```
|
2017-11-04 03:32:58 -05:00
|
|
|
|
pub FLOAT_CMP_CONST,
|
2018-03-28 08:24:26 -05:00
|
|
|
|
restriction,
|
2017-11-04 03:32:58 -05:00
|
|
|
|
"using `==` or `!=` on float constants instead of comparing difference with an epsilon"
|
|
|
|
|
}
|
|
|
|
|
|
2019-04-08 15:43:55 -05: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 17:15:22 -06:00
|
|
|
|
|
2020-06-25 15:41:36 -05:00
|
|
|
|
impl<'tcx> LateLintPass<'tcx> for MiscLints {
|
2016-12-21 05:14:54 -06:00
|
|
|
|
fn check_fn(
|
|
|
|
|
&mut self,
|
2020-06-25 15:41:36 -05:00
|
|
|
|
cx: &LateContext<'tcx>,
|
2016-12-21 05:14:54 -06:00
|
|
|
|
k: FnKind<'tcx>,
|
2019-12-29 22:02:10 -06:00
|
|
|
|
decl: &'tcx FnDecl<'_>,
|
2019-12-22 08:42:41 -06:00
|
|
|
|
body: &'tcx Body<'_>,
|
2016-12-21 05:14:54 -06:00
|
|
|
|
_: Span,
|
2019-02-20 04:11:11 -06:00
|
|
|
|
_: HirId,
|
2016-12-21 05:14:54 -06:00
|
|
|
|
) {
|
2016-03-23 10:11:24 -05:00
|
|
|
|
if let FnKind::Closure(_) = k {
|
2015-08-16 06:54:03 -05:00
|
|
|
|
// Does not apply to closures
|
2016-01-03 22:26:12 -06:00
|
|
|
|
return;
|
2015-08-16 06:54:03 -05:00
|
|
|
|
}
|
2017-01-04 15:46:41 -06:00
|
|
|
|
for arg in iter_input_pats(decl, body) {
|
2020-06-09 09:36:01 -05: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 17:15:22 -06:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2016-08-24 14:47:46 -05:00
|
|
|
|
|
2020-06-25 15:41:36 -05:00
|
|
|
|
fn check_stmt(&mut self, cx: &LateContext<'tcx>, stmt: &'tcx Stmt<'_>) {
|
2017-10-23 14:18:02 -05:00
|
|
|
|
if_chain! {
|
2019-09-27 10:16:06 -05:00
|
|
|
|
if let StmtKind::Local(ref local) = stmt.kind;
|
|
|
|
|
if let PatKind::Binding(an, .., name, None) = local.pat.kind;
|
2019-09-25 20:46:51 -05:00
|
|
|
|
if let Some(ref init) = local.init;
|
2020-04-19 08:56:47 -05:00
|
|
|
|
if !higher::is_from_for_desugar(local);
|
2017-10-23 14:18:02 -05:00
|
|
|
|
then {
|
|
|
|
|
if an == BindingAnnotation::Ref || an == BindingAnnotation::RefMut {
|
2019-09-25 20:46:51 -05: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 08:18:32 -05:00
|
|
|
|
("mut ", sugg_init.mut_addr())
|
2017-10-23 14:18:02 -05:00
|
|
|
|
} else {
|
2019-04-19 08:18:32 -05:00
|
|
|
|
("", sugg_init.addr())
|
2017-10-23 14:18:02 -05:00
|
|
|
|
};
|
2019-09-25 20:46:51 -05:00
|
|
|
|
let tyopt = if let Some(ref ty) = local.ty {
|
2017-10-23 14:18:02 -05:00
|
|
|
|
format!(": &{mutopt}{ty}", mutopt=mutopt, ty=snippet(cx, ty.span, "_"))
|
|
|
|
|
} else {
|
2018-08-21 05:46:18 -05:00
|
|
|
|
String::new()
|
2017-10-23 14:18:02 -05:00
|
|
|
|
};
|
2019-09-25 20:46:51 -05:00
|
|
|
|
span_lint_hir_and_then(
|
|
|
|
|
cx,
|
2017-10-23 14:18:02 -05:00
|
|
|
|
TOPLEVEL_REF_ARG,
|
2019-04-19 08:18:32 -05:00
|
|
|
|
init.hir_id,
|
2019-09-25 20:46:51 -05:00
|
|
|
|
local.pat.span,
|
2017-10-23 14:18:02 -05:00
|
|
|
|
"`ref` on an entire `let` pattern is discouraged, take a reference with `&` instead",
|
2020-04-17 01:08:00 -05:00
|
|
|
|
|diag| {
|
|
|
|
|
diag.span_suggestion(
|
2019-09-25 20:46:51 -05:00
|
|
|
|
stmt.span,
|
2018-09-18 10:07:54 -05:00
|
|
|
|
"try",
|
|
|
|
|
format!(
|
|
|
|
|
"let {name}{tyopt} = {initref};",
|
2019-09-25 20:46:51 -05:00
|
|
|
|
name=snippet(cx, name.span, "_"),
|
2018-09-18 10:07:54 -05:00
|
|
|
|
tyopt=tyopt,
|
|
|
|
|
initref=initref,
|
|
|
|
|
),
|
2019-09-25 20:46:51 -05:00
|
|
|
|
Applicability::MachineApplicable,
|
2018-09-18 10:07:54 -05:00
|
|
|
|
);
|
2017-10-23 14:18:02 -05:00
|
|
|
|
}
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
if_chain! {
|
2019-09-27 10:16:06 -05:00
|
|
|
|
if let StmtKind::Semi(ref expr) = stmt.kind;
|
|
|
|
|
if let ExprKind::Binary(ref binop, ref a, ref b) = expr.kind;
|
2018-07-12 02:50:09 -05:00
|
|
|
|
if binop.node == BinOpKind::And || binop.node == BinOpKind::Or;
|
2017-10-23 14:18:02 -05:00
|
|
|
|
if let Some(sugg) = Sugg::hir_opt(cx, a);
|
|
|
|
|
then {
|
2017-08-01 02:11:05 -05:00
|
|
|
|
span_lint_and_then(cx,
|
2017-10-23 14:18:02 -05:00
|
|
|
|
SHORT_CIRCUIT_STATEMENT,
|
2019-09-25 20:46:51 -05:00
|
|
|
|
stmt.span,
|
2017-10-23 14:18:02 -05:00
|
|
|
|
"boolean short circuit operator in statement may be clearer using an explicit test",
|
2020-04-17 01:08:00 -05:00
|
|
|
|
|diag| {
|
2018-07-12 02:50:09 -05:00
|
|
|
|
let sugg = if binop.node == BinOpKind::Or { !sugg } else { sugg };
|
2020-04-17 01:08:00 -05:00
|
|
|
|
diag.span_suggestion(
|
2019-09-25 20:46:51 -05:00
|
|
|
|
stmt.span,
|
2018-09-18 10:07:54 -05:00
|
|
|
|
"replace it with",
|
|
|
|
|
format!(
|
|
|
|
|
"if {} {{ {}; }}",
|
2018-10-08 21:04:29 -05:00
|
|
|
|
sugg,
|
2018-09-18 10:07:54 -05:00
|
|
|
|
&snippet(cx, b.span, ".."),
|
|
|
|
|
),
|
2018-09-18 12:01:17 -05:00
|
|
|
|
Applicability::MachineApplicable, // snippet
|
2018-09-18 10:07:54 -05:00
|
|
|
|
);
|
2017-10-23 14:18:02 -05:00
|
|
|
|
});
|
2017-08-01 02:11:05 -05:00
|
|
|
|
}
|
2017-10-23 14:18:02 -05:00
|
|
|
|
};
|
2015-09-22 02:08:42 -05:00
|
|
|
|
}
|
2015-05-04 07:11:15 -05:00
|
|
|
|
|
2020-06-25 15:41:36 -05:00
|
|
|
|
fn check_expr(&mut self, cx: &LateContext<'tcx>, expr: &'tcx Expr<'_>) {
|
2019-09-27 10:16:06 -05:00
|
|
|
|
match expr.kind {
|
2018-07-12 02:30:57 -05:00
|
|
|
|
ExprKind::Cast(ref e, ref ty) => {
|
2017-03-07 05:58:07 -06:00
|
|
|
|
check_cast(cx, expr.span, e, ty);
|
|
|
|
|
return;
|
|
|
|
|
},
|
2018-07-12 02:30:57 -05:00
|
|
|
|
ExprKind::Binary(ref cmp, ref left, ref right) => {
|
2017-03-07 05:58:07 -06:00
|
|
|
|
let op = cmp.node;
|
|
|
|
|
if op.is_comparison() {
|
2019-12-17 21:18:42 -06:00
|
|
|
|
check_nan(cx, left, expr);
|
|
|
|
|
check_nan(cx, right, expr);
|
2020-07-14 07:59:59 -05:00
|
|
|
|
check_to_owned(cx, left, right, true);
|
|
|
|
|
check_to_owned(cx, right, left, false);
|
2016-01-03 22:26:12 -06:00
|
|
|
|
}
|
2018-07-12 02:50:09 -05:00
|
|
|
|
if (op == BinOpKind::Eq || op == BinOpKind::Ne) && (is_float(cx, left) || is_float(cx, right)) {
|
2017-03-07 05:58:07 -06:00
|
|
|
|
if is_allowed(cx, left) || is_allowed(cx, right) {
|
2015-09-06 14:03:09 -05:00
|
|
|
|
return;
|
|
|
|
|
}
|
2019-07-15 12:46:58 -05:00
|
|
|
|
|
|
|
|
|
// Allow comparing the results of signum()
|
|
|
|
|
if is_signum(cx, left) && is_signum(cx, right) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2017-03-07 05:58:07 -06:00
|
|
|
|
if let Some(name) = get_item_name(cx, expr) {
|
2017-03-30 03:21:13 -05:00
|
|
|
|
let name = name.as_str();
|
2018-11-27 14:14:15 -06:00
|
|
|
|
if name == "eq"
|
|
|
|
|
|| name == "ne"
|
|
|
|
|
|| name == "is_nan"
|
|
|
|
|
|| name.starts_with("eq_")
|
2017-11-04 14:55:56 -05:00
|
|
|
|
|| name.ends_with("_eq")
|
2017-08-09 02:30:56 -05:00
|
|
|
|
{
|
2017-03-07 05:58:07 -06:00
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
}
|
2020-04-06 02:06:50 -05:00
|
|
|
|
let is_comparing_arrays = is_array(cx, left) || is_array(cx, right);
|
2020-04-06 02:40:53 -05:00
|
|
|
|
let (lint, msg) = get_lint_and_message(
|
|
|
|
|
is_named_constant(cx, left) || is_named_constant(cx, right),
|
|
|
|
|
is_comparing_arrays,
|
|
|
|
|
);
|
2020-04-17 01:08:00 -05:00
|
|
|
|
span_lint_and_then(cx, lint, expr.span, msg, |diag| {
|
2017-03-07 05:58:07 -06:00
|
|
|
|
let lhs = Sugg::hir(cx, left, "..");
|
|
|
|
|
let rhs = Sugg::hir(cx, right, "..");
|
|
|
|
|
|
2020-04-06 08:29:54 -05:00
|
|
|
|
if !is_comparing_arrays {
|
2020-04-17 01:08:00 -05:00
|
|
|
|
diag.span_suggestion(
|
2020-03-20 04:51:48 -05:00
|
|
|
|
expr.span,
|
2020-09-14 18:20:31 -05:00
|
|
|
|
"consider comparing them within some margin of error",
|
2020-03-20 04:51:48 -05:00
|
|
|
|
format!(
|
2020-09-14 18:20:31 -05:00
|
|
|
|
"({}).abs() {} error_margin",
|
2020-03-20 04:51:48 -05:00
|
|
|
|
lhs - rhs,
|
|
|
|
|
if op == BinOpKind::Eq { '<' } else { '>' }
|
|
|
|
|
),
|
|
|
|
|
Applicability::HasPlaceholders, // snippet
|
|
|
|
|
);
|
|
|
|
|
}
|
2020-09-14 18:20:31 -05:00
|
|
|
|
diag.note("`f32::EPSILON` and `f64::EPSILON` are available for the `error_margin`");
|
2017-03-07 05:58:07 -06:00
|
|
|
|
});
|
2019-09-09 10:01:01 -05:00
|
|
|
|
} else if op == BinOpKind::Rem && is_integer_const(cx, right, 1) {
|
2017-03-07 05:58:07 -06:00
|
|
|
|
span_lint(cx, MODULO_ONE, expr.span, "any number modulo 1 will be 0");
|
2015-09-02 03:30:11 -05:00
|
|
|
|
}
|
2017-03-07 05:58:07 -06:00
|
|
|
|
},
|
2017-03-13 05:32:58 -05:00
|
|
|
|
_ => {},
|
2016-08-24 14:47:46 -05:00
|
|
|
|
}
|
2020-04-26 17:12:51 -05: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 14:47:46 -05:00
|
|
|
|
return;
|
|
|
|
|
}
|
2019-09-27 10:16:06 -05:00
|
|
|
|
let binding = match expr.kind {
|
2020-08-28 09:10:16 -05:00
|
|
|
|
ExprKind::Path(ref qpath) if !matches!(qpath, hir::QPath::LangItem(..)) => {
|
2018-06-28 08:46:58 -05:00
|
|
|
|
let binding = last_path_segment(qpath).ident.as_str();
|
2016-12-02 10:38:31 -06:00
|
|
|
|
if binding.starts_with('_') &&
|
|
|
|
|
!binding.starts_with("__") &&
|
2017-03-09 03:58:31 -06:00
|
|
|
|
binding != "_result" && // FIXME: #944
|
2016-12-02 10:38:31 -06:00
|
|
|
|
is_used(cx, expr) &&
|
|
|
|
|
// don't lint if the declaration is in a macro
|
2020-06-25 21:55:23 -05:00
|
|
|
|
non_macro_local(cx, cx.qpath_res(qpath, expr.hir_id))
|
2017-08-09 02:30:56 -05:00
|
|
|
|
{
|
2016-12-02 10:38:31 -06:00
|
|
|
|
Some(binding)
|
2016-08-24 14:47:46 -05:00
|
|
|
|
} else {
|
|
|
|
|
None
|
|
|
|
|
}
|
2016-12-20 11:21:30 -06:00
|
|
|
|
},
|
2018-07-12 02:30:57 -05:00
|
|
|
|
ExprKind::Field(_, ident) => {
|
2018-05-29 03:56:58 -05:00
|
|
|
|
let name = ident.as_str();
|
2016-08-24 14:47:46 -05:00
|
|
|
|
if name.starts_with('_') && !name.starts_with("__") {
|
|
|
|
|
Some(name)
|
|
|
|
|
} else {
|
|
|
|
|
None
|
|
|
|
|
}
|
2016-12-20 11:21:30 -06:00
|
|
|
|
},
|
2016-08-24 14:47:46 -05:00
|
|
|
|
_ => None,
|
|
|
|
|
};
|
|
|
|
|
if let Some(binding) = binding {
|
2017-08-09 02:30:56 -05:00
|
|
|
|
span_lint(
|
|
|
|
|
cx,
|
|
|
|
|
USED_UNDERSCORE_BINDING,
|
|
|
|
|
expr.span,
|
|
|
|
|
&format!(
|
|
|
|
|
"used binding `{}` which is prefixed with an underscore. A leading \
|
2017-09-05 04:33:04 -05:00
|
|
|
|
underscore signals that a binding will not be used.",
|
2017-08-09 02:30:56 -05:00
|
|
|
|
binding
|
|
|
|
|
),
|
|
|
|
|
);
|
2016-08-24 14:47:46 -05:00
|
|
|
|
}
|
|
|
|
|
}
|
2015-05-06 03:01:49 -05:00
|
|
|
|
}
|
|
|
|
|
|
2020-04-06 02:40:53 -05: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 15:41:36 -05:00
|
|
|
|
fn check_nan(cx: &LateContext<'_>, expr: &Expr<'_>, cmp_expr: &Expr<'_>) {
|
2019-12-17 21:18:42 -06:00
|
|
|
|
if_chain! {
|
|
|
|
|
if !in_constant(cx, cmp_expr.hir_id);
|
2020-07-17 03:47:04 -05:00
|
|
|
|
if let Some((value, _)) = constant(cx, cx.typeck_results(), expr);
|
2019-12-17 21:18:42 -06:00
|
|
|
|
then {
|
|
|
|
|
let needs_lint = match value {
|
|
|
|
|
Constant::F32(num) => num.is_nan(),
|
|
|
|
|
Constant::F64(num) => num.is_nan(),
|
|
|
|
|
_ => false,
|
|
|
|
|
};
|
2019-12-17 20:51:30 -06:00
|
|
|
|
|
2019-12-17 21:18:42 -06:00
|
|
|
|
if needs_lint {
|
|
|
|
|
span_lint(
|
|
|
|
|
cx,
|
|
|
|
|
CMP_NAN,
|
|
|
|
|
cmp_expr.span,
|
2020-04-06 16:53:11 -05:00
|
|
|
|
"doomed comparison with `NAN`, use `{f32,f64}::is_nan()` instead",
|
2019-12-17 21:18:42 -06:00
|
|
|
|
);
|
|
|
|
|
}
|
2017-01-22 19:57:17 -06:00
|
|
|
|
}
|
2017-03-07 05:58:07 -06:00
|
|
|
|
}
|
2016-08-24 14:47:46 -05:00
|
|
|
|
}
|
|
|
|
|
|
2020-06-25 15:41:36 -05:00
|
|
|
|
fn is_named_constant<'tcx>(cx: &LateContext<'tcx>, expr: &'tcx Expr<'_>) -> bool {
|
2020-07-17 03:47:04 -05:00
|
|
|
|
if let Some((_, res)) = constant(cx, cx.typeck_results(), expr) {
|
2017-11-04 03:32:58 -05:00
|
|
|
|
res
|
|
|
|
|
} else {
|
2018-11-27 14:14:15 -06:00
|
|
|
|
false
|
2017-11-04 03:32:58 -05:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2020-06-25 15:41:36 -05:00
|
|
|
|
fn is_allowed<'tcx>(cx: &LateContext<'tcx>, expr: &'tcx Expr<'_>) -> bool {
|
2020-07-17 03:47:04 -05:00
|
|
|
|
match constant(cx, cx.typeck_results(), expr) {
|
2018-03-13 05:38:11 -05:00
|
|
|
|
Some((Constant::F32(f), _)) => f == 0.0 || f.is_infinite(),
|
|
|
|
|
Some((Constant::F64(f), _)) => f == 0.0 || f.is_infinite(),
|
2020-03-20 04:40:44 -05: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 05:38:11 -05:00
|
|
|
|
_ => false,
|
2016-01-03 22:26:12 -06:00
|
|
|
|
}
|
2015-11-10 04:19:33 -06:00
|
|
|
|
}
|
|
|
|
|
|
2019-07-15 12:46:58 -05:00
|
|
|
|
// Return true if `expr` is the result of `signum()` invoked on a float value.
|
2020-06-25 15:41:36 -05:00
|
|
|
|
fn is_signum(cx: &LateContext<'_>, expr: &Expr<'_>) -> bool {
|
2019-07-15 12:46:58 -05:00
|
|
|
|
// The negation of a signum is still a signum
|
2020-01-06 10:39:50 -06:00
|
|
|
|
if let ExprKind::Unary(UnOp::UnNeg, ref child_expr) = expr.kind {
|
2019-07-15 12:46:58 -05:00
|
|
|
|
return is_signum(cx, &child_expr);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if_chain! {
|
2020-06-09 16:44:04 -05:00
|
|
|
|
if let ExprKind::MethodCall(ref method_name, _, ref expressions, _) = expr.kind;
|
2019-07-15 12:46:58 -05: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 14:00:07 -05:00
|
|
|
|
return is_float(cx, &expressions[0]);
|
2019-07-15 12:46:58 -05:00
|
|
|
|
}
|
|
|
|
|
}
|
2019-07-15 14:00:07 -05:00
|
|
|
|
false
|
2019-07-15 12:46:58 -05:00
|
|
|
|
}
|
|
|
|
|
|
2020-06-25 15:41:36 -05:00
|
|
|
|
fn is_float(cx: &LateContext<'_>, expr: &Expr<'_>) -> bool {
|
2020-09-10 22:06:49 -05:00
|
|
|
|
let value = &cx.typeck_results().expr_ty(expr).peel_refs().kind();
|
2019-07-31 06:52:12 -05:00
|
|
|
|
|
|
|
|
|
if let ty::Array(arr_ty, _) = value {
|
2020-08-03 17:18:29 -05:00
|
|
|
|
return matches!(arr_ty.kind(), ty::Float(_));
|
2019-07-31 06:52:12 -05:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
matches!(value, ty::Float(_))
|
2015-05-06 03:01:49 -05:00
|
|
|
|
}
|
2015-05-06 05:59:08 -05:00
|
|
|
|
|
2020-06-25 15:41:36 -05:00
|
|
|
|
fn is_array(cx: &LateContext<'_>, expr: &Expr<'_>) -> bool {
|
2020-09-10 22:06:49 -05:00
|
|
|
|
matches!(&cx.typeck_results().expr_ty(expr).peel_refs().kind(), ty::Array(_, _))
|
2020-03-20 04:51:48 -05:00
|
|
|
|
}
|
|
|
|
|
|
2020-07-14 07:59:59 -05: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 10:16:06 -05:00
|
|
|
|
let (arg_ty, snip) = match expr.kind {
|
2020-06-09 16:44:04 -05:00
|
|
|
|
ExprKind::MethodCall(.., ref args, _) if args.len() == 1 => {
|
2019-05-17 16:53:54 -05:00
|
|
|
|
if match_trait_method(cx, expr, &paths::TO_STRING) || match_trait_method(cx, expr, &paths::TO_OWNED) {
|
2020-07-17 03:47:04 -05:00
|
|
|
|
(cx.typeck_results().expr_ty(&args[0]), snippet(cx, args[0].span, ".."))
|
2016-01-03 22:26:12 -06:00
|
|
|
|
} else {
|
|
|
|
|
return;
|
|
|
|
|
}
|
2016-12-20 11:21:30 -06:00
|
|
|
|
},
|
2018-11-27 14:14:15 -06:00
|
|
|
|
ExprKind::Call(ref path, ref v) if v.len() == 1 => {
|
2019-09-27 10:16:06 -05:00
|
|
|
|
if let ExprKind::Path(ref path) = path.kind {
|
2019-05-17 17:58:25 -05:00
|
|
|
|
if match_qpath(path, &["String", "from_str"]) || match_qpath(path, &["String", "from"]) {
|
2020-07-17 03:47:04 -05:00
|
|
|
|
(cx.typeck_results().expr_ty(&v[0]), snippet(cx, v[0].span, ".."))
|
2018-11-27 14:14:15 -06:00
|
|
|
|
} else {
|
|
|
|
|
return;
|
|
|
|
|
}
|
2015-10-12 17:46:05 -05:00
|
|
|
|
} else {
|
2016-01-03 22:26:12 -06:00
|
|
|
|
return;
|
2015-08-11 10:02:04 -05:00
|
|
|
|
}
|
2016-12-20 11:21:30 -06:00
|
|
|
|
},
|
2016-01-03 22:26:12 -06:00
|
|
|
|
_ => return,
|
2015-10-12 17:46:05 -05:00
|
|
|
|
};
|
2016-01-18 08:35:50 -06:00
|
|
|
|
|
2020-07-17 03:47:04 -05:00
|
|
|
|
let other_ty = cx.typeck_results().expr_ty(other);
|
2016-01-18 08:35:50 -06:00
|
|
|
|
|
2020-07-14 07:59:59 -05: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-08 21:04:29 -05:00
|
|
|
|
|
2020-07-14 07:59:59 -05:00
|
|
|
|
if !with_deref.is_implemented() && !without_deref.is_implemented() {
|
2016-01-18 08:35:50 -06:00
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2020-07-14 07:59:59 -05:00
|
|
|
|
let other_gets_derefed = matches!(other.kind, ExprKind::Unary(UnOp::UnDeref, _));
|
2018-10-09 21:25:03 -05:00
|
|
|
|
|
2018-10-12 06:48:54 -05:00
|
|
|
|
let lint_span = if other_gets_derefed {
|
|
|
|
|
expr.span.to(other.span)
|
2018-10-09 21:25:03 -05:00
|
|
|
|
} else {
|
2018-10-12 06:48:54 -05:00
|
|
|
|
expr.span
|
2018-10-09 21:25:03 -05:00
|
|
|
|
};
|
|
|
|
|
|
2017-08-09 02:30:56 -05:00
|
|
|
|
span_lint_and_then(
|
|
|
|
|
cx,
|
|
|
|
|
CMP_OWNED,
|
2018-10-09 21:25:03 -05:00
|
|
|
|
lint_span,
|
2017-08-09 02:30:56 -05:00
|
|
|
|
"this creates an owned instance just for comparison",
|
2020-04-17 01:08:00 -05:00
|
|
|
|
|diag| {
|
2019-01-30 19:15:29 -06:00
|
|
|
|
// This also catches `PartialEq` implementations that call `to_owned`.
|
2018-10-12 06:34:41 -05:00
|
|
|
|
if other_gets_derefed {
|
2020-04-17 01:08:00 -05:00
|
|
|
|
diag.span_label(lint_span, "try implementing the comparison without allocating");
|
2018-10-12 06:34:41 -05:00
|
|
|
|
return;
|
|
|
|
|
}
|
2018-10-12 06:48:54 -05:00
|
|
|
|
|
2020-07-14 07:59:59 -05:00
|
|
|
|
let expr_snip;
|
|
|
|
|
let eq_impl;
|
|
|
|
|
if with_deref.is_implemented() {
|
|
|
|
|
expr_snip = format!("*{}", snip);
|
|
|
|
|
eq_impl = with_deref;
|
2018-10-12 06:48:54 -05:00
|
|
|
|
} else {
|
2020-07-14 07:59:59 -05:00
|
|
|
|
expr_snip = snip.to_string();
|
|
|
|
|
eq_impl = without_deref;
|
2018-10-12 06:48:54 -05:00
|
|
|
|
};
|
|
|
|
|
|
2020-07-14 07:59:59 -05: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 01:08:00 -05:00
|
|
|
|
diag.span_suggestion(
|
2020-07-14 07:59:59 -05:00
|
|
|
|
span,
|
2018-09-18 10:07:54 -05:00
|
|
|
|
"try",
|
2020-07-14 07:59:59 -05:00
|
|
|
|
hint,
|
2018-09-18 12:01:17 -05:00
|
|
|
|
Applicability::MachineApplicable, // snippet
|
2018-09-18 10:07:54 -05:00
|
|
|
|
);
|
2017-08-09 02:30:56 -05:00
|
|
|
|
},
|
|
|
|
|
);
|
2015-05-21 09:37:38 -05:00
|
|
|
|
}
|
2015-08-11 11:55:07 -05:00
|
|
|
|
|
2017-08-09 02:30:56 -05:00
|
|
|
|
/// Heuristic to see if an expression is used. Should be compatible with
|
|
|
|
|
/// `unused_variables`'s idea
|
2015-12-21 03:03:12 -06:00
|
|
|
|
/// of what it means for an expression to be "used".
|
2020-06-25 15:41:36 -05:00
|
|
|
|
fn is_used(cx: &LateContext<'_>, expr: &Expr<'_>) -> bool {
|
2020-07-14 07:59:59 -05: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-18 18:04:33 -06:00
|
|
|
|
}
|
2015-12-21 03:03:12 -06:00
|
|
|
|
|
2019-01-30 19:15:29 -06:00
|
|
|
|
/// Tests whether an expression is in a macro expansion (e.g., something
|
2019-03-10 12:19:47 -05:00
|
|
|
|
/// generated by `#[derive(...)]` or the like).
|
2019-12-27 01:12:26 -06:00
|
|
|
|
fn in_attributes_expansion(expr: &Expr<'_>) -> bool {
|
2019-12-30 18:17:56 -06:00
|
|
|
|
use rustc_span::hygiene::MacroKind;
|
2019-08-16 11:29:30 -05:00
|
|
|
|
if expr.span.from_expansion() {
|
|
|
|
|
let data = expr.span.ctxt().outer_expn_data();
|
2020-07-14 07:59:59 -05:00
|
|
|
|
matches!(data.kind, ExpnKind::Macro(MacroKind::Attr, _))
|
2019-08-16 11:29:30 -05:00
|
|
|
|
} else {
|
|
|
|
|
false
|
|
|
|
|
}
|
2015-12-21 03:03:12 -06:00
|
|
|
|
}
|
2016-06-15 09:27:56 -05:00
|
|
|
|
|
2019-05-03 19:03:12 -05:00
|
|
|
|
/// Tests whether `res` is a variable defined outside a macro.
|
2020-06-25 15:41:36 -05:00
|
|
|
|
fn non_macro_local(cx: &LateContext<'_>, res: def::Res) -> bool {
|
2019-06-02 11:30:40 -05:00
|
|
|
|
if let def::Res::Local(id) = res {
|
2019-08-19 11:30:32 -05:00
|
|
|
|
!cx.tcx.hir().span(id).from_expansion()
|
2019-06-02 11:30:40 -05:00
|
|
|
|
} else {
|
|
|
|
|
false
|
2016-06-15 09:27:56 -05:00
|
|
|
|
}
|
|
|
|
|
}
|
2017-03-07 05:58:07 -06:00
|
|
|
|
|
2020-07-14 07:59:59 -05:00
|
|
|
|
fn check_cast(cx: &LateContext<'_>, span: Span, e: &Expr<'_>, ty: &hir::Ty<'_>) {
|
2017-10-23 14:18:02 -05:00
|
|
|
|
if_chain! {
|
2019-10-02 10:38:00 -05:00
|
|
|
|
if let TyKind::Ptr(ref mut_ty) = ty.kind;
|
2019-09-27 10:16:06 -05:00
|
|
|
|
if let ExprKind::Lit(ref lit) = e.kind;
|
2019-10-02 10:38:00 -05:00
|
|
|
|
if let LitKind::Int(0, _) = lit.node;
|
2019-02-24 12:43:15 -06:00
|
|
|
|
if !in_constant(cx, e.hir_id);
|
2017-10-23 14:18:02 -05:00
|
|
|
|
then {
|
2019-10-02 10:38:00 -05:00
|
|
|
|
let (msg, sugg_fn) = match mut_ty.mutbl {
|
2019-12-21 12:38:45 -06:00
|
|
|
|
Mutability::Mut => ("`0 as *mut _` detected", "std::ptr::null_mut"),
|
|
|
|
|
Mutability::Not => ("`0 as *const _` detected", "std::ptr::null"),
|
2017-10-23 14:18:02 -05:00
|
|
|
|
};
|
2019-10-02 10:38:00 -05: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 14:18:02 -05:00
|
|
|
|
}
|
|
|
|
|
}
|
2017-03-07 05:58:07 -06:00
|
|
|
|
}
|