]> git.lizzy.rs Git - rust.git/blob - src/tools/clippy/clippy_lints/src/identity_op.rs
Auto merge of #92711 - zredb:issue-90187-fix, r=notriddle
[rust.git] / src / tools / clippy / clippy_lints / src / identity_op.rs
1 use clippy_utils::source::snippet;
2 use rustc_hir::{BinOp, BinOpKind, Expr, ExprKind};
3 use rustc_lint::{LateContext, LateLintPass};
4 use rustc_middle::ty;
5 use rustc_session::{declare_lint_pass, declare_tool_lint};
6 use rustc_span::source_map::Span;
7
8 use clippy_utils::consts::{constant_simple, Constant};
9 use clippy_utils::diagnostics::span_lint;
10 use clippy_utils::{clip, unsext};
11
12 declare_clippy_lint! {
13     /// ### What it does
14     /// Checks for identity operations, e.g., `x + 0`.
15     ///
16     /// ### Why is this bad?
17     /// This code can be removed without changing the
18     /// meaning. So it just obscures what's going on. Delete it mercilessly.
19     ///
20     /// ### Example
21     /// ```rust
22     /// # let x = 1;
23     /// x / 1 + 0 * 1 - 0 | 0;
24     /// ```
25     #[clippy::version = "pre 1.29.0"]
26     pub IDENTITY_OP,
27     complexity,
28     "using identity operations, e.g., `x + 0` or `y / 1`"
29 }
30
31 declare_lint_pass!(IdentityOp => [IDENTITY_OP]);
32
33 impl<'tcx> LateLintPass<'tcx> for IdentityOp {
34     fn check_expr(&mut self, cx: &LateContext<'tcx>, e: &'tcx Expr<'_>) {
35         if e.span.from_expansion() {
36             return;
37         }
38         if let ExprKind::Binary(cmp, left, right) = e.kind {
39             if is_allowed(cx, cmp, left, right) {
40                 return;
41             }
42             match cmp.node {
43                 BinOpKind::Add | BinOpKind::BitOr | BinOpKind::BitXor => {
44                     check(cx, left, 0, e.span, right.span);
45                     check(cx, right, 0, e.span, left.span);
46                 },
47                 BinOpKind::Shl | BinOpKind::Shr | BinOpKind::Sub => check(cx, right, 0, e.span, left.span),
48                 BinOpKind::Mul => {
49                     check(cx, left, 1, e.span, right.span);
50                     check(cx, right, 1, e.span, left.span);
51                 },
52                 BinOpKind::Div => check(cx, right, 1, e.span, left.span),
53                 BinOpKind::BitAnd => {
54                     check(cx, left, -1, e.span, right.span);
55                     check(cx, right, -1, e.span, left.span);
56                 },
57                 _ => (),
58             }
59         }
60     }
61 }
62
63 fn is_allowed(cx: &LateContext<'_>, cmp: BinOp, left: &Expr<'_>, right: &Expr<'_>) -> bool {
64     // This lint applies to integers
65     !cx.typeck_results().expr_ty(left).peel_refs().is_integral()
66         || !cx.typeck_results().expr_ty(right).peel_refs().is_integral()
67         // `1 << 0` is a common pattern in bit manipulation code
68         || (cmp.node == BinOpKind::Shl
69             && constant_simple(cx, cx.typeck_results(), right) == Some(Constant::Int(0))
70             && constant_simple(cx, cx.typeck_results(), left) == Some(Constant::Int(1)))
71 }
72
73 fn check(cx: &LateContext<'_>, e: &Expr<'_>, m: i8, span: Span, arg: Span) {
74     if let Some(Constant::Int(v)) = constant_simple(cx, cx.typeck_results(), e).map(Constant::peel_refs) {
75         let check = match *cx.typeck_results().expr_ty(e).peel_refs().kind() {
76             ty::Int(ity) => unsext(cx.tcx, -1_i128, ity),
77             ty::Uint(uty) => clip(cx.tcx, !0, uty),
78             _ => return,
79         };
80         if match m {
81             0 => v == 0,
82             -1 => v == check,
83             1 => v == 1,
84             _ => unreachable!(),
85         } {
86             span_lint(
87                 cx,
88                 IDENTITY_OP,
89                 span,
90                 &format!(
91                     "the operation is ineffective. Consider reducing it to `{}`",
92                     snippet(cx, arg, "..")
93                 ),
94             );
95         }
96     }
97 }