]> git.lizzy.rs Git - rust.git/blob - src/tools/clippy/clippy_lints/src/matches.rs
Auto merge of #88865 - guswynn:must_not_suspend, r=oli-obk
[rust.git] / src / tools / clippy / clippy_lints / src / matches.rs
1 use clippy_utils::consts::{constant, miri_to_const, Constant};
2 use clippy_utils::diagnostics::{
3     multispan_sugg, span_lint_and_help, span_lint_and_note, span_lint_and_sugg, span_lint_and_then,
4 };
5 use clippy_utils::higher;
6 use clippy_utils::source::{expr_block, indent_of, snippet, snippet_block, snippet_opt, snippet_with_applicability};
7 use clippy_utils::sugg::Sugg;
8 use clippy_utils::ty::{implements_trait, is_type_diagnostic_item, match_type, peel_mid_ty_refs};
9 use clippy_utils::visitors::is_local_used;
10 use clippy_utils::{
11     get_parent_expr, in_macro, is_expn_of, is_lang_ctor, is_lint_allowed, is_refutable, is_unit_expr, is_wild,
12     meets_msrv, msrvs, path_to_local, path_to_local_id, peel_hir_pat_refs, peel_n_hir_expr_refs, recurse_or_patterns,
13     remove_blocks, strip_pat_refs,
14 };
15 use clippy_utils::{paths, search_same, SpanlessEq, SpanlessHash};
16 use core::array;
17 use core::iter::{once, ExactSizeIterator};
18 use if_chain::if_chain;
19 use rustc_ast::ast::{Attribute, LitKind};
20 use rustc_errors::Applicability;
21 use rustc_hir::def::{CtorKind, DefKind, Res};
22 use rustc_hir::LangItem::{OptionNone, OptionSome};
23 use rustc_hir::{
24     self as hir, Arm, BindingAnnotation, Block, BorrowKind, Expr, ExprKind, Guard, HirId, Local, MatchSource,
25     Mutability, Node, Pat, PatKind, PathSegment, QPath, RangeEnd, TyKind,
26 };
27 use rustc_hir::{HirIdMap, HirIdSet};
28 use rustc_lint::{LateContext, LateLintPass, LintContext};
29 use rustc_middle::lint::in_external_macro;
30 use rustc_middle::ty::{self, Ty, TyS, VariantDef};
31 use rustc_semver::RustcVersion;
32 use rustc_session::{declare_tool_lint, impl_lint_pass};
33 use rustc_span::source_map::{Span, Spanned};
34 use rustc_span::sym;
35 use std::cmp::Ordering;
36 use std::collections::hash_map::Entry;
37 use std::iter;
38 use std::ops::Bound;
39
40 declare_clippy_lint! {
41     /// ### What it does
42     /// Checks for matches with a single arm where an `if let`
43     /// will usually suffice.
44     ///
45     /// ### Why is this bad?
46     /// Just readability – `if let` nests less than a `match`.
47     ///
48     /// ### Example
49     /// ```rust
50     /// # fn bar(stool: &str) {}
51     /// # let x = Some("abc");
52     /// // Bad
53     /// match x {
54     ///     Some(ref foo) => bar(foo),
55     ///     _ => (),
56     /// }
57     ///
58     /// // Good
59     /// if let Some(ref foo) = x {
60     ///     bar(foo);
61     /// }
62     /// ```
63     pub SINGLE_MATCH,
64     style,
65     "a `match` statement with a single nontrivial arm (i.e., where the other arm is `_ => {}`) instead of `if let`"
66 }
67
68 declare_clippy_lint! {
69     /// ### What it does
70     /// Checks for matches with two arms where an `if let else` will
71     /// usually suffice.
72     ///
73     /// ### Why is this bad?
74     /// Just readability – `if let` nests less than a `match`.
75     ///
76     /// ### Known problems
77     /// Personal style preferences may differ.
78     ///
79     /// ### Example
80     /// Using `match`:
81     ///
82     /// ```rust
83     /// # fn bar(foo: &usize) {}
84     /// # let other_ref: usize = 1;
85     /// # let x: Option<&usize> = Some(&1);
86     /// match x {
87     ///     Some(ref foo) => bar(foo),
88     ///     _ => bar(&other_ref),
89     /// }
90     /// ```
91     ///
92     /// Using `if let` with `else`:
93     ///
94     /// ```rust
95     /// # fn bar(foo: &usize) {}
96     /// # let other_ref: usize = 1;
97     /// # let x: Option<&usize> = Some(&1);
98     /// if let Some(ref foo) = x {
99     ///     bar(foo);
100     /// } else {
101     ///     bar(&other_ref);
102     /// }
103     /// ```
104     pub SINGLE_MATCH_ELSE,
105     pedantic,
106     "a `match` statement with two arms where the second arm's pattern is a placeholder instead of a specific match pattern"
107 }
108
109 declare_clippy_lint! {
110     /// ### What it does
111     /// Checks for matches where all arms match a reference,
112     /// suggesting to remove the reference and deref the matched expression
113     /// instead. It also checks for `if let &foo = bar` blocks.
114     ///
115     /// ### Why is this bad?
116     /// It just makes the code less readable. That reference
117     /// destructuring adds nothing to the code.
118     ///
119     /// ### Example
120     /// ```rust,ignore
121     /// // Bad
122     /// match x {
123     ///     &A(ref y) => foo(y),
124     ///     &B => bar(),
125     ///     _ => frob(&x),
126     /// }
127     ///
128     /// // Good
129     /// match *x {
130     ///     A(ref y) => foo(y),
131     ///     B => bar(),
132     ///     _ => frob(x),
133     /// }
134     /// ```
135     pub MATCH_REF_PATS,
136     style,
137     "a `match` or `if let` with all arms prefixed with `&` instead of deref-ing the match expression"
138 }
139
140 declare_clippy_lint! {
141     /// ### What it does
142     /// Checks for matches where match expression is a `bool`. It
143     /// suggests to replace the expression with an `if...else` block.
144     ///
145     /// ### Why is this bad?
146     /// It makes the code less readable.
147     ///
148     /// ### Example
149     /// ```rust
150     /// # fn foo() {}
151     /// # fn bar() {}
152     /// let condition: bool = true;
153     /// match condition {
154     ///     true => foo(),
155     ///     false => bar(),
156     /// }
157     /// ```
158     /// Use if/else instead:
159     /// ```rust
160     /// # fn foo() {}
161     /// # fn bar() {}
162     /// let condition: bool = true;
163     /// if condition {
164     ///     foo();
165     /// } else {
166     ///     bar();
167     /// }
168     /// ```
169     pub MATCH_BOOL,
170     pedantic,
171     "a `match` on a boolean expression instead of an `if..else` block"
172 }
173
174 declare_clippy_lint! {
175     /// ### What it does
176     /// Checks for overlapping match arms.
177     ///
178     /// ### Why is this bad?
179     /// It is likely to be an error and if not, makes the code
180     /// less obvious.
181     ///
182     /// ### Example
183     /// ```rust
184     /// let x = 5;
185     /// match x {
186     ///     1...10 => println!("1 ... 10"),
187     ///     5...15 => println!("5 ... 15"),
188     ///     _ => (),
189     /// }
190     /// ```
191     pub MATCH_OVERLAPPING_ARM,
192     style,
193     "a `match` with overlapping arms"
194 }
195
196 declare_clippy_lint! {
197     /// ### What it does
198     /// Checks for arm which matches all errors with `Err(_)`
199     /// and take drastic actions like `panic!`.
200     ///
201     /// ### Why is this bad?
202     /// It is generally a bad practice, similar to
203     /// catching all exceptions in java with `catch(Exception)`
204     ///
205     /// ### Example
206     /// ```rust
207     /// let x: Result<i32, &str> = Ok(3);
208     /// match x {
209     ///     Ok(_) => println!("ok"),
210     ///     Err(_) => panic!("err"),
211     /// }
212     /// ```
213     pub MATCH_WILD_ERR_ARM,
214     pedantic,
215     "a `match` with `Err(_)` arm and take drastic actions"
216 }
217
218 declare_clippy_lint! {
219     /// ### What it does
220     /// Checks for match which is used to add a reference to an
221     /// `Option` value.
222     ///
223     /// ### Why is this bad?
224     /// Using `as_ref()` or `as_mut()` instead is shorter.
225     ///
226     /// ### Example
227     /// ```rust
228     /// let x: Option<()> = None;
229     ///
230     /// // Bad
231     /// let r: Option<&()> = match x {
232     ///     None => None,
233     ///     Some(ref v) => Some(v),
234     /// };
235     ///
236     /// // Good
237     /// let r: Option<&()> = x.as_ref();
238     /// ```
239     pub MATCH_AS_REF,
240     complexity,
241     "a `match` on an Option value instead of using `as_ref()` or `as_mut`"
242 }
243
244 declare_clippy_lint! {
245     /// ### What it does
246     /// Checks for wildcard enum matches using `_`.
247     ///
248     /// ### Why is this bad?
249     /// New enum variants added by library updates can be missed.
250     ///
251     /// ### Known problems
252     /// Suggested replacements may be incorrect if guards exhaustively cover some
253     /// variants, and also may not use correct path to enum if it's not present in the current scope.
254     ///
255     /// ### Example
256     /// ```rust
257     /// # enum Foo { A(usize), B(usize) }
258     /// # let x = Foo::B(1);
259     /// // Bad
260     /// match x {
261     ///     Foo::A(_) => {},
262     ///     _ => {},
263     /// }
264     ///
265     /// // Good
266     /// match x {
267     ///     Foo::A(_) => {},
268     ///     Foo::B(_) => {},
269     /// }
270     /// ```
271     pub WILDCARD_ENUM_MATCH_ARM,
272     restriction,
273     "a wildcard enum match arm using `_`"
274 }
275
276 declare_clippy_lint! {
277     /// ### What it does
278     /// Checks for wildcard enum matches for a single variant.
279     ///
280     /// ### Why is this bad?
281     /// New enum variants added by library updates can be missed.
282     ///
283     /// ### Known problems
284     /// Suggested replacements may not use correct path to enum
285     /// if it's not present in the current scope.
286     ///
287     /// ### Example
288     /// ```rust
289     /// # enum Foo { A, B, C }
290     /// # let x = Foo::B;
291     /// // Bad
292     /// match x {
293     ///     Foo::A => {},
294     ///     Foo::B => {},
295     ///     _ => {},
296     /// }
297     ///
298     /// // Good
299     /// match x {
300     ///     Foo::A => {},
301     ///     Foo::B => {},
302     ///     Foo::C => {},
303     /// }
304     /// ```
305     pub MATCH_WILDCARD_FOR_SINGLE_VARIANTS,
306     pedantic,
307     "a wildcard enum match for a single variant"
308 }
309
310 declare_clippy_lint! {
311     /// ### What it does
312     /// Checks for wildcard pattern used with others patterns in same match arm.
313     ///
314     /// ### Why is this bad?
315     /// Wildcard pattern already covers any other pattern as it will match anyway.
316     /// It makes the code less readable, especially to spot wildcard pattern use in match arm.
317     ///
318     /// ### Example
319     /// ```rust
320     /// // Bad
321     /// match "foo" {
322     ///     "a" => {},
323     ///     "bar" | _ => {},
324     /// }
325     ///
326     /// // Good
327     /// match "foo" {
328     ///     "a" => {},
329     ///     _ => {},
330     /// }
331     /// ```
332     pub WILDCARD_IN_OR_PATTERNS,
333     complexity,
334     "a wildcard pattern used with others patterns in same match arm"
335 }
336
337 declare_clippy_lint! {
338     /// ### What it does
339     /// Checks for matches being used to destructure a single-variant enum
340     /// or tuple struct where a `let` will suffice.
341     ///
342     /// ### Why is this bad?
343     /// Just readability – `let` doesn't nest, whereas a `match` does.
344     ///
345     /// ### Example
346     /// ```rust
347     /// enum Wrapper {
348     ///     Data(i32),
349     /// }
350     ///
351     /// let wrapper = Wrapper::Data(42);
352     ///
353     /// let data = match wrapper {
354     ///     Wrapper::Data(i) => i,
355     /// };
356     /// ```
357     ///
358     /// The correct use would be:
359     /// ```rust
360     /// enum Wrapper {
361     ///     Data(i32),
362     /// }
363     ///
364     /// let wrapper = Wrapper::Data(42);
365     /// let Wrapper::Data(data) = wrapper;
366     /// ```
367     pub INFALLIBLE_DESTRUCTURING_MATCH,
368     style,
369     "a `match` statement with a single infallible arm instead of a `let`"
370 }
371
372 declare_clippy_lint! {
373     /// ### What it does
374     /// Checks for useless match that binds to only one value.
375     ///
376     /// ### Why is this bad?
377     /// Readability and needless complexity.
378     ///
379     /// ### Known problems
380     ///  Suggested replacements may be incorrect when `match`
381     /// is actually binding temporary value, bringing a 'dropped while borrowed' error.
382     ///
383     /// ### Example
384     /// ```rust
385     /// # let a = 1;
386     /// # let b = 2;
387     ///
388     /// // Bad
389     /// match (a, b) {
390     ///     (c, d) => {
391     ///         // useless match
392     ///     }
393     /// }
394     ///
395     /// // Good
396     /// let (c, d) = (a, b);
397     /// ```
398     pub MATCH_SINGLE_BINDING,
399     complexity,
400     "a match with a single binding instead of using `let` statement"
401 }
402
403 declare_clippy_lint! {
404     /// ### What it does
405     /// Checks for unnecessary '..' pattern binding on struct when all fields are explicitly matched.
406     ///
407     /// ### Why is this bad?
408     /// Correctness and readability. It's like having a wildcard pattern after
409     /// matching all enum variants explicitly.
410     ///
411     /// ### Example
412     /// ```rust
413     /// # struct A { a: i32 }
414     /// let a = A { a: 5 };
415     ///
416     /// // Bad
417     /// match a {
418     ///     A { a: 5, .. } => {},
419     ///     _ => {},
420     /// }
421     ///
422     /// // Good
423     /// match a {
424     ///     A { a: 5 } => {},
425     ///     _ => {},
426     /// }
427     /// ```
428     pub REST_PAT_IN_FULLY_BOUND_STRUCTS,
429     restriction,
430     "a match on a struct that binds all fields but still uses the wildcard pattern"
431 }
432
433 declare_clippy_lint! {
434     /// ### What it does
435     /// Lint for redundant pattern matching over `Result`, `Option`,
436     /// `std::task::Poll` or `std::net::IpAddr`
437     ///
438     /// ### Why is this bad?
439     /// It's more concise and clear to just use the proper
440     /// utility function
441     ///
442     /// ### Known problems
443     /// This will change the drop order for the matched type. Both `if let` and
444     /// `while let` will drop the value at the end of the block, both `if` and `while` will drop the
445     /// value before entering the block. For most types this change will not matter, but for a few
446     /// types this will not be an acceptable change (e.g. locks). See the
447     /// [reference](https://doc.rust-lang.org/reference/destructors.html#drop-scopes) for more about
448     /// drop order.
449     ///
450     /// ### Example
451     /// ```rust
452     /// # use std::task::Poll;
453     /// # use std::net::{IpAddr, Ipv4Addr, Ipv6Addr};
454     /// if let Ok(_) = Ok::<i32, i32>(42) {}
455     /// if let Err(_) = Err::<i32, i32>(42) {}
456     /// if let None = None::<()> {}
457     /// if let Some(_) = Some(42) {}
458     /// if let Poll::Pending = Poll::Pending::<()> {}
459     /// if let Poll::Ready(_) = Poll::Ready(42) {}
460     /// if let IpAddr::V4(_) = IpAddr::V4(Ipv4Addr::LOCALHOST) {}
461     /// if let IpAddr::V6(_) = IpAddr::V6(Ipv6Addr::LOCALHOST) {}
462     /// match Ok::<i32, i32>(42) {
463     ///     Ok(_) => true,
464     ///     Err(_) => false,
465     /// };
466     /// ```
467     ///
468     /// The more idiomatic use would be:
469     ///
470     /// ```rust
471     /// # use std::task::Poll;
472     /// # use std::net::{IpAddr, Ipv4Addr, Ipv6Addr};
473     /// if Ok::<i32, i32>(42).is_ok() {}
474     /// if Err::<i32, i32>(42).is_err() {}
475     /// if None::<()>.is_none() {}
476     /// if Some(42).is_some() {}
477     /// if Poll::Pending::<()>.is_pending() {}
478     /// if Poll::Ready(42).is_ready() {}
479     /// if IpAddr::V4(Ipv4Addr::LOCALHOST).is_ipv4() {}
480     /// if IpAddr::V6(Ipv6Addr::LOCALHOST).is_ipv6() {}
481     /// Ok::<i32, i32>(42).is_ok();
482     /// ```
483     pub REDUNDANT_PATTERN_MATCHING,
484     style,
485     "use the proper utility function avoiding an `if let`"
486 }
487
488 declare_clippy_lint! {
489     /// ### What it does
490     /// Checks for `match`  or `if let` expressions producing a
491     /// `bool` that could be written using `matches!`
492     ///
493     /// ### Why is this bad?
494     /// Readability and needless complexity.
495     ///
496     /// ### Known problems
497     /// This lint falsely triggers, if there are arms with
498     /// `cfg` attributes that remove an arm evaluating to `false`.
499     ///
500     /// ### Example
501     /// ```rust
502     /// let x = Some(5);
503     ///
504     /// // Bad
505     /// let a = match x {
506     ///     Some(0) => true,
507     ///     _ => false,
508     /// };
509     ///
510     /// let a = if let Some(0) = x {
511     ///     true
512     /// } else {
513     ///     false
514     /// };
515     ///
516     /// // Good
517     /// let a = matches!(x, Some(0));
518     /// ```
519     pub MATCH_LIKE_MATCHES_MACRO,
520     style,
521     "a match that could be written with the matches! macro"
522 }
523
524 declare_clippy_lint! {
525     /// ### What it does
526     /// Checks for `match` with identical arm bodies.
527     ///
528     /// ### Why is this bad?
529     /// This is probably a copy & paste error. If arm bodies
530     /// are the same on purpose, you can factor them
531     /// [using `|`](https://doc.rust-lang.org/book/patterns.html#multiple-patterns).
532     ///
533     /// ### Known problems
534     /// False positive possible with order dependent `match`
535     /// (see issue
536     /// [#860](https://github.com/rust-lang/rust-clippy/issues/860)).
537     ///
538     /// ### Example
539     /// ```rust,ignore
540     /// match foo {
541     ///     Bar => bar(),
542     ///     Quz => quz(),
543     ///     Baz => bar(), // <= oops
544     /// }
545     /// ```
546     ///
547     /// This should probably be
548     /// ```rust,ignore
549     /// match foo {
550     ///     Bar => bar(),
551     ///     Quz => quz(),
552     ///     Baz => baz(), // <= fixed
553     /// }
554     /// ```
555     ///
556     /// or if the original code was not a typo:
557     /// ```rust,ignore
558     /// match foo {
559     ///     Bar | Baz => bar(), // <= shows the intent better
560     ///     Quz => quz(),
561     /// }
562     /// ```
563     pub MATCH_SAME_ARMS,
564     pedantic,
565     "`match` with identical arm bodies"
566 }
567
568 #[derive(Default)]
569 pub struct Matches {
570     msrv: Option<RustcVersion>,
571     infallible_destructuring_match_linted: bool,
572 }
573
574 impl Matches {
575     #[must_use]
576     pub fn new(msrv: Option<RustcVersion>) -> Self {
577         Self {
578             msrv,
579             ..Matches::default()
580         }
581     }
582 }
583
584 impl_lint_pass!(Matches => [
585     SINGLE_MATCH,
586     MATCH_REF_PATS,
587     MATCH_BOOL,
588     SINGLE_MATCH_ELSE,
589     MATCH_OVERLAPPING_ARM,
590     MATCH_WILD_ERR_ARM,
591     MATCH_AS_REF,
592     WILDCARD_ENUM_MATCH_ARM,
593     MATCH_WILDCARD_FOR_SINGLE_VARIANTS,
594     WILDCARD_IN_OR_PATTERNS,
595     MATCH_SINGLE_BINDING,
596     INFALLIBLE_DESTRUCTURING_MATCH,
597     REST_PAT_IN_FULLY_BOUND_STRUCTS,
598     REDUNDANT_PATTERN_MATCHING,
599     MATCH_LIKE_MATCHES_MACRO,
600     MATCH_SAME_ARMS,
601 ]);
602
603 impl<'tcx> LateLintPass<'tcx> for Matches {
604     fn check_expr(&mut self, cx: &LateContext<'tcx>, expr: &'tcx Expr<'_>) {
605         if in_external_macro(cx.sess(), expr.span) || in_macro(expr.span) {
606             return;
607         }
608
609         redundant_pattern_match::check(cx, expr);
610
611         if meets_msrv(self.msrv.as_ref(), &msrvs::MATCHES_MACRO) {
612             if !check_match_like_matches(cx, expr) {
613                 lint_match_arms(cx, expr);
614             }
615         } else {
616             lint_match_arms(cx, expr);
617         }
618
619         if let ExprKind::Match(ex, arms, MatchSource::Normal) = expr.kind {
620             check_single_match(cx, ex, arms, expr);
621             check_match_bool(cx, ex, arms, expr);
622             check_overlapping_arms(cx, ex, arms);
623             check_wild_err_arm(cx, ex, arms);
624             check_wild_enum_match(cx, ex, arms);
625             check_match_as_ref(cx, ex, arms, expr);
626             check_wild_in_or_pats(cx, arms);
627
628             if self.infallible_destructuring_match_linted {
629                 self.infallible_destructuring_match_linted = false;
630             } else {
631                 check_match_single_binding(cx, ex, arms, expr);
632             }
633         }
634         if let ExprKind::Match(ex, arms, _) = expr.kind {
635             check_match_ref_pats(cx, ex, arms.iter().map(|el| el.pat), expr);
636         }
637         if let Some(higher::IfLet { let_pat, let_expr, .. }) = higher::IfLet::hir(cx, expr) {
638             check_match_ref_pats(cx, let_expr, once(let_pat), expr);
639         }
640     }
641
642     fn check_local(&mut self, cx: &LateContext<'tcx>, local: &'tcx Local<'_>) {
643         if_chain! {
644             if !in_external_macro(cx.sess(), local.span);
645             if !in_macro(local.span);
646             if let Some(expr) = local.init;
647             if let ExprKind::Match(target, arms, MatchSource::Normal) = expr.kind;
648             if arms.len() == 1 && arms[0].guard.is_none();
649             if let PatKind::TupleStruct(
650                 QPath::Resolved(None, variant_name), args, _) = arms[0].pat.kind;
651             if args.len() == 1;
652             if let PatKind::Binding(_, arg, ..) = strip_pat_refs(&args[0]).kind;
653             let body = remove_blocks(arms[0].body);
654             if path_to_local_id(body, arg);
655
656             then {
657                 let mut applicability = Applicability::MachineApplicable;
658                 self.infallible_destructuring_match_linted = true;
659                 span_lint_and_sugg(
660                     cx,
661                     INFALLIBLE_DESTRUCTURING_MATCH,
662                     local.span,
663                     "you seem to be trying to use `match` to destructure a single infallible pattern. \
664                     Consider using `let`",
665                     "try this",
666                     format!(
667                         "let {}({}) = {};",
668                         snippet_with_applicability(cx, variant_name.span, "..", &mut applicability),
669                         snippet_with_applicability(cx, local.pat.span, "..", &mut applicability),
670                         snippet_with_applicability(cx, target.span, "..", &mut applicability),
671                     ),
672                     applicability,
673                 );
674             }
675         }
676     }
677
678     fn check_pat(&mut self, cx: &LateContext<'tcx>, pat: &'tcx Pat<'_>) {
679         if_chain! {
680             if !in_external_macro(cx.sess(), pat.span);
681             if !in_macro(pat.span);
682             if let PatKind::Struct(QPath::Resolved(_, path), fields, true) = pat.kind;
683             if let Some(def_id) = path.res.opt_def_id();
684             let ty = cx.tcx.type_of(def_id);
685             if let ty::Adt(def, _) = ty.kind();
686             if def.is_struct() || def.is_union();
687             if fields.len() == def.non_enum_variant().fields.len();
688
689             then {
690                 span_lint_and_help(
691                     cx,
692                     REST_PAT_IN_FULLY_BOUND_STRUCTS,
693                     pat.span,
694                     "unnecessary use of `..` pattern in struct binding. All fields were already bound",
695                     None,
696                     "consider removing `..` from this binding",
697                 );
698             }
699         }
700     }
701
702     extract_msrv_attr!(LateContext);
703 }
704
705 #[rustfmt::skip]
706 fn check_single_match(cx: &LateContext<'_>, ex: &Expr<'_>, arms: &[Arm<'_>], expr: &Expr<'_>) {
707     if arms.len() == 2 && arms[0].guard.is_none() && arms[1].guard.is_none() {
708         if in_macro(expr.span) {
709             // Don't lint match expressions present in
710             // macro_rules! block
711             return;
712         }
713         if let PatKind::Or(..) = arms[0].pat.kind {
714             // don't lint for or patterns for now, this makes
715             // the lint noisy in unnecessary situations
716             return;
717         }
718         let els = arms[1].body;
719         let els = if is_unit_expr(remove_blocks(els)) {
720             None
721         } else if let ExprKind::Block(Block { stmts, expr: block_expr, .. }, _) = els.kind {
722             if stmts.len() == 1 && block_expr.is_none() || stmts.is_empty() && block_expr.is_some() {
723                 // single statement/expr "else" block, don't lint
724                 return;
725             }
726             // block with 2+ statements or 1 expr and 1+ statement
727             Some(els)
728         } else {
729             // not a block, don't lint
730             return;
731         };
732
733         let ty = cx.typeck_results().expr_ty(ex);
734         if *ty.kind() != ty::Bool || is_lint_allowed(cx, MATCH_BOOL, ex.hir_id) {
735             check_single_match_single_pattern(cx, ex, arms, expr, els);
736             check_single_match_opt_like(cx, ex, arms, expr, ty, els);
737         }
738     }
739 }
740
741 fn check_single_match_single_pattern(
742     cx: &LateContext<'_>,
743     ex: &Expr<'_>,
744     arms: &[Arm<'_>],
745     expr: &Expr<'_>,
746     els: Option<&Expr<'_>>,
747 ) {
748     if is_wild(arms[1].pat) {
749         report_single_match_single_pattern(cx, ex, arms, expr, els);
750     }
751 }
752
753 fn report_single_match_single_pattern(
754     cx: &LateContext<'_>,
755     ex: &Expr<'_>,
756     arms: &[Arm<'_>],
757     expr: &Expr<'_>,
758     els: Option<&Expr<'_>>,
759 ) {
760     let lint = if els.is_some() { SINGLE_MATCH_ELSE } else { SINGLE_MATCH };
761     let els_str = els.map_or(String::new(), |els| {
762         format!(" else {}", expr_block(cx, els, None, "..", Some(expr.span)))
763     });
764
765     let (pat, pat_ref_count) = peel_hir_pat_refs(arms[0].pat);
766     let (msg, sugg) = if_chain! {
767         if let PatKind::Path(_) | PatKind::Lit(_) = pat.kind;
768         let (ty, ty_ref_count) = peel_mid_ty_refs(cx.typeck_results().expr_ty(ex));
769         if let Some(spe_trait_id) = cx.tcx.lang_items().structural_peq_trait();
770         if let Some(pe_trait_id) = cx.tcx.lang_items().eq_trait();
771         if ty.is_integral() || ty.is_char() || ty.is_str()
772             || (implements_trait(cx, ty, spe_trait_id, &[])
773                 && implements_trait(cx, ty, pe_trait_id, &[ty.into()]));
774         then {
775             // scrutinee derives PartialEq and the pattern is a constant.
776             let pat_ref_count = match pat.kind {
777                 // string literals are already a reference.
778                 PatKind::Lit(Expr { kind: ExprKind::Lit(lit), .. }) if lit.node.is_str() => pat_ref_count + 1,
779                 _ => pat_ref_count,
780             };
781             // References are only implicitly added to the pattern, so no overflow here.
782             // e.g. will work: match &Some(_) { Some(_) => () }
783             // will not: match Some(_) { &Some(_) => () }
784             let ref_count_diff = ty_ref_count - pat_ref_count;
785
786             // Try to remove address of expressions first.
787             let (ex, removed) = peel_n_hir_expr_refs(ex, ref_count_diff);
788             let ref_count_diff = ref_count_diff - removed;
789
790             let msg = "you seem to be trying to use `match` for an equality check. Consider using `if`";
791             let sugg = format!(
792                 "if {} == {}{} {}{}",
793                 snippet(cx, ex.span, ".."),
794                 // PartialEq for different reference counts may not exist.
795                 "&".repeat(ref_count_diff),
796                 snippet(cx, arms[0].pat.span, ".."),
797                 expr_block(cx, arms[0].body, None, "..", Some(expr.span)),
798                 els_str,
799             );
800             (msg, sugg)
801         } else {
802             let msg = "you seem to be trying to use `match` for destructuring a single pattern. Consider using `if let`";
803             let sugg = format!(
804                 "if let {} = {} {}{}",
805                 snippet(cx, arms[0].pat.span, ".."),
806                 snippet(cx, ex.span, ".."),
807                 expr_block(cx, arms[0].body, None, "..", Some(expr.span)),
808                 els_str,
809             );
810             (msg, sugg)
811         }
812     };
813
814     span_lint_and_sugg(
815         cx,
816         lint,
817         expr.span,
818         msg,
819         "try this",
820         sugg,
821         Applicability::HasPlaceholders,
822     );
823 }
824
825 fn check_single_match_opt_like(
826     cx: &LateContext<'_>,
827     ex: &Expr<'_>,
828     arms: &[Arm<'_>],
829     expr: &Expr<'_>,
830     ty: Ty<'_>,
831     els: Option<&Expr<'_>>,
832 ) {
833     // list of candidate `Enum`s we know will never get any more members
834     let candidates = &[
835         (&paths::COW, "Borrowed"),
836         (&paths::COW, "Cow::Borrowed"),
837         (&paths::COW, "Cow::Owned"),
838         (&paths::COW, "Owned"),
839         (&paths::OPTION, "None"),
840         (&paths::RESULT, "Err"),
841         (&paths::RESULT, "Ok"),
842     ];
843
844     let path = match arms[1].pat.kind {
845         PatKind::TupleStruct(ref path, inner, _) => {
846             // Contains any non wildcard patterns (e.g., `Err(err)`)?
847             if !inner.iter().all(is_wild) {
848                 return;
849             }
850             rustc_hir_pretty::to_string(rustc_hir_pretty::NO_ANN, |s| s.print_qpath(path, false))
851         },
852         PatKind::Binding(BindingAnnotation::Unannotated, .., ident, None) => ident.to_string(),
853         PatKind::Path(ref path) => {
854             rustc_hir_pretty::to_string(rustc_hir_pretty::NO_ANN, |s| s.print_qpath(path, false))
855         },
856         _ => return,
857     };
858
859     for &(ty_path, pat_path) in candidates {
860         if path == *pat_path && match_type(cx, ty, ty_path) {
861             report_single_match_single_pattern(cx, ex, arms, expr, els);
862         }
863     }
864 }
865
866 fn check_match_bool(cx: &LateContext<'_>, ex: &Expr<'_>, arms: &[Arm<'_>], expr: &Expr<'_>) {
867     // Type of expression is `bool`.
868     if *cx.typeck_results().expr_ty(ex).kind() == ty::Bool {
869         span_lint_and_then(
870             cx,
871             MATCH_BOOL,
872             expr.span,
873             "you seem to be trying to match on a boolean expression",
874             move |diag| {
875                 if arms.len() == 2 {
876                     // no guards
877                     let exprs = if let PatKind::Lit(arm_bool) = arms[0].pat.kind {
878                         if let ExprKind::Lit(ref lit) = arm_bool.kind {
879                             match lit.node {
880                                 LitKind::Bool(true) => Some((&*arms[0].body, &*arms[1].body)),
881                                 LitKind::Bool(false) => Some((&*arms[1].body, &*arms[0].body)),
882                                 _ => None,
883                             }
884                         } else {
885                             None
886                         }
887                     } else {
888                         None
889                     };
890
891                     if let Some((true_expr, false_expr)) = exprs {
892                         let sugg = match (is_unit_expr(true_expr), is_unit_expr(false_expr)) {
893                             (false, false) => Some(format!(
894                                 "if {} {} else {}",
895                                 snippet(cx, ex.span, "b"),
896                                 expr_block(cx, true_expr, None, "..", Some(expr.span)),
897                                 expr_block(cx, false_expr, None, "..", Some(expr.span))
898                             )),
899                             (false, true) => Some(format!(
900                                 "if {} {}",
901                                 snippet(cx, ex.span, "b"),
902                                 expr_block(cx, true_expr, None, "..", Some(expr.span))
903                             )),
904                             (true, false) => {
905                                 let test = Sugg::hir(cx, ex, "..");
906                                 Some(format!(
907                                     "if {} {}",
908                                     !test,
909                                     expr_block(cx, false_expr, None, "..", Some(expr.span))
910                                 ))
911                             },
912                             (true, true) => None,
913                         };
914
915                         if let Some(sugg) = sugg {
916                             diag.span_suggestion(
917                                 expr.span,
918                                 "consider using an `if`/`else` expression",
919                                 sugg,
920                                 Applicability::HasPlaceholders,
921                             );
922                         }
923                     }
924                 }
925             },
926         );
927     }
928 }
929
930 fn check_overlapping_arms<'tcx>(cx: &LateContext<'tcx>, ex: &'tcx Expr<'_>, arms: &'tcx [Arm<'_>]) {
931     if arms.len() >= 2 && cx.typeck_results().expr_ty(ex).is_integral() {
932         let ranges = all_ranges(cx, arms, cx.typeck_results().expr_ty(ex));
933         let type_ranges = type_ranges(&ranges);
934         if !type_ranges.is_empty() {
935             if let Some((start, end)) = overlapping(&type_ranges) {
936                 span_lint_and_note(
937                     cx,
938                     MATCH_OVERLAPPING_ARM,
939                     start.span,
940                     "some ranges overlap",
941                     Some(end.span),
942                     "overlaps with this",
943                 );
944             }
945         }
946     }
947 }
948
949 fn check_wild_err_arm<'tcx>(cx: &LateContext<'tcx>, ex: &Expr<'tcx>, arms: &[Arm<'tcx>]) {
950     let ex_ty = cx.typeck_results().expr_ty(ex).peel_refs();
951     if is_type_diagnostic_item(cx, ex_ty, sym::result_type) {
952         for arm in arms {
953             if let PatKind::TupleStruct(ref path, inner, _) = arm.pat.kind {
954                 let path_str = rustc_hir_pretty::to_string(rustc_hir_pretty::NO_ANN, |s| s.print_qpath(path, false));
955                 if path_str == "Err" {
956                     let mut matching_wild = inner.iter().any(is_wild);
957                     let mut ident_bind_name = String::from("_");
958                     if !matching_wild {
959                         // Looking for unused bindings (i.e.: `_e`)
960                         for pat in inner.iter() {
961                             if let PatKind::Binding(_, id, ident, None) = pat.kind {
962                                 if ident.as_str().starts_with('_') && !is_local_used(cx, arm.body, id) {
963                                     ident_bind_name = (&ident.name.as_str()).to_string();
964                                     matching_wild = true;
965                                 }
966                             }
967                         }
968                     }
969                     if_chain! {
970                         if matching_wild;
971                         if let ExprKind::Block(block, _) = arm.body.kind;
972                         if is_panic_block(block);
973                         then {
974                             // `Err(_)` or `Err(_e)` arm with `panic!` found
975                             span_lint_and_note(cx,
976                                 MATCH_WILD_ERR_ARM,
977                                 arm.pat.span,
978                                 &format!("`Err({})` matches all errors", &ident_bind_name),
979                                 None,
980                                 "match each error separately or use the error output, or use `.except(msg)` if the error case is unreachable",
981                             );
982                         }
983                     }
984                 }
985             }
986         }
987     }
988 }
989
990 enum CommonPrefixSearcher<'a> {
991     None,
992     Path(&'a [PathSegment<'a>]),
993     Mixed,
994 }
995 impl CommonPrefixSearcher<'a> {
996     fn with_path(&mut self, path: &'a [PathSegment<'a>]) {
997         match path {
998             [path @ .., _] => self.with_prefix(path),
999             [] => (),
1000         }
1001     }
1002
1003     fn with_prefix(&mut self, path: &'a [PathSegment<'a>]) {
1004         match self {
1005             Self::None => *self = Self::Path(path),
1006             Self::Path(self_path)
1007                 if path
1008                     .iter()
1009                     .map(|p| p.ident.name)
1010                     .eq(self_path.iter().map(|p| p.ident.name)) => {},
1011             Self::Path(_) => *self = Self::Mixed,
1012             Self::Mixed => (),
1013         }
1014     }
1015 }
1016
1017 fn is_hidden(cx: &LateContext<'_>, variant_def: &VariantDef) -> bool {
1018     let attrs = cx.tcx.get_attrs(variant_def.def_id);
1019     clippy_utils::attrs::is_doc_hidden(attrs) || clippy_utils::attrs::is_unstable(attrs)
1020 }
1021
1022 #[allow(clippy::too_many_lines)]
1023 fn check_wild_enum_match(cx: &LateContext<'_>, ex: &Expr<'_>, arms: &[Arm<'_>]) {
1024     let ty = cx.typeck_results().expr_ty(ex).peel_refs();
1025     let adt_def = match ty.kind() {
1026         ty::Adt(adt_def, _)
1027             if adt_def.is_enum()
1028                 && !(is_type_diagnostic_item(cx, ty, sym::option_type)
1029                     || is_type_diagnostic_item(cx, ty, sym::result_type)) =>
1030         {
1031             adt_def
1032         },
1033         _ => return,
1034     };
1035
1036     // First pass - check for violation, but don't do much book-keeping because this is hopefully
1037     // the uncommon case, and the book-keeping is slightly expensive.
1038     let mut wildcard_span = None;
1039     let mut wildcard_ident = None;
1040     let mut has_non_wild = false;
1041     for arm in arms {
1042         match peel_hir_pat_refs(arm.pat).0.kind {
1043             PatKind::Wild => wildcard_span = Some(arm.pat.span),
1044             PatKind::Binding(_, _, ident, None) => {
1045                 wildcard_span = Some(arm.pat.span);
1046                 wildcard_ident = Some(ident);
1047             },
1048             _ => has_non_wild = true,
1049         }
1050     }
1051     let wildcard_span = match wildcard_span {
1052         Some(x) if has_non_wild => x,
1053         _ => return,
1054     };
1055
1056     // Accumulate the variants which should be put in place of the wildcard because they're not
1057     // already covered.
1058     let has_hidden = adt_def.variants.iter().any(|x| is_hidden(cx, x));
1059     let mut missing_variants: Vec<_> = adt_def.variants.iter().filter(|x| !is_hidden(cx, x)).collect();
1060
1061     let mut path_prefix = CommonPrefixSearcher::None;
1062     for arm in arms {
1063         // Guards mean that this case probably isn't exhaustively covered. Technically
1064         // this is incorrect, as we should really check whether each variant is exhaustively
1065         // covered by the set of guards that cover it, but that's really hard to do.
1066         recurse_or_patterns(arm.pat, |pat| {
1067             let path = match &peel_hir_pat_refs(pat).0.kind {
1068                 PatKind::Path(path) => {
1069                     #[allow(clippy::match_same_arms)]
1070                     let id = match cx.qpath_res(path, pat.hir_id) {
1071                         Res::Def(DefKind::Const | DefKind::ConstParam | DefKind::AnonConst, _) => return,
1072                         Res::Def(_, id) => id,
1073                         _ => return,
1074                     };
1075                     if arm.guard.is_none() {
1076                         missing_variants.retain(|e| e.ctor_def_id != Some(id));
1077                     }
1078                     path
1079                 },
1080                 PatKind::TupleStruct(path, patterns, ..) => {
1081                     if let Some(id) = cx.qpath_res(path, pat.hir_id).opt_def_id() {
1082                         if arm.guard.is_none() && patterns.iter().all(|p| !is_refutable(cx, p)) {
1083                             missing_variants.retain(|e| e.ctor_def_id != Some(id));
1084                         }
1085                     }
1086                     path
1087                 },
1088                 PatKind::Struct(path, patterns, ..) => {
1089                     if let Some(id) = cx.qpath_res(path, pat.hir_id).opt_def_id() {
1090                         if arm.guard.is_none() && patterns.iter().all(|p| !is_refutable(cx, p.pat)) {
1091                             missing_variants.retain(|e| e.def_id != id);
1092                         }
1093                     }
1094                     path
1095                 },
1096                 _ => return,
1097             };
1098             match path {
1099                 QPath::Resolved(_, path) => path_prefix.with_path(path.segments),
1100                 QPath::TypeRelative(
1101                     hir::Ty {
1102                         kind: TyKind::Path(QPath::Resolved(_, path)),
1103                         ..
1104                     },
1105                     _,
1106                 ) => path_prefix.with_prefix(path.segments),
1107                 _ => (),
1108             }
1109         });
1110     }
1111
1112     let format_suggestion = |variant: &VariantDef| {
1113         format!(
1114             "{}{}{}{}",
1115             if let Some(ident) = wildcard_ident {
1116                 format!("{} @ ", ident.name)
1117             } else {
1118                 String::new()
1119             },
1120             if let CommonPrefixSearcher::Path(path_prefix) = path_prefix {
1121                 let mut s = String::new();
1122                 for seg in path_prefix {
1123                     s.push_str(&seg.ident.as_str());
1124                     s.push_str("::");
1125                 }
1126                 s
1127             } else {
1128                 let mut s = cx.tcx.def_path_str(adt_def.did);
1129                 s.push_str("::");
1130                 s
1131             },
1132             variant.ident.name,
1133             match variant.ctor_kind {
1134                 CtorKind::Fn if variant.fields.len() == 1 => "(_)",
1135                 CtorKind::Fn => "(..)",
1136                 CtorKind::Const => "",
1137                 CtorKind::Fictive => "{ .. }",
1138             }
1139         )
1140     };
1141
1142     match missing_variants.as_slice() {
1143         [] => (),
1144         [x] if !adt_def.is_variant_list_non_exhaustive() && !has_hidden => span_lint_and_sugg(
1145             cx,
1146             MATCH_WILDCARD_FOR_SINGLE_VARIANTS,
1147             wildcard_span,
1148             "wildcard matches only a single variant and will also match any future added variants",
1149             "try this",
1150             format_suggestion(x),
1151             Applicability::MaybeIncorrect,
1152         ),
1153         variants => {
1154             let mut suggestions: Vec<_> = variants.iter().copied().map(format_suggestion).collect();
1155             let message = if adt_def.is_variant_list_non_exhaustive() || has_hidden {
1156                 suggestions.push("_".into());
1157                 "wildcard matches known variants and will also match future added variants"
1158             } else {
1159                 "wildcard match will also match any future added variants"
1160             };
1161
1162             span_lint_and_sugg(
1163                 cx,
1164                 WILDCARD_ENUM_MATCH_ARM,
1165                 wildcard_span,
1166                 message,
1167                 "try this",
1168                 suggestions.join(" | "),
1169                 Applicability::MaybeIncorrect,
1170             );
1171         },
1172     };
1173 }
1174
1175 // If the block contains only a `panic!` macro (as expression or statement)
1176 fn is_panic_block(block: &Block<'_>) -> bool {
1177     match (&block.expr, block.stmts.len(), block.stmts.first()) {
1178         (&Some(exp), 0, _) => is_expn_of(exp.span, "panic").is_some() && is_expn_of(exp.span, "unreachable").is_none(),
1179         (&None, 1, Some(stmt)) => {
1180             is_expn_of(stmt.span, "panic").is_some() && is_expn_of(stmt.span, "unreachable").is_none()
1181         },
1182         _ => false,
1183     }
1184 }
1185
1186 fn check_match_ref_pats<'a, 'b, I>(cx: &LateContext<'_>, ex: &Expr<'_>, pats: I, expr: &Expr<'_>)
1187 where
1188     'b: 'a,
1189     I: Clone + Iterator<Item = &'a Pat<'b>>,
1190 {
1191     if !has_only_ref_pats(pats.clone()) {
1192         return;
1193     }
1194
1195     let (first_sugg, msg, title);
1196     let span = ex.span.source_callsite();
1197     if let ExprKind::AddrOf(BorrowKind::Ref, Mutability::Not, inner) = ex.kind {
1198         first_sugg = once((span, Sugg::hir_with_macro_callsite(cx, inner, "..").to_string()));
1199         msg = "try";
1200         title = "you don't need to add `&` to both the expression and the patterns";
1201     } else {
1202         first_sugg = once((span, Sugg::hir_with_macro_callsite(cx, ex, "..").deref().to_string()));
1203         msg = "instead of prefixing all patterns with `&`, you can dereference the expression";
1204         title = "you don't need to add `&` to all patterns";
1205     }
1206
1207     let remaining_suggs = pats.filter_map(|pat| {
1208         if let PatKind::Ref(refp, _) = pat.kind {
1209             Some((pat.span, snippet(cx, refp.span, "..").to_string()))
1210         } else {
1211             None
1212         }
1213     });
1214
1215     span_lint_and_then(cx, MATCH_REF_PATS, expr.span, title, |diag| {
1216         if !expr.span.from_expansion() {
1217             multispan_sugg(diag, msg, first_sugg.chain(remaining_suggs));
1218         }
1219     });
1220 }
1221
1222 fn check_match_as_ref(cx: &LateContext<'_>, ex: &Expr<'_>, arms: &[Arm<'_>], expr: &Expr<'_>) {
1223     if arms.len() == 2 && arms[0].guard.is_none() && arms[1].guard.is_none() {
1224         let arm_ref: Option<BindingAnnotation> = if is_none_arm(cx, &arms[0]) {
1225             is_ref_some_arm(cx, &arms[1])
1226         } else if is_none_arm(cx, &arms[1]) {
1227             is_ref_some_arm(cx, &arms[0])
1228         } else {
1229             None
1230         };
1231         if let Some(rb) = arm_ref {
1232             let suggestion = if rb == BindingAnnotation::Ref {
1233                 "as_ref"
1234             } else {
1235                 "as_mut"
1236             };
1237
1238             let output_ty = cx.typeck_results().expr_ty(expr);
1239             let input_ty = cx.typeck_results().expr_ty(ex);
1240
1241             let cast = if_chain! {
1242                 if let ty::Adt(_, substs) = input_ty.kind();
1243                 let input_ty = substs.type_at(0);
1244                 if let ty::Adt(_, substs) = output_ty.kind();
1245                 let output_ty = substs.type_at(0);
1246                 if let ty::Ref(_, output_ty, _) = *output_ty.kind();
1247                 if input_ty != output_ty;
1248                 then {
1249                     ".map(|x| x as _)"
1250                 } else {
1251                     ""
1252                 }
1253             };
1254
1255             let mut applicability = Applicability::MachineApplicable;
1256             span_lint_and_sugg(
1257                 cx,
1258                 MATCH_AS_REF,
1259                 expr.span,
1260                 &format!("use `{}()` instead", suggestion),
1261                 "try this",
1262                 format!(
1263                     "{}.{}(){}",
1264                     snippet_with_applicability(cx, ex.span, "_", &mut applicability),
1265                     suggestion,
1266                     cast,
1267                 ),
1268                 applicability,
1269             );
1270         }
1271     }
1272 }
1273
1274 fn check_wild_in_or_pats(cx: &LateContext<'_>, arms: &[Arm<'_>]) {
1275     for arm in arms {
1276         if let PatKind::Or(fields) = arm.pat.kind {
1277             // look for multiple fields in this arm that contains at least one Wild pattern
1278             if fields.len() > 1 && fields.iter().any(is_wild) {
1279                 span_lint_and_help(
1280                     cx,
1281                     WILDCARD_IN_OR_PATTERNS,
1282                     arm.pat.span,
1283                     "wildcard pattern covers any other pattern as it will match anyway",
1284                     None,
1285                     "consider handling `_` separately",
1286                 );
1287             }
1288         }
1289     }
1290 }
1291
1292 /// Lint a `match` or `if let .. { .. } else { .. }` expr that could be replaced by `matches!`
1293 fn check_match_like_matches<'tcx>(cx: &LateContext<'tcx>, expr: &'tcx Expr<'_>) -> bool {
1294     if let Some(higher::IfLet {
1295         let_pat,
1296         let_expr,
1297         if_then,
1298         if_else: Some(if_else),
1299     }) = higher::IfLet::hir(cx, expr)
1300     {
1301         return find_matches_sugg(
1302             cx,
1303             let_expr,
1304             array::IntoIter::new([(&[][..], Some(let_pat), if_then, None), (&[][..], None, if_else, None)]),
1305             expr,
1306             true,
1307         );
1308     }
1309
1310     if let ExprKind::Match(scrut, arms, MatchSource::Normal) = expr.kind {
1311         return find_matches_sugg(
1312             cx,
1313             scrut,
1314             arms.iter().map(|arm| {
1315                 (
1316                     cx.tcx.hir().attrs(arm.hir_id),
1317                     Some(arm.pat),
1318                     arm.body,
1319                     arm.guard.as_ref(),
1320                 )
1321             }),
1322             expr,
1323             false,
1324         );
1325     }
1326
1327     false
1328 }
1329
1330 /// Lint a `match` or `if let` for replacement by `matches!`
1331 fn find_matches_sugg<'a, 'b, I>(
1332     cx: &LateContext<'_>,
1333     ex: &Expr<'_>,
1334     mut iter: I,
1335     expr: &Expr<'_>,
1336     is_if_let: bool,
1337 ) -> bool
1338 where
1339     'b: 'a,
1340     I: Clone
1341         + DoubleEndedIterator
1342         + ExactSizeIterator
1343         + Iterator<
1344             Item = (
1345                 &'a [Attribute],
1346                 Option<&'a Pat<'b>>,
1347                 &'a Expr<'b>,
1348                 Option<&'a Guard<'b>>,
1349             ),
1350         >,
1351 {
1352     if_chain! {
1353         if iter.len() >= 2;
1354         if cx.typeck_results().expr_ty(expr).is_bool();
1355         if let Some((_, last_pat_opt, last_expr, _)) = iter.next_back();
1356         let iter_without_last = iter.clone();
1357         if let Some((first_attrs, _, first_expr, first_guard)) = iter.next();
1358         if let Some(b0) = find_bool_lit(&first_expr.kind, is_if_let);
1359         if let Some(b1) = find_bool_lit(&last_expr.kind, is_if_let);
1360         if b0 != b1;
1361         if first_guard.is_none() || iter.len() == 0;
1362         if first_attrs.is_empty();
1363         if iter
1364             .all(|arm| {
1365                 find_bool_lit(&arm.2.kind, is_if_let).map_or(false, |b| b == b0) && arm.3.is_none() && arm.0.is_empty()
1366             });
1367         then {
1368             if let Some(last_pat) = last_pat_opt {
1369                 if !is_wild(last_pat) {
1370                     return false;
1371                 }
1372             }
1373
1374             // The suggestion may be incorrect, because some arms can have `cfg` attributes
1375             // evaluated into `false` and so such arms will be stripped before.
1376             let mut applicability = Applicability::MaybeIncorrect;
1377             let pat = {
1378                 use itertools::Itertools as _;
1379                 iter_without_last
1380                     .filter_map(|arm| {
1381                         let pat_span = arm.1?.span;
1382                         Some(snippet_with_applicability(cx, pat_span, "..", &mut applicability))
1383                     })
1384                     .join(" | ")
1385             };
1386             let pat_and_guard = if let Some(Guard::If(g)) = first_guard {
1387                 format!("{} if {}", pat, snippet_with_applicability(cx, g.span, "..", &mut applicability))
1388             } else {
1389                 pat
1390             };
1391
1392             // strip potential borrows (#6503), but only if the type is a reference
1393             let mut ex_new = ex;
1394             if let ExprKind::AddrOf(BorrowKind::Ref, .., ex_inner) = ex.kind {
1395                 if let ty::Ref(..) = cx.typeck_results().expr_ty(ex_inner).kind() {
1396                     ex_new = ex_inner;
1397                 }
1398             };
1399             span_lint_and_sugg(
1400                 cx,
1401                 MATCH_LIKE_MATCHES_MACRO,
1402                 expr.span,
1403                 &format!("{} expression looks like `matches!` macro", if is_if_let { "if let .. else" } else { "match" }),
1404                 "try this",
1405                 format!(
1406                     "{}matches!({}, {})",
1407                     if b0 { "" } else { "!" },
1408                     snippet_with_applicability(cx, ex_new.span, "..", &mut applicability),
1409                     pat_and_guard,
1410                 ),
1411                 applicability,
1412             );
1413             true
1414         } else {
1415             false
1416         }
1417     }
1418 }
1419
1420 /// Extract a `bool` or `{ bool }`
1421 fn find_bool_lit(ex: &ExprKind<'_>, is_if_let: bool) -> Option<bool> {
1422     match ex {
1423         ExprKind::Lit(Spanned {
1424             node: LitKind::Bool(b), ..
1425         }) => Some(*b),
1426         ExprKind::Block(
1427             rustc_hir::Block {
1428                 stmts: &[],
1429                 expr: Some(exp),
1430                 ..
1431             },
1432             _,
1433         ) if is_if_let => {
1434             if let ExprKind::Lit(Spanned {
1435                 node: LitKind::Bool(b), ..
1436             }) = exp.kind
1437             {
1438                 Some(b)
1439             } else {
1440                 None
1441             }
1442         },
1443         _ => None,
1444     }
1445 }
1446
1447 #[allow(clippy::too_many_lines)]
1448 fn check_match_single_binding<'a>(cx: &LateContext<'a>, ex: &Expr<'a>, arms: &[Arm<'_>], expr: &Expr<'_>) {
1449     if in_macro(expr.span) || arms.len() != 1 || is_refutable(cx, arms[0].pat) {
1450         return;
1451     }
1452
1453     // HACK:
1454     // This is a hack to deal with arms that are excluded by macros like `#[cfg]`. It is only used here
1455     // to prevent false positives as there is currently no better way to detect if code was excluded by
1456     // a macro. See PR #6435
1457     if_chain! {
1458         if let Some(match_snippet) = snippet_opt(cx, expr.span);
1459         if let Some(arm_snippet) = snippet_opt(cx, arms[0].span);
1460         if let Some(ex_snippet) = snippet_opt(cx, ex.span);
1461         let rest_snippet = match_snippet.replace(&arm_snippet, "").replace(&ex_snippet, "");
1462         if rest_snippet.contains("=>");
1463         then {
1464             // The code it self contains another thick arrow "=>"
1465             // -> Either another arm or a comment
1466             return;
1467         }
1468     }
1469
1470     let matched_vars = ex.span;
1471     let bind_names = arms[0].pat.span;
1472     let match_body = remove_blocks(arms[0].body);
1473     let mut snippet_body = if match_body.span.from_expansion() {
1474         Sugg::hir_with_macro_callsite(cx, match_body, "..").to_string()
1475     } else {
1476         snippet_block(cx, match_body.span, "..", Some(expr.span)).to_string()
1477     };
1478
1479     // Do we need to add ';' to suggestion ?
1480     match match_body.kind {
1481         ExprKind::Block(block, _) => {
1482             // macro + expr_ty(body) == ()
1483             if block.span.from_expansion() && cx.typeck_results().expr_ty(match_body).is_unit() {
1484                 snippet_body.push(';');
1485             }
1486         },
1487         _ => {
1488             // expr_ty(body) == ()
1489             if cx.typeck_results().expr_ty(match_body).is_unit() {
1490                 snippet_body.push(';');
1491             }
1492         },
1493     }
1494
1495     let mut applicability = Applicability::MaybeIncorrect;
1496     match arms[0].pat.kind {
1497         PatKind::Binding(..) | PatKind::Tuple(_, _) | PatKind::Struct(..) => {
1498             // If this match is in a local (`let`) stmt
1499             let (target_span, sugg) = if let Some(parent_let_node) = opt_parent_let(cx, ex) {
1500                 (
1501                     parent_let_node.span,
1502                     format!(
1503                         "let {} = {};\n{}let {} = {};",
1504                         snippet_with_applicability(cx, bind_names, "..", &mut applicability),
1505                         snippet_with_applicability(cx, matched_vars, "..", &mut applicability),
1506                         " ".repeat(indent_of(cx, expr.span).unwrap_or(0)),
1507                         snippet_with_applicability(cx, parent_let_node.pat.span, "..", &mut applicability),
1508                         snippet_body
1509                     ),
1510                 )
1511             } else {
1512                 // If we are in closure, we need curly braces around suggestion
1513                 let mut indent = " ".repeat(indent_of(cx, ex.span).unwrap_or(0));
1514                 let (mut cbrace_start, mut cbrace_end) = ("".to_string(), "".to_string());
1515                 if let Some(parent_expr) = get_parent_expr(cx, expr) {
1516                     if let ExprKind::Closure(..) = parent_expr.kind {
1517                         cbrace_end = format!("\n{}}}", indent);
1518                         // Fix body indent due to the closure
1519                         indent = " ".repeat(indent_of(cx, bind_names).unwrap_or(0));
1520                         cbrace_start = format!("{{\n{}", indent);
1521                     }
1522                 }
1523                 // If the parent is already an arm, and the body is another match statement,
1524                 // we need curly braces around suggestion
1525                 let parent_node_id = cx.tcx.hir().get_parent_node(expr.hir_id);
1526                 if let Node::Arm(arm) = &cx.tcx.hir().get(parent_node_id) {
1527                     if let ExprKind::Match(..) = arm.body.kind {
1528                         cbrace_end = format!("\n{}}}", indent);
1529                         // Fix body indent due to the match
1530                         indent = " ".repeat(indent_of(cx, bind_names).unwrap_or(0));
1531                         cbrace_start = format!("{{\n{}", indent);
1532                     }
1533                 }
1534                 (
1535                     expr.span,
1536                     format!(
1537                         "{}let {} = {};\n{}{}{}",
1538                         cbrace_start,
1539                         snippet_with_applicability(cx, bind_names, "..", &mut applicability),
1540                         snippet_with_applicability(cx, matched_vars, "..", &mut applicability),
1541                         indent,
1542                         snippet_body,
1543                         cbrace_end
1544                     ),
1545                 )
1546             };
1547             span_lint_and_sugg(
1548                 cx,
1549                 MATCH_SINGLE_BINDING,
1550                 target_span,
1551                 "this match could be written as a `let` statement",
1552                 "consider using `let` statement",
1553                 sugg,
1554                 applicability,
1555             );
1556         },
1557         PatKind::Wild => {
1558             if ex.can_have_side_effects() {
1559                 let indent = " ".repeat(indent_of(cx, expr.span).unwrap_or(0));
1560                 let sugg = format!(
1561                     "{};\n{}{}",
1562                     snippet_with_applicability(cx, ex.span, "..", &mut applicability),
1563                     indent,
1564                     snippet_body
1565                 );
1566                 span_lint_and_sugg(
1567                     cx,
1568                     MATCH_SINGLE_BINDING,
1569                     expr.span,
1570                     "this match could be replaced by its scrutinee and body",
1571                     "consider using the scrutinee and body instead",
1572                     sugg,
1573                     applicability,
1574                 );
1575             } else {
1576                 span_lint_and_sugg(
1577                     cx,
1578                     MATCH_SINGLE_BINDING,
1579                     expr.span,
1580                     "this match could be replaced by its body itself",
1581                     "consider using the match body instead",
1582                     snippet_body,
1583                     Applicability::MachineApplicable,
1584                 );
1585             }
1586         },
1587         _ => (),
1588     }
1589 }
1590
1591 /// Returns true if the `ex` match expression is in a local (`let`) statement
1592 fn opt_parent_let<'a>(cx: &LateContext<'a>, ex: &Expr<'a>) -> Option<&'a Local<'a>> {
1593     let map = &cx.tcx.hir();
1594     if_chain! {
1595         if let Some(Node::Expr(parent_arm_expr)) = map.find(map.get_parent_node(ex.hir_id));
1596         if let Some(Node::Local(parent_let_expr)) = map.find(map.get_parent_node(parent_arm_expr.hir_id));
1597         then {
1598             return Some(parent_let_expr);
1599         }
1600     }
1601     None
1602 }
1603
1604 /// Gets all arms that are unbounded `PatRange`s.
1605 fn all_ranges<'tcx>(cx: &LateContext<'tcx>, arms: &'tcx [Arm<'_>], ty: Ty<'tcx>) -> Vec<SpannedRange<Constant>> {
1606     arms.iter()
1607         .filter_map(|arm| {
1608             if let Arm { pat, guard: None, .. } = *arm {
1609                 if let PatKind::Range(ref lhs, ref rhs, range_end) = pat.kind {
1610                     let lhs = match lhs {
1611                         Some(lhs) => constant(cx, cx.typeck_results(), lhs)?.0,
1612                         None => miri_to_const(ty.numeric_min_val(cx.tcx)?)?,
1613                     };
1614                     let rhs = match rhs {
1615                         Some(rhs) => constant(cx, cx.typeck_results(), rhs)?.0,
1616                         None => miri_to_const(ty.numeric_max_val(cx.tcx)?)?,
1617                     };
1618                     let rhs = match range_end {
1619                         RangeEnd::Included => Bound::Included(rhs),
1620                         RangeEnd::Excluded => Bound::Excluded(rhs),
1621                     };
1622                     return Some(SpannedRange {
1623                         span: pat.span,
1624                         node: (lhs, rhs),
1625                     });
1626                 }
1627
1628                 if let PatKind::Lit(value) = pat.kind {
1629                     let value = constant(cx, cx.typeck_results(), value)?.0;
1630                     return Some(SpannedRange {
1631                         span: pat.span,
1632                         node: (value.clone(), Bound::Included(value)),
1633                     });
1634                 }
1635             }
1636             None
1637         })
1638         .collect()
1639 }
1640
1641 #[derive(Debug, Eq, PartialEq)]
1642 pub struct SpannedRange<T> {
1643     pub span: Span,
1644     pub node: (T, Bound<T>),
1645 }
1646
1647 type TypedRanges = Vec<SpannedRange<u128>>;
1648
1649 /// Gets all `Int` ranges or all `Uint` ranges. Mixed types are an error anyway
1650 /// and other types than
1651 /// `Uint` and `Int` probably don't make sense.
1652 fn type_ranges(ranges: &[SpannedRange<Constant>]) -> TypedRanges {
1653     ranges
1654         .iter()
1655         .filter_map(|range| match range.node {
1656             (Constant::Int(start), Bound::Included(Constant::Int(end))) => Some(SpannedRange {
1657                 span: range.span,
1658                 node: (start, Bound::Included(end)),
1659             }),
1660             (Constant::Int(start), Bound::Excluded(Constant::Int(end))) => Some(SpannedRange {
1661                 span: range.span,
1662                 node: (start, Bound::Excluded(end)),
1663             }),
1664             (Constant::Int(start), Bound::Unbounded) => Some(SpannedRange {
1665                 span: range.span,
1666                 node: (start, Bound::Unbounded),
1667             }),
1668             _ => None,
1669         })
1670         .collect()
1671 }
1672
1673 // Checks if arm has the form `None => None`
1674 fn is_none_arm(cx: &LateContext<'_>, arm: &Arm<'_>) -> bool {
1675     matches!(arm.pat.kind, PatKind::Path(ref qpath) if is_lang_ctor(cx, qpath, OptionNone))
1676 }
1677
1678 // Checks if arm has the form `Some(ref v) => Some(v)` (checks for `ref` and `ref mut`)
1679 fn is_ref_some_arm(cx: &LateContext<'_>, arm: &Arm<'_>) -> Option<BindingAnnotation> {
1680     if_chain! {
1681         if let PatKind::TupleStruct(ref qpath, [first_pat, ..], _) = arm.pat.kind;
1682         if is_lang_ctor(cx, qpath, OptionSome);
1683         if let PatKind::Binding(rb, .., ident, _) = first_pat.kind;
1684         if rb == BindingAnnotation::Ref || rb == BindingAnnotation::RefMut;
1685         if let ExprKind::Call(e, args) = remove_blocks(arm.body).kind;
1686         if let ExprKind::Path(ref some_path) = e.kind;
1687         if is_lang_ctor(cx, some_path, OptionSome) && args.len() == 1;
1688         if let ExprKind::Path(QPath::Resolved(_, path2)) = args[0].kind;
1689         if path2.segments.len() == 1 && ident.name == path2.segments[0].ident.name;
1690         then {
1691             return Some(rb)
1692         }
1693     }
1694     None
1695 }
1696
1697 fn has_only_ref_pats<'a, 'b, I>(pats: I) -> bool
1698 where
1699     'b: 'a,
1700     I: Iterator<Item = &'a Pat<'b>>,
1701 {
1702     let mut at_least_one_is_true = false;
1703     for opt in pats.map(|pat| match pat.kind {
1704         PatKind::Ref(..) => Some(true), // &-patterns
1705         PatKind::Wild => Some(false),   // an "anything" wildcard is also fine
1706         _ => None,                      // any other pattern is not fine
1707     }) {
1708         if let Some(inner) = opt {
1709             if inner {
1710                 at_least_one_is_true = true;
1711             }
1712         } else {
1713             return false;
1714         }
1715     }
1716     at_least_one_is_true
1717 }
1718
1719 pub fn overlapping<T>(ranges: &[SpannedRange<T>]) -> Option<(&SpannedRange<T>, &SpannedRange<T>)>
1720 where
1721     T: Copy + Ord,
1722 {
1723     #[derive(Copy, Clone, Debug, Eq, PartialEq)]
1724     enum Kind<'a, T> {
1725         Start(T, &'a SpannedRange<T>),
1726         End(Bound<T>, &'a SpannedRange<T>),
1727     }
1728
1729     impl<'a, T: Copy> Kind<'a, T> {
1730         fn range(&self) -> &'a SpannedRange<T> {
1731             match *self {
1732                 Kind::Start(_, r) | Kind::End(_, r) => r,
1733             }
1734         }
1735
1736         fn value(self) -> Bound<T> {
1737             match self {
1738                 Kind::Start(t, _) => Bound::Included(t),
1739                 Kind::End(t, _) => t,
1740             }
1741         }
1742     }
1743
1744     impl<'a, T: Copy + Ord> PartialOrd for Kind<'a, T> {
1745         fn partial_cmp(&self, other: &Self) -> Option<Ordering> {
1746             Some(self.cmp(other))
1747         }
1748     }
1749
1750     impl<'a, T: Copy + Ord> Ord for Kind<'a, T> {
1751         fn cmp(&self, other: &Self) -> Ordering {
1752             match (self.value(), other.value()) {
1753                 (Bound::Included(a), Bound::Included(b)) | (Bound::Excluded(a), Bound::Excluded(b)) => a.cmp(&b),
1754                 // Range patterns cannot be unbounded (yet)
1755                 (Bound::Unbounded, _) | (_, Bound::Unbounded) => unimplemented!(),
1756                 (Bound::Included(a), Bound::Excluded(b)) => match a.cmp(&b) {
1757                     Ordering::Equal => Ordering::Greater,
1758                     other => other,
1759                 },
1760                 (Bound::Excluded(a), Bound::Included(b)) => match a.cmp(&b) {
1761                     Ordering::Equal => Ordering::Less,
1762                     other => other,
1763                 },
1764             }
1765         }
1766     }
1767
1768     let mut values = Vec::with_capacity(2 * ranges.len());
1769
1770     for r in ranges {
1771         values.push(Kind::Start(r.node.0, r));
1772         values.push(Kind::End(r.node.1, r));
1773     }
1774
1775     values.sort();
1776
1777     for (a, b) in iter::zip(&values, values.iter().skip(1)) {
1778         match (a, b) {
1779             (&Kind::Start(_, ra), &Kind::End(_, rb)) => {
1780                 if ra.node != rb.node {
1781                     return Some((ra, rb));
1782                 }
1783             },
1784             (&Kind::End(a, _), &Kind::Start(b, _)) if a != Bound::Included(b) => (),
1785             _ => {
1786                 // skip if the range `a` is completely included into the range `b`
1787                 if let Ordering::Equal | Ordering::Less = a.cmp(b) {
1788                     let kind_a = Kind::End(a.range().node.1, a.range());
1789                     let kind_b = Kind::End(b.range().node.1, b.range());
1790                     if let Ordering::Equal | Ordering::Greater = kind_a.cmp(&kind_b) {
1791                         return None;
1792                     }
1793                 }
1794                 return Some((a.range(), b.range()));
1795             },
1796         }
1797     }
1798
1799     None
1800 }
1801
1802 mod redundant_pattern_match {
1803     use super::REDUNDANT_PATTERN_MATCHING;
1804     use clippy_utils::diagnostics::span_lint_and_then;
1805     use clippy_utils::higher;
1806     use clippy_utils::source::{snippet, snippet_with_applicability};
1807     use clippy_utils::ty::{implements_trait, is_type_diagnostic_item, is_type_lang_item, match_type};
1808     use clippy_utils::{is_lang_ctor, is_qpath_def_path, is_trait_method, paths};
1809     use if_chain::if_chain;
1810     use rustc_ast::ast::LitKind;
1811     use rustc_data_structures::fx::FxHashSet;
1812     use rustc_errors::Applicability;
1813     use rustc_hir::LangItem::{OptionNone, OptionSome, PollPending, PollReady, ResultErr, ResultOk};
1814     use rustc_hir::{
1815         intravisit::{walk_expr, ErasedMap, NestedVisitorMap, Visitor},
1816         Arm, Block, Expr, ExprKind, LangItem, MatchSource, Node, Pat, PatKind, QPath,
1817     };
1818     use rustc_lint::LateContext;
1819     use rustc_middle::ty::{self, subst::GenericArgKind, Ty};
1820     use rustc_span::sym;
1821
1822     pub fn check<'tcx>(cx: &LateContext<'tcx>, expr: &'tcx Expr<'_>) {
1823         if let Some(higher::IfLet {
1824             if_else,
1825             let_pat,
1826             let_expr,
1827             ..
1828         }) = higher::IfLet::hir(cx, expr)
1829         {
1830             find_sugg_for_if_let(cx, expr, let_pat, let_expr, "if", if_else.is_some());
1831         }
1832         if let ExprKind::Match(op, arms, MatchSource::Normal) = &expr.kind {
1833             find_sugg_for_match(cx, expr, op, arms);
1834         }
1835         if let Some(higher::WhileLet { let_pat, let_expr, .. }) = higher::WhileLet::hir(expr) {
1836             find_sugg_for_if_let(cx, expr, let_pat, let_expr, "while", false);
1837         }
1838     }
1839
1840     /// Checks if the drop order for a type matters. Some std types implement drop solely to
1841     /// deallocate memory. For these types, and composites containing them, changing the drop order
1842     /// won't result in any observable side effects.
1843     fn type_needs_ordered_drop(cx: &LateContext<'tcx>, ty: Ty<'tcx>) -> bool {
1844         type_needs_ordered_drop_inner(cx, ty, &mut FxHashSet::default())
1845     }
1846
1847     fn type_needs_ordered_drop_inner(cx: &LateContext<'tcx>, ty: Ty<'tcx>, seen: &mut FxHashSet<Ty<'tcx>>) -> bool {
1848         if !seen.insert(ty) {
1849             return false;
1850         }
1851         if !ty.needs_drop(cx.tcx, cx.param_env) {
1852             false
1853         } else if !cx
1854             .tcx
1855             .lang_items()
1856             .drop_trait()
1857             .map_or(false, |id| implements_trait(cx, ty, id, &[]))
1858         {
1859             // This type doesn't implement drop, so no side effects here.
1860             // Check if any component type has any.
1861             match ty.kind() {
1862                 ty::Tuple(_) => ty.tuple_fields().any(|ty| type_needs_ordered_drop_inner(cx, ty, seen)),
1863                 ty::Array(ty, _) => type_needs_ordered_drop_inner(cx, ty, seen),
1864                 ty::Adt(adt, subs) => adt
1865                     .all_fields()
1866                     .map(|f| f.ty(cx.tcx, subs))
1867                     .any(|ty| type_needs_ordered_drop_inner(cx, ty, seen)),
1868                 _ => true,
1869             }
1870         }
1871         // Check for std types which implement drop, but only for memory allocation.
1872         else if is_type_diagnostic_item(cx, ty, sym::vec_type)
1873             || is_type_lang_item(cx, ty, LangItem::OwnedBox)
1874             || is_type_diagnostic_item(cx, ty, sym::Rc)
1875             || is_type_diagnostic_item(cx, ty, sym::Arc)
1876             || is_type_diagnostic_item(cx, ty, sym::cstring_type)
1877             || is_type_diagnostic_item(cx, ty, sym::BTreeMap)
1878             || is_type_diagnostic_item(cx, ty, sym::LinkedList)
1879             || match_type(cx, ty, &paths::WEAK_RC)
1880             || match_type(cx, ty, &paths::WEAK_ARC)
1881         {
1882             // Check all of the generic arguments.
1883             if let ty::Adt(_, subs) = ty.kind() {
1884                 subs.types().any(|ty| type_needs_ordered_drop_inner(cx, ty, seen))
1885             } else {
1886                 true
1887             }
1888         } else {
1889             true
1890         }
1891     }
1892
1893     // Extract the generic arguments out of a type
1894     fn try_get_generic_ty(ty: Ty<'_>, index: usize) -> Option<Ty<'_>> {
1895         if_chain! {
1896             if let ty::Adt(_, subs) = ty.kind();
1897             if let Some(sub) = subs.get(index);
1898             if let GenericArgKind::Type(sub_ty) = sub.unpack();
1899             then {
1900                 Some(sub_ty)
1901             } else {
1902                 None
1903             }
1904         }
1905     }
1906
1907     // Checks if there are any temporaries created in the given expression for which drop order
1908     // matters.
1909     fn temporaries_need_ordered_drop(cx: &LateContext<'tcx>, expr: &'tcx Expr<'tcx>) -> bool {
1910         struct V<'a, 'tcx> {
1911             cx: &'a LateContext<'tcx>,
1912             res: bool,
1913         }
1914         impl<'a, 'tcx> Visitor<'tcx> for V<'a, 'tcx> {
1915             type Map = ErasedMap<'tcx>;
1916             fn nested_visit_map(&mut self) -> NestedVisitorMap<Self::Map> {
1917                 NestedVisitorMap::None
1918             }
1919
1920             fn visit_expr(&mut self, expr: &'tcx Expr<'tcx>) {
1921                 match expr.kind {
1922                     // Taking the reference of a value leaves a temporary
1923                     // e.g. In `&String::new()` the string is a temporary value.
1924                     // Remaining fields are temporary values
1925                     // e.g. In `(String::new(), 0).1` the string is a temporary value.
1926                     ExprKind::AddrOf(_, _, expr) | ExprKind::Field(expr, _) => {
1927                         if !matches!(expr.kind, ExprKind::Path(_)) {
1928                             if type_needs_ordered_drop(self.cx, self.cx.typeck_results().expr_ty(expr)) {
1929                                 self.res = true;
1930                             } else {
1931                                 self.visit_expr(expr);
1932                             }
1933                         }
1934                     },
1935                     // the base type is alway taken by reference.
1936                     // e.g. In `(vec![0])[0]` the vector is a temporary value.
1937                     ExprKind::Index(base, index) => {
1938                         if !matches!(base.kind, ExprKind::Path(_)) {
1939                             if type_needs_ordered_drop(self.cx, self.cx.typeck_results().expr_ty(base)) {
1940                                 self.res = true;
1941                             } else {
1942                                 self.visit_expr(base);
1943                             }
1944                         }
1945                         self.visit_expr(index);
1946                     },
1947                     // Method calls can take self by reference.
1948                     // e.g. In `String::new().len()` the string is a temporary value.
1949                     ExprKind::MethodCall(_, _, [self_arg, args @ ..], _) => {
1950                         if !matches!(self_arg.kind, ExprKind::Path(_)) {
1951                             let self_by_ref = self
1952                                 .cx
1953                                 .typeck_results()
1954                                 .type_dependent_def_id(expr.hir_id)
1955                                 .map_or(false, |id| self.cx.tcx.fn_sig(id).skip_binder().inputs()[0].is_ref());
1956                             if self_by_ref
1957                                 && type_needs_ordered_drop(self.cx, self.cx.typeck_results().expr_ty(self_arg))
1958                             {
1959                                 self.res = true;
1960                             } else {
1961                                 self.visit_expr(self_arg);
1962                             }
1963                         }
1964                         args.iter().for_each(|arg| self.visit_expr(arg));
1965                     },
1966                     // Either explicitly drops values, or changes control flow.
1967                     ExprKind::DropTemps(_)
1968                     | ExprKind::Ret(_)
1969                     | ExprKind::Break(..)
1970                     | ExprKind::Yield(..)
1971                     | ExprKind::Block(Block { expr: None, .. }, _)
1972                     | ExprKind::Loop(..) => (),
1973
1974                     // Only consider the final expression.
1975                     ExprKind::Block(Block { expr: Some(expr), .. }, _) => self.visit_expr(expr),
1976
1977                     _ => walk_expr(self, expr),
1978                 }
1979             }
1980         }
1981
1982         let mut v = V { cx, res: false };
1983         v.visit_expr(expr);
1984         v.res
1985     }
1986
1987     fn find_sugg_for_if_let<'tcx>(
1988         cx: &LateContext<'tcx>,
1989         expr: &'tcx Expr<'_>,
1990         let_pat: &Pat<'_>,
1991         let_expr: &'tcx Expr<'_>,
1992         keyword: &'static str,
1993         has_else: bool,
1994     ) {
1995         // also look inside refs
1996         let mut kind = &let_pat.kind;
1997         // if we have &None for example, peel it so we can detect "if let None = x"
1998         if let PatKind::Ref(inner, _mutability) = kind {
1999             kind = &inner.kind;
2000         }
2001         let op_ty = cx.typeck_results().expr_ty(let_expr);
2002         // Determine which function should be used, and the type contained by the corresponding
2003         // variant.
2004         let (good_method, inner_ty) = match kind {
2005             PatKind::TupleStruct(ref path, [sub_pat], _) => {
2006                 if let PatKind::Wild = sub_pat.kind {
2007                     if is_lang_ctor(cx, path, ResultOk) {
2008                         ("is_ok()", try_get_generic_ty(op_ty, 0).unwrap_or(op_ty))
2009                     } else if is_lang_ctor(cx, path, ResultErr) {
2010                         ("is_err()", try_get_generic_ty(op_ty, 1).unwrap_or(op_ty))
2011                     } else if is_lang_ctor(cx, path, OptionSome) {
2012                         ("is_some()", op_ty)
2013                     } else if is_lang_ctor(cx, path, PollReady) {
2014                         ("is_ready()", op_ty)
2015                     } else if is_qpath_def_path(cx, path, sub_pat.hir_id, &paths::IPADDR_V4) {
2016                         ("is_ipv4()", op_ty)
2017                     } else if is_qpath_def_path(cx, path, sub_pat.hir_id, &paths::IPADDR_V6) {
2018                         ("is_ipv6()", op_ty)
2019                     } else {
2020                         return;
2021                     }
2022                 } else {
2023                     return;
2024                 }
2025             },
2026             PatKind::Path(ref path) => {
2027                 let method = if is_lang_ctor(cx, path, OptionNone) {
2028                     "is_none()"
2029                 } else if is_lang_ctor(cx, path, PollPending) {
2030                     "is_pending()"
2031                 } else {
2032                     return;
2033                 };
2034                 // `None` and `Pending` don't have an inner type.
2035                 (method, cx.tcx.types.unit)
2036             },
2037             _ => return,
2038         };
2039
2040         // If this is the last expression in a block or there is an else clause then the whole
2041         // type needs to be considered, not just the inner type of the branch being matched on.
2042         // Note the last expression in a block is dropped after all local bindings.
2043         let check_ty = if has_else
2044             || (keyword == "if" && matches!(cx.tcx.hir().parent_iter(expr.hir_id).next(), Some((_, Node::Block(..)))))
2045         {
2046             op_ty
2047         } else {
2048             inner_ty
2049         };
2050
2051         // All temporaries created in the scrutinee expression are dropped at the same time as the
2052         // scrutinee would be, so they have to be considered as well.
2053         // e.g. in `if let Some(x) = foo.lock().unwrap().baz.as_ref() { .. }` the lock will be held
2054         // for the duration if body.
2055         let needs_drop = type_needs_ordered_drop(cx, check_ty) || temporaries_need_ordered_drop(cx, let_expr);
2056
2057         // check that `while_let_on_iterator` lint does not trigger
2058         if_chain! {
2059             if keyword == "while";
2060             if let ExprKind::MethodCall(method_path, _, _, _) = let_expr.kind;
2061             if method_path.ident.name == sym::next;
2062             if is_trait_method(cx, let_expr, sym::Iterator);
2063             then {
2064                 return;
2065             }
2066         }
2067
2068         let result_expr = match &let_expr.kind {
2069             ExprKind::AddrOf(_, _, borrowed) => borrowed,
2070             _ => let_expr,
2071         };
2072         span_lint_and_then(
2073             cx,
2074             REDUNDANT_PATTERN_MATCHING,
2075             let_pat.span,
2076             &format!("redundant pattern matching, consider using `{}`", good_method),
2077             |diag| {
2078                 // if/while let ... = ... { ... }
2079                 // ^^^^^^^^^^^^^^^^^^^^^^^^^^^
2080                 let expr_span = expr.span;
2081
2082                 // if/while let ... = ... { ... }
2083                 //                 ^^^
2084                 let op_span = result_expr.span.source_callsite();
2085
2086                 // if/while let ... = ... { ... }
2087                 // ^^^^^^^^^^^^^^^^^^^
2088                 let span = expr_span.until(op_span.shrink_to_hi());
2089
2090                 let mut app = if needs_drop {
2091                     Applicability::MaybeIncorrect
2092                 } else {
2093                     Applicability::MachineApplicable
2094                 };
2095                 let sugg = snippet_with_applicability(cx, op_span, "_", &mut app);
2096
2097                 diag.span_suggestion(span, "try this", format!("{} {}.{}", keyword, sugg, good_method), app);
2098
2099                 if needs_drop {
2100                     diag.note("this will change drop order of the result, as well as all temporaries");
2101                     diag.note("add `#[allow(clippy::redundant_pattern_matching)]` if this is important");
2102                 }
2103             },
2104         );
2105     }
2106
2107     fn find_sugg_for_match<'tcx>(cx: &LateContext<'tcx>, expr: &'tcx Expr<'_>, op: &Expr<'_>, arms: &[Arm<'_>]) {
2108         if arms.len() == 2 {
2109             let node_pair = (&arms[0].pat.kind, &arms[1].pat.kind);
2110
2111             let found_good_method = match node_pair {
2112                 (
2113                     PatKind::TupleStruct(ref path_left, patterns_left, _),
2114                     PatKind::TupleStruct(ref path_right, patterns_right, _),
2115                 ) if patterns_left.len() == 1 && patterns_right.len() == 1 => {
2116                     if let (PatKind::Wild, PatKind::Wild) = (&patterns_left[0].kind, &patterns_right[0].kind) {
2117                         find_good_method_for_match(
2118                             cx,
2119                             arms,
2120                             path_left,
2121                             path_right,
2122                             &paths::RESULT_OK,
2123                             &paths::RESULT_ERR,
2124                             "is_ok()",
2125                             "is_err()",
2126                         )
2127                         .or_else(|| {
2128                             find_good_method_for_match(
2129                                 cx,
2130                                 arms,
2131                                 path_left,
2132                                 path_right,
2133                                 &paths::IPADDR_V4,
2134                                 &paths::IPADDR_V6,
2135                                 "is_ipv4()",
2136                                 "is_ipv6()",
2137                             )
2138                         })
2139                     } else {
2140                         None
2141                     }
2142                 },
2143                 (PatKind::TupleStruct(ref path_left, patterns, _), PatKind::Path(ref path_right))
2144                 | (PatKind::Path(ref path_left), PatKind::TupleStruct(ref path_right, patterns, _))
2145                     if patterns.len() == 1 =>
2146                 {
2147                     if let PatKind::Wild = patterns[0].kind {
2148                         find_good_method_for_match(
2149                             cx,
2150                             arms,
2151                             path_left,
2152                             path_right,
2153                             &paths::OPTION_SOME,
2154                             &paths::OPTION_NONE,
2155                             "is_some()",
2156                             "is_none()",
2157                         )
2158                         .or_else(|| {
2159                             find_good_method_for_match(
2160                                 cx,
2161                                 arms,
2162                                 path_left,
2163                                 path_right,
2164                                 &paths::POLL_READY,
2165                                 &paths::POLL_PENDING,
2166                                 "is_ready()",
2167                                 "is_pending()",
2168                             )
2169                         })
2170                     } else {
2171                         None
2172                     }
2173                 },
2174                 _ => None,
2175             };
2176
2177             if let Some(good_method) = found_good_method {
2178                 let span = expr.span.to(op.span);
2179                 let result_expr = match &op.kind {
2180                     ExprKind::AddrOf(_, _, borrowed) => borrowed,
2181                     _ => op,
2182                 };
2183                 span_lint_and_then(
2184                     cx,
2185                     REDUNDANT_PATTERN_MATCHING,
2186                     expr.span,
2187                     &format!("redundant pattern matching, consider using `{}`", good_method),
2188                     |diag| {
2189                         diag.span_suggestion(
2190                             span,
2191                             "try this",
2192                             format!("{}.{}", snippet(cx, result_expr.span, "_"), good_method),
2193                             Applicability::MaybeIncorrect, // snippet
2194                         );
2195                     },
2196                 );
2197             }
2198         }
2199     }
2200
2201     #[allow(clippy::too_many_arguments)]
2202     fn find_good_method_for_match<'a>(
2203         cx: &LateContext<'_>,
2204         arms: &[Arm<'_>],
2205         path_left: &QPath<'_>,
2206         path_right: &QPath<'_>,
2207         expected_left: &[&str],
2208         expected_right: &[&str],
2209         should_be_left: &'a str,
2210         should_be_right: &'a str,
2211     ) -> Option<&'a str> {
2212         let body_node_pair = if is_qpath_def_path(cx, path_left, arms[0].pat.hir_id, expected_left)
2213             && is_qpath_def_path(cx, path_right, arms[1].pat.hir_id, expected_right)
2214         {
2215             (&(*arms[0].body).kind, &(*arms[1].body).kind)
2216         } else if is_qpath_def_path(cx, path_right, arms[1].pat.hir_id, expected_left)
2217             && is_qpath_def_path(cx, path_left, arms[0].pat.hir_id, expected_right)
2218         {
2219             (&(*arms[1].body).kind, &(*arms[0].body).kind)
2220         } else {
2221             return None;
2222         };
2223
2224         match body_node_pair {
2225             (ExprKind::Lit(ref lit_left), ExprKind::Lit(ref lit_right)) => match (&lit_left.node, &lit_right.node) {
2226                 (LitKind::Bool(true), LitKind::Bool(false)) => Some(should_be_left),
2227                 (LitKind::Bool(false), LitKind::Bool(true)) => Some(should_be_right),
2228                 _ => None,
2229             },
2230             _ => None,
2231         }
2232     }
2233 }
2234
2235 #[test]
2236 fn test_overlapping() {
2237     use rustc_span::source_map::DUMMY_SP;
2238
2239     let sp = |s, e| SpannedRange {
2240         span: DUMMY_SP,
2241         node: (s, e),
2242     };
2243
2244     assert_eq!(None, overlapping::<u8>(&[]));
2245     assert_eq!(None, overlapping(&[sp(1, Bound::Included(4))]));
2246     assert_eq!(
2247         None,
2248         overlapping(&[sp(1, Bound::Included(4)), sp(5, Bound::Included(6))])
2249     );
2250     assert_eq!(
2251         None,
2252         overlapping(&[
2253             sp(1, Bound::Included(4)),
2254             sp(5, Bound::Included(6)),
2255             sp(10, Bound::Included(11))
2256         ],)
2257     );
2258     assert_eq!(
2259         Some((&sp(1, Bound::Included(4)), &sp(3, Bound::Included(6)))),
2260         overlapping(&[sp(1, Bound::Included(4)), sp(3, Bound::Included(6))])
2261     );
2262     assert_eq!(
2263         Some((&sp(5, Bound::Included(6)), &sp(6, Bound::Included(11)))),
2264         overlapping(&[
2265             sp(1, Bound::Included(4)),
2266             sp(5, Bound::Included(6)),
2267             sp(6, Bound::Included(11))
2268         ],)
2269     );
2270 }
2271
2272 /// Implementation of `MATCH_SAME_ARMS`.
2273 fn lint_match_arms<'tcx>(cx: &LateContext<'tcx>, expr: &Expr<'_>) {
2274     if let ExprKind::Match(_, arms, MatchSource::Normal) = expr.kind {
2275         let hash = |&(_, arm): &(usize, &Arm<'_>)| -> u64 {
2276             let mut h = SpanlessHash::new(cx);
2277             h.hash_expr(arm.body);
2278             h.finish()
2279         };
2280
2281         let eq = |&(lindex, lhs): &(usize, &Arm<'_>), &(rindex, rhs): &(usize, &Arm<'_>)| -> bool {
2282             let min_index = usize::min(lindex, rindex);
2283             let max_index = usize::max(lindex, rindex);
2284
2285             let mut local_map: HirIdMap<HirId> = HirIdMap::default();
2286             let eq_fallback = |a: &Expr<'_>, b: &Expr<'_>| {
2287                 if_chain! {
2288                     if let Some(a_id) = path_to_local(a);
2289                     if let Some(b_id) = path_to_local(b);
2290                     let entry = match local_map.entry(a_id) {
2291                         Entry::Vacant(entry) => entry,
2292                         // check if using the same bindings as before
2293                         Entry::Occupied(entry) => return *entry.get() == b_id,
2294                     };
2295                     // the names technically don't have to match; this makes the lint more conservative
2296                     if cx.tcx.hir().name(a_id) == cx.tcx.hir().name(b_id);
2297                     if TyS::same_type(cx.typeck_results().expr_ty(a), cx.typeck_results().expr_ty(b));
2298                     if pat_contains_local(lhs.pat, a_id);
2299                     if pat_contains_local(rhs.pat, b_id);
2300                     then {
2301                         entry.insert(b_id);
2302                         true
2303                     } else {
2304                         false
2305                     }
2306                 }
2307             };
2308             // Arms with a guard are ignored, those can’t always be merged together
2309             // This is also the case for arms in-between each there is an arm with a guard
2310             (min_index..=max_index).all(|index| arms[index].guard.is_none())
2311                 && SpanlessEq::new(cx)
2312                     .expr_fallback(eq_fallback)
2313                     .eq_expr(lhs.body, rhs.body)
2314                 // these checks could be removed to allow unused bindings
2315                 && bindings_eq(lhs.pat, local_map.keys().copied().collect())
2316                 && bindings_eq(rhs.pat, local_map.values().copied().collect())
2317         };
2318
2319         let indexed_arms: Vec<(usize, &Arm<'_>)> = arms.iter().enumerate().collect();
2320         for (&(_, i), &(_, j)) in search_same(&indexed_arms, hash, eq) {
2321             span_lint_and_then(
2322                 cx,
2323                 MATCH_SAME_ARMS,
2324                 j.body.span,
2325                 "this `match` has identical arm bodies",
2326                 |diag| {
2327                     diag.span_note(i.body.span, "same as this");
2328
2329                     // Note: this does not use `span_suggestion` on purpose:
2330                     // there is no clean way
2331                     // to remove the other arm. Building a span and suggest to replace it to ""
2332                     // makes an even more confusing error message. Also in order not to make up a
2333                     // span for the whole pattern, the suggestion is only shown when there is only
2334                     // one pattern. The user should know about `|` if they are already using it…
2335
2336                     let lhs = snippet(cx, i.pat.span, "<pat1>");
2337                     let rhs = snippet(cx, j.pat.span, "<pat2>");
2338
2339                     if let PatKind::Wild = j.pat.kind {
2340                         // if the last arm is _, then i could be integrated into _
2341                         // note that i.pat cannot be _, because that would mean that we're
2342                         // hiding all the subsequent arms, and rust won't compile
2343                         diag.span_note(
2344                             i.body.span,
2345                             &format!(
2346                                 "`{}` has the same arm body as the `_` wildcard, consider removing it",
2347                                 lhs
2348                             ),
2349                         );
2350                     } else {
2351                         diag.span_help(i.pat.span, &format!("consider refactoring into `{} | {}`", lhs, rhs,))
2352                             .help("...or consider changing the match arm bodies");
2353                     }
2354                 },
2355             );
2356         }
2357     }
2358 }
2359
2360 fn pat_contains_local(pat: &Pat<'_>, id: HirId) -> bool {
2361     let mut result = false;
2362     pat.walk_short(|p| {
2363         result |= matches!(p.kind, PatKind::Binding(_, binding_id, ..) if binding_id == id);
2364         !result
2365     });
2366     result
2367 }
2368
2369 /// Returns true if all the bindings in the `Pat` are in `ids` and vice versa
2370 fn bindings_eq(pat: &Pat<'_>, mut ids: HirIdSet) -> bool {
2371     let mut result = true;
2372     pat.each_binding_or_first(&mut |_, id, _, _| result &= ids.remove(&id));
2373     result && ids.is_empty()
2374 }