2019-08-19 16:30:32 +00:00
|
|
|
use crate::utils::{has_drop, snippet_opt, span_lint, span_lint_and_sugg};
|
2019-05-04 00:03:12 +00:00
|
|
|
use rustc::hir::def::{DefKind, Res};
|
2018-12-29 15:04:45 +00:00
|
|
|
use rustc::hir::{BinOpKind, BlockCheckMode, Expr, ExprKind, Stmt, StmtKind, UnsafeSource};
|
|
|
|
use rustc::lint::{LateContext, LateLintPass, LintArray, LintPass};
|
2019-04-08 20:43:55 +00:00
|
|
|
use rustc::{declare_lint_pass, declare_tool_lint};
|
2018-12-29 15:04:45 +00:00
|
|
|
use rustc_errors::Applicability;
|
2016-05-13 14:43:47 +00:00
|
|
|
use std::ops::Deref;
|
2015-10-28 16:50:00 +00:00
|
|
|
|
2018-03-28 13:24:26 +00:00
|
|
|
declare_clippy_lint! {
|
2019-03-05 16:50:33 +00:00
|
|
|
/// **What it does:** Checks for statements which have no effect.
|
|
|
|
///
|
|
|
|
/// **Why is this bad?** Similar to dead code, these statements are actually
|
|
|
|
/// executed. However, as they have no effect, all they do is make the code less
|
|
|
|
/// readable.
|
|
|
|
///
|
|
|
|
/// **Known problems:** None.
|
|
|
|
///
|
|
|
|
/// **Example:**
|
|
|
|
/// ```rust
|
|
|
|
/// 0;
|
|
|
|
/// ```
|
2015-10-28 16:50:00 +00:00
|
|
|
pub NO_EFFECT,
|
2018-03-28 13:24:26 +00:00
|
|
|
complexity,
|
2015-10-28 16:50:00 +00:00
|
|
|
"statements with no effect"
|
|
|
|
}
|
|
|
|
|
2018-03-28 13:24:26 +00:00
|
|
|
declare_clippy_lint! {
|
2019-03-05 16:50:33 +00:00
|
|
|
/// **What it does:** Checks for expression statements that can be reduced to a
|
|
|
|
/// sub-expression.
|
|
|
|
///
|
|
|
|
/// **Why is this bad?** Expressions by themselves often have no side-effects.
|
|
|
|
/// Having such expressions reduces readability.
|
|
|
|
///
|
|
|
|
/// **Known problems:** None.
|
|
|
|
///
|
|
|
|
/// **Example:**
|
2019-08-02 06:13:54 +00:00
|
|
|
/// ```rust,ignore
|
2019-03-05 16:50:33 +00:00
|
|
|
/// compute_array()[0];
|
|
|
|
/// ```
|
2016-05-13 14:43:47 +00:00
|
|
|
pub UNNECESSARY_OPERATION,
|
2018-03-28 13:24:26 +00:00
|
|
|
complexity,
|
2016-05-13 14:43:47 +00:00
|
|
|
"outer expressions with no effect"
|
|
|
|
}
|
|
|
|
|
2018-07-23 11:01:12 +00:00
|
|
|
fn has_no_effect(cx: &LateContext<'_, '_>, expr: &Expr) -> bool {
|
2019-08-19 16:30:32 +00:00
|
|
|
if expr.span.from_expansion() {
|
2015-10-28 16:50:00 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
match expr.node {
|
2018-07-12 07:30:57 +00:00
|
|
|
ExprKind::Lit(..) | ExprKind::Closure(.., _) => true,
|
2018-12-09 11:19:21 +00:00
|
|
|
ExprKind::Path(..) => !has_drop(cx, cx.tables.expr_ty(expr)),
|
2018-07-12 07:30:57 +00:00
|
|
|
ExprKind::Index(ref a, ref b) | ExprKind::Binary(_, ref a, ref b) => {
|
2017-09-05 09:33:04 +00:00
|
|
|
has_no_effect(cx, a) && has_no_effect(cx, b)
|
|
|
|
},
|
2018-07-12 07:30:57 +00:00
|
|
|
ExprKind::Array(ref v) | ExprKind::Tup(ref v) => v.iter().all(|val| has_no_effect(cx, val)),
|
2018-11-27 20:14:15 +00:00
|
|
|
ExprKind::Repeat(ref inner, _)
|
|
|
|
| ExprKind::Cast(ref inner, _)
|
|
|
|
| ExprKind::Type(ref inner, _)
|
|
|
|
| ExprKind::Unary(_, ref inner)
|
|
|
|
| ExprKind::Field(ref inner, _)
|
|
|
|
| ExprKind::AddrOf(_, ref inner)
|
|
|
|
| ExprKind::Box(ref inner) => has_no_effect(cx, inner),
|
2018-07-12 07:30:57 +00:00
|
|
|
ExprKind::Struct(_, ref fields, ref base) => {
|
2018-12-09 11:19:21 +00:00
|
|
|
!has_drop(cx, cx.tables.expr_ty(expr))
|
2018-11-27 20:14:15 +00:00
|
|
|
&& fields.iter().all(|field| has_no_effect(cx, &field.expr))
|
2019-09-04 14:19:59 +00:00
|
|
|
&& base.as_ref().map_or(true, |base| has_no_effect(cx, base))
|
2016-12-20 17:21:30 +00:00
|
|
|
},
|
2018-11-27 20:14:15 +00:00
|
|
|
ExprKind::Call(ref callee, ref args) => {
|
|
|
|
if let ExprKind::Path(ref qpath) = callee.node {
|
2019-05-04 00:03:12 +00:00
|
|
|
let res = cx.tables.qpath_res(qpath, callee.hir_id);
|
|
|
|
match res {
|
|
|
|
Res::Def(DefKind::Struct, ..) | Res::Def(DefKind::Variant, ..) | Res::Def(DefKind::Ctor(..), _) => {
|
2018-12-09 11:19:21 +00:00
|
|
|
!has_drop(cx, cx.tables.expr_ty(expr)) && args.iter().all(|arg| has_no_effect(cx, arg))
|
2018-11-27 20:14:15 +00:00
|
|
|
},
|
|
|
|
_ => false,
|
|
|
|
}
|
2017-09-05 09:33:04 +00:00
|
|
|
} else {
|
|
|
|
false
|
|
|
|
}
|
2016-12-20 17:21:30 +00:00
|
|
|
},
|
2018-11-27 20:14:15 +00:00
|
|
|
ExprKind::Block(ref block, _) => {
|
2019-09-04 14:19:59 +00:00
|
|
|
block.stmts.is_empty() && block.expr.as_ref().map_or(false, |expr| has_no_effect(cx, expr))
|
2018-11-27 20:14:15 +00:00
|
|
|
},
|
2015-10-28 16:50:00 +00:00
|
|
|
_ => false,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-04-08 20:43:55 +00:00
|
|
|
declare_lint_pass!(NoEffect => [NO_EFFECT, UNNECESSARY_OPERATION]);
|
2015-10-28 16:50:00 +00:00
|
|
|
|
2019-04-08 20:43:55 +00:00
|
|
|
impl<'a, 'tcx> LateLintPass<'a, 'tcx> for NoEffect {
|
2016-12-07 12:13:40 +00:00
|
|
|
fn check_stmt(&mut self, cx: &LateContext<'a, 'tcx>, stmt: &'tcx Stmt) {
|
2019-01-20 10:21:30 +00:00
|
|
|
if let StmtKind::Semi(ref expr) = stmt.node {
|
2015-10-28 16:50:00 +00:00
|
|
|
if has_no_effect(cx, expr) {
|
2016-01-04 04:26:12 +00:00
|
|
|
span_lint(cx, NO_EFFECT, stmt.span, "statement with no effect");
|
2016-05-13 14:43:47 +00:00
|
|
|
} else if let Some(reduced) = reduce_expression(cx, expr) {
|
|
|
|
let mut snippet = String::new();
|
|
|
|
for e in reduced {
|
2019-08-19 16:30:32 +00:00
|
|
|
if e.span.from_expansion() {
|
2016-05-13 14:43:47 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
if let Some(snip) = snippet_opt(cx, e.span) {
|
|
|
|
snippet.push_str(&snip);
|
|
|
|
snippet.push(';');
|
|
|
|
} else {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
2017-08-09 07:30:56 +00:00
|
|
|
span_lint_and_sugg(
|
|
|
|
cx,
|
|
|
|
UNNECESSARY_OPERATION,
|
|
|
|
stmt.span,
|
|
|
|
"statement can be reduced",
|
|
|
|
"replace it with",
|
|
|
|
snippet,
|
2018-11-27 14:13:57 +00:00
|
|
|
Applicability::MachineApplicable,
|
2017-08-09 07:30:56 +00:00
|
|
|
);
|
2016-05-13 14:43:47 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-07-23 11:01:12 +00:00
|
|
|
fn reduce_expression<'a>(cx: &LateContext<'_, '_>, expr: &'a Expr) -> Option<Vec<&'a Expr>> {
|
2019-08-19 16:30:32 +00:00
|
|
|
if expr.span.from_expansion() {
|
2016-05-13 14:43:47 +00:00
|
|
|
return None;
|
|
|
|
}
|
|
|
|
match expr.node {
|
2018-07-12 07:30:57 +00:00
|
|
|
ExprKind::Index(ref a, ref b) => Some(vec![&**a, &**b]),
|
2018-07-12 07:50:09 +00:00
|
|
|
ExprKind::Binary(ref binop, ref a, ref b) if binop.node != BinOpKind::And && binop.node != BinOpKind::Or => {
|
2016-12-29 23:00:55 +00:00
|
|
|
Some(vec![&**a, &**b])
|
|
|
|
},
|
2018-07-12 07:30:57 +00:00
|
|
|
ExprKind::Array(ref v) | ExprKind::Tup(ref v) => Some(v.iter().collect()),
|
2018-11-27 20:14:15 +00:00
|
|
|
ExprKind::Repeat(ref inner, _)
|
|
|
|
| ExprKind::Cast(ref inner, _)
|
|
|
|
| ExprKind::Type(ref inner, _)
|
|
|
|
| ExprKind::Unary(_, ref inner)
|
|
|
|
| ExprKind::Field(ref inner, _)
|
|
|
|
| ExprKind::AddrOf(_, ref inner)
|
|
|
|
| ExprKind::Box(ref inner) => reduce_expression(cx, inner).or_else(|| Some(vec![inner])),
|
|
|
|
ExprKind::Struct(_, ref fields, ref base) => {
|
2018-12-09 11:19:21 +00:00
|
|
|
if has_drop(cx, cx.tables.expr_ty(expr)) {
|
2018-11-27 20:14:15 +00:00
|
|
|
None
|
|
|
|
} else {
|
|
|
|
Some(fields.iter().map(|f| &f.expr).chain(base).map(Deref::deref).collect())
|
|
|
|
}
|
2017-09-18 19:07:33 +00:00
|
|
|
},
|
2018-11-27 20:14:15 +00:00
|
|
|
ExprKind::Call(ref callee, ref args) => {
|
|
|
|
if let ExprKind::Path(ref qpath) = callee.node {
|
2019-05-04 00:03:12 +00:00
|
|
|
let res = cx.tables.qpath_res(qpath, callee.hir_id);
|
|
|
|
match res {
|
|
|
|
Res::Def(DefKind::Struct, ..) | Res::Def(DefKind::Variant, ..) | Res::Def(DefKind::Ctor(..), _)
|
|
|
|
if !has_drop(cx, cx.tables.expr_ty(expr)) =>
|
|
|
|
{
|
2018-11-27 20:14:15 +00:00
|
|
|
Some(args.iter().collect())
|
|
|
|
},
|
|
|
|
_ => None,
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
None
|
2016-05-13 14:43:47 +00:00
|
|
|
}
|
2016-12-20 17:21:30 +00:00
|
|
|
},
|
2018-07-12 07:30:57 +00:00
|
|
|
ExprKind::Block(ref block, _) => {
|
2016-05-13 14:43:47 +00:00
|
|
|
if block.stmts.is_empty() {
|
2016-06-05 23:42:39 +00: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
|
|
|
|
_ => reduce_expression(cx, e),
|
|
|
|
}
|
2016-05-13 14:43:47 +00:00
|
|
|
})
|
|
|
|
} else {
|
|
|
|
None
|
2015-10-28 16:50:00 +00:00
|
|
|
}
|
2016-12-20 17:21:30 +00:00
|
|
|
},
|
2016-05-13 14:43:47 +00:00
|
|
|
_ => None,
|
2015-10-28 16:50:00 +00:00
|
|
|
}
|
|
|
|
}
|