2018-11-27 14:14:15 -06:00
|
|
|
|
use if_chain::if_chain;
|
|
|
|
|
use matches::matches;
|
2019-12-03 17:16:03 -06:00
|
|
|
|
use rustc::declare_lint_pass;
|
2018-12-29 09:04:45 -06:00
|
|
|
|
use rustc::hir::intravisit::FnKind;
|
|
|
|
|
use rustc::hir::*;
|
|
|
|
|
use rustc::lint::{LateContext, LateLintPass, LintArray, LintPass};
|
|
|
|
|
use rustc::ty;
|
|
|
|
|
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::LitKind;
|
2019-07-11 09:45:34 -05:00
|
|
|
|
use syntax::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::{
|
2019-09-09 10:01:01 -05:00
|
|
|
|
get_item_name, get_parent_expr, 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,
|
|
|
|
|
span_lint_and_then, span_lint_hir_and_then, walk_ptrs_ty, 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:**
|
2019-01-30 19:15:29 -06:00
|
|
|
|
/// ```rust
|
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
|
|
|
|
/// }
|
|
|
|
|
/// ```
|
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
|
|
|
|
|
/// # use core::f32::NAN;
|
|
|
|
|
/// # let x = 1.0;
|
|
|
|
|
///
|
|
|
|
|
/// if x == 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,
|
2016-08-24 14:47:46 -05:00
|
|
|
|
"comparisons to NAN, which will always return false, probably not intended"
|
|
|
|
|
}
|
|
|
|
|
|
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;
|
|
|
|
|
/// if y == 1.23f64 { }
|
|
|
|
|
/// if y != x {} // where both are floats
|
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
|
|
|
|
|
/// let a = 0 as *const 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,
|
2017-03-07 05:58:07 -06:00
|
|
|
|
"using 0 as *{const, mut} T"
|
|
|
|
|
}
|
|
|
|
|
|
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;
|
|
|
|
|
/// x == ONE; // where both are floats
|
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
|
|
|
|
|
2019-04-08 15:43:55 -05:00
|
|
|
|
impl<'a, 'tcx> LateLintPass<'a, 'tcx> for MiscLints {
|
2016-12-21 05:14:54 -06:00
|
|
|
|
fn check_fn(
|
|
|
|
|
&mut self,
|
|
|
|
|
cx: &LateContext<'a, 'tcx>,
|
|
|
|
|
k: FnKind<'tcx>,
|
|
|
|
|
decl: &'tcx FnDecl,
|
2017-01-04 15:46: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) {
|
2019-09-27 10:16:06 -05:00
|
|
|
|
match arg.pat.kind {
|
2019-02-03 01:12:07 -06:00
|
|
|
|
PatKind::Binding(BindingAnnotation::Ref, ..) | PatKind::Binding(BindingAnnotation::RefMut, ..) => {
|
2017-08-09 02:30:56 -05:00
|
|
|
|
span_lint(
|
|
|
|
|
cx,
|
|
|
|
|
TOPLEVEL_REF_ARG,
|
|
|
|
|
arg.pat.span,
|
|
|
|
|
"`ref` directly on a function argument is ignored. Consider using a reference type \
|
2017-09-05 04:33:04 -05:00
|
|
|
|
instead.",
|
2017-08-09 02:30:56 -05:00
|
|
|
|
);
|
2017-08-01 02:11:05 -05:00
|
|
|
|
},
|
2017-08-01 03:19:49 -05:00
|
|
|
|
_ => {},
|
2014-12-24 17:15:22 -06:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2016-08-24 14:47:46 -05:00
|
|
|
|
|
2019-09-25 20:46:51 -05:00
|
|
|
|
fn check_stmt(&mut self, cx: &LateContext<'a, '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;
|
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",
|
|
|
|
|
|db| {
|
2019-01-27 06:33:56 -06:00
|
|
|
|
db.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",
|
2017-08-01 02:11:05 -05:00
|
|
|
|
|db| {
|
2018-07-12 02:50:09 -05:00
|
|
|
|
let sugg = if binop.node == BinOpKind::Or { !sugg } else { sugg };
|
2019-01-27 06:33:56 -06:00
|
|
|
|
db.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
|
|
|
|
|
2016-12-07 06:13:40 -06:00
|
|
|
|
fn check_expr(&mut self, cx: &LateContext<'a, '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 20:51:30 -06:00
|
|
|
|
check_nan(cx, left, expr.span);
|
|
|
|
|
check_nan(cx, right, expr.span);
|
2017-05-11 11:59:36 -05:00
|
|
|
|
check_to_owned(cx, left, right);
|
|
|
|
|
check_to_owned(cx, right, left);
|
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;
|
|
|
|
|
}
|
|
|
|
|
}
|
2017-11-04 03:32:58 -05:00
|
|
|
|
let (lint, msg) = if is_named_constant(cx, left) || is_named_constant(cx, right) {
|
|
|
|
|
(FLOAT_CMP_CONST, "strict comparison of f32 or f64 constant")
|
|
|
|
|
} else {
|
|
|
|
|
(FLOAT_CMP, "strict comparison of f32 or f64")
|
|
|
|
|
};
|
|
|
|
|
span_lint_and_then(cx, lint, expr.span, msg, |db| {
|
2017-03-07 05:58:07 -06:00
|
|
|
|
let lhs = Sugg::hir(cx, left, "..");
|
|
|
|
|
let rhs = Sugg::hir(cx, right, "..");
|
|
|
|
|
|
2019-01-27 06:33:56 -06:00
|
|
|
|
db.span_suggestion(
|
2017-08-09 02:30:56 -05:00
|
|
|
|
expr.span,
|
|
|
|
|
"consider comparing them within some error",
|
2019-06-17 09:42:41 -05:00
|
|
|
|
format!(
|
|
|
|
|
"({}).abs() {} error",
|
|
|
|
|
lhs - rhs,
|
|
|
|
|
if op == BinOpKind::Eq { '<' } else { '>' }
|
|
|
|
|
),
|
2019-08-19 01:00:39 -05:00
|
|
|
|
Applicability::HasPlaceholders, // snippet
|
2017-08-09 02:30:56 -05:00
|
|
|
|
);
|
2017-03-07 05:58:07 -06:00
|
|
|
|
db.span_note(expr.span, "std::f32::EPSILON and std::f64::EPSILON are available.");
|
|
|
|
|
});
|
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
|
|
|
|
}
|
2017-03-31 17:14:04 -05:00
|
|
|
|
if in_attributes_expansion(expr) {
|
2016-08-24 14:47:46 -05:00
|
|
|
|
// Don't lint things expanded by #[derive(...)], etc
|
|
|
|
|
return;
|
|
|
|
|
}
|
2019-09-27 10:16:06 -05:00
|
|
|
|
let binding = match expr.kind {
|
2018-07-12 02:30:57 -05:00
|
|
|
|
ExprKind::Path(ref qpath) => {
|
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
|
2019-05-03 19:03:12 -05:00
|
|
|
|
non_macro_local(cx, cx.tables.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
|
|
|
|
}
|
|
|
|
|
|
2019-12-17 20:51:30 -06:00
|
|
|
|
fn check_nan(cx: &LateContext<'_, '_>, expr: &Expr, cmp_span: Span) {
|
|
|
|
|
if let Some((value, _)) = constant(cx, cx.tables, expr) {
|
|
|
|
|
let needs_lint = match value {
|
|
|
|
|
Constant::F32(num) => num.is_nan(),
|
|
|
|
|
Constant::F64(num) => num.is_nan(),
|
|
|
|
|
_ => false,
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
if needs_lint {
|
|
|
|
|
span_lint(
|
|
|
|
|
cx,
|
|
|
|
|
CMP_NAN,
|
|
|
|
|
cmp_span,
|
|
|
|
|
"doomed comparison with NAN, use `std::{f32,f64}::is_nan()` instead",
|
|
|
|
|
);
|
2017-01-22 19:57:17 -06:00
|
|
|
|
}
|
2017-03-07 05:58:07 -06:00
|
|
|
|
}
|
2016-08-24 14:47:46 -05:00
|
|
|
|
}
|
|
|
|
|
|
2017-11-04 03:32:58 -05:00
|
|
|
|
fn is_named_constant<'a, 'tcx>(cx: &LateContext<'a, 'tcx>, expr: &'tcx Expr) -> bool {
|
2018-05-13 06:16:31 -05:00
|
|
|
|
if let Some((_, res)) = constant(cx, cx.tables, 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
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2017-09-13 08:34:04 -05:00
|
|
|
|
fn is_allowed<'a, 'tcx>(cx: &LateContext<'a, 'tcx>, expr: &'tcx Expr) -> bool {
|
2018-05-13 06:16:31 -05:00
|
|
|
|
match constant(cx, cx.tables, 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(),
|
|
|
|
|
_ => 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.
|
|
|
|
|
fn is_signum(cx: &LateContext<'_, '_>, expr: &Expr) -> bool {
|
|
|
|
|
// The negation of a signum is still a signum
|
2019-09-27 10:16:06 -05:00
|
|
|
|
if let ExprKind::Unary(UnNeg, ref child_expr) = expr.kind {
|
2019-07-15 12:46:58 -05:00
|
|
|
|
return is_signum(cx, &child_expr);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if_chain! {
|
2019-09-27 10:16:06 -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
|
|
|
|
}
|
|
|
|
|
|
2018-07-23 06:01:12 -05:00
|
|
|
|
fn is_float(cx: &LateContext<'_, '_>, expr: &Expr) -> bool {
|
2019-09-26 04:03:36 -05:00
|
|
|
|
matches!(walk_ptrs_ty(cx.tables.expr_ty(expr)).kind, ty::Float(_))
|
2015-05-06 03:01:49 -05:00
|
|
|
|
}
|
2015-05-06 05:59:08 -05:00
|
|
|
|
|
2018-07-23 06:01:12 -05:00
|
|
|
|
fn check_to_owned(cx: &LateContext<'_, '_>, expr: &Expr, other: &Expr) {
|
2019-09-27 10:16:06 -05:00
|
|
|
|
let (arg_ty, snip) = match expr.kind {
|
2018-07-12 02:30:57 -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) {
|
2017-05-11 11:59:36 -05:00
|
|
|
|
(cx.tables.expr_ty_adjusted(&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"]) {
|
2018-11-27 14:14:15 -06:00
|
|
|
|
(cx.tables.expr_ty_adjusted(&v[0]), snippet(cx, v[0].span, ".."))
|
|
|
|
|
} 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
|
|
|
|
|
2017-05-11 11:59:36 -05:00
|
|
|
|
let other_ty = cx.tables.expr_ty_adjusted(other);
|
2017-09-09 00:23:08 -05:00
|
|
|
|
let partial_eq_trait_id = match cx.tcx.lang_items().eq_trait() {
|
2016-01-18 08:35:50 -06:00
|
|
|
|
Some(id) => id,
|
|
|
|
|
None => return,
|
|
|
|
|
};
|
|
|
|
|
|
2018-11-27 14:14:15 -06:00
|
|
|
|
let deref_arg_impl_partial_eq_other = arg_ty.builtin_deref(true).map_or(false, |tam| {
|
|
|
|
|
implements_trait(cx, tam.ty, partial_eq_trait_id, &[other_ty.into()])
|
|
|
|
|
});
|
|
|
|
|
let arg_impl_partial_eq_deref_other = other_ty.builtin_deref(true).map_or(false, |tam| {
|
|
|
|
|
implements_trait(cx, arg_ty, partial_eq_trait_id, &[tam.ty.into()])
|
|
|
|
|
});
|
2018-10-08 21:04:29 -05:00
|
|
|
|
let arg_impl_partial_eq_other = implements_trait(cx, arg_ty, partial_eq_trait_id, &[other_ty.into()]);
|
|
|
|
|
|
2018-11-27 14:14:15 -06:00
|
|
|
|
if !deref_arg_impl_partial_eq_other && !arg_impl_partial_eq_deref_other && !arg_impl_partial_eq_other {
|
2016-01-18 08:35:50 -06:00
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2019-09-27 10:16:06 -05:00
|
|
|
|
let other_gets_derefed = match other.kind {
|
2018-10-09 21:25:03 -05:00
|
|
|
|
ExprKind::Unary(UnDeref, _) => true,
|
|
|
|
|
_ => false,
|
|
|
|
|
};
|
|
|
|
|
|
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",
|
|
|
|
|
|db| {
|
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 {
|
|
|
|
|
db.span_label(lint_span, "try implementing the comparison without allocating");
|
|
|
|
|
return;
|
|
|
|
|
}
|
2018-10-12 06:48:54 -05:00
|
|
|
|
|
|
|
|
|
let try_hint = if deref_arg_impl_partial_eq_other {
|
|
|
|
|
// suggest deref on the left
|
|
|
|
|
format!("*{}", snip)
|
|
|
|
|
} else {
|
|
|
|
|
// suggest dropping the to_owned on the left
|
|
|
|
|
snip.to_string()
|
|
|
|
|
};
|
|
|
|
|
|
2019-01-27 06:33:56 -06:00
|
|
|
|
db.span_suggestion(
|
2018-10-09 21:25:03 -05:00
|
|
|
|
lint_span,
|
2018-09-18 10:07:54 -05:00
|
|
|
|
"try",
|
2018-10-08 21:04:29 -05:00
|
|
|
|
try_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".
|
2018-07-23 06:01:12 -05:00
|
|
|
|
fn is_used(cx: &LateContext<'_, '_>, expr: &Expr) -> bool {
|
2016-08-01 09:59:14 -05:00
|
|
|
|
if let Some(parent) = get_parent_expr(cx, expr) {
|
2019-09-27 10:16:06 -05:00
|
|
|
|
match parent.kind {
|
2018-07-12 02:30:57 -05:00
|
|
|
|
ExprKind::Assign(_, ref rhs) | ExprKind::AssignOp(_, _, ref rhs) => SpanlessEq::new(cx).eq_expr(rhs, expr),
|
2016-04-26 10:05:39 -05:00
|
|
|
|
_ => is_used(cx, parent),
|
2015-12-18 18:04:33 -06:00
|
|
|
|
}
|
2016-01-03 22:26:12 -06:00
|
|
|
|
} else {
|
2015-12-18 18:04:33 -06:00
|
|
|
|
true
|
|
|
|
|
}
|
|
|
|
|
}
|
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).
|
2017-03-31 17:14:04 -05:00
|
|
|
|
fn in_attributes_expansion(expr: &Expr) -> bool {
|
2019-10-28 03:02:48 -05:00
|
|
|
|
use syntax_pos::hygiene::MacroKind;
|
2019-08-16 11:29:30 -05:00
|
|
|
|
if expr.span.from_expansion() {
|
|
|
|
|
let data = expr.span.ctxt().outer_expn_data();
|
|
|
|
|
|
|
|
|
|
if let ExpnKind::Macro(MacroKind::Attr, _) = data.kind {
|
2019-07-11 09:45:34 -05:00
|
|
|
|
true
|
|
|
|
|
} else {
|
|
|
|
|
false
|
|
|
|
|
}
|
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.
|
|
|
|
|
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
|
|
|
|
|
2018-07-23 06:01:12 -05:00
|
|
|
|
fn check_cast(cx: &LateContext<'_, '_>, span: Span, e: &Expr, ty: &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-11-11 11:24:12 -06:00
|
|
|
|
Mutability::Mutable => ("`0 as *mut _` detected", "std::ptr::null_mut"),
|
|
|
|
|
Mutability::Immutable => ("`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
|
|
|
|
}
|