2021-06-03 01:41:37 -05:00
|
|
|
use clippy_utils::diagnostics::{span_lint_hir, span_lint_hir_and_then};
|
2021-12-17 06:40:22 -06:00
|
|
|
use clippy_utils::peel_blocks;
|
2021-03-25 13:29:11 -05:00
|
|
|
use clippy_utils::source::snippet_opt;
|
|
|
|
use clippy_utils::ty::has_drop;
|
2023-06-13 12:29:50 -05:00
|
|
|
use clippy_utils::{get_parent_node, is_lint_allowed};
|
2018-12-29 09:04:45 -06:00
|
|
|
use rustc_errors::Applicability;
|
2020-01-06 10:39:50 -06:00
|
|
|
use rustc_hir::def::{DefKind, Res};
|
2023-06-13 12:29:50 -05:00
|
|
|
use rustc_hir::{
|
|
|
|
is_range_literal, BinOpKind, BlockCheckMode, Expr, ExprKind, FnRetTy, ItemKind, Node, PatKind, Stmt, StmtKind,
|
|
|
|
UnsafeSource,
|
|
|
|
};
|
|
|
|
use rustc_hir_analysis::hir_ty_to_ty;
|
|
|
|
use rustc_infer::infer::TyCtxtInferExt as _;
|
2022-12-01 11:29:38 -06:00
|
|
|
use rustc_lint::{LateContext, LateLintPass, LintContext};
|
|
|
|
use rustc_middle::lint::in_external_macro;
|
2020-01-11 05:37:08 -06:00
|
|
|
use rustc_session::{declare_lint_pass, declare_tool_lint};
|
2016-05-13 09:43:47 -05:00
|
|
|
use std::ops::Deref;
|
2015-10-28 11:50:00 -05:00
|
|
|
|
2018-03-28 08:24:26 -05:00
|
|
|
declare_clippy_lint! {
|
2021-07-29 05:16:06 -05:00
|
|
|
/// ### What it does
|
|
|
|
/// Checks for statements which have no effect.
|
2019-03-05 10:50:33 -06:00
|
|
|
///
|
2021-07-29 05:16:06 -05:00
|
|
|
/// ### Why is this bad?
|
2021-10-21 06:11:36 -05:00
|
|
|
/// Unlike dead code, these statements are actually
|
2019-03-05 10:50:33 -06:00
|
|
|
/// executed. However, as they have no effect, all they do is make the code less
|
|
|
|
/// readable.
|
|
|
|
///
|
2021-07-29 05:16:06 -05:00
|
|
|
/// ### Example
|
2019-03-05 10:50:33 -06:00
|
|
|
/// ```rust
|
|
|
|
/// 0;
|
|
|
|
/// ```
|
2021-12-06 05:33:31 -06:00
|
|
|
#[clippy::version = "pre 1.29.0"]
|
2015-10-28 11:50:00 -05:00
|
|
|
pub NO_EFFECT,
|
2018-03-28 08:24:26 -05:00
|
|
|
complexity,
|
2015-10-28 11:50:00 -05:00
|
|
|
"statements with no effect"
|
|
|
|
}
|
|
|
|
|
2021-10-21 06:11:36 -05:00
|
|
|
declare_clippy_lint! {
|
|
|
|
/// ### What it does
|
|
|
|
/// Checks for binding to underscore prefixed variable without side-effects.
|
|
|
|
///
|
|
|
|
/// ### Why is this bad?
|
|
|
|
/// Unlike dead code, these bindings are actually
|
|
|
|
/// executed. However, as they have no effect and shouldn't be used further on, all they
|
|
|
|
/// do is make the code less readable.
|
|
|
|
///
|
|
|
|
/// ### Known problems
|
|
|
|
/// Further usage of this variable is not checked, which can lead to false positives if it is
|
|
|
|
/// used later in the code.
|
|
|
|
///
|
|
|
|
/// ### Example
|
|
|
|
/// ```rust,ignore
|
|
|
|
/// let _i_serve_no_purpose = 1;
|
|
|
|
/// ```
|
2021-12-06 05:33:31 -06:00
|
|
|
#[clippy::version = "1.58.0"]
|
2021-10-21 06:11:36 -05:00
|
|
|
pub NO_EFFECT_UNDERSCORE_BINDING,
|
|
|
|
pedantic,
|
|
|
|
"binding to `_` prefixed variable with no side-effect"
|
|
|
|
}
|
|
|
|
|
2018-03-28 08:24:26 -05:00
|
|
|
declare_clippy_lint! {
|
2021-07-29 05:16:06 -05:00
|
|
|
/// ### What it does
|
|
|
|
/// Checks for expression statements that can be reduced to a
|
2019-03-05 10:50:33 -06:00
|
|
|
/// sub-expression.
|
|
|
|
///
|
2021-07-29 05:16:06 -05:00
|
|
|
/// ### Why is this bad?
|
|
|
|
/// Expressions by themselves often have no side-effects.
|
2019-03-05 10:50:33 -06:00
|
|
|
/// Having such expressions reduces readability.
|
|
|
|
///
|
2021-07-29 05:16:06 -05:00
|
|
|
/// ### Example
|
2019-08-02 01:13:54 -05:00
|
|
|
/// ```rust,ignore
|
2019-03-05 10:50:33 -06:00
|
|
|
/// compute_array()[0];
|
|
|
|
/// ```
|
2021-12-06 05:33:31 -06:00
|
|
|
#[clippy::version = "pre 1.29.0"]
|
2016-05-13 09:43:47 -05:00
|
|
|
pub UNNECESSARY_OPERATION,
|
2018-03-28 08:24:26 -05:00
|
|
|
complexity,
|
2016-05-13 09:43:47 -05:00
|
|
|
"outer expressions with no effect"
|
|
|
|
}
|
|
|
|
|
2021-10-21 06:11:36 -05:00
|
|
|
declare_lint_pass!(NoEffect => [NO_EFFECT, UNNECESSARY_OPERATION, NO_EFFECT_UNDERSCORE_BINDING]);
|
|
|
|
|
|
|
|
impl<'tcx> LateLintPass<'tcx> for NoEffect {
|
|
|
|
fn check_stmt(&mut self, cx: &LateContext<'tcx>, stmt: &'tcx Stmt<'_>) {
|
|
|
|
if check_no_effect(cx, stmt) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
check_unnecessary_operation(cx, stmt);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-01-13 06:18:19 -06:00
|
|
|
fn check_no_effect(cx: &LateContext<'_>, stmt: &Stmt<'_>) -> bool {
|
2021-10-21 06:11:36 -05:00
|
|
|
if let StmtKind::Semi(expr) = stmt.kind {
|
|
|
|
if has_no_effect(cx, expr) {
|
2023-06-13 12:29:50 -05:00
|
|
|
span_lint_hir_and_then(
|
|
|
|
cx,
|
|
|
|
NO_EFFECT,
|
|
|
|
expr.hir_id,
|
|
|
|
stmt.span,
|
|
|
|
"statement with no effect",
|
|
|
|
|diag| {
|
|
|
|
for parent in cx.tcx.hir().parent_iter(stmt.hir_id) {
|
|
|
|
if let Node::Item(item) = parent.1
|
|
|
|
&& let ItemKind::Fn(sig, ..) = item.kind
|
|
|
|
&& let FnRetTy::Return(ret_ty) = sig.decl.output
|
|
|
|
&& let Some(Node::Block(block)) = get_parent_node(cx.tcx, stmt.hir_id)
|
|
|
|
&& let [.., final_stmt] = block.stmts
|
|
|
|
&& final_stmt.hir_id == stmt.hir_id
|
|
|
|
{
|
|
|
|
let expr_ty = cx.typeck_results().expr_ty(expr);
|
|
|
|
let mut ret_ty = hir_ty_to_ty(cx.tcx, ret_ty);
|
|
|
|
|
|
|
|
// Remove `impl Future<Output = T>` to get `T`
|
|
|
|
if cx.tcx.ty_is_opaque_future(ret_ty) &&
|
|
|
|
let Some(true_ret_ty) = cx.tcx.infer_ctxt().build().get_impl_future_output_ty(ret_ty)
|
|
|
|
{
|
|
|
|
ret_ty = true_ret_ty;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ret_ty == expr_ty {
|
|
|
|
diag.span_suggestion(
|
|
|
|
stmt.span.shrink_to_lo(),
|
|
|
|
"did you mean to return it?",
|
|
|
|
"return ",
|
|
|
|
Applicability::MaybeIncorrect,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
);
|
2021-10-21 06:11:36 -05:00
|
|
|
return true;
|
|
|
|
}
|
2022-07-05 16:31:18 -05:00
|
|
|
} else if let StmtKind::Local(local) = stmt.kind {
|
2021-10-21 06:11:36 -05:00
|
|
|
if_chain! {
|
|
|
|
if !is_lint_allowed(cx, NO_EFFECT_UNDERSCORE_BINDING, local.hir_id);
|
|
|
|
if let Some(init) = local.init;
|
2022-07-05 16:31:18 -05:00
|
|
|
if local.els.is_none();
|
2021-10-21 06:11:36 -05:00
|
|
|
if !local.pat.span.from_expansion();
|
|
|
|
if has_no_effect(cx, init);
|
|
|
|
if let PatKind::Binding(_, _, ident, _) = local.pat.kind;
|
|
|
|
if ident.name.to_ident_string().starts_with('_');
|
|
|
|
then {
|
|
|
|
span_lint_hir(
|
|
|
|
cx,
|
|
|
|
NO_EFFECT_UNDERSCORE_BINDING,
|
|
|
|
init.hir_id,
|
|
|
|
stmt.span,
|
|
|
|
"binding to `_` prefixed variable with no side-effect"
|
|
|
|
);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
false
|
|
|
|
}
|
|
|
|
|
2020-06-25 15:41:36 -05:00
|
|
|
fn has_no_effect(cx: &LateContext<'_>, expr: &Expr<'_>) -> bool {
|
2019-08-19 11:30:32 -05:00
|
|
|
if expr.span.from_expansion() {
|
2015-10-28 11:50:00 -05:00
|
|
|
return false;
|
|
|
|
}
|
2021-12-17 06:40:22 -06:00
|
|
|
match peel_blocks(expr).kind {
|
2022-06-11 14:25:25 -05:00
|
|
|
ExprKind::Lit(..) | ExprKind::Closure { .. } => true,
|
2020-07-17 03:47:04 -05:00
|
|
|
ExprKind::Path(..) => !has_drop(cx, cx.typeck_results().expr_ty(expr)),
|
2021-04-08 10:50:13 -05:00
|
|
|
ExprKind::Index(a, b) | ExprKind::Binary(_, a, b) => has_no_effect(cx, a) && has_no_effect(cx, b),
|
|
|
|
ExprKind::Array(v) | ExprKind::Tup(v) => v.iter().all(|val| has_no_effect(cx, val)),
|
|
|
|
ExprKind::Repeat(inner, _)
|
|
|
|
| ExprKind::Cast(inner, _)
|
|
|
|
| ExprKind::Type(inner, _)
|
|
|
|
| ExprKind::Unary(_, inner)
|
|
|
|
| ExprKind::Field(inner, _)
|
2023-03-14 12:18:26 -05:00
|
|
|
| ExprKind::AddrOf(_, _, inner) => has_no_effect(cx, inner),
|
2021-04-08 10:50:13 -05:00
|
|
|
ExprKind::Struct(_, fields, ref base) => {
|
2020-07-17 03:47:04 -05:00
|
|
|
!has_drop(cx, cx.typeck_results().expr_ty(expr))
|
2021-04-08 10:50:13 -05:00
|
|
|
&& fields.iter().all(|field| has_no_effect(cx, field.expr))
|
2019-09-04 09:19:59 -05:00
|
|
|
&& base.as_ref().map_or(true, |base| has_no_effect(cx, base))
|
2016-12-20 11:21:30 -06:00
|
|
|
},
|
2021-04-08 10:50:13 -05:00
|
|
|
ExprKind::Call(callee, args) => {
|
2019-09-27 10:16:06 -05:00
|
|
|
if let ExprKind::Path(ref qpath) = callee.kind {
|
2021-12-06 05:33:31 -06:00
|
|
|
if cx.typeck_results().type_dependent_def(expr.hir_id).is_some() {
|
|
|
|
// type-dependent function call like `impl FnOnce for X`
|
|
|
|
return false;
|
|
|
|
}
|
2021-08-12 04:16:25 -05:00
|
|
|
let def_matched = matches!(
|
2021-12-06 05:33:31 -06:00
|
|
|
cx.qpath_res(qpath, callee.hir_id),
|
2021-08-12 04:16:25 -05:00
|
|
|
Res::Def(DefKind::Struct | DefKind::Variant | DefKind::Ctor(..), ..)
|
|
|
|
);
|
|
|
|
if def_matched || is_range_literal(expr) {
|
|
|
|
!has_drop(cx, cx.typeck_results().expr_ty(expr)) && args.iter().all(|arg| has_no_effect(cx, arg))
|
|
|
|
} else {
|
|
|
|
false
|
2018-11-27 14:14:15 -06:00
|
|
|
}
|
2017-09-05 04:33:04 -05:00
|
|
|
} else {
|
|
|
|
false
|
|
|
|
}
|
2016-12-20 11:21:30 -06:00
|
|
|
},
|
2015-10-28 11:50:00 -05:00
|
|
|
_ => false,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-01-13 06:18:19 -06:00
|
|
|
fn check_unnecessary_operation(cx: &LateContext<'_>, stmt: &Stmt<'_>) {
|
2021-10-21 06:11:36 -05:00
|
|
|
if_chain! {
|
|
|
|
if let StmtKind::Semi(expr) = stmt.kind;
|
2022-12-01 11:29:38 -06:00
|
|
|
let ctxt = stmt.span.ctxt();
|
|
|
|
if expr.span.ctxt() == ctxt;
|
2021-10-21 06:11:36 -05:00
|
|
|
if let Some(reduced) = reduce_expression(cx, expr);
|
2022-12-01 11:29:38 -06:00
|
|
|
if !in_external_macro(cx.sess(), stmt.span);
|
|
|
|
if reduced.iter().all(|e| e.span.ctxt() == ctxt);
|
2021-10-21 06:11:36 -05:00
|
|
|
then {
|
|
|
|
if let ExprKind::Index(..) = &expr.kind {
|
2021-12-06 05:33:31 -06:00
|
|
|
let snippet = if let (Some(arr), Some(func)) =
|
|
|
|
(snippet_opt(cx, reduced[0].span), snippet_opt(cx, reduced[1].span))
|
|
|
|
{
|
|
|
|
format!("assert!({}.len() > {});", &arr, &func)
|
2021-09-08 09:31:47 -05:00
|
|
|
} else {
|
2021-10-21 06:11:36 -05:00
|
|
|
return;
|
2021-12-06 05:33:31 -06:00
|
|
|
};
|
2021-10-21 06:11:36 -05:00
|
|
|
span_lint_hir_and_then(
|
|
|
|
cx,
|
|
|
|
UNNECESSARY_OPERATION,
|
|
|
|
expr.hir_id,
|
|
|
|
stmt.span,
|
|
|
|
"unnecessary operation",
|
|
|
|
|diag| {
|
|
|
|
diag.span_suggestion(
|
|
|
|
stmt.span,
|
|
|
|
"statement can be written as",
|
|
|
|
snippet,
|
|
|
|
Applicability::MaybeIncorrect,
|
|
|
|
);
|
|
|
|
},
|
|
|
|
);
|
|
|
|
} else {
|
|
|
|
let mut snippet = String::new();
|
|
|
|
for e in reduced {
|
|
|
|
if let Some(snip) = snippet_opt(cx, e.span) {
|
|
|
|
snippet.push_str(&snip);
|
|
|
|
snippet.push(';');
|
|
|
|
} else {
|
|
|
|
return;
|
2021-09-08 09:31:47 -05:00
|
|
|
}
|
2016-05-13 09:43:47 -05:00
|
|
|
}
|
2021-10-21 06:11:36 -05:00
|
|
|
span_lint_hir_and_then(
|
|
|
|
cx,
|
|
|
|
UNNECESSARY_OPERATION,
|
|
|
|
expr.hir_id,
|
|
|
|
stmt.span,
|
|
|
|
"unnecessary operation",
|
|
|
|
|diag| {
|
|
|
|
diag.span_suggestion(
|
|
|
|
stmt.span,
|
|
|
|
"statement can be reduced to",
|
|
|
|
snippet,
|
|
|
|
Applicability::MachineApplicable,
|
|
|
|
);
|
|
|
|
},
|
|
|
|
);
|
2016-05-13 09:43:47 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-06-25 15:41:36 -05:00
|
|
|
fn reduce_expression<'a>(cx: &LateContext<'_>, expr: &'a Expr<'a>) -> Option<Vec<&'a Expr<'a>>> {
|
2019-08-19 11:30:32 -05:00
|
|
|
if expr.span.from_expansion() {
|
2016-05-13 09:43:47 -05:00
|
|
|
return None;
|
|
|
|
}
|
2019-09-27 10:16:06 -05:00
|
|
|
match expr.kind {
|
2021-04-08 10:50:13 -05:00
|
|
|
ExprKind::Index(a, b) => Some(vec![a, b]),
|
|
|
|
ExprKind::Binary(ref binop, a, b) if binop.node != BinOpKind::And && binop.node != BinOpKind::Or => {
|
|
|
|
Some(vec![a, b])
|
2016-12-29 17:00:55 -06:00
|
|
|
},
|
2021-04-08 10:50:13 -05:00
|
|
|
ExprKind::Array(v) | ExprKind::Tup(v) => Some(v.iter().collect()),
|
|
|
|
ExprKind::Repeat(inner, _)
|
|
|
|
| ExprKind::Cast(inner, _)
|
|
|
|
| ExprKind::Type(inner, _)
|
|
|
|
| ExprKind::Unary(_, inner)
|
|
|
|
| ExprKind::Field(inner, _)
|
2023-03-14 12:18:26 -05:00
|
|
|
| ExprKind::AddrOf(_, _, inner) => reduce_expression(cx, inner).or_else(|| Some(vec![inner])),
|
2021-04-08 10:50:13 -05:00
|
|
|
ExprKind::Struct(_, fields, ref base) => {
|
2020-07-17 03:47:04 -05:00
|
|
|
if has_drop(cx, cx.typeck_results().expr_ty(expr)) {
|
2018-11-27 14:14:15 -06:00
|
|
|
None
|
|
|
|
} else {
|
|
|
|
Some(fields.iter().map(|f| &f.expr).chain(base).map(Deref::deref).collect())
|
|
|
|
}
|
2017-09-18 14:07:33 -05:00
|
|
|
},
|
2021-04-08 10:50:13 -05:00
|
|
|
ExprKind::Call(callee, args) => {
|
2019-09-27 10:16:06 -05:00
|
|
|
if let ExprKind::Path(ref qpath) = callee.kind {
|
2021-12-06 05:33:31 -06:00
|
|
|
if cx.typeck_results().type_dependent_def(expr.hir_id).is_some() {
|
|
|
|
// type-dependent function call like `impl FnOnce for X`
|
|
|
|
return None;
|
|
|
|
}
|
2021-01-18 13:36:32 -06:00
|
|
|
let res = cx.qpath_res(qpath, callee.hir_id);
|
2019-05-03 19:03:12 -05:00
|
|
|
match res {
|
2020-06-09 09:36:01 -05:00
|
|
|
Res::Def(DefKind::Struct | DefKind::Variant | DefKind::Ctor(..), ..)
|
2020-07-17 03:47:04 -05:00
|
|
|
if !has_drop(cx, cx.typeck_results().expr_ty(expr)) =>
|
2019-05-03 19:03:12 -05:00
|
|
|
{
|
2018-11-27 14:14:15 -06:00
|
|
|
Some(args.iter().collect())
|
|
|
|
},
|
|
|
|
_ => None,
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
None
|
2016-05-13 09:43:47 -05:00
|
|
|
}
|
2016-12-20 11:21:30 -06:00
|
|
|
},
|
2021-04-08 10:50:13 -05:00
|
|
|
ExprKind::Block(block, _) => {
|
2016-05-13 09:43:47 -05:00
|
|
|
if block.stmts.is_empty() {
|
2016-06-05 18:42:39 -05:00
|
|
|
block.expr.as_ref().and_then(|e| {
|
|
|
|
match block.rules {
|
|
|
|
BlockCheckMode::UnsafeBlock(UnsafeSource::UserProvided) => None,
|
|
|
|
BlockCheckMode::DefaultBlock => Some(vec![&**e]),
|
|
|
|
// in case of compiler-inserted signaling blocks
|
2021-07-01 11:17:38 -05:00
|
|
|
BlockCheckMode::UnsafeBlock(_) => reduce_expression(cx, e),
|
2016-06-05 18:42:39 -05:00
|
|
|
}
|
2016-05-13 09:43:47 -05:00
|
|
|
})
|
|
|
|
} else {
|
|
|
|
None
|
2015-10-28 11:50:00 -05:00
|
|
|
}
|
2016-12-20 11:21:30 -06:00
|
|
|
},
|
2016-05-13 09:43:47 -05:00
|
|
|
_ => None,
|
2015-10-28 11:50:00 -05:00
|
|
|
}
|
|
|
|
}
|