]> git.lizzy.rs Git - rust.git/blob - clippy_lints/src/bit_mask.rs
rustup https://github.com/rust-lang/rust/pull/57907/
[rust.git] / clippy_lints / src / bit_mask.rs
1 use crate::consts::{constant, Constant};
2 use crate::utils::sugg::Sugg;
3 use crate::utils::{span_lint, span_lint_and_then};
4 use if_chain::if_chain;
5 use rustc::hir::*;
6 use rustc::lint::{LateContext, LateLintPass, LintArray, LintPass};
7 use rustc::{declare_tool_lint, lint_array};
8 use rustc_errors::Applicability;
9 use syntax::ast::LitKind;
10 use syntax::source_map::Span;
11
12 /// **What it does:** Checks for incompatible bit masks in comparisons.
13 ///
14 /// The formula for detecting if an expression of the type `_ <bit_op> m
15 /// <cmp_op> c` (where `<bit_op>` is one of {`&`, `|`} and `<cmp_op>` is one of
16 /// {`!=`, `>=`, `>`, `!=`, `>=`, `>`}) can be determined from the following
17 /// table:
18 ///
19 /// |Comparison  |Bit Op|Example     |is always|Formula               |
20 /// |------------|------|------------|---------|----------------------|
21 /// |`==` or `!=`| `&`  |`x & 2 == 3`|`false`  |`c & m != c`          |
22 /// |`<`  or `>=`| `&`  |`x & 2 < 3` |`true`   |`m < c`               |
23 /// |`>`  or `<=`| `&`  |`x & 1 > 1` |`false`  |`m <= c`              |
24 /// |`==` or `!=`| `|`  |`x | 1 == 0`|`false`  |`c | m != c`          |
25 /// |`<`  or `>=`| `|`  |`x | 1 < 1` |`false`  |`m >= c`              |
26 /// |`<=` or `>` | `|`  |`x | 1 > 0` |`true`   |`m > c`               |
27 ///
28 /// **Why is this bad?** If the bits that the comparison cares about are always
29 /// set to zero or one by the bit mask, the comparison is constant `true` or
30 /// `false` (depending on mask, compared value, and operators).
31 ///
32 /// So the code is actively misleading, and the only reason someone would write
33 /// this intentionally is to win an underhanded Rust contest or create a
34 /// test-case for this lint.
35 ///
36 /// **Known problems:** None.
37 ///
38 /// **Example:**
39 /// ```rust
40 /// if (x & 1 == 2) { … }
41 /// ```
42 declare_clippy_lint! {
43     pub BAD_BIT_MASK,
44     correctness,
45     "expressions of the form `_ & mask == select` that will only ever return `true` or `false`"
46 }
47
48 /// **What it does:** Checks for bit masks in comparisons which can be removed
49 /// without changing the outcome. The basic structure can be seen in the
50 /// following table:
51 ///
52 /// |Comparison| Bit Op  |Example    |equals |
53 /// |----------|---------|-----------|-------|
54 /// |`>` / `<=`|`|` / `^`|`x | 2 > 3`|`x > 3`|
55 /// |`<` / `>=`|`|` / `^`|`x ^ 1 < 4`|`x < 4`|
56 ///
57 /// **Why is this bad?** Not equally evil as [`bad_bit_mask`](#bad_bit_mask),
58 /// but still a bit misleading, because the bit mask is ineffective.
59 ///
60 /// **Known problems:** False negatives: This lint will only match instances
61 /// where we have figured out the math (which is for a power-of-two compared
62 /// value). This means things like `x | 1 >= 7` (which would be better written
63 /// as `x >= 6`) will not be reported (but bit masks like this are fairly
64 /// uncommon).
65 ///
66 /// **Example:**
67 /// ```rust
68 /// if (x | 1 > 3) { … }
69 /// ```
70 declare_clippy_lint! {
71     pub INEFFECTIVE_BIT_MASK,
72     correctness,
73     "expressions where a bit mask will be rendered useless by a comparison, e.g. `(x | 1) > 2`"
74 }
75
76 /// **What it does:** Checks for bit masks that can be replaced by a call
77 /// to `trailing_zeros`
78 ///
79 /// **Why is this bad?** `x.trailing_zeros() > 4` is much clearer than `x & 15
80 /// == 0`
81 ///
82 /// **Known problems:** llvm generates better code for `x & 15 == 0` on x86
83 ///
84 /// **Example:**
85 /// ```rust
86 /// x & 0x1111 == 0
87 /// ```
88 declare_clippy_lint! {
89     pub VERBOSE_BIT_MASK,
90     style,
91     "expressions where a bit mask is less readable than the corresponding method call"
92 }
93
94 #[derive(Copy, Clone)]
95 pub struct BitMask {
96     verbose_bit_mask_threshold: u64,
97 }
98
99 impl BitMask {
100     pub fn new(verbose_bit_mask_threshold: u64) -> Self {
101         Self {
102             verbose_bit_mask_threshold,
103         }
104     }
105 }
106
107 impl LintPass for BitMask {
108     fn get_lints(&self) -> LintArray {
109         lint_array!(BAD_BIT_MASK, INEFFECTIVE_BIT_MASK, VERBOSE_BIT_MASK)
110     }
111     fn name(&self) -> &'static str {
112         "BitMask"
113     }
114 }
115
116 impl<'a, 'tcx> LateLintPass<'a, 'tcx> for BitMask {
117     fn check_expr(&mut self, cx: &LateContext<'a, 'tcx>, e: &'tcx Expr) {
118         if let ExprKind::Binary(cmp, left, right) = &e.node {
119             if cmp.node.is_comparison() {
120                 if let Some(cmp_opt) = fetch_int_literal(cx, right) {
121                     check_compare(cx, left, cmp.node, cmp_opt, e.span)
122                 } else if let Some(cmp_val) = fetch_int_literal(cx, left) {
123                     check_compare(cx, right, invert_cmp(cmp.node), cmp_val, e.span)
124                 }
125             }
126         }
127         if_chain! {
128             if let ExprKind::Binary(op, left, right) = &e.node;
129             if BinOpKind::Eq == op.node;
130             if let ExprKind::Binary(op1, left1, right1) = &left.node;
131             if BinOpKind::BitAnd == op1.node;
132             if let ExprKind::Lit(lit) = &right1.node;
133             if let LitKind::Int(n, _) = lit.node;
134             if let ExprKind::Lit(lit1) = &right.node;
135             if let LitKind::Int(0, _) = lit1.node;
136             if n.leading_zeros() == n.count_zeros();
137             if n > u128::from(self.verbose_bit_mask_threshold);
138             then {
139                 span_lint_and_then(cx,
140                                    VERBOSE_BIT_MASK,
141                                    e.span,
142                                    "bit mask could be simplified with a call to `trailing_zeros`",
143                                    |db| {
144                     let sugg = Sugg::hir(cx, left1, "...").maybe_par();
145                     db.span_suggestion(
146                         e.span,
147                         "try",
148                         format!("{}.trailing_zeros() >= {}", sugg, n.count_ones()),
149                         Applicability::MaybeIncorrect,
150                     );
151                 });
152             }
153         }
154     }
155 }
156
157 fn invert_cmp(cmp: BinOpKind) -> BinOpKind {
158     match cmp {
159         BinOpKind::Eq => BinOpKind::Eq,
160         BinOpKind::Ne => BinOpKind::Ne,
161         BinOpKind::Lt => BinOpKind::Gt,
162         BinOpKind::Gt => BinOpKind::Lt,
163         BinOpKind::Le => BinOpKind::Ge,
164         BinOpKind::Ge => BinOpKind::Le,
165         _ => BinOpKind::Or, // Dummy
166     }
167 }
168
169 fn check_compare(cx: &LateContext<'_, '_>, bit_op: &Expr, cmp_op: BinOpKind, cmp_value: u128, span: Span) {
170     if let ExprKind::Binary(op, left, right) = &bit_op.node {
171         if op.node != BinOpKind::BitAnd && op.node != BinOpKind::BitOr {
172             return;
173         }
174         fetch_int_literal(cx, right)
175             .or_else(|| fetch_int_literal(cx, left))
176             .map_or((), |mask| check_bit_mask(cx, op.node, cmp_op, mask, cmp_value, span))
177     }
178 }
179
180 fn check_bit_mask(
181     cx: &LateContext<'_, '_>,
182     bit_op: BinOpKind,
183     cmp_op: BinOpKind,
184     mask_value: u128,
185     cmp_value: u128,
186     span: Span,
187 ) {
188     match cmp_op {
189         BinOpKind::Eq | BinOpKind::Ne => match bit_op {
190             BinOpKind::BitAnd => {
191                 if mask_value & cmp_value != cmp_value {
192                     if cmp_value != 0 {
193                         span_lint(
194                             cx,
195                             BAD_BIT_MASK,
196                             span,
197                             &format!(
198                                 "incompatible bit mask: `_ & {}` can never be equal to `{}`",
199                                 mask_value, cmp_value
200                             ),
201                         );
202                     }
203                 } else if mask_value == 0 {
204                     span_lint(cx, BAD_BIT_MASK, span, "&-masking with zero");
205                 }
206             },
207             BinOpKind::BitOr => {
208                 if mask_value | cmp_value != cmp_value {
209                     span_lint(
210                         cx,
211                         BAD_BIT_MASK,
212                         span,
213                         &format!(
214                             "incompatible bit mask: `_ | {}` can never be equal to `{}`",
215                             mask_value, cmp_value
216                         ),
217                     );
218                 }
219             },
220             _ => (),
221         },
222         BinOpKind::Lt | BinOpKind::Ge => match bit_op {
223             BinOpKind::BitAnd => {
224                 if mask_value < cmp_value {
225                     span_lint(
226                         cx,
227                         BAD_BIT_MASK,
228                         span,
229                         &format!(
230                             "incompatible bit mask: `_ & {}` will always be lower than `{}`",
231                             mask_value, cmp_value
232                         ),
233                     );
234                 } else if mask_value == 0 {
235                     span_lint(cx, BAD_BIT_MASK, span, "&-masking with zero");
236                 }
237             },
238             BinOpKind::BitOr => {
239                 if mask_value >= cmp_value {
240                     span_lint(
241                         cx,
242                         BAD_BIT_MASK,
243                         span,
244                         &format!(
245                             "incompatible bit mask: `_ | {}` will never be lower than `{}`",
246                             mask_value, cmp_value
247                         ),
248                     );
249                 } else {
250                     check_ineffective_lt(cx, span, mask_value, cmp_value, "|");
251                 }
252             },
253             BinOpKind::BitXor => check_ineffective_lt(cx, span, mask_value, cmp_value, "^"),
254             _ => (),
255         },
256         BinOpKind::Le | BinOpKind::Gt => match bit_op {
257             BinOpKind::BitAnd => {
258                 if mask_value <= cmp_value {
259                     span_lint(
260                         cx,
261                         BAD_BIT_MASK,
262                         span,
263                         &format!(
264                             "incompatible bit mask: `_ & {}` will never be higher than `{}`",
265                             mask_value, cmp_value
266                         ),
267                     );
268                 } else if mask_value == 0 {
269                     span_lint(cx, BAD_BIT_MASK, span, "&-masking with zero");
270                 }
271             },
272             BinOpKind::BitOr => {
273                 if mask_value > cmp_value {
274                     span_lint(
275                         cx,
276                         BAD_BIT_MASK,
277                         span,
278                         &format!(
279                             "incompatible bit mask: `_ | {}` will always be higher than `{}`",
280                             mask_value, cmp_value
281                         ),
282                     );
283                 } else {
284                     check_ineffective_gt(cx, span, mask_value, cmp_value, "|");
285                 }
286             },
287             BinOpKind::BitXor => check_ineffective_gt(cx, span, mask_value, cmp_value, "^"),
288             _ => (),
289         },
290         _ => (),
291     }
292 }
293
294 fn check_ineffective_lt(cx: &LateContext<'_, '_>, span: Span, m: u128, c: u128, op: &str) {
295     if c.is_power_of_two() && m < c {
296         span_lint(
297             cx,
298             INEFFECTIVE_BIT_MASK,
299             span,
300             &format!(
301                 "ineffective bit mask: `x {} {}` compared to `{}`, is the same as x compared directly",
302                 op, m, c
303             ),
304         );
305     }
306 }
307
308 fn check_ineffective_gt(cx: &LateContext<'_, '_>, span: Span, m: u128, c: u128, op: &str) {
309     if (c + 1).is_power_of_two() && m <= c {
310         span_lint(
311             cx,
312             INEFFECTIVE_BIT_MASK,
313             span,
314             &format!(
315                 "ineffective bit mask: `x {} {}` compared to `{}`, is the same as x compared directly",
316                 op, m, c
317             ),
318         );
319     }
320 }
321
322 fn fetch_int_literal(cx: &LateContext<'_, '_>, lit: &Expr) -> Option<u128> {
323     match constant(cx, cx.tables, lit)?.0 {
324         Constant::Int(n) => Some(n),
325         _ => None,
326     }
327 }