]> git.lizzy.rs Git - rust.git/blob - clippy_lints/src/needless_bitwise_bool.rs
Auto merge of #84373 - cjgillot:resolve-span, r=michaelwoerister,petrochenkov
[rust.git] / clippy_lints / src / needless_bitwise_bool.rs
1 use clippy_utils::diagnostics::span_lint_and_then;
2 use clippy_utils::in_macro;
3 use clippy_utils::source::snippet_opt;
4 use if_chain::if_chain;
5 use rustc_errors::Applicability;
6 use rustc_hir::{BinOpKind, Expr, ExprKind};
7 use rustc_lint::{LateContext, LateLintPass};
8 use rustc_middle::ty;
9 use rustc_session::{declare_lint_pass, declare_tool_lint};
10
11 declare_clippy_lint! {
12     /// ### What it does
13     /// Checks for uses of bitwise and/or operators between booleans, where performance may be improved by using
14     /// a lazy and.
15     ///
16     /// ### Why is this bad?
17     /// The bitwise operators do not support short-circuiting, so it may hinder code performance.
18     /// Additionally, boolean logic "masked" as bitwise logic is not caught by lints like `unnecessary_fold`
19     ///
20     /// ### Known problems
21     /// This lint evaluates only when the right side is determined to have no side effects. At this time, that
22     /// determination is quite conservative.
23     ///
24     /// ### Example
25     /// ```rust
26     /// let (x,y) = (true, false);
27     /// if x & !y {} // where both x and y are booleans
28     /// ```
29     /// Use instead:
30     /// ```rust
31     /// let (x,y) = (true, false);
32     /// if x && !y {}
33     /// ```
34     pub NEEDLESS_BITWISE_BOOL,
35     pedantic,
36     "Boolean expressions that use bitwise rather than lazy operators"
37 }
38
39 declare_lint_pass!(NeedlessBitwiseBool => [NEEDLESS_BITWISE_BOOL]);
40
41 fn is_bitwise_operation(cx: &LateContext<'_>, expr: &Expr<'_>) -> bool {
42     let ty = cx.typeck_results().expr_ty(expr);
43     if_chain! {
44         if !in_macro(expr.span);
45         if let (&ExprKind::Binary(ref op, _, right), &ty::Bool) = (&expr.kind, &ty.kind());
46         if op.node == BinOpKind::BitAnd || op.node == BinOpKind::BitOr;
47         if let ExprKind::Call(..) | ExprKind::MethodCall(..) | ExprKind::Binary(..) | ExprKind::Unary(..) = right.kind;
48         if !right.can_have_side_effects();
49         then {
50             return true;
51         }
52     }
53     false
54 }
55
56 fn suggession_snippet(cx: &LateContext<'_>, expr: &Expr<'_>) -> Option<String> {
57     if let ExprKind::Binary(ref op, left, right) = expr.kind {
58         if let (Some(l_snippet), Some(r_snippet)) = (snippet_opt(cx, left.span), snippet_opt(cx, right.span)) {
59             let op_snippet = match op.node {
60                 BinOpKind::BitAnd => "&&",
61                 _ => "||",
62             };
63             return Some(format!("{} {} {}", l_snippet, op_snippet, r_snippet));
64         }
65     }
66     None
67 }
68
69 impl LateLintPass<'_> for NeedlessBitwiseBool {
70     fn check_expr(&mut self, cx: &LateContext<'_>, expr: &Expr<'_>) {
71         if is_bitwise_operation(cx, expr) {
72             span_lint_and_then(
73                 cx,
74                 NEEDLESS_BITWISE_BOOL,
75                 expr.span,
76                 "use of bitwise operator instead of lazy operator between booleans",
77                 |diag| {
78                     if let Some(sugg) = suggession_snippet(cx, expr) {
79                         diag.span_suggestion(expr.span, "try", sugg, Applicability::MachineApplicable);
80                     }
81                 },
82             );
83         }
84     }
85 }