rust-clippy/clippy_lints/src/erasing_op.rs

62 lines
1.8 KiB
Rust
Raw Normal View History

use rustc::hir::*;
use rustc::lint::{LateContext, LateLintPass, LintArray, LintPass};
2019-04-08 20:43:55 +00:00
use rustc::{declare_lint_pass, declare_tool_lint};
use syntax::source_map::Span;
2019-01-31 01:15:29 +00:00
use crate::consts::{constant_simple, Constant};
2019-05-12 03:40:05 +00:00
use crate::utils::{in_macro_or_desugar, 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`.
///
/// **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;
/// 0 / x;
/// 0 * x;
2019-03-10 22:01:56 +00:00
/// x & 0;
/// ```
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`"
}
2019-04-08 20:43:55 +00:00
declare_lint_pass!(ErasingOp => [ERASING_OP]);
impl<'a, 'tcx> LateLintPass<'a, 'tcx> for ErasingOp {
fn check_expr(&mut self, cx: &LateContext<'a, 'tcx>, e: &'tcx Expr) {
2019-05-12 03:40:05 +00:00
if in_macro_or_desugar(e.span) {
return;
}
2018-07-12 07:30:57 +00:00
if let ExprKind::Binary(ref cmp, ref left, ref right) = e.node {
match cmp.node {
2018-07-12 07:50:09 +00:00
BinOpKind::Mul | BinOpKind::BitAnd => {
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),
_ => (),
}
}
}
}
2018-07-23 11:01:12 +00:00
fn check(cx: &LateContext<'_, '_>, e: &Expr, span: Span) {
2018-05-13 11:16:31 +00:00
if let Some(Constant::Int(v)) = constant_simple(cx, cx.tables, e) {
2018-03-13 10:38:11 +00:00
if v == 0 {
span_lint(
cx,
ERASING_OP,
span,
2017-10-15 07:32:47 +00:00
"this operation will always return zero. This is likely not the intended outcome",
);
}
}
}