rust/clippy_lints/src/misc.rs

721 lines
25 KiB
Rust
Raw Normal View History

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