rust-clippy/clippy_lints/src/identity_op.rs

78 lines
2.3 KiB
Rust
Raw Normal View History

2016-03-16 11:38:26 +00:00
use consts::{constant_simple, Constant};
use rustc::lint::*;
use rustc::hir::*;
use syntax::codemap::Span;
2015-09-06 08:53:55 +00:00
use utils::{span_lint, snippet, in_macro};
use rustc_const_math::ConstInt;
/// **What it does:** Checks for identity operations, e.g. `x + 0`.
///
/// **Why is this bad?** This code can be removed without changing the
/// meaning. So it just obscures what's going on. Delete it mercilessly.
///
/// **Known problems:** None.
///
2016-07-15 22:25:44 +00:00
/// **Example:**
/// ```rust
/// x / 1 + 0 * 1 - 0 | 0
/// ```
declare_lint! {
pub IDENTITY_OP,
Warn,
"using identity operations, e.g. `x + 0` or `y / 1`"
}
#[derive(Copy,Clone)]
pub struct IdentityOp;
impl LintPass for IdentityOp {
fn get_lints(&self) -> LintArray {
lint_array!(IDENTITY_OP)
}
}
impl<'a, 'tcx> LateLintPass<'a, 'tcx> for IdentityOp {
fn check_expr(&mut self, cx: &LateContext<'a, 'tcx>, e: &'tcx Expr) {
2016-01-04 04:26:12 +00:00
if in_macro(cx, e.span) {
return;
}
if let ExprBinary(ref cmp, ref left, ref right) = e.node {
match cmp.node {
BiAdd | BiBitOr | BiBitXor => {
check(cx, left, 0, e.span, right.span);
check(cx, right, 0, e.span, left.span);
2016-12-20 17:21:30 +00:00
},
2016-01-04 04:26:12 +00:00
BiShl | BiShr | BiSub => check(cx, right, 0, e.span, left.span),
BiMul => {
check(cx, left, 1, e.span, right.span);
check(cx, right, 1, e.span, left.span);
2016-12-20 17:21:30 +00:00
},
2016-01-04 04:26:12 +00:00
BiDiv => check(cx, right, 1, e.span, left.span),
BiBitAnd => {
check(cx, left, -1, e.span, right.span);
check(cx, right, -1, e.span, left.span);
2016-12-20 17:21:30 +00:00
},
2016-01-04 04:26:12 +00:00
_ => (),
}
}
}
}
fn check(cx: &LateContext, e: &Expr, m: i8, span: Span, arg: Span) {
2016-03-16 15:28:31 +00:00
if let Some(v @ Constant::Int(_)) = constant_simple(e) {
2015-09-06 08:53:55 +00:00
if match m {
0 => v == Constant::Int(ConstInt::U8(0)),
-1 => v == Constant::Int(ConstInt::I8(-1)),
1 => v == Constant::Int(ConstInt::U8(1)),
2015-09-06 08:53:55 +00:00
_ => unreachable!(),
} {
2016-01-04 04:26:12 +00:00
span_lint(cx,
IDENTITY_OP,
span,
&format!("the operation is ineffective. Consider reducing it to `{}`",
snippet(cx, arg, "..")));
}
}
}