2019-12-03 23:16:03 +00:00
|
|
|
use rustc::declare_lint_pass;
|
2018-12-29 15:04:45 +00:00
|
|
|
use rustc::hir::*;
|
|
|
|
use rustc::lint::{LateContext, LateLintPass, LintArray, LintPass};
|
2019-12-03 23:16:03 +00:00
|
|
|
use rustc_session::declare_tool_lint;
|
2020-01-04 10:00:00 +00:00
|
|
|
use rustc_span::source_map::Span;
|
2017-09-30 17:14:00 +00:00
|
|
|
|
2019-01-31 01:15:29 +00:00
|
|
|
use crate::consts::{constant_simple, Constant};
|
2019-08-19 16:30:32 +00:00
|
|
|
use crate::utils::span_lint;
|
2019-01-31 01:15:29 +00:00
|
|
|
|
2018-03-28 13:24:26 +00:00
|
|
|
declare_clippy_lint! {
|
2019-01-31 01:15:29 +00:00
|
|
|
/// **What it does:** Checks for erasing operations, e.g., `x * 0`.
|
2019-03-05 16:50:33 +00:00
|
|
|
///
|
|
|
|
/// **Why is this bad?** The whole expression can be replaced by zero.
|
|
|
|
/// This is most likely not the intended outcome and should probably be
|
|
|
|
/// corrected
|
|
|
|
///
|
|
|
|
/// **Known problems:** None.
|
|
|
|
///
|
|
|
|
/// **Example:**
|
2019-01-31 01:15:29 +00:00
|
|
|
/// ```rust
|
2019-03-10 22:01:56 +00:00
|
|
|
/// let x = 1;
|
2019-03-05 16:50:33 +00:00
|
|
|
/// 0 / x;
|
|
|
|
/// 0 * x;
|
2019-03-10 22:01:56 +00:00
|
|
|
/// x & 0;
|
2019-03-05 16:50:33 +00:00
|
|
|
/// ```
|
2017-09-30 17:14:00 +00:00
|
|
|
pub ERASING_OP,
|
2018-03-28 13:24:26 +00:00
|
|
|
correctness,
|
2019-01-31 01:15:29 +00:00
|
|
|
"using erasing operations, e.g., `x * 0` or `y & 0`"
|
2017-09-30 17:14:00 +00:00
|
|
|
}
|
|
|
|
|
2019-04-08 20:43:55 +00:00
|
|
|
declare_lint_pass!(ErasingOp => [ERASING_OP]);
|
2017-09-30 17:14:00 +00:00
|
|
|
|
|
|
|
impl<'a, 'tcx> LateLintPass<'a, 'tcx> for ErasingOp {
|
2019-12-27 07:12:26 +00:00
|
|
|
fn check_expr(&mut self, cx: &LateContext<'a, 'tcx>, e: &'tcx Expr<'_>) {
|
2019-08-19 16:30:32 +00:00
|
|
|
if e.span.from_expansion() {
|
2017-09-30 17:14:00 +00:00
|
|
|
return;
|
|
|
|
}
|
2019-09-27 15:16:06 +00:00
|
|
|
if let ExprKind::Binary(ref cmp, ref left, ref right) = e.kind {
|
2017-09-30 17:14:00 +00:00
|
|
|
match cmp.node {
|
2018-07-12 07:50:09 +00:00
|
|
|
BinOpKind::Mul | BinOpKind::BitAnd => {
|
2017-09-30 17:14:00 +00:00
|
|
|
check(cx, left, e.span);
|
|
|
|
check(cx, right, e.span);
|
|
|
|
},
|
2018-07-12 07:50:09 +00:00
|
|
|
BinOpKind::Div => check(cx, left, e.span),
|
2017-09-30 17:14:00 +00:00
|
|
|
_ => (),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-12-27 07:12:26 +00:00
|
|
|
fn check(cx: &LateContext<'_, '_>, e: &Expr<'_>, span: Span) {
|
2019-09-29 16:40:38 +00:00
|
|
|
if let Some(Constant::Int(0)) = constant_simple(cx, cx.tables, e) {
|
|
|
|
span_lint(
|
|
|
|
cx,
|
|
|
|
ERASING_OP,
|
|
|
|
span,
|
|
|
|
"this operation will always return zero. This is likely not the intended outcome",
|
|
|
|
);
|
2017-09-30 17:14:00 +00:00
|
|
|
}
|
|
|
|
}
|