]> git.lizzy.rs Git - rust.git/blob - clippy_lints/src/loops.rs
Add version = "Two" to rustfmt.toml
[rust.git] / clippy_lints / src / loops.rs
1 use crate::consts::constant;
2 use crate::utils::sugg::Sugg;
3 use crate::utils::usage::mutated_variables;
4 use crate::utils::visitors::LocalUsedVisitor;
5 use crate::utils::{
6     contains_name, get_enclosing_block, get_parent_expr, get_trait_def_id, has_iter_method, higher, implements_trait,
7     indent_of, is_in_panic_handler, is_integer_const, is_no_std_crate, is_ok_ctor, is_refutable, is_some_ctor,
8     is_type_diagnostic_item, last_path_segment, match_trait_method, match_type, multispan_sugg, path_to_local,
9     path_to_local_id, paths, single_segment_path, snippet, snippet_with_applicability, snippet_with_macro_callsite,
10     span_lint, span_lint_and_help, span_lint_and_sugg, span_lint_and_then, sugg, SpanlessEq,
11 };
12 use if_chain::if_chain;
13 use rustc_ast::ast;
14 use rustc_data_structures::fx::{FxHashMap, FxHashSet};
15 use rustc_errors::Applicability;
16 use rustc_hir::def::{DefKind, Res};
17 use rustc_hir::intravisit::{walk_block, walk_expr, walk_pat, walk_stmt, NestedVisitorMap, Visitor};
18 use rustc_hir::{
19     def_id, BinOpKind, BindingAnnotation, Block, BorrowKind, Expr, ExprKind, GenericArg, HirId, InlineAsmOperand,
20     Local, LoopSource, MatchSource, Mutability, Node, Pat, PatKind, QPath, Stmt, StmtKind,
21 };
22 use rustc_infer::infer::TyCtxtInferExt;
23 use rustc_lint::{LateContext, LateLintPass, LintContext};
24 use rustc_middle::hir::map::Map;
25 use rustc_middle::lint::in_external_macro;
26 use rustc_middle::middle::region;
27 use rustc_middle::ty::{self, Ty, TyS};
28 use rustc_session::{declare_lint_pass, declare_tool_lint};
29 use rustc_span::source_map::Span;
30 use rustc_span::symbol::{sym, Ident, Symbol};
31 use rustc_typeck::expr_use_visitor::{ConsumeMode, Delegate, ExprUseVisitor, PlaceBase, PlaceWithHirId};
32 use std::iter::{once, Iterator};
33 use std::mem;
34
35 declare_clippy_lint! {
36     /// **What it does:** Checks for for-loops that manually copy items between
37     /// slices that could be optimized by having a memcpy.
38     ///
39     /// **Why is this bad?** It is not as fast as a memcpy.
40     ///
41     /// **Known problems:** None.
42     ///
43     /// **Example:**
44     /// ```rust
45     /// # let src = vec![1];
46     /// # let mut dst = vec![0; 65];
47     /// for i in 0..src.len() {
48     ///     dst[i + 64] = src[i];
49     /// }
50     /// ```
51     /// Could be written as:
52     /// ```rust
53     /// # let src = vec![1];
54     /// # let mut dst = vec![0; 65];
55     /// dst[64..(src.len() + 64)].clone_from_slice(&src[..]);
56     /// ```
57     pub MANUAL_MEMCPY,
58     perf,
59     "manually copying items between slices"
60 }
61
62 declare_clippy_lint! {
63     /// **What it does:** Checks for looping over the range of `0..len` of some
64     /// collection just to get the values by index.
65     ///
66     /// **Why is this bad?** Just iterating the collection itself makes the intent
67     /// more clear and is probably faster.
68     ///
69     /// **Known problems:** None.
70     ///
71     /// **Example:**
72     /// ```rust
73     /// let vec = vec!['a', 'b', 'c'];
74     /// for i in 0..vec.len() {
75     ///     println!("{}", vec[i]);
76     /// }
77     /// ```
78     /// Could be written as:
79     /// ```rust
80     /// let vec = vec!['a', 'b', 'c'];
81     /// for i in vec {
82     ///     println!("{}", i);
83     /// }
84     /// ```
85     pub NEEDLESS_RANGE_LOOP,
86     style,
87     "for-looping over a range of indices where an iterator over items would do"
88 }
89
90 declare_clippy_lint! {
91     /// **What it does:** Checks for loops on `x.iter()` where `&x` will do, and
92     /// suggests the latter.
93     ///
94     /// **Why is this bad?** Readability.
95     ///
96     /// **Known problems:** False negatives. We currently only warn on some known
97     /// types.
98     ///
99     /// **Example:**
100     /// ```rust
101     /// // with `y` a `Vec` or slice:
102     /// # let y = vec![1];
103     /// for x in y.iter() {
104     ///     // ..
105     /// }
106     /// ```
107     /// can be rewritten to
108     /// ```rust
109     /// # let y = vec![1];
110     /// for x in &y {
111     ///     // ..
112     /// }
113     /// ```
114     pub EXPLICIT_ITER_LOOP,
115     pedantic,
116     "for-looping over `_.iter()` or `_.iter_mut()` when `&_` or `&mut _` would do"
117 }
118
119 declare_clippy_lint! {
120     /// **What it does:** Checks for loops on `y.into_iter()` where `y` will do, and
121     /// suggests the latter.
122     ///
123     /// **Why is this bad?** Readability.
124     ///
125     /// **Known problems:** None
126     ///
127     /// **Example:**
128     /// ```rust
129     /// # let y = vec![1];
130     /// // with `y` a `Vec` or slice:
131     /// for x in y.into_iter() {
132     ///     // ..
133     /// }
134     /// ```
135     /// can be rewritten to
136     /// ```rust
137     /// # let y = vec![1];
138     /// for x in y {
139     ///     // ..
140     /// }
141     /// ```
142     pub EXPLICIT_INTO_ITER_LOOP,
143     pedantic,
144     "for-looping over `_.into_iter()` when `_` would do"
145 }
146
147 declare_clippy_lint! {
148     /// **What it does:** Checks for loops on `x.next()`.
149     ///
150     /// **Why is this bad?** `next()` returns either `Some(value)` if there was a
151     /// value, or `None` otherwise. The insidious thing is that `Option<_>`
152     /// implements `IntoIterator`, so that possibly one value will be iterated,
153     /// leading to some hard to find bugs. No one will want to write such code
154     /// [except to win an Underhanded Rust
155     /// Contest](https://www.reddit.com/r/rust/comments/3hb0wm/underhanded_rust_contest/cu5yuhr).
156     ///
157     /// **Known problems:** None.
158     ///
159     /// **Example:**
160     /// ```ignore
161     /// for x in y.next() {
162     ///     ..
163     /// }
164     /// ```
165     pub ITER_NEXT_LOOP,
166     correctness,
167     "for-looping over `_.next()` which is probably not intended"
168 }
169
170 declare_clippy_lint! {
171     /// **What it does:** Checks for `for` loops over `Option` or `Result` values.
172     ///
173     /// **Why is this bad?** Readability. This is more clearly expressed as an `if
174     /// let`.
175     ///
176     /// **Known problems:** None.
177     ///
178     /// **Example:**
179     /// ```rust
180     /// # let opt = Some(1);
181     ///
182     /// // Bad
183     /// for x in opt {
184     ///     // ..
185     /// }
186     ///
187     /// // Good
188     /// if let Some(x) = opt {
189     ///     // ..
190     /// }
191     /// ```
192     ///
193     /// // or
194     ///
195     /// ```rust
196     /// # let res: Result<i32, std::io::Error> = Ok(1);
197     ///
198     /// // Bad
199     /// for x in &res {
200     ///     // ..
201     /// }
202     ///
203     /// // Good
204     /// if let Ok(x) = res {
205     ///     // ..
206     /// }
207     /// ```
208     pub FOR_LOOPS_OVER_FALLIBLES,
209     correctness,
210     "for-looping over an `Option` or a `Result`, which is more clearly expressed as an `if let`"
211 }
212
213 declare_clippy_lint! {
214     /// **What it does:** Detects `loop + match` combinations that are easier
215     /// written as a `while let` loop.
216     ///
217     /// **Why is this bad?** The `while let` loop is usually shorter and more
218     /// readable.
219     ///
220     /// **Known problems:** Sometimes the wrong binding is displayed ([#383](https://github.com/rust-lang/rust-clippy/issues/383)).
221     ///
222     /// **Example:**
223     /// ```rust,no_run
224     /// # let y = Some(1);
225     /// loop {
226     ///     let x = match y {
227     ///         Some(x) => x,
228     ///         None => break,
229     ///     };
230     ///     // .. do something with x
231     /// }
232     /// // is easier written as
233     /// while let Some(x) = y {
234     ///     // .. do something with x
235     /// };
236     /// ```
237     pub WHILE_LET_LOOP,
238     complexity,
239     "`loop { if let { ... } else break }`, which can be written as a `while let` loop"
240 }
241
242 declare_clippy_lint! {
243     /// **What it does:** Checks for functions collecting an iterator when collect
244     /// is not needed.
245     ///
246     /// **Why is this bad?** `collect` causes the allocation of a new data structure,
247     /// when this allocation may not be needed.
248     ///
249     /// **Known problems:**
250     /// None
251     ///
252     /// **Example:**
253     /// ```rust
254     /// # let iterator = vec![1].into_iter();
255     /// let len = iterator.clone().collect::<Vec<_>>().len();
256     /// // should be
257     /// let len = iterator.count();
258     /// ```
259     pub NEEDLESS_COLLECT,
260     perf,
261     "collecting an iterator when collect is not needed"
262 }
263
264 declare_clippy_lint! {
265     /// **What it does:** Checks `for` loops over slices with an explicit counter
266     /// and suggests the use of `.enumerate()`.
267     ///
268     /// **Why is it bad?** Using `.enumerate()` makes the intent more clear,
269     /// declutters the code and may be faster in some instances.
270     ///
271     /// **Known problems:** None.
272     ///
273     /// **Example:**
274     /// ```rust
275     /// # let v = vec![1];
276     /// # fn bar(bar: usize, baz: usize) {}
277     /// let mut i = 0;
278     /// for item in &v {
279     ///     bar(i, *item);
280     ///     i += 1;
281     /// }
282     /// ```
283     /// Could be written as
284     /// ```rust
285     /// # let v = vec![1];
286     /// # fn bar(bar: usize, baz: usize) {}
287     /// for (i, item) in v.iter().enumerate() { bar(i, *item); }
288     /// ```
289     pub EXPLICIT_COUNTER_LOOP,
290     complexity,
291     "for-looping with an explicit counter when `_.enumerate()` would do"
292 }
293
294 declare_clippy_lint! {
295     /// **What it does:** Checks for empty `loop` expressions.
296     ///
297     /// **Why is this bad?** These busy loops burn CPU cycles without doing
298     /// anything. It is _almost always_ a better idea to `panic!` than to have
299     /// a busy loop.
300     ///
301     /// If panicking isn't possible, think of the environment and either:
302     ///   - block on something
303     ///   - sleep the thread for some microseconds
304     ///   - yield or pause the thread
305     ///
306     /// For `std` targets, this can be done with
307     /// [`std::thread::sleep`](https://doc.rust-lang.org/std/thread/fn.sleep.html)
308     /// or [`std::thread::yield_now`](https://doc.rust-lang.org/std/thread/fn.yield_now.html).
309     ///
310     /// For `no_std` targets, doing this is more complicated, especially because
311     /// `#[panic_handler]`s can't panic. To stop/pause the thread, you will
312     /// probably need to invoke some target-specific intrinsic. Examples include:
313     ///   - [`x86_64::instructions::hlt`](https://docs.rs/x86_64/0.12.2/x86_64/instructions/fn.hlt.html)
314     ///   - [`cortex_m::asm::wfi`](https://docs.rs/cortex-m/0.6.3/cortex_m/asm/fn.wfi.html)
315     ///
316     /// **Known problems:** None.
317     ///
318     /// **Example:**
319     /// ```no_run
320     /// loop {}
321     /// ```
322     pub EMPTY_LOOP,
323     style,
324     "empty `loop {}`, which should block or sleep"
325 }
326
327 declare_clippy_lint! {
328     /// **What it does:** Checks for `while let` expressions on iterators.
329     ///
330     /// **Why is this bad?** Readability. A simple `for` loop is shorter and conveys
331     /// the intent better.
332     ///
333     /// **Known problems:** None.
334     ///
335     /// **Example:**
336     /// ```ignore
337     /// while let Some(val) = iter() {
338     ///     ..
339     /// }
340     /// ```
341     pub WHILE_LET_ON_ITERATOR,
342     style,
343     "using a `while let` loop instead of a for loop on an iterator"
344 }
345
346 declare_clippy_lint! {
347     /// **What it does:** Checks for iterating a map (`HashMap` or `BTreeMap`) and
348     /// ignoring either the keys or values.
349     ///
350     /// **Why is this bad?** Readability. There are `keys` and `values` methods that
351     /// can be used to express that don't need the values or keys.
352     ///
353     /// **Known problems:** None.
354     ///
355     /// **Example:**
356     /// ```ignore
357     /// for (k, _) in &map {
358     ///     ..
359     /// }
360     /// ```
361     ///
362     /// could be replaced by
363     ///
364     /// ```ignore
365     /// for k in map.keys() {
366     ///     ..
367     /// }
368     /// ```
369     pub FOR_KV_MAP,
370     style,
371     "looping on a map using `iter` when `keys` or `values` would do"
372 }
373
374 declare_clippy_lint! {
375     /// **What it does:** Checks for loops that will always `break`, `return` or
376     /// `continue` an outer loop.
377     ///
378     /// **Why is this bad?** This loop never loops, all it does is obfuscating the
379     /// code.
380     ///
381     /// **Known problems:** None
382     ///
383     /// **Example:**
384     /// ```rust
385     /// loop {
386     ///     ..;
387     ///     break;
388     /// }
389     /// ```
390     pub NEVER_LOOP,
391     correctness,
392     "any loop that will always `break` or `return`"
393 }
394
395 declare_clippy_lint! {
396     /// **What it does:** Checks for loops which have a range bound that is a mutable variable
397     ///
398     /// **Why is this bad?** One might think that modifying the mutable variable changes the loop bounds
399     ///
400     /// **Known problems:** None
401     ///
402     /// **Example:**
403     /// ```rust
404     /// let mut foo = 42;
405     /// for i in 0..foo {
406     ///     foo -= 1;
407     ///     println!("{}", i); // prints numbers from 0 to 42, not 0 to 21
408     /// }
409     /// ```
410     pub MUT_RANGE_BOUND,
411     complexity,
412     "for loop over a range where one of the bounds is a mutable variable"
413 }
414
415 declare_clippy_lint! {
416     /// **What it does:** Checks whether variables used within while loop condition
417     /// can be (and are) mutated in the body.
418     ///
419     /// **Why is this bad?** If the condition is unchanged, entering the body of the loop
420     /// will lead to an infinite loop.
421     ///
422     /// **Known problems:** If the `while`-loop is in a closure, the check for mutation of the
423     /// condition variables in the body can cause false negatives. For example when only `Upvar` `a` is
424     /// in the condition and only `Upvar` `b` gets mutated in the body, the lint will not trigger.
425     ///
426     /// **Example:**
427     /// ```rust
428     /// let i = 0;
429     /// while i > 10 {
430     ///     println!("let me loop forever!");
431     /// }
432     /// ```
433     pub WHILE_IMMUTABLE_CONDITION,
434     correctness,
435     "variables used within while expression are not mutated in the body"
436 }
437
438 declare_clippy_lint! {
439     /// **What it does:** Checks whether a for loop is being used to push a constant
440     /// value into a Vec.
441     ///
442     /// **Why is this bad?** This kind of operation can be expressed more succinctly with
443     /// `vec![item;SIZE]` or `vec.resize(NEW_SIZE, item)` and using these alternatives may also
444     /// have better performance.
445     /// **Known problems:** None
446     ///
447     /// **Example:**
448     /// ```rust
449     /// let item1 = 2;
450     /// let item2 = 3;
451     /// let mut vec: Vec<u8> = Vec::new();
452     /// for _ in 0..20 {
453     ///    vec.push(item1);
454     /// }
455     /// for _ in 0..30 {
456     ///     vec.push(item2);
457     /// }
458     /// ```
459     /// could be written as
460     /// ```rust
461     /// let item1 = 2;
462     /// let item2 = 3;
463     /// let mut vec: Vec<u8> = vec![item1; 20];
464     /// vec.resize(20 + 30, item2);
465     /// ```
466     pub SAME_ITEM_PUSH,
467     style,
468     "the same item is pushed inside of a for loop"
469 }
470
471 declare_clippy_lint! {
472     /// **What it does:** Checks whether a for loop has a single element.
473     ///
474     /// **Why is this bad?** There is no reason to have a loop of a
475     /// single element.
476     /// **Known problems:** None
477     ///
478     /// **Example:**
479     /// ```rust
480     /// let item1 = 2;
481     /// for item in &[item1] {
482     ///     println!("{}", item);
483     /// }
484     /// ```
485     /// could be written as
486     /// ```rust
487     /// let item1 = 2;
488     /// let item = &item1;
489     /// println!("{}", item);
490     /// ```
491     pub SINGLE_ELEMENT_LOOP,
492     complexity,
493     "there is no reason to have a single element loop"
494 }
495
496 declare_clippy_lint! {
497     /// **What it does:** Check for unnecessary `if let` usage in a for loop
498     /// where only the `Some` or `Ok` variant of the iterator element is used.
499     ///
500     /// **Why is this bad?** It is verbose and can be simplified
501     /// by first calling the `flatten` method on the `Iterator`.
502     ///
503     /// **Known problems:** None.
504     ///
505     /// **Example:**
506     ///
507     /// ```rust
508     /// let x = vec![Some(1), Some(2), Some(3)];
509     /// for n in x {
510     ///     if let Some(n) = n {
511     ///         println!("{}", n);
512     ///     }
513     /// }
514     /// ```
515     /// Use instead:
516     /// ```rust
517     /// let x = vec![Some(1), Some(2), Some(3)];
518     /// for n in x.into_iter().flatten() {
519     ///     println!("{}", n);
520     /// }
521     /// ```
522     pub MANUAL_FLATTEN,
523     complexity,
524     "for loops over `Option`s or `Result`s with a single expression can be simplified"
525 }
526
527 declare_lint_pass!(Loops => [
528     MANUAL_MEMCPY,
529     MANUAL_FLATTEN,
530     NEEDLESS_RANGE_LOOP,
531     EXPLICIT_ITER_LOOP,
532     EXPLICIT_INTO_ITER_LOOP,
533     ITER_NEXT_LOOP,
534     FOR_LOOPS_OVER_FALLIBLES,
535     WHILE_LET_LOOP,
536     NEEDLESS_COLLECT,
537     EXPLICIT_COUNTER_LOOP,
538     EMPTY_LOOP,
539     WHILE_LET_ON_ITERATOR,
540     FOR_KV_MAP,
541     NEVER_LOOP,
542     MUT_RANGE_BOUND,
543     WHILE_IMMUTABLE_CONDITION,
544     SAME_ITEM_PUSH,
545     SINGLE_ELEMENT_LOOP,
546 ]);
547
548 impl<'tcx> LateLintPass<'tcx> for Loops {
549     #[allow(clippy::too_many_lines)]
550     fn check_expr(&mut self, cx: &LateContext<'tcx>, expr: &'tcx Expr<'_>) {
551         if let Some((pat, arg, body, span)) = higher::for_loop(expr) {
552             // we don't want to check expanded macros
553             // this check is not at the top of the function
554             // since higher::for_loop expressions are marked as expansions
555             if body.span.from_expansion() {
556                 return;
557             }
558             check_for_loop(cx, pat, arg, body, expr, span);
559         }
560
561         // we don't want to check expanded macros
562         if expr.span.from_expansion() {
563             return;
564         }
565
566         // check for never_loop
567         if let ExprKind::Loop(ref block, _, _, _) = expr.kind {
568             match never_loop_block(block, expr.hir_id) {
569                 NeverLoopResult::AlwaysBreak => span_lint(cx, NEVER_LOOP, expr.span, "this loop never actually loops"),
570                 NeverLoopResult::MayContinueMainLoop | NeverLoopResult::Otherwise => (),
571             }
572         }
573
574         // check for `loop { if let {} else break }` that could be `while let`
575         // (also matches an explicit "match" instead of "if let")
576         // (even if the "match" or "if let" is used for declaration)
577         if let ExprKind::Loop(ref block, _, LoopSource::Loop, _) = expr.kind {
578             // also check for empty `loop {}` statements, skipping those in #[panic_handler]
579             if block.stmts.is_empty() && block.expr.is_none() && !is_in_panic_handler(cx, expr) {
580                 let msg = "empty `loop {}` wastes CPU cycles";
581                 let help = if is_no_std_crate(cx.tcx.hir().krate()) {
582                     "you should either use `panic!()` or add a call pausing or sleeping the thread to the loop body"
583                 } else {
584                     "you should either use `panic!()` or add `std::thread::sleep(..);` to the loop body"
585                 };
586                 span_lint_and_help(cx, EMPTY_LOOP, expr.span, msg, None, help);
587             }
588
589             // extract the expression from the first statement (if any) in a block
590             let inner_stmt_expr = extract_expr_from_first_stmt(block);
591             // or extract the first expression (if any) from the block
592             if let Some(inner) = inner_stmt_expr.or_else(|| extract_first_expr(block)) {
593                 if let ExprKind::Match(ref matchexpr, ref arms, ref source) = inner.kind {
594                     // ensure "if let" compatible match structure
595                     match *source {
596                         MatchSource::Normal | MatchSource::IfLetDesugar { .. } => {
597                             if arms.len() == 2
598                                 && arms[0].guard.is_none()
599                                 && arms[1].guard.is_none()
600                                 && is_simple_break_expr(&arms[1].body)
601                             {
602                                 if in_external_macro(cx.sess(), expr.span) {
603                                     return;
604                                 }
605
606                                 // NOTE: we used to build a body here instead of using
607                                 // ellipsis, this was removed because:
608                                 // 1) it was ugly with big bodies;
609                                 // 2) it was not indented properly;
610                                 // 3) it wasn’t very smart (see #675).
611                                 let mut applicability = Applicability::HasPlaceholders;
612                                 span_lint_and_sugg(
613                                     cx,
614                                     WHILE_LET_LOOP,
615                                     expr.span,
616                                     "this loop could be written as a `while let` loop",
617                                     "try",
618                                     format!(
619                                         "while let {} = {} {{ .. }}",
620                                         snippet_with_applicability(cx, arms[0].pat.span, "..", &mut applicability),
621                                         snippet_with_applicability(cx, matchexpr.span, "..", &mut applicability),
622                                     ),
623                                     applicability,
624                                 );
625                             }
626                         },
627                         _ => (),
628                     }
629                 }
630             }
631         }
632         if let ExprKind::Match(ref match_expr, ref arms, MatchSource::WhileLetDesugar) = expr.kind {
633             let pat = &arms[0].pat.kind;
634             if let (
635                 &PatKind::TupleStruct(ref qpath, ref pat_args, _),
636                 &ExprKind::MethodCall(ref method_path, _, ref method_args, _),
637             ) = (pat, &match_expr.kind)
638             {
639                 let iter_expr = &method_args[0];
640
641                 // Don't lint when the iterator is recreated on every iteration
642                 if_chain! {
643                     if let ExprKind::MethodCall(..) | ExprKind::Call(..) = iter_expr.kind;
644                     if let Some(iter_def_id) = get_trait_def_id(cx, &paths::ITERATOR);
645                     if implements_trait(cx, cx.typeck_results().expr_ty(iter_expr), iter_def_id, &[]);
646                     then {
647                         return;
648                     }
649                 }
650
651                 let lhs_constructor = last_path_segment(qpath);
652                 if method_path.ident.name == sym::next
653                     && match_trait_method(cx, match_expr, &paths::ITERATOR)
654                     && lhs_constructor.ident.name == sym::Some
655                     && (pat_args.is_empty()
656                         || !is_refutable(cx, &pat_args[0])
657                             && !is_used_inside(cx, iter_expr, &arms[0].body)
658                             && !is_iterator_used_after_while_let(cx, iter_expr)
659                             && !is_nested(cx, expr, &method_args[0]))
660                 {
661                     let mut applicability = Applicability::MachineApplicable;
662                     let iterator = snippet_with_applicability(cx, method_args[0].span, "_", &mut applicability);
663                     let loop_var = if pat_args.is_empty() {
664                         "_".to_string()
665                     } else {
666                         snippet_with_applicability(cx, pat_args[0].span, "_", &mut applicability).into_owned()
667                     };
668                     span_lint_and_sugg(
669                         cx,
670                         WHILE_LET_ON_ITERATOR,
671                         expr.span.with_hi(match_expr.span.hi()),
672                         "this loop could be written as a `for` loop",
673                         "try",
674                         format!("for {} in {}", loop_var, iterator),
675                         applicability,
676                     );
677                 }
678             }
679         }
680
681         if let Some((cond, body)) = higher::while_loop(&expr) {
682             check_infinite_loop(cx, cond, body);
683         }
684
685         check_needless_collect(expr, cx);
686     }
687 }
688
689 enum NeverLoopResult {
690     // A break/return always get triggered but not necessarily for the main loop.
691     AlwaysBreak,
692     // A continue may occur for the main loop.
693     MayContinueMainLoop,
694     Otherwise,
695 }
696
697 #[must_use]
698 fn absorb_break(arg: &NeverLoopResult) -> NeverLoopResult {
699     match *arg {
700         NeverLoopResult::AlwaysBreak | NeverLoopResult::Otherwise => NeverLoopResult::Otherwise,
701         NeverLoopResult::MayContinueMainLoop => NeverLoopResult::MayContinueMainLoop,
702     }
703 }
704
705 // Combine two results for parts that are called in order.
706 #[must_use]
707 fn combine_seq(first: NeverLoopResult, second: NeverLoopResult) -> NeverLoopResult {
708     match first {
709         NeverLoopResult::AlwaysBreak | NeverLoopResult::MayContinueMainLoop => first,
710         NeverLoopResult::Otherwise => second,
711     }
712 }
713
714 // Combine two results where both parts are called but not necessarily in order.
715 #[must_use]
716 fn combine_both(left: NeverLoopResult, right: NeverLoopResult) -> NeverLoopResult {
717     match (left, right) {
718         (NeverLoopResult::MayContinueMainLoop, _) | (_, NeverLoopResult::MayContinueMainLoop) => {
719             NeverLoopResult::MayContinueMainLoop
720         },
721         (NeverLoopResult::AlwaysBreak, _) | (_, NeverLoopResult::AlwaysBreak) => NeverLoopResult::AlwaysBreak,
722         (NeverLoopResult::Otherwise, NeverLoopResult::Otherwise) => NeverLoopResult::Otherwise,
723     }
724 }
725
726 // Combine two results where only one of the part may have been executed.
727 #[must_use]
728 fn combine_branches(b1: NeverLoopResult, b2: NeverLoopResult) -> NeverLoopResult {
729     match (b1, b2) {
730         (NeverLoopResult::AlwaysBreak, NeverLoopResult::AlwaysBreak) => NeverLoopResult::AlwaysBreak,
731         (NeverLoopResult::MayContinueMainLoop, _) | (_, NeverLoopResult::MayContinueMainLoop) => {
732             NeverLoopResult::MayContinueMainLoop
733         },
734         (NeverLoopResult::Otherwise, _) | (_, NeverLoopResult::Otherwise) => NeverLoopResult::Otherwise,
735     }
736 }
737
738 fn never_loop_block(block: &Block<'_>, main_loop_id: HirId) -> NeverLoopResult {
739     let stmts = block.stmts.iter().map(stmt_to_expr);
740     let expr = once(block.expr.as_deref());
741     let mut iter = stmts.chain(expr).flatten();
742     never_loop_expr_seq(&mut iter, main_loop_id)
743 }
744
745 fn stmt_to_expr<'tcx>(stmt: &Stmt<'tcx>) -> Option<&'tcx Expr<'tcx>> {
746     match stmt.kind {
747         StmtKind::Semi(ref e, ..) | StmtKind::Expr(ref e, ..) => Some(e),
748         StmtKind::Local(ref local) => local.init.as_deref(),
749         _ => None,
750     }
751 }
752
753 fn never_loop_expr(expr: &Expr<'_>, main_loop_id: HirId) -> NeverLoopResult {
754     match expr.kind {
755         ExprKind::Box(ref e)
756         | ExprKind::Unary(_, ref e)
757         | ExprKind::Cast(ref e, _)
758         | ExprKind::Type(ref e, _)
759         | ExprKind::Field(ref e, _)
760         | ExprKind::AddrOf(_, _, ref e)
761         | ExprKind::Struct(_, _, Some(ref e))
762         | ExprKind::Repeat(ref e, _)
763         | ExprKind::DropTemps(ref e) => never_loop_expr(e, main_loop_id),
764         ExprKind::Array(ref es) | ExprKind::MethodCall(_, _, ref es, _) | ExprKind::Tup(ref es) => {
765             never_loop_expr_all(&mut es.iter(), main_loop_id)
766         },
767         ExprKind::Call(ref e, ref es) => never_loop_expr_all(&mut once(&**e).chain(es.iter()), main_loop_id),
768         ExprKind::Binary(_, ref e1, ref e2)
769         | ExprKind::Assign(ref e1, ref e2, _)
770         | ExprKind::AssignOp(_, ref e1, ref e2)
771         | ExprKind::Index(ref e1, ref e2) => never_loop_expr_all(&mut [&**e1, &**e2].iter().cloned(), main_loop_id),
772         ExprKind::Loop(ref b, _, _, _) => {
773             // Break can come from the inner loop so remove them.
774             absorb_break(&never_loop_block(b, main_loop_id))
775         },
776         ExprKind::If(ref e, ref e2, ref e3) => {
777             let e1 = never_loop_expr(e, main_loop_id);
778             let e2 = never_loop_expr(e2, main_loop_id);
779             let e3 = e3
780                 .as_ref()
781                 .map_or(NeverLoopResult::Otherwise, |e| never_loop_expr(e, main_loop_id));
782             combine_seq(e1, combine_branches(e2, e3))
783         },
784         ExprKind::Match(ref e, ref arms, _) => {
785             let e = never_loop_expr(e, main_loop_id);
786             if arms.is_empty() {
787                 e
788             } else {
789                 let arms = never_loop_expr_branch(&mut arms.iter().map(|a| &*a.body), main_loop_id);
790                 combine_seq(e, arms)
791             }
792         },
793         ExprKind::Block(ref b, _) => never_loop_block(b, main_loop_id),
794         ExprKind::Continue(d) => {
795             let id = d
796                 .target_id
797                 .expect("target ID can only be missing in the presence of compilation errors");
798             if id == main_loop_id {
799                 NeverLoopResult::MayContinueMainLoop
800             } else {
801                 NeverLoopResult::AlwaysBreak
802             }
803         },
804         ExprKind::Break(_, ref e) | ExprKind::Ret(ref e) => e.as_ref().map_or(NeverLoopResult::AlwaysBreak, |e| {
805             combine_seq(never_loop_expr(e, main_loop_id), NeverLoopResult::AlwaysBreak)
806         }),
807         ExprKind::InlineAsm(ref asm) => asm
808             .operands
809             .iter()
810             .map(|(o, _)| match o {
811                 InlineAsmOperand::In { expr, .. }
812                 | InlineAsmOperand::InOut { expr, .. }
813                 | InlineAsmOperand::Const { expr }
814                 | InlineAsmOperand::Sym { expr } => never_loop_expr(expr, main_loop_id),
815                 InlineAsmOperand::Out { expr, .. } => never_loop_expr_all(&mut expr.iter(), main_loop_id),
816                 InlineAsmOperand::SplitInOut { in_expr, out_expr, .. } => {
817                     never_loop_expr_all(&mut once(in_expr).chain(out_expr.iter()), main_loop_id)
818                 },
819             })
820             .fold(NeverLoopResult::Otherwise, combine_both),
821         ExprKind::Struct(_, _, None)
822         | ExprKind::Yield(_, _)
823         | ExprKind::Closure(_, _, _, _, _)
824         | ExprKind::LlvmInlineAsm(_)
825         | ExprKind::Path(_)
826         | ExprKind::ConstBlock(_)
827         | ExprKind::Lit(_)
828         | ExprKind::Err => NeverLoopResult::Otherwise,
829     }
830 }
831
832 fn never_loop_expr_seq<'a, T: Iterator<Item = &'a Expr<'a>>>(es: &mut T, main_loop_id: HirId) -> NeverLoopResult {
833     es.map(|e| never_loop_expr(e, main_loop_id))
834         .fold(NeverLoopResult::Otherwise, combine_seq)
835 }
836
837 fn never_loop_expr_all<'a, T: Iterator<Item = &'a Expr<'a>>>(es: &mut T, main_loop_id: HirId) -> NeverLoopResult {
838     es.map(|e| never_loop_expr(e, main_loop_id))
839         .fold(NeverLoopResult::Otherwise, combine_both)
840 }
841
842 fn never_loop_expr_branch<'a, T: Iterator<Item = &'a Expr<'a>>>(e: &mut T, main_loop_id: HirId) -> NeverLoopResult {
843     e.map(|e| never_loop_expr(e, main_loop_id))
844         .fold(NeverLoopResult::AlwaysBreak, combine_branches)
845 }
846
847 fn check_for_loop<'tcx>(
848     cx: &LateContext<'tcx>,
849     pat: &'tcx Pat<'_>,
850     arg: &'tcx Expr<'_>,
851     body: &'tcx Expr<'_>,
852     expr: &'tcx Expr<'_>,
853     span: Span,
854 ) {
855     let is_manual_memcpy_triggered = detect_manual_memcpy(cx, pat, arg, body, expr);
856     if !is_manual_memcpy_triggered {
857         check_for_loop_range(cx, pat, arg, body, expr);
858         check_for_loop_explicit_counter(cx, pat, arg, body, expr);
859     }
860     check_for_loop_arg(cx, pat, arg, expr);
861     check_for_loop_over_map_kv(cx, pat, arg, body, expr);
862     check_for_mut_range_bound(cx, arg, body);
863     check_for_single_element_loop(cx, pat, arg, body, expr);
864     detect_same_item_push(cx, pat, arg, body, expr);
865     check_manual_flatten(cx, pat, arg, body, span);
866 }
867
868 // this function assumes the given expression is a `for` loop.
869 fn get_span_of_entire_for_loop(expr: &Expr<'_>) -> Span {
870     // for some reason this is the only way to get the `Span`
871     // of the entire `for` loop
872     if let ExprKind::Match(_, arms, _) = &expr.kind {
873         arms[0].body.span
874     } else {
875         unreachable!()
876     }
877 }
878
879 /// a wrapper of `Sugg`. Besides what `Sugg` do, this removes unnecessary `0`;
880 /// and also, it avoids subtracting a variable from the same one by replacing it with `0`.
881 /// it exists for the convenience of the overloaded operators while normal functions can do the
882 /// same.
883 #[derive(Clone)]
884 struct MinifyingSugg<'a>(Sugg<'a>);
885
886 impl<'a> MinifyingSugg<'a> {
887     fn as_str(&self) -> &str {
888         let Sugg::NonParen(s) | Sugg::MaybeParen(s) | Sugg::BinOp(_, s) = &self.0;
889         s.as_ref()
890     }
891
892     fn into_sugg(self) -> Sugg<'a> {
893         self.0
894     }
895 }
896
897 impl<'a> From<Sugg<'a>> for MinifyingSugg<'a> {
898     fn from(sugg: Sugg<'a>) -> Self {
899         Self(sugg)
900     }
901 }
902
903 impl std::ops::Add for &MinifyingSugg<'static> {
904     type Output = MinifyingSugg<'static>;
905     fn add(self, rhs: &MinifyingSugg<'static>) -> MinifyingSugg<'static> {
906         match (self.as_str(), rhs.as_str()) {
907             ("0", _) => rhs.clone(),
908             (_, "0") => self.clone(),
909             (_, _) => (&self.0 + &rhs.0).into(),
910         }
911     }
912 }
913
914 impl std::ops::Sub for &MinifyingSugg<'static> {
915     type Output = MinifyingSugg<'static>;
916     fn sub(self, rhs: &MinifyingSugg<'static>) -> MinifyingSugg<'static> {
917         match (self.as_str(), rhs.as_str()) {
918             (_, "0") => self.clone(),
919             ("0", _) => (-rhs.0.clone()).into(),
920             (x, y) if x == y => sugg::ZERO.into(),
921             (_, _) => (&self.0 - &rhs.0).into(),
922         }
923     }
924 }
925
926 impl std::ops::Add<&MinifyingSugg<'static>> for MinifyingSugg<'static> {
927     type Output = MinifyingSugg<'static>;
928     fn add(self, rhs: &MinifyingSugg<'static>) -> MinifyingSugg<'static> {
929         match (self.as_str(), rhs.as_str()) {
930             ("0", _) => rhs.clone(),
931             (_, "0") => self,
932             (_, _) => (self.0 + &rhs.0).into(),
933         }
934     }
935 }
936
937 impl std::ops::Sub<&MinifyingSugg<'static>> for MinifyingSugg<'static> {
938     type Output = MinifyingSugg<'static>;
939     fn sub(self, rhs: &MinifyingSugg<'static>) -> MinifyingSugg<'static> {
940         match (self.as_str(), rhs.as_str()) {
941             (_, "0") => self,
942             ("0", _) => (-rhs.0.clone()).into(),
943             (x, y) if x == y => sugg::ZERO.into(),
944             (_, _) => (self.0 - &rhs.0).into(),
945         }
946     }
947 }
948
949 /// a wrapper around `MinifyingSugg`, which carries a operator like currying
950 /// so that the suggested code become more efficient (e.g. `foo + -bar` `foo - bar`).
951 struct Offset {
952     value: MinifyingSugg<'static>,
953     sign: OffsetSign,
954 }
955
956 #[derive(Clone, Copy)]
957 enum OffsetSign {
958     Positive,
959     Negative,
960 }
961
962 impl Offset {
963     fn negative(value: Sugg<'static>) -> Self {
964         Self {
965             value: value.into(),
966             sign: OffsetSign::Negative,
967         }
968     }
969
970     fn positive(value: Sugg<'static>) -> Self {
971         Self {
972             value: value.into(),
973             sign: OffsetSign::Positive,
974         }
975     }
976
977     fn empty() -> Self {
978         Self::positive(sugg::ZERO)
979     }
980 }
981
982 fn apply_offset(lhs: &MinifyingSugg<'static>, rhs: &Offset) -> MinifyingSugg<'static> {
983     match rhs.sign {
984         OffsetSign::Positive => lhs + &rhs.value,
985         OffsetSign::Negative => lhs - &rhs.value,
986     }
987 }
988
989 #[derive(Debug, Clone, Copy)]
990 enum StartKind<'hir> {
991     Range,
992     Counter { initializer: &'hir Expr<'hir> },
993 }
994
995 struct IndexExpr<'hir> {
996     base: &'hir Expr<'hir>,
997     idx: StartKind<'hir>,
998     idx_offset: Offset,
999 }
1000
1001 struct Start<'hir> {
1002     id: HirId,
1003     kind: StartKind<'hir>,
1004 }
1005
1006 fn is_slice_like<'tcx>(cx: &LateContext<'tcx>, ty: Ty<'_>) -> bool {
1007     let is_slice = match ty.kind() {
1008         ty::Ref(_, subty, _) => is_slice_like(cx, subty),
1009         ty::Slice(..) | ty::Array(..) => true,
1010         _ => false,
1011     };
1012
1013     is_slice || is_type_diagnostic_item(cx, ty, sym::vec_type) || is_type_diagnostic_item(cx, ty, sym!(vecdeque_type))
1014 }
1015
1016 fn fetch_cloned_expr<'tcx>(expr: &'tcx Expr<'tcx>) -> &'tcx Expr<'tcx> {
1017     if_chain! {
1018         if let ExprKind::MethodCall(method, _, args, _) = expr.kind;
1019         if method.ident.name == sym::clone;
1020         if args.len() == 1;
1021         if let Some(arg) = args.get(0);
1022         then { arg } else { expr }
1023     }
1024 }
1025
1026 fn get_details_from_idx<'tcx>(
1027     cx: &LateContext<'tcx>,
1028     idx: &Expr<'_>,
1029     starts: &[Start<'tcx>],
1030 ) -> Option<(StartKind<'tcx>, Offset)> {
1031     fn get_start<'tcx>(e: &Expr<'_>, starts: &[Start<'tcx>]) -> Option<StartKind<'tcx>> {
1032         let id = path_to_local(e)?;
1033         starts.iter().find(|start| start.id == id).map(|start| start.kind)
1034     }
1035
1036     fn get_offset<'tcx>(cx: &LateContext<'tcx>, e: &Expr<'_>, starts: &[Start<'tcx>]) -> Option<Sugg<'static>> {
1037         match &e.kind {
1038             ExprKind::Lit(l) => match l.node {
1039                 ast::LitKind::Int(x, _ty) => Some(Sugg::NonParen(x.to_string().into())),
1040                 _ => None,
1041             },
1042             ExprKind::Path(..) if get_start(e, starts).is_none() => Some(Sugg::hir(cx, e, "???")),
1043             _ => None,
1044         }
1045     }
1046
1047     match idx.kind {
1048         ExprKind::Binary(op, lhs, rhs) => match op.node {
1049             BinOpKind::Add => {
1050                 let offset_opt = get_start(lhs, starts)
1051                     .and_then(|s| get_offset(cx, rhs, starts).map(|o| (s, o)))
1052                     .or_else(|| get_start(rhs, starts).and_then(|s| get_offset(cx, lhs, starts).map(|o| (s, o))));
1053
1054                 offset_opt.map(|(s, o)| (s, Offset::positive(o)))
1055             },
1056             BinOpKind::Sub => {
1057                 get_start(lhs, starts).and_then(|s| get_offset(cx, rhs, starts).map(|o| (s, Offset::negative(o))))
1058             },
1059             _ => None,
1060         },
1061         ExprKind::Path(..) => get_start(idx, starts).map(|s| (s, Offset::empty())),
1062         _ => None,
1063     }
1064 }
1065
1066 fn get_assignment<'tcx>(e: &'tcx Expr<'tcx>) -> Option<(&'tcx Expr<'tcx>, &'tcx Expr<'tcx>)> {
1067     if let ExprKind::Assign(lhs, rhs, _) = e.kind {
1068         Some((lhs, rhs))
1069     } else {
1070         None
1071     }
1072 }
1073
1074 /// Get assignments from the given block.
1075 /// The returned iterator yields `None` if no assignment expressions are there,
1076 /// filtering out the increments of the given whitelisted loop counters;
1077 /// because its job is to make sure there's nothing other than assignments and the increments.
1078 fn get_assignments<'a, 'tcx>(
1079     Block { stmts, expr, .. }: &'tcx Block<'tcx>,
1080     loop_counters: &'a [Start<'tcx>],
1081 ) -> impl Iterator<Item = Option<(&'tcx Expr<'tcx>, &'tcx Expr<'tcx>)>> + 'a {
1082     // As the `filter` and `map` below do different things, I think putting together
1083     // just increases complexity. (cc #3188 and #4193)
1084     stmts
1085         .iter()
1086         .filter_map(move |stmt| match stmt.kind {
1087             StmtKind::Local(..) | StmtKind::Item(..) => None,
1088             StmtKind::Expr(e) | StmtKind::Semi(e) => Some(e),
1089         })
1090         .chain((*expr).into_iter())
1091         .filter(move |e| {
1092             if let ExprKind::AssignOp(_, place, _) = e.kind {
1093                 path_to_local(place).map_or(false, |id| {
1094                     !loop_counters
1095                         .iter()
1096                         // skip the first item which should be `StartKind::Range`
1097                         // this makes it possible to use the slice with `StartKind::Range` in the same iterator loop.
1098                         .skip(1)
1099                         .any(|counter| counter.id == id)
1100                 })
1101             } else {
1102                 true
1103             }
1104         })
1105         .map(get_assignment)
1106 }
1107
1108 fn get_loop_counters<'a, 'tcx>(
1109     cx: &'a LateContext<'tcx>,
1110     body: &'tcx Block<'tcx>,
1111     expr: &'tcx Expr<'_>,
1112 ) -> Option<impl Iterator<Item = Start<'tcx>> + 'a> {
1113     // Look for variables that are incremented once per loop iteration.
1114     let mut increment_visitor = IncrementVisitor::new(cx);
1115     walk_block(&mut increment_visitor, body);
1116
1117     // For each candidate, check the parent block to see if
1118     // it's initialized to zero at the start of the loop.
1119     get_enclosing_block(&cx, expr.hir_id).and_then(|block| {
1120         increment_visitor
1121             .into_results()
1122             .filter_map(move |var_id| {
1123                 let mut initialize_visitor = InitializeVisitor::new(cx, expr, var_id);
1124                 walk_block(&mut initialize_visitor, block);
1125
1126                 initialize_visitor.get_result().map(|(_, initializer)| Start {
1127                     id: var_id,
1128                     kind: StartKind::Counter { initializer },
1129                 })
1130             })
1131             .into()
1132     })
1133 }
1134
1135 fn build_manual_memcpy_suggestion<'tcx>(
1136     cx: &LateContext<'tcx>,
1137     start: &Expr<'_>,
1138     end: &Expr<'_>,
1139     limits: ast::RangeLimits,
1140     dst: &IndexExpr<'_>,
1141     src: &IndexExpr<'_>,
1142 ) -> String {
1143     fn print_offset(offset: MinifyingSugg<'static>) -> MinifyingSugg<'static> {
1144         if offset.as_str() == "0" {
1145             sugg::EMPTY.into()
1146         } else {
1147             offset
1148         }
1149     }
1150
1151     let print_limit = |end: &Expr<'_>, end_str: &str, base: &Expr<'_>, sugg: MinifyingSugg<'static>| {
1152         if_chain! {
1153             if let ExprKind::MethodCall(method, _, len_args, _) = end.kind;
1154             if method.ident.name == sym!(len);
1155             if len_args.len() == 1;
1156             if let Some(arg) = len_args.get(0);
1157             if path_to_local(arg) == path_to_local(base);
1158             then {
1159                 if sugg.as_str() == end_str {
1160                     sugg::EMPTY.into()
1161                 } else {
1162                     sugg
1163                 }
1164             } else {
1165                 match limits {
1166                     ast::RangeLimits::Closed => {
1167                         sugg + &sugg::ONE.into()
1168                     },
1169                     ast::RangeLimits::HalfOpen => sugg,
1170                 }
1171             }
1172         }
1173     };
1174
1175     let start_str = Sugg::hir(cx, start, "").into();
1176     let end_str: MinifyingSugg<'_> = Sugg::hir(cx, end, "").into();
1177
1178     let print_offset_and_limit = |idx_expr: &IndexExpr<'_>| match idx_expr.idx {
1179         StartKind::Range => (
1180             print_offset(apply_offset(&start_str, &idx_expr.idx_offset)).into_sugg(),
1181             print_limit(
1182                 end,
1183                 end_str.as_str(),
1184                 idx_expr.base,
1185                 apply_offset(&end_str, &idx_expr.idx_offset),
1186             )
1187             .into_sugg(),
1188         ),
1189         StartKind::Counter { initializer } => {
1190             let counter_start = Sugg::hir(cx, initializer, "").into();
1191             (
1192                 print_offset(apply_offset(&counter_start, &idx_expr.idx_offset)).into_sugg(),
1193                 print_limit(
1194                     end,
1195                     end_str.as_str(),
1196                     idx_expr.base,
1197                     apply_offset(&end_str, &idx_expr.idx_offset) + &counter_start - &start_str,
1198                 )
1199                 .into_sugg(),
1200             )
1201         },
1202     };
1203
1204     let (dst_offset, dst_limit) = print_offset_and_limit(&dst);
1205     let (src_offset, src_limit) = print_offset_and_limit(&src);
1206
1207     let dst_base_str = snippet(cx, dst.base.span, "???");
1208     let src_base_str = snippet(cx, src.base.span, "???");
1209
1210     let dst = if dst_offset == sugg::EMPTY && dst_limit == sugg::EMPTY {
1211         dst_base_str
1212     } else {
1213         format!(
1214             "{}[{}..{}]",
1215             dst_base_str,
1216             dst_offset.maybe_par(),
1217             dst_limit.maybe_par()
1218         )
1219         .into()
1220     };
1221
1222     format!(
1223         "{}.clone_from_slice(&{}[{}..{}]);",
1224         dst,
1225         src_base_str,
1226         src_offset.maybe_par(),
1227         src_limit.maybe_par()
1228     )
1229 }
1230
1231 /// Checks for for loops that sequentially copy items from one slice-like
1232 /// object to another.
1233 fn detect_manual_memcpy<'tcx>(
1234     cx: &LateContext<'tcx>,
1235     pat: &'tcx Pat<'_>,
1236     arg: &'tcx Expr<'_>,
1237     body: &'tcx Expr<'_>,
1238     expr: &'tcx Expr<'_>,
1239 ) -> bool {
1240     if let Some(higher::Range {
1241         start: Some(start),
1242         end: Some(end),
1243         limits,
1244     }) = higher::range(arg)
1245     {
1246         // the var must be a single name
1247         if let PatKind::Binding(_, canonical_id, _, _) = pat.kind {
1248             let mut starts = vec![Start {
1249                 id: canonical_id,
1250                 kind: StartKind::Range,
1251             }];
1252
1253             // This is one of few ways to return different iterators
1254             // derived from: https://stackoverflow.com/questions/29760668/conditionally-iterate-over-one-of-several-possible-iterators/52064434#52064434
1255             let mut iter_a = None;
1256             let mut iter_b = None;
1257
1258             if let ExprKind::Block(block, _) = body.kind {
1259                 if let Some(loop_counters) = get_loop_counters(cx, block, expr) {
1260                     starts.extend(loop_counters);
1261                 }
1262                 iter_a = Some(get_assignments(block, &starts));
1263             } else {
1264                 iter_b = Some(get_assignment(body));
1265             }
1266
1267             let assignments = iter_a.into_iter().flatten().chain(iter_b.into_iter());
1268
1269             let big_sugg = assignments
1270                 // The only statements in the for loops can be indexed assignments from
1271                 // indexed retrievals (except increments of loop counters).
1272                 .map(|o| {
1273                     o.and_then(|(lhs, rhs)| {
1274                         let rhs = fetch_cloned_expr(rhs);
1275                         if_chain! {
1276                             if let ExprKind::Index(base_left, idx_left) = lhs.kind;
1277                             if let ExprKind::Index(base_right, idx_right) = rhs.kind;
1278                             if is_slice_like(cx, cx.typeck_results().expr_ty(base_left))
1279                                 && is_slice_like(cx, cx.typeck_results().expr_ty(base_right));
1280                             if let Some((start_left, offset_left)) = get_details_from_idx(cx, &idx_left, &starts);
1281                             if let Some((start_right, offset_right)) = get_details_from_idx(cx, &idx_right, &starts);
1282
1283                             // Source and destination must be different
1284                             if path_to_local(base_left) != path_to_local(base_right);
1285                             then {
1286                                 Some((IndexExpr { base: base_left, idx: start_left, idx_offset: offset_left },
1287                                     IndexExpr { base: base_right, idx: start_right, idx_offset: offset_right }))
1288                             } else {
1289                                 None
1290                             }
1291                         }
1292                     })
1293                 })
1294                 .map(|o| o.map(|(dst, src)| build_manual_memcpy_suggestion(cx, start, end, limits, &dst, &src)))
1295                 .collect::<Option<Vec<_>>>()
1296                 .filter(|v| !v.is_empty())
1297                 .map(|v| v.join("\n    "));
1298
1299             if let Some(big_sugg) = big_sugg {
1300                 span_lint_and_sugg(
1301                     cx,
1302                     MANUAL_MEMCPY,
1303                     get_span_of_entire_for_loop(expr),
1304                     "it looks like you're manually copying between slices",
1305                     "try replacing the loop by",
1306                     big_sugg,
1307                     Applicability::Unspecified,
1308                 );
1309                 return true;
1310             }
1311         }
1312     }
1313     false
1314 }
1315
1316 // Scans the body of the for loop and determines whether lint should be given
1317 struct SameItemPushVisitor<'a, 'tcx> {
1318     should_lint: bool,
1319     // this field holds the last vec push operation visited, which should be the only push seen
1320     vec_push: Option<(&'tcx Expr<'tcx>, &'tcx Expr<'tcx>)>,
1321     cx: &'a LateContext<'tcx>,
1322 }
1323
1324 impl<'a, 'tcx> Visitor<'tcx> for SameItemPushVisitor<'a, 'tcx> {
1325     type Map = Map<'tcx>;
1326
1327     fn visit_expr(&mut self, expr: &'tcx Expr<'_>) {
1328         match &expr.kind {
1329             // Non-determinism may occur ... don't give a lint
1330             ExprKind::Loop(..) | ExprKind::Match(..) => self.should_lint = false,
1331             ExprKind::Block(block, _) => self.visit_block(block),
1332             _ => {},
1333         }
1334     }
1335
1336     fn visit_block(&mut self, b: &'tcx Block<'_>) {
1337         for stmt in b.stmts.iter() {
1338             self.visit_stmt(stmt);
1339         }
1340     }
1341
1342     fn visit_stmt(&mut self, s: &'tcx Stmt<'_>) {
1343         let vec_push_option = get_vec_push(self.cx, s);
1344         if vec_push_option.is_none() {
1345             // Current statement is not a push so visit inside
1346             match &s.kind {
1347                 StmtKind::Expr(expr) | StmtKind::Semi(expr) => self.visit_expr(&expr),
1348                 _ => {},
1349             }
1350         } else {
1351             // Current statement is a push ...check whether another
1352             // push had been previously done
1353             if self.vec_push.is_none() {
1354                 self.vec_push = vec_push_option;
1355             } else {
1356                 // There are multiple pushes ... don't lint
1357                 self.should_lint = false;
1358             }
1359         }
1360     }
1361
1362     fn nested_visit_map(&mut self) -> NestedVisitorMap<Self::Map> {
1363         NestedVisitorMap::None
1364     }
1365 }
1366
1367 // Given some statement, determine if that statement is a push on a Vec. If it is, return
1368 // the Vec being pushed into and the item being pushed
1369 fn get_vec_push<'tcx>(cx: &LateContext<'tcx>, stmt: &'tcx Stmt<'_>) -> Option<(&'tcx Expr<'tcx>, &'tcx Expr<'tcx>)> {
1370     if_chain! {
1371             // Extract method being called
1372             if let StmtKind::Semi(semi_stmt) = &stmt.kind;
1373             if let ExprKind::MethodCall(path, _, args, _) = &semi_stmt.kind;
1374             // Figure out the parameters for the method call
1375             if let Some(self_expr) = args.get(0);
1376             if let Some(pushed_item) = args.get(1);
1377             // Check that the method being called is push() on a Vec
1378             if is_type_diagnostic_item(cx, cx.typeck_results().expr_ty(self_expr), sym::vec_type);
1379             if path.ident.name.as_str() == "push";
1380             then {
1381                 return Some((self_expr, pushed_item))
1382             }
1383     }
1384     None
1385 }
1386
1387 /// Detects for loop pushing the same item into a Vec
1388 fn detect_same_item_push<'tcx>(
1389     cx: &LateContext<'tcx>,
1390     pat: &'tcx Pat<'_>,
1391     _: &'tcx Expr<'_>,
1392     body: &'tcx Expr<'_>,
1393     _: &'tcx Expr<'_>,
1394 ) {
1395     fn emit_lint(cx: &LateContext<'_>, vec: &Expr<'_>, pushed_item: &Expr<'_>) {
1396         let vec_str = snippet_with_macro_callsite(cx, vec.span, "");
1397         let item_str = snippet_with_macro_callsite(cx, pushed_item.span, "");
1398
1399         span_lint_and_help(
1400             cx,
1401             SAME_ITEM_PUSH,
1402             vec.span,
1403             "it looks like the same item is being pushed into this Vec",
1404             None,
1405             &format!(
1406                 "try using vec![{};SIZE] or {}.resize(NEW_SIZE, {})",
1407                 item_str, vec_str, item_str
1408             ),
1409         )
1410     }
1411
1412     if !matches!(pat.kind, PatKind::Wild) {
1413         return;
1414     }
1415
1416     // Determine whether it is safe to lint the body
1417     let mut same_item_push_visitor = SameItemPushVisitor {
1418         should_lint: true,
1419         vec_push: None,
1420         cx,
1421     };
1422     walk_expr(&mut same_item_push_visitor, body);
1423     if same_item_push_visitor.should_lint {
1424         if let Some((vec, pushed_item)) = same_item_push_visitor.vec_push {
1425             let vec_ty = cx.typeck_results().expr_ty(vec);
1426             let ty = vec_ty.walk().nth(1).unwrap().expect_ty();
1427             if cx
1428                 .tcx
1429                 .lang_items()
1430                 .clone_trait()
1431                 .map_or(false, |id| implements_trait(cx, ty, id, &[]))
1432             {
1433                 // Make sure that the push does not involve possibly mutating values
1434                 match pushed_item.kind {
1435                     ExprKind::Path(ref qpath) => {
1436                         match cx.qpath_res(qpath, pushed_item.hir_id) {
1437                             // immutable bindings that are initialized with literal or constant
1438                             Res::Local(hir_id) => {
1439                                 if_chain! {
1440                                     let node = cx.tcx.hir().get(hir_id);
1441                                     if let Node::Binding(pat) = node;
1442                                     if let PatKind::Binding(bind_ann, ..) = pat.kind;
1443                                     if !matches!(bind_ann, BindingAnnotation::RefMut | BindingAnnotation::Mutable);
1444                                     let parent_node = cx.tcx.hir().get_parent_node(hir_id);
1445                                     if let Some(Node::Local(parent_let_expr)) = cx.tcx.hir().find(parent_node);
1446                                     if let Some(init) = parent_let_expr.init;
1447                                     then {
1448                                         match init.kind {
1449                                             // immutable bindings that are initialized with literal
1450                                             ExprKind::Lit(..) => emit_lint(cx, vec, pushed_item),
1451                                             // immutable bindings that are initialized with constant
1452                                             ExprKind::Path(ref path) => {
1453                                                 if let Res::Def(DefKind::Const, ..) = cx.qpath_res(path, init.hir_id) {
1454                                                     emit_lint(cx, vec, pushed_item);
1455                                                 }
1456                                             }
1457                                             _ => {},
1458                                         }
1459                                     }
1460                                 }
1461                             },
1462                             // constant
1463                             Res::Def(DefKind::Const, ..) => emit_lint(cx, vec, pushed_item),
1464                             _ => {},
1465                         }
1466                     },
1467                     ExprKind::Lit(..) => emit_lint(cx, vec, pushed_item),
1468                     _ => {},
1469                 }
1470             }
1471         }
1472     }
1473 }
1474
1475 /// Checks for looping over a range and then indexing a sequence with it.
1476 /// The iteratee must be a range literal.
1477 #[allow(clippy::too_many_lines)]
1478 fn check_for_loop_range<'tcx>(
1479     cx: &LateContext<'tcx>,
1480     pat: &'tcx Pat<'_>,
1481     arg: &'tcx Expr<'_>,
1482     body: &'tcx Expr<'_>,
1483     expr: &'tcx Expr<'_>,
1484 ) {
1485     if let Some(higher::Range {
1486         start: Some(start),
1487         ref end,
1488         limits,
1489     }) = higher::range(arg)
1490     {
1491         // the var must be a single name
1492         if let PatKind::Binding(_, canonical_id, ident, _) = pat.kind {
1493             let mut visitor = VarVisitor {
1494                 cx,
1495                 var: canonical_id,
1496                 indexed_mut: FxHashSet::default(),
1497                 indexed_indirectly: FxHashMap::default(),
1498                 indexed_directly: FxHashMap::default(),
1499                 referenced: FxHashSet::default(),
1500                 nonindex: false,
1501                 prefer_mutable: false,
1502             };
1503             walk_expr(&mut visitor, body);
1504
1505             // linting condition: we only indexed one variable, and indexed it directly
1506             if visitor.indexed_indirectly.is_empty() && visitor.indexed_directly.len() == 1 {
1507                 let (indexed, (indexed_extent, indexed_ty)) = visitor
1508                     .indexed_directly
1509                     .into_iter()
1510                     .next()
1511                     .expect("already checked that we have exactly 1 element");
1512
1513                 // ensure that the indexed variable was declared before the loop, see #601
1514                 if let Some(indexed_extent) = indexed_extent {
1515                     let parent_id = cx.tcx.hir().get_parent_item(expr.hir_id);
1516                     let parent_def_id = cx.tcx.hir().local_def_id(parent_id);
1517                     let region_scope_tree = cx.tcx.region_scope_tree(parent_def_id);
1518                     let pat_extent = region_scope_tree.var_scope(pat.hir_id.local_id);
1519                     if region_scope_tree.is_subscope_of(indexed_extent, pat_extent) {
1520                         return;
1521                     }
1522                 }
1523
1524                 // don't lint if the container that is indexed does not have .iter() method
1525                 let has_iter = has_iter_method(cx, indexed_ty);
1526                 if has_iter.is_none() {
1527                     return;
1528                 }
1529
1530                 // don't lint if the container that is indexed into is also used without
1531                 // indexing
1532                 if visitor.referenced.contains(&indexed) {
1533                     return;
1534                 }
1535
1536                 let starts_at_zero = is_integer_const(cx, start, 0);
1537
1538                 let skip = if starts_at_zero {
1539                     String::new()
1540                 } else if visitor.indexed_mut.contains(&indexed) && contains_name(indexed, start) {
1541                     return;
1542                 } else {
1543                     format!(".skip({})", snippet(cx, start.span, ".."))
1544                 };
1545
1546                 let mut end_is_start_plus_val = false;
1547
1548                 let take = if let Some(end) = *end {
1549                     let mut take_expr = end;
1550
1551                     if let ExprKind::Binary(ref op, ref left, ref right) = end.kind {
1552                         if let BinOpKind::Add = op.node {
1553                             let start_equal_left = SpanlessEq::new(cx).eq_expr(start, left);
1554                             let start_equal_right = SpanlessEq::new(cx).eq_expr(start, right);
1555
1556                             if start_equal_left {
1557                                 take_expr = right;
1558                             } else if start_equal_right {
1559                                 take_expr = left;
1560                             }
1561
1562                             end_is_start_plus_val = start_equal_left | start_equal_right;
1563                         }
1564                     }
1565
1566                     if is_len_call(end, indexed) || is_end_eq_array_len(cx, end, limits, indexed_ty) {
1567                         String::new()
1568                     } else if visitor.indexed_mut.contains(&indexed) && contains_name(indexed, take_expr) {
1569                         return;
1570                     } else {
1571                         match limits {
1572                             ast::RangeLimits::Closed => {
1573                                 let take_expr = sugg::Sugg::hir(cx, take_expr, "<count>");
1574                                 format!(".take({})", take_expr + sugg::ONE)
1575                             },
1576                             ast::RangeLimits::HalfOpen => format!(".take({})", snippet(cx, take_expr.span, "..")),
1577                         }
1578                     }
1579                 } else {
1580                     String::new()
1581                 };
1582
1583                 let (ref_mut, method) = if visitor.indexed_mut.contains(&indexed) {
1584                     ("mut ", "iter_mut")
1585                 } else {
1586                     ("", "iter")
1587                 };
1588
1589                 let take_is_empty = take.is_empty();
1590                 let mut method_1 = take;
1591                 let mut method_2 = skip;
1592
1593                 if end_is_start_plus_val {
1594                     mem::swap(&mut method_1, &mut method_2);
1595                 }
1596
1597                 if visitor.nonindex {
1598                     span_lint_and_then(
1599                         cx,
1600                         NEEDLESS_RANGE_LOOP,
1601                         expr.span,
1602                         &format!("the loop variable `{}` is used to index `{}`", ident.name, indexed),
1603                         |diag| {
1604                             multispan_sugg(
1605                                 diag,
1606                                 "consider using an iterator",
1607                                 vec![
1608                                     (pat.span, format!("({}, <item>)", ident.name)),
1609                                     (
1610                                         arg.span,
1611                                         format!("{}.{}().enumerate(){}{}", indexed, method, method_1, method_2),
1612                                     ),
1613                                 ],
1614                             );
1615                         },
1616                     );
1617                 } else {
1618                     let repl = if starts_at_zero && take_is_empty {
1619                         format!("&{}{}", ref_mut, indexed)
1620                     } else {
1621                         format!("{}.{}(){}{}", indexed, method, method_1, method_2)
1622                     };
1623
1624                     span_lint_and_then(
1625                         cx,
1626                         NEEDLESS_RANGE_LOOP,
1627                         expr.span,
1628                         &format!("the loop variable `{}` is only used to index `{}`", ident.name, indexed),
1629                         |diag| {
1630                             multispan_sugg(
1631                                 diag,
1632                                 "consider using an iterator",
1633                                 vec![(pat.span, "<item>".to_string()), (arg.span, repl)],
1634                             );
1635                         },
1636                     );
1637                 }
1638             }
1639         }
1640     }
1641 }
1642
1643 fn is_len_call(expr: &Expr<'_>, var: Symbol) -> bool {
1644     if_chain! {
1645         if let ExprKind::MethodCall(ref method, _, ref len_args, _) = expr.kind;
1646         if len_args.len() == 1;
1647         if method.ident.name == sym!(len);
1648         if let ExprKind::Path(QPath::Resolved(_, ref path)) = len_args[0].kind;
1649         if path.segments.len() == 1;
1650         if path.segments[0].ident.name == var;
1651         then {
1652             return true;
1653         }
1654     }
1655
1656     false
1657 }
1658
1659 fn is_end_eq_array_len<'tcx>(
1660     cx: &LateContext<'tcx>,
1661     end: &Expr<'_>,
1662     limits: ast::RangeLimits,
1663     indexed_ty: Ty<'tcx>,
1664 ) -> bool {
1665     if_chain! {
1666         if let ExprKind::Lit(ref lit) = end.kind;
1667         if let ast::LitKind::Int(end_int, _) = lit.node;
1668         if let ty::Array(_, arr_len_const) = indexed_ty.kind();
1669         if let Some(arr_len) = arr_len_const.try_eval_usize(cx.tcx, cx.param_env);
1670         then {
1671             return match limits {
1672                 ast::RangeLimits::Closed => end_int + 1 >= arr_len.into(),
1673                 ast::RangeLimits::HalfOpen => end_int >= arr_len.into(),
1674             };
1675         }
1676     }
1677
1678     false
1679 }
1680
1681 fn lint_iter_method(cx: &LateContext<'_>, args: &[Expr<'_>], arg: &Expr<'_>, method_name: &str) {
1682     let mut applicability = Applicability::MachineApplicable;
1683     let object = snippet_with_applicability(cx, args[0].span, "_", &mut applicability);
1684     let muta = if method_name == "iter_mut" { "mut " } else { "" };
1685     span_lint_and_sugg(
1686         cx,
1687         EXPLICIT_ITER_LOOP,
1688         arg.span,
1689         "it is more concise to loop over references to containers instead of using explicit \
1690          iteration methods",
1691         "to write this more concisely, try",
1692         format!("&{}{}", muta, object),
1693         applicability,
1694     )
1695 }
1696
1697 fn check_for_loop_arg(cx: &LateContext<'_>, pat: &Pat<'_>, arg: &Expr<'_>, expr: &Expr<'_>) {
1698     let mut next_loop_linted = false; // whether or not ITER_NEXT_LOOP lint was used
1699     if let ExprKind::MethodCall(ref method, _, ref args, _) = arg.kind {
1700         // just the receiver, no arguments
1701         if args.len() == 1 {
1702             let method_name = &*method.ident.as_str();
1703             // check for looping over x.iter() or x.iter_mut(), could use &x or &mut x
1704             if method_name == "iter" || method_name == "iter_mut" {
1705                 if is_ref_iterable_type(cx, &args[0]) {
1706                     lint_iter_method(cx, args, arg, method_name);
1707                 }
1708             } else if method_name == "into_iter" && match_trait_method(cx, arg, &paths::INTO_ITERATOR) {
1709                 let receiver_ty = cx.typeck_results().expr_ty(&args[0]);
1710                 let receiver_ty_adjusted = cx.typeck_results().expr_ty_adjusted(&args[0]);
1711                 if TyS::same_type(receiver_ty, receiver_ty_adjusted) {
1712                     let mut applicability = Applicability::MachineApplicable;
1713                     let object = snippet_with_applicability(cx, args[0].span, "_", &mut applicability);
1714                     span_lint_and_sugg(
1715                         cx,
1716                         EXPLICIT_INTO_ITER_LOOP,
1717                         arg.span,
1718                         "it is more concise to loop over containers instead of using explicit \
1719                          iteration methods",
1720                         "to write this more concisely, try",
1721                         object.to_string(),
1722                         applicability,
1723                     );
1724                 } else {
1725                     let ref_receiver_ty = cx.tcx.mk_ref(
1726                         cx.tcx.lifetimes.re_erased,
1727                         ty::TypeAndMut {
1728                             ty: receiver_ty,
1729                             mutbl: Mutability::Not,
1730                         },
1731                     );
1732                     if TyS::same_type(receiver_ty_adjusted, ref_receiver_ty) {
1733                         lint_iter_method(cx, args, arg, method_name)
1734                     }
1735                 }
1736             } else if method_name == "next" && match_trait_method(cx, arg, &paths::ITERATOR) {
1737                 span_lint(
1738                     cx,
1739                     ITER_NEXT_LOOP,
1740                     expr.span,
1741                     "you are iterating over `Iterator::next()` which is an Option; this will compile but is \
1742                     probably not what you want",
1743                 );
1744                 next_loop_linted = true;
1745             }
1746         }
1747     }
1748     if !next_loop_linted {
1749         check_arg_type(cx, pat, arg);
1750     }
1751 }
1752
1753 /// Checks for `for` loops over `Option`s and `Result`s.
1754 fn check_arg_type(cx: &LateContext<'_>, pat: &Pat<'_>, arg: &Expr<'_>) {
1755     let ty = cx.typeck_results().expr_ty(arg);
1756     if is_type_diagnostic_item(cx, ty, sym::option_type) {
1757         span_lint_and_help(
1758             cx,
1759             FOR_LOOPS_OVER_FALLIBLES,
1760             arg.span,
1761             &format!(
1762                 "for loop over `{0}`, which is an `Option`. This is more readably written as an \
1763                 `if let` statement",
1764                 snippet(cx, arg.span, "_")
1765             ),
1766             None,
1767             &format!(
1768                 "consider replacing `for {0} in {1}` with `if let Some({0}) = {1}`",
1769                 snippet(cx, pat.span, "_"),
1770                 snippet(cx, arg.span, "_")
1771             ),
1772         );
1773     } else if is_type_diagnostic_item(cx, ty, sym::result_type) {
1774         span_lint_and_help(
1775             cx,
1776             FOR_LOOPS_OVER_FALLIBLES,
1777             arg.span,
1778             &format!(
1779                 "for loop over `{0}`, which is a `Result`. This is more readably written as an \
1780                 `if let` statement",
1781                 snippet(cx, arg.span, "_")
1782             ),
1783             None,
1784             &format!(
1785                 "consider replacing `for {0} in {1}` with `if let Ok({0}) = {1}`",
1786                 snippet(cx, pat.span, "_"),
1787                 snippet(cx, arg.span, "_")
1788             ),
1789         );
1790     }
1791 }
1792
1793 // To trigger the EXPLICIT_COUNTER_LOOP lint, a variable must be
1794 // incremented exactly once in the loop body, and initialized to zero
1795 // at the start of the loop.
1796 fn check_for_loop_explicit_counter<'tcx>(
1797     cx: &LateContext<'tcx>,
1798     pat: &'tcx Pat<'_>,
1799     arg: &'tcx Expr<'_>,
1800     body: &'tcx Expr<'_>,
1801     expr: &'tcx Expr<'_>,
1802 ) {
1803     // Look for variables that are incremented once per loop iteration.
1804     let mut increment_visitor = IncrementVisitor::new(cx);
1805     walk_expr(&mut increment_visitor, body);
1806
1807     // For each candidate, check the parent block to see if
1808     // it's initialized to zero at the start of the loop.
1809     if let Some(block) = get_enclosing_block(&cx, expr.hir_id) {
1810         for id in increment_visitor.into_results() {
1811             let mut initialize_visitor = InitializeVisitor::new(cx, expr, id);
1812             walk_block(&mut initialize_visitor, block);
1813
1814             if_chain! {
1815                 if let Some((name, initializer)) = initialize_visitor.get_result();
1816                 if is_integer_const(cx, initializer, 0);
1817                 then {
1818                     let mut applicability = Applicability::MachineApplicable;
1819
1820                     let for_span = get_span_of_entire_for_loop(expr);
1821
1822                     span_lint_and_sugg(
1823                         cx,
1824                         EXPLICIT_COUNTER_LOOP,
1825                         for_span.with_hi(arg.span.hi()),
1826                         &format!("the variable `{}` is used as a loop counter", name),
1827                         "consider using",
1828                         format!(
1829                             "for ({}, {}) in {}.enumerate()",
1830                             name,
1831                             snippet_with_applicability(cx, pat.span, "item", &mut applicability),
1832                             make_iterator_snippet(cx, arg, &mut applicability),
1833                         ),
1834                         applicability,
1835                     );
1836                 }
1837             }
1838         }
1839     }
1840 }
1841
1842 /// If `arg` was the argument to a `for` loop, return the "cleanest" way of writing the
1843 /// actual `Iterator` that the loop uses.
1844 fn make_iterator_snippet(cx: &LateContext<'_>, arg: &Expr<'_>, applic_ref: &mut Applicability) -> String {
1845     let impls_iterator = get_trait_def_id(cx, &paths::ITERATOR).map_or(false, |id| {
1846         implements_trait(cx, cx.typeck_results().expr_ty(arg), id, &[])
1847     });
1848     if impls_iterator {
1849         format!(
1850             "{}",
1851             sugg::Sugg::hir_with_applicability(cx, arg, "_", applic_ref).maybe_par()
1852         )
1853     } else {
1854         // (&x).into_iter() ==> x.iter()
1855         // (&mut x).into_iter() ==> x.iter_mut()
1856         match &arg.kind {
1857             ExprKind::AddrOf(BorrowKind::Ref, mutability, arg_inner)
1858                 if has_iter_method(cx, cx.typeck_results().expr_ty(&arg_inner)).is_some() =>
1859             {
1860                 let meth_name = match mutability {
1861                     Mutability::Mut => "iter_mut",
1862                     Mutability::Not => "iter",
1863                 };
1864                 format!(
1865                     "{}.{}()",
1866                     sugg::Sugg::hir_with_applicability(cx, &arg_inner, "_", applic_ref).maybe_par(),
1867                     meth_name,
1868                 )
1869             }
1870             _ => format!(
1871                 "{}.into_iter()",
1872                 sugg::Sugg::hir_with_applicability(cx, arg, "_", applic_ref).maybe_par()
1873             ),
1874         }
1875     }
1876 }
1877
1878 /// Checks for the `FOR_KV_MAP` lint.
1879 fn check_for_loop_over_map_kv<'tcx>(
1880     cx: &LateContext<'tcx>,
1881     pat: &'tcx Pat<'_>,
1882     arg: &'tcx Expr<'_>,
1883     body: &'tcx Expr<'_>,
1884     expr: &'tcx Expr<'_>,
1885 ) {
1886     let pat_span = pat.span;
1887
1888     if let PatKind::Tuple(ref pat, _) = pat.kind {
1889         if pat.len() == 2 {
1890             let arg_span = arg.span;
1891             let (new_pat_span, kind, ty, mutbl) = match *cx.typeck_results().expr_ty(arg).kind() {
1892                 ty::Ref(_, ty, mutbl) => match (&pat[0].kind, &pat[1].kind) {
1893                     (key, _) if pat_is_wild(cx, key, body) => (pat[1].span, "value", ty, mutbl),
1894                     (_, value) if pat_is_wild(cx, value, body) => (pat[0].span, "key", ty, Mutability::Not),
1895                     _ => return,
1896                 },
1897                 _ => return,
1898             };
1899             let mutbl = match mutbl {
1900                 Mutability::Not => "",
1901                 Mutability::Mut => "_mut",
1902             };
1903             let arg = match arg.kind {
1904                 ExprKind::AddrOf(BorrowKind::Ref, _, ref expr) => &**expr,
1905                 _ => arg,
1906             };
1907
1908             if is_type_diagnostic_item(cx, ty, sym!(hashmap_type)) || match_type(cx, ty, &paths::BTREEMAP) {
1909                 span_lint_and_then(
1910                     cx,
1911                     FOR_KV_MAP,
1912                     expr.span,
1913                     &format!("you seem to want to iterate on a map's {}s", kind),
1914                     |diag| {
1915                         let map = sugg::Sugg::hir(cx, arg, "map");
1916                         multispan_sugg(
1917                             diag,
1918                             "use the corresponding method",
1919                             vec![
1920                                 (pat_span, snippet(cx, new_pat_span, kind).into_owned()),
1921                                 (arg_span, format!("{}.{}s{}()", map.maybe_par(), kind, mutbl)),
1922                             ],
1923                         );
1924                     },
1925                 );
1926             }
1927         }
1928     }
1929 }
1930
1931 fn check_for_single_element_loop<'tcx>(
1932     cx: &LateContext<'tcx>,
1933     pat: &'tcx Pat<'_>,
1934     arg: &'tcx Expr<'_>,
1935     body: &'tcx Expr<'_>,
1936     expr: &'tcx Expr<'_>,
1937 ) {
1938     if_chain! {
1939         if let ExprKind::AddrOf(BorrowKind::Ref, _, ref arg_expr) = arg.kind;
1940         if let PatKind::Binding(.., target, _) = pat.kind;
1941         if let ExprKind::Array([arg_expression]) = arg_expr.kind;
1942         if let ExprKind::Path(ref list_item) = arg_expression.kind;
1943         if let Some(list_item_name) = single_segment_path(list_item).map(|ps| ps.ident.name);
1944         if let ExprKind::Block(ref block, _) = body.kind;
1945         if !block.stmts.is_empty();
1946
1947         then {
1948             let for_span = get_span_of_entire_for_loop(expr);
1949             let mut block_str = snippet(cx, block.span, "..").into_owned();
1950             block_str.remove(0);
1951             block_str.pop();
1952
1953
1954             span_lint_and_sugg(
1955                 cx,
1956                 SINGLE_ELEMENT_LOOP,
1957                 for_span,
1958                 "for loop over a single element",
1959                 "try",
1960                 format!("{{\n{}let {} = &{};{}}}", " ".repeat(indent_of(cx, block.stmts[0].span).unwrap_or(0)), target.name, list_item_name, block_str),
1961                 Applicability::MachineApplicable
1962             )
1963         }
1964     }
1965 }
1966
1967 /// Check for unnecessary `if let` usage in a for loop where only the `Some` or `Ok` variant of the
1968 /// iterator element is used.
1969 fn check_manual_flatten<'tcx>(
1970     cx: &LateContext<'tcx>,
1971     pat: &'tcx Pat<'_>,
1972     arg: &'tcx Expr<'_>,
1973     body: &'tcx Expr<'_>,
1974     span: Span,
1975 ) {
1976     if let ExprKind::Block(ref block, _) = body.kind {
1977         // Ensure the `if let` statement is the only expression or statement in the for-loop
1978         let inner_expr = if block.stmts.len() == 1 && block.expr.is_none() {
1979             let match_stmt = &block.stmts[0];
1980             if let StmtKind::Semi(inner_expr) = match_stmt.kind {
1981                 Some(inner_expr)
1982             } else {
1983                 None
1984             }
1985         } else if block.stmts.is_empty() {
1986             block.expr
1987         } else {
1988             None
1989         };
1990
1991         if_chain! {
1992             if let Some(inner_expr) = inner_expr;
1993             if let ExprKind::Match(
1994                 ref match_expr, ref match_arms, MatchSource::IfLetDesugar{ contains_else_clause: false }
1995             ) = inner_expr.kind;
1996             // Ensure match_expr in `if let` statement is the same as the pat from the for-loop
1997             if let PatKind::Binding(_, pat_hir_id, _, _) = pat.kind;
1998             if path_to_local_id(match_expr, pat_hir_id);
1999             // Ensure the `if let` statement is for the `Some` variant of `Option` or the `Ok` variant of `Result`
2000             if let PatKind::TupleStruct(QPath::Resolved(None, path), _, _) = match_arms[0].pat.kind;
2001             let some_ctor = is_some_ctor(cx, path.res);
2002             let ok_ctor = is_ok_ctor(cx, path.res);
2003             if some_ctor || ok_ctor;
2004             let if_let_type = if some_ctor { "Some" } else { "Ok" };
2005
2006             then {
2007                 // Prepare the error message
2008                 let msg = format!("unnecessary `if let` since only the `{}` variant of the iterator element is used", if_let_type);
2009
2010                 // Prepare the help message
2011                 let mut applicability = Applicability::MaybeIncorrect;
2012                 let arg_snippet = make_iterator_snippet(cx, arg, &mut applicability);
2013
2014                 span_lint_and_then(
2015                     cx,
2016                     MANUAL_FLATTEN,
2017                     span,
2018                     &msg,
2019                     |diag| {
2020                         let sugg = format!("{}.flatten()", arg_snippet);
2021                         diag.span_suggestion(
2022                             arg.span,
2023                             "try",
2024                             sugg,
2025                             Applicability::MaybeIncorrect,
2026                         );
2027                         diag.span_help(
2028                             inner_expr.span,
2029                             "...and remove the `if let` statement in the for loop",
2030                         );
2031                     }
2032                 );
2033             }
2034         }
2035     }
2036 }
2037
2038 struct MutatePairDelegate<'a, 'tcx> {
2039     cx: &'a LateContext<'tcx>,
2040     hir_id_low: Option<HirId>,
2041     hir_id_high: Option<HirId>,
2042     span_low: Option<Span>,
2043     span_high: Option<Span>,
2044 }
2045
2046 impl<'tcx> Delegate<'tcx> for MutatePairDelegate<'_, 'tcx> {
2047     fn consume(&mut self, _: &PlaceWithHirId<'tcx>, _: HirId, _: ConsumeMode) {}
2048
2049     fn borrow(&mut self, cmt: &PlaceWithHirId<'tcx>, diag_expr_id: HirId, bk: ty::BorrowKind) {
2050         if let ty::BorrowKind::MutBorrow = bk {
2051             if let PlaceBase::Local(id) = cmt.place.base {
2052                 if Some(id) == self.hir_id_low {
2053                     self.span_low = Some(self.cx.tcx.hir().span(diag_expr_id))
2054                 }
2055                 if Some(id) == self.hir_id_high {
2056                     self.span_high = Some(self.cx.tcx.hir().span(diag_expr_id))
2057                 }
2058             }
2059         }
2060     }
2061
2062     fn mutate(&mut self, cmt: &PlaceWithHirId<'tcx>, diag_expr_id: HirId) {
2063         if let PlaceBase::Local(id) = cmt.place.base {
2064             if Some(id) == self.hir_id_low {
2065                 self.span_low = Some(self.cx.tcx.hir().span(diag_expr_id))
2066             }
2067             if Some(id) == self.hir_id_high {
2068                 self.span_high = Some(self.cx.tcx.hir().span(diag_expr_id))
2069             }
2070         }
2071     }
2072 }
2073
2074 impl MutatePairDelegate<'_, '_> {
2075     fn mutation_span(&self) -> (Option<Span>, Option<Span>) {
2076         (self.span_low, self.span_high)
2077     }
2078 }
2079
2080 fn check_for_mut_range_bound(cx: &LateContext<'_>, arg: &Expr<'_>, body: &Expr<'_>) {
2081     if let Some(higher::Range {
2082         start: Some(start),
2083         end: Some(end),
2084         ..
2085     }) = higher::range(arg)
2086     {
2087         let mut_ids = vec![check_for_mutability(cx, start), check_for_mutability(cx, end)];
2088         if mut_ids[0].is_some() || mut_ids[1].is_some() {
2089             let (span_low, span_high) = check_for_mutation(cx, body, &mut_ids);
2090             mut_warn_with_span(cx, span_low);
2091             mut_warn_with_span(cx, span_high);
2092         }
2093     }
2094 }
2095
2096 fn mut_warn_with_span(cx: &LateContext<'_>, span: Option<Span>) {
2097     if let Some(sp) = span {
2098         span_lint(
2099             cx,
2100             MUT_RANGE_BOUND,
2101             sp,
2102             "attempt to mutate range bound within loop; note that the range of the loop is unchanged",
2103         );
2104     }
2105 }
2106
2107 fn check_for_mutability(cx: &LateContext<'_>, bound: &Expr<'_>) -> Option<HirId> {
2108     if_chain! {
2109         if let Some(hir_id) = path_to_local(bound);
2110         if let Node::Binding(pat) = cx.tcx.hir().get(hir_id);
2111         if let PatKind::Binding(BindingAnnotation::Mutable, ..) = pat.kind;
2112         then {
2113             return Some(hir_id);
2114         }
2115     }
2116     None
2117 }
2118
2119 fn check_for_mutation<'tcx>(
2120     cx: &LateContext<'tcx>,
2121     body: &Expr<'_>,
2122     bound_ids: &[Option<HirId>],
2123 ) -> (Option<Span>, Option<Span>) {
2124     let mut delegate = MutatePairDelegate {
2125         cx,
2126         hir_id_low: bound_ids[0],
2127         hir_id_high: bound_ids[1],
2128         span_low: None,
2129         span_high: None,
2130     };
2131     cx.tcx.infer_ctxt().enter(|infcx| {
2132         ExprUseVisitor::new(
2133             &mut delegate,
2134             &infcx,
2135             body.hir_id.owner,
2136             cx.param_env,
2137             cx.typeck_results(),
2138         )
2139         .walk_expr(body);
2140     });
2141     delegate.mutation_span()
2142 }
2143
2144 /// Returns `true` if the pattern is a `PatWild` or an ident prefixed with `_`.
2145 fn pat_is_wild<'tcx>(cx: &LateContext<'tcx>, pat: &'tcx PatKind<'_>, body: &'tcx Expr<'_>) -> bool {
2146     match *pat {
2147         PatKind::Wild => true,
2148         PatKind::Binding(_, id, ident, None) if ident.as_str().starts_with('_') => {
2149             !LocalUsedVisitor::new(cx, id).check_expr(body)
2150         },
2151         _ => false,
2152     }
2153 }
2154
2155 struct VarVisitor<'a, 'tcx> {
2156     /// context reference
2157     cx: &'a LateContext<'tcx>,
2158     /// var name to look for as index
2159     var: HirId,
2160     /// indexed variables that are used mutably
2161     indexed_mut: FxHashSet<Symbol>,
2162     /// indirectly indexed variables (`v[(i + 4) % N]`), the extend is `None` for global
2163     indexed_indirectly: FxHashMap<Symbol, Option<region::Scope>>,
2164     /// subset of `indexed` of vars that are indexed directly: `v[i]`
2165     /// this will not contain cases like `v[calc_index(i)]` or `v[(i + 4) % N]`
2166     indexed_directly: FxHashMap<Symbol, (Option<region::Scope>, Ty<'tcx>)>,
2167     /// Any names that are used outside an index operation.
2168     /// Used to detect things like `&mut vec` used together with `vec[i]`
2169     referenced: FxHashSet<Symbol>,
2170     /// has the loop variable been used in expressions other than the index of
2171     /// an index op?
2172     nonindex: bool,
2173     /// Whether we are inside the `$` in `&mut $` or `$ = foo` or `$.bar`, where bar
2174     /// takes `&mut self`
2175     prefer_mutable: bool,
2176 }
2177
2178 impl<'a, 'tcx> VarVisitor<'a, 'tcx> {
2179     fn check(&mut self, idx: &'tcx Expr<'_>, seqexpr: &'tcx Expr<'_>, expr: &'tcx Expr<'_>) -> bool {
2180         if_chain! {
2181             // the indexed container is referenced by a name
2182             if let ExprKind::Path(ref seqpath) = seqexpr.kind;
2183             if let QPath::Resolved(None, ref seqvar) = *seqpath;
2184             if seqvar.segments.len() == 1;
2185             then {
2186                 let index_used_directly = path_to_local_id(idx, self.var);
2187                 let indexed_indirectly = {
2188                     let mut used_visitor = LocalUsedVisitor::new(self.cx, self.var);
2189                     walk_expr(&mut used_visitor, idx);
2190                     used_visitor.used
2191                 };
2192
2193                 if indexed_indirectly || index_used_directly {
2194                     if self.prefer_mutable {
2195                         self.indexed_mut.insert(seqvar.segments[0].ident.name);
2196                     }
2197                     let res = self.cx.qpath_res(seqpath, seqexpr.hir_id);
2198                     match res {
2199                         Res::Local(hir_id) => {
2200                             let parent_id = self.cx.tcx.hir().get_parent_item(expr.hir_id);
2201                             let parent_def_id = self.cx.tcx.hir().local_def_id(parent_id);
2202                             let extent = self.cx.tcx.region_scope_tree(parent_def_id).var_scope(hir_id.local_id);
2203                             if indexed_indirectly {
2204                                 self.indexed_indirectly.insert(seqvar.segments[0].ident.name, Some(extent));
2205                             }
2206                             if index_used_directly {
2207                                 self.indexed_directly.insert(
2208                                     seqvar.segments[0].ident.name,
2209                                     (Some(extent), self.cx.typeck_results().node_type(seqexpr.hir_id)),
2210                                 );
2211                             }
2212                             return false;  // no need to walk further *on the variable*
2213                         }
2214                         Res::Def(DefKind::Static | DefKind::Const, ..) => {
2215                             if indexed_indirectly {
2216                                 self.indexed_indirectly.insert(seqvar.segments[0].ident.name, None);
2217                             }
2218                             if index_used_directly {
2219                                 self.indexed_directly.insert(
2220                                     seqvar.segments[0].ident.name,
2221                                     (None, self.cx.typeck_results().node_type(seqexpr.hir_id)),
2222                                 );
2223                             }
2224                             return false;  // no need to walk further *on the variable*
2225                         }
2226                         _ => (),
2227                     }
2228                 }
2229             }
2230         }
2231         true
2232     }
2233 }
2234
2235 impl<'a, 'tcx> Visitor<'tcx> for VarVisitor<'a, 'tcx> {
2236     type Map = Map<'tcx>;
2237
2238     fn visit_expr(&mut self, expr: &'tcx Expr<'_>) {
2239         if_chain! {
2240             // a range index op
2241             if let ExprKind::MethodCall(ref meth, _, ref args, _) = expr.kind;
2242             if (meth.ident.name == sym::index && match_trait_method(self.cx, expr, &paths::INDEX))
2243                 || (meth.ident.name == sym::index_mut && match_trait_method(self.cx, expr, &paths::INDEX_MUT));
2244             if !self.check(&args[1], &args[0], expr);
2245             then { return }
2246         }
2247
2248         if_chain! {
2249             // an index op
2250             if let ExprKind::Index(ref seqexpr, ref idx) = expr.kind;
2251             if !self.check(idx, seqexpr, expr);
2252             then { return }
2253         }
2254
2255         if_chain! {
2256             // directly using a variable
2257             if let ExprKind::Path(QPath::Resolved(None, path)) = expr.kind;
2258             if let Res::Local(local_id) = path.res;
2259             then {
2260                 if local_id == self.var {
2261                     self.nonindex = true;
2262                 } else {
2263                     // not the correct variable, but still a variable
2264                     self.referenced.insert(path.segments[0].ident.name);
2265                 }
2266             }
2267         }
2268
2269         let old = self.prefer_mutable;
2270         match expr.kind {
2271             ExprKind::AssignOp(_, ref lhs, ref rhs) | ExprKind::Assign(ref lhs, ref rhs, _) => {
2272                 self.prefer_mutable = true;
2273                 self.visit_expr(lhs);
2274                 self.prefer_mutable = false;
2275                 self.visit_expr(rhs);
2276             },
2277             ExprKind::AddrOf(BorrowKind::Ref, mutbl, ref expr) => {
2278                 if mutbl == Mutability::Mut {
2279                     self.prefer_mutable = true;
2280                 }
2281                 self.visit_expr(expr);
2282             },
2283             ExprKind::Call(ref f, args) => {
2284                 self.visit_expr(f);
2285                 for expr in args {
2286                     let ty = self.cx.typeck_results().expr_ty_adjusted(expr);
2287                     self.prefer_mutable = false;
2288                     if let ty::Ref(_, _, mutbl) = *ty.kind() {
2289                         if mutbl == Mutability::Mut {
2290                             self.prefer_mutable = true;
2291                         }
2292                     }
2293                     self.visit_expr(expr);
2294                 }
2295             },
2296             ExprKind::MethodCall(_, _, args, _) => {
2297                 let def_id = self.cx.typeck_results().type_dependent_def_id(expr.hir_id).unwrap();
2298                 for (ty, expr) in self.cx.tcx.fn_sig(def_id).inputs().skip_binder().iter().zip(args) {
2299                     self.prefer_mutable = false;
2300                     if let ty::Ref(_, _, mutbl) = *ty.kind() {
2301                         if mutbl == Mutability::Mut {
2302                             self.prefer_mutable = true;
2303                         }
2304                     }
2305                     self.visit_expr(expr);
2306                 }
2307             },
2308             ExprKind::Closure(_, _, body_id, ..) => {
2309                 let body = self.cx.tcx.hir().body(body_id);
2310                 self.visit_expr(&body.value);
2311             },
2312             _ => walk_expr(self, expr),
2313         }
2314         self.prefer_mutable = old;
2315     }
2316     fn nested_visit_map(&mut self) -> NestedVisitorMap<Self::Map> {
2317         NestedVisitorMap::None
2318     }
2319 }
2320
2321 fn is_used_inside<'tcx>(cx: &LateContext<'tcx>, expr: &'tcx Expr<'_>, container: &'tcx Expr<'_>) -> bool {
2322     let def_id = match path_to_local(expr) {
2323         Some(id) => id,
2324         None => return false,
2325     };
2326     if let Some(used_mutably) = mutated_variables(container, cx) {
2327         if used_mutably.contains(&def_id) {
2328             return true;
2329         }
2330     }
2331     false
2332 }
2333
2334 fn is_iterator_used_after_while_let<'tcx>(cx: &LateContext<'tcx>, iter_expr: &'tcx Expr<'_>) -> bool {
2335     let def_id = match path_to_local(iter_expr) {
2336         Some(id) => id,
2337         None => return false,
2338     };
2339     let mut visitor = VarUsedAfterLoopVisitor {
2340         def_id,
2341         iter_expr_id: iter_expr.hir_id,
2342         past_while_let: false,
2343         var_used_after_while_let: false,
2344     };
2345     if let Some(enclosing_block) = get_enclosing_block(cx, def_id) {
2346         walk_block(&mut visitor, enclosing_block);
2347     }
2348     visitor.var_used_after_while_let
2349 }
2350
2351 struct VarUsedAfterLoopVisitor {
2352     def_id: HirId,
2353     iter_expr_id: HirId,
2354     past_while_let: bool,
2355     var_used_after_while_let: bool,
2356 }
2357
2358 impl<'tcx> Visitor<'tcx> for VarUsedAfterLoopVisitor {
2359     type Map = Map<'tcx>;
2360
2361     fn visit_expr(&mut self, expr: &'tcx Expr<'_>) {
2362         if self.past_while_let {
2363             if path_to_local_id(expr, self.def_id) {
2364                 self.var_used_after_while_let = true;
2365             }
2366         } else if self.iter_expr_id == expr.hir_id {
2367             self.past_while_let = true;
2368         }
2369         walk_expr(self, expr);
2370     }
2371     fn nested_visit_map(&mut self) -> NestedVisitorMap<Self::Map> {
2372         NestedVisitorMap::None
2373     }
2374 }
2375
2376 /// Returns `true` if the type of expr is one that provides `IntoIterator` impls
2377 /// for `&T` and `&mut T`, such as `Vec`.
2378 #[rustfmt::skip]
2379 fn is_ref_iterable_type(cx: &LateContext<'_>, e: &Expr<'_>) -> bool {
2380     // no walk_ptrs_ty: calling iter() on a reference can make sense because it
2381     // will allow further borrows afterwards
2382     let ty = cx.typeck_results().expr_ty(e);
2383     is_iterable_array(ty, cx) ||
2384     is_type_diagnostic_item(cx, ty, sym::vec_type) ||
2385     match_type(cx, ty, &paths::LINKED_LIST) ||
2386     is_type_diagnostic_item(cx, ty, sym!(hashmap_type)) ||
2387     is_type_diagnostic_item(cx, ty, sym!(hashset_type)) ||
2388     is_type_diagnostic_item(cx, ty, sym!(vecdeque_type)) ||
2389     match_type(cx, ty, &paths::BINARY_HEAP) ||
2390     match_type(cx, ty, &paths::BTREEMAP) ||
2391     match_type(cx, ty, &paths::BTREESET)
2392 }
2393
2394 fn is_iterable_array<'tcx>(ty: Ty<'tcx>, cx: &LateContext<'tcx>) -> bool {
2395     // IntoIterator is currently only implemented for array sizes <= 32 in rustc
2396     match ty.kind() {
2397         ty::Array(_, n) => n
2398             .try_eval_usize(cx.tcx, cx.param_env)
2399             .map_or(false, |val| (0..=32).contains(&val)),
2400         _ => false,
2401     }
2402 }
2403
2404 /// If a block begins with a statement (possibly a `let` binding) and has an
2405 /// expression, return it.
2406 fn extract_expr_from_first_stmt<'tcx>(block: &Block<'tcx>) -> Option<&'tcx Expr<'tcx>> {
2407     if block.stmts.is_empty() {
2408         return None;
2409     }
2410     if let StmtKind::Local(ref local) = block.stmts[0].kind {
2411         local.init //.map(|expr| expr)
2412     } else {
2413         None
2414     }
2415 }
2416
2417 /// If a block begins with an expression (with or without semicolon), return it.
2418 fn extract_first_expr<'tcx>(block: &Block<'tcx>) -> Option<&'tcx Expr<'tcx>> {
2419     match block.expr {
2420         Some(ref expr) if block.stmts.is_empty() => Some(expr),
2421         None if !block.stmts.is_empty() => match block.stmts[0].kind {
2422             StmtKind::Expr(ref expr) | StmtKind::Semi(ref expr) => Some(expr),
2423             StmtKind::Local(..) | StmtKind::Item(..) => None,
2424         },
2425         _ => None,
2426     }
2427 }
2428
2429 /// Returns `true` if expr contains a single break expr without destination label
2430 /// and
2431 /// passed expression. The expression may be within a block.
2432 fn is_simple_break_expr(expr: &Expr<'_>) -> bool {
2433     match expr.kind {
2434         ExprKind::Break(dest, ref passed_expr) if dest.label.is_none() && passed_expr.is_none() => true,
2435         ExprKind::Block(ref b, _) => extract_first_expr(b).map_or(false, |subexpr| is_simple_break_expr(subexpr)),
2436         _ => false,
2437     }
2438 }
2439
2440 #[derive(Debug, PartialEq)]
2441 enum IncrementVisitorVarState {
2442     Initial,  // Not examined yet
2443     IncrOnce, // Incremented exactly once, may be a loop counter
2444     DontWarn,
2445 }
2446
2447 /// Scan a for loop for variables that are incremented exactly once and not used after that.
2448 struct IncrementVisitor<'a, 'tcx> {
2449     cx: &'a LateContext<'tcx>,                          // context reference
2450     states: FxHashMap<HirId, IncrementVisitorVarState>, // incremented variables
2451     depth: u32,                                         // depth of conditional expressions
2452     done: bool,
2453 }
2454
2455 impl<'a, 'tcx> IncrementVisitor<'a, 'tcx> {
2456     fn new(cx: &'a LateContext<'tcx>) -> Self {
2457         Self {
2458             cx,
2459             states: FxHashMap::default(),
2460             depth: 0,
2461             done: false,
2462         }
2463     }
2464
2465     fn into_results(self) -> impl Iterator<Item = HirId> {
2466         self.states.into_iter().filter_map(|(id, state)| {
2467             if state == IncrementVisitorVarState::IncrOnce {
2468                 Some(id)
2469             } else {
2470                 None
2471             }
2472         })
2473     }
2474 }
2475
2476 impl<'a, 'tcx> Visitor<'tcx> for IncrementVisitor<'a, 'tcx> {
2477     type Map = Map<'tcx>;
2478
2479     fn visit_expr(&mut self, expr: &'tcx Expr<'_>) {
2480         if self.done {
2481             return;
2482         }
2483
2484         // If node is a variable
2485         if let Some(def_id) = path_to_local(expr) {
2486             if let Some(parent) = get_parent_expr(self.cx, expr) {
2487                 let state = self.states.entry(def_id).or_insert(IncrementVisitorVarState::Initial);
2488                 if *state == IncrementVisitorVarState::IncrOnce {
2489                     *state = IncrementVisitorVarState::DontWarn;
2490                     return;
2491                 }
2492
2493                 match parent.kind {
2494                     ExprKind::AssignOp(op, ref lhs, ref rhs) => {
2495                         if lhs.hir_id == expr.hir_id {
2496                             *state = if op.node == BinOpKind::Add
2497                                 && is_integer_const(self.cx, rhs, 1)
2498                                 && *state == IncrementVisitorVarState::Initial
2499                                 && self.depth == 0
2500                             {
2501                                 IncrementVisitorVarState::IncrOnce
2502                             } else {
2503                                 // Assigned some other value or assigned multiple times
2504                                 IncrementVisitorVarState::DontWarn
2505                             };
2506                         }
2507                     },
2508                     ExprKind::Assign(ref lhs, _, _) if lhs.hir_id == expr.hir_id => {
2509                         *state = IncrementVisitorVarState::DontWarn
2510                     },
2511                     ExprKind::AddrOf(BorrowKind::Ref, mutability, _) if mutability == Mutability::Mut => {
2512                         *state = IncrementVisitorVarState::DontWarn
2513                     },
2514                     _ => (),
2515                 }
2516             }
2517
2518             walk_expr(self, expr);
2519         } else if is_loop(expr) || is_conditional(expr) {
2520             self.depth += 1;
2521             walk_expr(self, expr);
2522             self.depth -= 1;
2523         } else if let ExprKind::Continue(_) = expr.kind {
2524             self.done = true;
2525         } else {
2526             walk_expr(self, expr);
2527         }
2528     }
2529     fn nested_visit_map(&mut self) -> NestedVisitorMap<Self::Map> {
2530         NestedVisitorMap::None
2531     }
2532 }
2533
2534 enum InitializeVisitorState<'hir> {
2535     Initial,          // Not examined yet
2536     Declared(Symbol), // Declared but not (yet) initialized
2537     Initialized {
2538         name: Symbol,
2539         initializer: &'hir Expr<'hir>,
2540     },
2541     DontWarn,
2542 }
2543
2544 /// Checks whether a variable is initialized at the start of a loop and not modified
2545 /// and used after the loop.
2546 struct InitializeVisitor<'a, 'tcx> {
2547     cx: &'a LateContext<'tcx>,  // context reference
2548     end_expr: &'tcx Expr<'tcx>, // the for loop. Stop scanning here.
2549     var_id: HirId,
2550     state: InitializeVisitorState<'tcx>,
2551     depth: u32, // depth of conditional expressions
2552     past_loop: bool,
2553 }
2554
2555 impl<'a, 'tcx> InitializeVisitor<'a, 'tcx> {
2556     fn new(cx: &'a LateContext<'tcx>, end_expr: &'tcx Expr<'tcx>, var_id: HirId) -> Self {
2557         Self {
2558             cx,
2559             end_expr,
2560             var_id,
2561             state: InitializeVisitorState::Initial,
2562             depth: 0,
2563             past_loop: false,
2564         }
2565     }
2566
2567     fn get_result(&self) -> Option<(Symbol, &'tcx Expr<'tcx>)> {
2568         if let InitializeVisitorState::Initialized { name, initializer } = self.state {
2569             Some((name, initializer))
2570         } else {
2571             None
2572         }
2573     }
2574 }
2575
2576 impl<'a, 'tcx> Visitor<'tcx> for InitializeVisitor<'a, 'tcx> {
2577     type Map = Map<'tcx>;
2578
2579     fn visit_stmt(&mut self, stmt: &'tcx Stmt<'_>) {
2580         // Look for declarations of the variable
2581         if_chain! {
2582             if let StmtKind::Local(ref local) = stmt.kind;
2583             if local.pat.hir_id == self.var_id;
2584             if let PatKind::Binding(.., ident, _) = local.pat.kind;
2585             then {
2586                 self.state = local.init.map_or(InitializeVisitorState::Declared(ident.name), |init| {
2587                     InitializeVisitorState::Initialized {
2588                         initializer: init,
2589                         name: ident.name,
2590                     }
2591                 })
2592             }
2593         }
2594         walk_stmt(self, stmt);
2595     }
2596
2597     fn visit_expr(&mut self, expr: &'tcx Expr<'_>) {
2598         if matches!(self.state, InitializeVisitorState::DontWarn) {
2599             return;
2600         }
2601         if expr.hir_id == self.end_expr.hir_id {
2602             self.past_loop = true;
2603             return;
2604         }
2605         // No need to visit expressions before the variable is
2606         // declared
2607         if matches!(self.state, InitializeVisitorState::Initial) {
2608             return;
2609         }
2610
2611         // If node is the desired variable, see how it's used
2612         if path_to_local_id(expr, self.var_id) {
2613             if self.past_loop {
2614                 self.state = InitializeVisitorState::DontWarn;
2615                 return;
2616             }
2617
2618             if let Some(parent) = get_parent_expr(self.cx, expr) {
2619                 match parent.kind {
2620                     ExprKind::AssignOp(_, ref lhs, _) if lhs.hir_id == expr.hir_id => {
2621                         self.state = InitializeVisitorState::DontWarn;
2622                     },
2623                     ExprKind::Assign(ref lhs, ref rhs, _) if lhs.hir_id == expr.hir_id => {
2624                         self.state = if_chain! {
2625                             if self.depth == 0;
2626                             if let InitializeVisitorState::Declared(name)
2627                                 | InitializeVisitorState::Initialized { name, ..} = self.state;
2628                             then {
2629                                 InitializeVisitorState::Initialized { initializer: rhs, name }
2630                             } else {
2631                                 InitializeVisitorState::DontWarn
2632                             }
2633                         }
2634                     },
2635                     ExprKind::AddrOf(BorrowKind::Ref, mutability, _) if mutability == Mutability::Mut => {
2636                         self.state = InitializeVisitorState::DontWarn
2637                     },
2638                     _ => (),
2639                 }
2640             }
2641
2642             walk_expr(self, expr);
2643         } else if !self.past_loop && is_loop(expr) {
2644             self.state = InitializeVisitorState::DontWarn;
2645         } else if is_conditional(expr) {
2646             self.depth += 1;
2647             walk_expr(self, expr);
2648             self.depth -= 1;
2649         } else {
2650             walk_expr(self, expr);
2651         }
2652     }
2653
2654     fn nested_visit_map(&mut self) -> NestedVisitorMap<Self::Map> {
2655         NestedVisitorMap::OnlyBodies(self.cx.tcx.hir())
2656     }
2657 }
2658
2659 fn is_loop(expr: &Expr<'_>) -> bool {
2660     matches!(expr.kind, ExprKind::Loop(..))
2661 }
2662
2663 fn is_conditional(expr: &Expr<'_>) -> bool {
2664     matches!(expr.kind, ExprKind::If(..) | ExprKind::Match(..))
2665 }
2666
2667 fn is_nested(cx: &LateContext<'_>, match_expr: &Expr<'_>, iter_expr: &Expr<'_>) -> bool {
2668     if_chain! {
2669         if let Some(loop_block) = get_enclosing_block(cx, match_expr.hir_id);
2670         let parent_node = cx.tcx.hir().get_parent_node(loop_block.hir_id);
2671         if let Some(Node::Expr(loop_expr)) = cx.tcx.hir().find(parent_node);
2672         then {
2673             return is_loop_nested(cx, loop_expr, iter_expr)
2674         }
2675     }
2676     false
2677 }
2678
2679 fn is_loop_nested(cx: &LateContext<'_>, loop_expr: &Expr<'_>, iter_expr: &Expr<'_>) -> bool {
2680     let mut id = loop_expr.hir_id;
2681     let iter_id = if let Some(id) = path_to_local(iter_expr) {
2682         id
2683     } else {
2684         return true;
2685     };
2686     loop {
2687         let parent = cx.tcx.hir().get_parent_node(id);
2688         if parent == id {
2689             return false;
2690         }
2691         match cx.tcx.hir().find(parent) {
2692             Some(Node::Expr(expr)) => {
2693                 if let ExprKind::Loop(..) = expr.kind {
2694                     return true;
2695                 };
2696             },
2697             Some(Node::Block(block)) => {
2698                 let mut block_visitor = LoopNestVisitor {
2699                     hir_id: id,
2700                     iterator: iter_id,
2701                     nesting: Unknown,
2702                 };
2703                 walk_block(&mut block_visitor, block);
2704                 if block_visitor.nesting == RuledOut {
2705                     return false;
2706                 }
2707             },
2708             Some(Node::Stmt(_)) => (),
2709             _ => {
2710                 return false;
2711             },
2712         }
2713         id = parent;
2714     }
2715 }
2716
2717 #[derive(PartialEq, Eq)]
2718 enum Nesting {
2719     Unknown,     // no nesting detected yet
2720     RuledOut,    // the iterator is initialized or assigned within scope
2721     LookFurther, // no nesting detected, no further walk required
2722 }
2723
2724 use self::Nesting::{LookFurther, RuledOut, Unknown};
2725
2726 struct LoopNestVisitor {
2727     hir_id: HirId,
2728     iterator: HirId,
2729     nesting: Nesting,
2730 }
2731
2732 impl<'tcx> Visitor<'tcx> for LoopNestVisitor {
2733     type Map = Map<'tcx>;
2734
2735     fn visit_stmt(&mut self, stmt: &'tcx Stmt<'_>) {
2736         if stmt.hir_id == self.hir_id {
2737             self.nesting = LookFurther;
2738         } else if self.nesting == Unknown {
2739             walk_stmt(self, stmt);
2740         }
2741     }
2742
2743     fn visit_expr(&mut self, expr: &'tcx Expr<'_>) {
2744         if self.nesting != Unknown {
2745             return;
2746         }
2747         if expr.hir_id == self.hir_id {
2748             self.nesting = LookFurther;
2749             return;
2750         }
2751         match expr.kind {
2752             ExprKind::Assign(ref path, _, _) | ExprKind::AssignOp(_, ref path, _) => {
2753                 if path_to_local_id(path, self.iterator) {
2754                     self.nesting = RuledOut;
2755                 }
2756             },
2757             _ => walk_expr(self, expr),
2758         }
2759     }
2760
2761     fn visit_pat(&mut self, pat: &'tcx Pat<'_>) {
2762         if self.nesting != Unknown {
2763             return;
2764         }
2765         if let PatKind::Binding(_, id, ..) = pat.kind {
2766             if id == self.iterator {
2767                 self.nesting = RuledOut;
2768                 return;
2769             }
2770         }
2771         walk_pat(self, pat)
2772     }
2773
2774     fn nested_visit_map(&mut self) -> NestedVisitorMap<Self::Map> {
2775         NestedVisitorMap::None
2776     }
2777 }
2778
2779 fn check_infinite_loop<'tcx>(cx: &LateContext<'tcx>, cond: &'tcx Expr<'_>, expr: &'tcx Expr<'_>) {
2780     if constant(cx, cx.typeck_results(), cond).is_some() {
2781         // A pure constant condition (e.g., `while false`) is not linted.
2782         return;
2783     }
2784
2785     let mut var_visitor = VarCollectorVisitor {
2786         cx,
2787         ids: FxHashSet::default(),
2788         def_ids: FxHashMap::default(),
2789         skip: false,
2790     };
2791     var_visitor.visit_expr(cond);
2792     if var_visitor.skip {
2793         return;
2794     }
2795     let used_in_condition = &var_visitor.ids;
2796     let no_cond_variable_mutated = if let Some(used_mutably) = mutated_variables(expr, cx) {
2797         used_in_condition.is_disjoint(&used_mutably)
2798     } else {
2799         return;
2800     };
2801     let mutable_static_in_cond = var_visitor.def_ids.iter().any(|(_, v)| *v);
2802
2803     let mut has_break_or_return_visitor = HasBreakOrReturnVisitor {
2804         has_break_or_return: false,
2805     };
2806     has_break_or_return_visitor.visit_expr(expr);
2807     let has_break_or_return = has_break_or_return_visitor.has_break_or_return;
2808
2809     if no_cond_variable_mutated && !mutable_static_in_cond {
2810         span_lint_and_then(
2811             cx,
2812             WHILE_IMMUTABLE_CONDITION,
2813             cond.span,
2814             "variables in the condition are not mutated in the loop body",
2815             |diag| {
2816                 diag.note("this may lead to an infinite or to a never running loop");
2817
2818                 if has_break_or_return {
2819                     diag.note("this loop contains `return`s or `break`s");
2820                     diag.help("rewrite it as `if cond { loop { } }`");
2821                 }
2822             },
2823         );
2824     }
2825 }
2826
2827 struct HasBreakOrReturnVisitor {
2828     has_break_or_return: bool,
2829 }
2830
2831 impl<'tcx> Visitor<'tcx> for HasBreakOrReturnVisitor {
2832     type Map = Map<'tcx>;
2833
2834     fn visit_expr(&mut self, expr: &'tcx Expr<'_>) {
2835         if self.has_break_or_return {
2836             return;
2837         }
2838
2839         match expr.kind {
2840             ExprKind::Ret(_) | ExprKind::Break(_, _) => {
2841                 self.has_break_or_return = true;
2842                 return;
2843             },
2844             _ => {},
2845         }
2846
2847         walk_expr(self, expr);
2848     }
2849
2850     fn nested_visit_map(&mut self) -> NestedVisitorMap<Self::Map> {
2851         NestedVisitorMap::None
2852     }
2853 }
2854
2855 /// Collects the set of variables in an expression
2856 /// Stops analysis if a function call is found
2857 /// Note: In some cases such as `self`, there are no mutable annotation,
2858 /// All variables definition IDs are collected
2859 struct VarCollectorVisitor<'a, 'tcx> {
2860     cx: &'a LateContext<'tcx>,
2861     ids: FxHashSet<HirId>,
2862     def_ids: FxHashMap<def_id::DefId, bool>,
2863     skip: bool,
2864 }
2865
2866 impl<'a, 'tcx> VarCollectorVisitor<'a, 'tcx> {
2867     fn insert_def_id(&mut self, ex: &'tcx Expr<'_>) {
2868         if_chain! {
2869             if let ExprKind::Path(ref qpath) = ex.kind;
2870             if let QPath::Resolved(None, _) = *qpath;
2871             let res = self.cx.qpath_res(qpath, ex.hir_id);
2872             then {
2873                 match res {
2874                     Res::Local(hir_id) => {
2875                         self.ids.insert(hir_id);
2876                     },
2877                     Res::Def(DefKind::Static, def_id) => {
2878                         let mutable = self.cx.tcx.is_mutable_static(def_id);
2879                         self.def_ids.insert(def_id, mutable);
2880                     },
2881                     _ => {},
2882                 }
2883             }
2884         }
2885     }
2886 }
2887
2888 impl<'a, 'tcx> Visitor<'tcx> for VarCollectorVisitor<'a, 'tcx> {
2889     type Map = Map<'tcx>;
2890
2891     fn visit_expr(&mut self, ex: &'tcx Expr<'_>) {
2892         match ex.kind {
2893             ExprKind::Path(_) => self.insert_def_id(ex),
2894             // If there is any function/method call… we just stop analysis
2895             ExprKind::Call(..) | ExprKind::MethodCall(..) => self.skip = true,
2896
2897             _ => walk_expr(self, ex),
2898         }
2899     }
2900
2901     fn nested_visit_map(&mut self) -> NestedVisitorMap<Self::Map> {
2902         NestedVisitorMap::None
2903     }
2904 }
2905
2906 const NEEDLESS_COLLECT_MSG: &str = "avoid using `collect()` when not needed";
2907
2908 fn check_needless_collect<'tcx>(expr: &'tcx Expr<'_>, cx: &LateContext<'tcx>) {
2909     check_needless_collect_direct_usage(expr, cx);
2910     check_needless_collect_indirect_usage(expr, cx);
2911 }
2912 fn check_needless_collect_direct_usage<'tcx>(expr: &'tcx Expr<'_>, cx: &LateContext<'tcx>) {
2913     if_chain! {
2914         if let ExprKind::MethodCall(ref method, _, ref args, _) = expr.kind;
2915         if let ExprKind::MethodCall(ref chain_method, _, _, _) = args[0].kind;
2916         if chain_method.ident.name == sym!(collect) && match_trait_method(cx, &args[0], &paths::ITERATOR);
2917         if let Some(ref generic_args) = chain_method.args;
2918         if let Some(GenericArg::Type(ref ty)) = generic_args.args.get(0);
2919         then {
2920             let ty = cx.typeck_results().node_type(ty.hir_id);
2921             if is_type_diagnostic_item(cx, ty, sym::vec_type) ||
2922                 is_type_diagnostic_item(cx, ty, sym!(vecdeque_type)) ||
2923                 match_type(cx, ty, &paths::BTREEMAP) ||
2924                 is_type_diagnostic_item(cx, ty, sym!(hashmap_type)) {
2925                 if method.ident.name == sym!(len) {
2926                     let span = shorten_needless_collect_span(expr);
2927                     span_lint_and_sugg(
2928                         cx,
2929                         NEEDLESS_COLLECT,
2930                         span,
2931                         NEEDLESS_COLLECT_MSG,
2932                         "replace with",
2933                         "count()".to_string(),
2934                         Applicability::MachineApplicable,
2935                     );
2936                 }
2937                 if method.ident.name == sym!(is_empty) {
2938                     let span = shorten_needless_collect_span(expr);
2939                     span_lint_and_sugg(
2940                         cx,
2941                         NEEDLESS_COLLECT,
2942                         span,
2943                         NEEDLESS_COLLECT_MSG,
2944                         "replace with",
2945                         "next().is_none()".to_string(),
2946                         Applicability::MachineApplicable,
2947                     );
2948                 }
2949                 if method.ident.name == sym!(contains) {
2950                     let contains_arg = snippet(cx, args[1].span, "??");
2951                     let span = shorten_needless_collect_span(expr);
2952                     span_lint_and_then(
2953                         cx,
2954                         NEEDLESS_COLLECT,
2955                         span,
2956                         NEEDLESS_COLLECT_MSG,
2957                         |diag| {
2958                             let (arg, pred) = contains_arg
2959                                     .strip_prefix('&')
2960                                     .map_or(("&x", &*contains_arg), |s| ("x", s));
2961                             diag.span_suggestion(
2962                                 span,
2963                                 "replace with",
2964                                 format!(
2965                                     "any(|{}| x == {})",
2966                                     arg, pred
2967                                 ),
2968                                 Applicability::MachineApplicable,
2969                             );
2970                         }
2971                     );
2972                 }
2973             }
2974         }
2975     }
2976 }
2977
2978 fn check_needless_collect_indirect_usage<'tcx>(expr: &'tcx Expr<'_>, cx: &LateContext<'tcx>) {
2979     if let ExprKind::Block(ref block, _) = expr.kind {
2980         for ref stmt in block.stmts {
2981             if_chain! {
2982                 if let StmtKind::Local(
2983                     Local { pat: Pat { hir_id: pat_id, kind: PatKind::Binding(_, _, ident, .. ), .. },
2984                     init: Some(ref init_expr), .. }
2985                 ) = stmt.kind;
2986                 if let ExprKind::MethodCall(ref method_name, _, &[ref iter_source], ..) = init_expr.kind;
2987                 if method_name.ident.name == sym!(collect) && match_trait_method(cx, &init_expr, &paths::ITERATOR);
2988                 if let Some(ref generic_args) = method_name.args;
2989                 if let Some(GenericArg::Type(ref ty)) = generic_args.args.get(0);
2990                 if let ty = cx.typeck_results().node_type(ty.hir_id);
2991                 if is_type_diagnostic_item(cx, ty, sym::vec_type) ||
2992                     is_type_diagnostic_item(cx, ty, sym!(vecdeque_type)) ||
2993                     match_type(cx, ty, &paths::LINKED_LIST);
2994                 if let Some(iter_calls) = detect_iter_and_into_iters(block, *ident);
2995                 if iter_calls.len() == 1;
2996                 then {
2997                     let mut used_count_visitor = UsedCountVisitor {
2998                         cx,
2999                         id: *pat_id,
3000                         count: 0,
3001                     };
3002                     walk_block(&mut used_count_visitor, block);
3003                     if used_count_visitor.count > 1 {
3004                         return;
3005                     }
3006
3007                     // Suggest replacing iter_call with iter_replacement, and removing stmt
3008                     let iter_call = &iter_calls[0];
3009                     span_lint_and_then(
3010                         cx,
3011                         NEEDLESS_COLLECT,
3012                         stmt.span.until(iter_call.span),
3013                         NEEDLESS_COLLECT_MSG,
3014                         |diag| {
3015                             let iter_replacement = format!("{}{}", Sugg::hir(cx, iter_source, ".."), iter_call.get_iter_method(cx));
3016                             diag.multipart_suggestion(
3017                                 iter_call.get_suggestion_text(),
3018                                 vec![
3019                                     (stmt.span, String::new()),
3020                                     (iter_call.span, iter_replacement)
3021                                 ],
3022                                 Applicability::MachineApplicable,// MaybeIncorrect,
3023                             ).emit();
3024                         },
3025                     );
3026                 }
3027             }
3028         }
3029     }
3030 }
3031
3032 struct IterFunction {
3033     func: IterFunctionKind,
3034     span: Span,
3035 }
3036 impl IterFunction {
3037     fn get_iter_method(&self, cx: &LateContext<'_>) -> String {
3038         match &self.func {
3039             IterFunctionKind::IntoIter => String::new(),
3040             IterFunctionKind::Len => String::from(".count()"),
3041             IterFunctionKind::IsEmpty => String::from(".next().is_none()"),
3042             IterFunctionKind::Contains(span) => {
3043                 let s = snippet(cx, *span, "..");
3044                 if let Some(stripped) = s.strip_prefix('&') {
3045                     format!(".any(|x| x == {})", stripped)
3046                 } else {
3047                     format!(".any(|x| x == *{})", s)
3048                 }
3049             },
3050         }
3051     }
3052     fn get_suggestion_text(&self) -> &'static str {
3053         match &self.func {
3054             IterFunctionKind::IntoIter => {
3055                 "use the original Iterator instead of collecting it and then producing a new one"
3056             },
3057             IterFunctionKind::Len => {
3058                 "take the original Iterator's count instead of collecting it and finding the length"
3059             },
3060             IterFunctionKind::IsEmpty => {
3061                 "check if the original Iterator has anything instead of collecting it and seeing if it's empty"
3062             },
3063             IterFunctionKind::Contains(_) => {
3064                 "check if the original Iterator contains an element instead of collecting then checking"
3065             },
3066         }
3067     }
3068 }
3069 enum IterFunctionKind {
3070     IntoIter,
3071     Len,
3072     IsEmpty,
3073     Contains(Span),
3074 }
3075
3076 struct IterFunctionVisitor {
3077     uses: Vec<IterFunction>,
3078     seen_other: bool,
3079     target: Ident,
3080 }
3081 impl<'tcx> Visitor<'tcx> for IterFunctionVisitor {
3082     fn visit_expr(&mut self, expr: &'tcx Expr<'tcx>) {
3083         // Check function calls on our collection
3084         if_chain! {
3085             if let ExprKind::MethodCall(method_name, _, ref args, _) = &expr.kind;
3086             if let Some(Expr { kind: ExprKind::Path(QPath::Resolved(_, ref path)), .. }) = args.get(0);
3087             if let &[name] = &path.segments;
3088             if name.ident == self.target;
3089             then {
3090                 let len = sym!(len);
3091                 let is_empty = sym!(is_empty);
3092                 let contains = sym!(contains);
3093                 match method_name.ident.name {
3094                     sym::into_iter => self.uses.push(
3095                         IterFunction { func: IterFunctionKind::IntoIter, span: expr.span }
3096                     ),
3097                     name if name == len => self.uses.push(
3098                         IterFunction { func: IterFunctionKind::Len, span: expr.span }
3099                     ),
3100                     name if name == is_empty => self.uses.push(
3101                         IterFunction { func: IterFunctionKind::IsEmpty, span: expr.span }
3102                     ),
3103                     name if name == contains => self.uses.push(
3104                         IterFunction { func: IterFunctionKind::Contains(args[1].span), span: expr.span }
3105                     ),
3106                     _ => self.seen_other = true,
3107                 }
3108                 return
3109             }
3110         }
3111         // Check if the collection is used for anything else
3112         if_chain! {
3113             if let Expr { kind: ExprKind::Path(QPath::Resolved(_, ref path)), .. } = expr;
3114             if let &[name] = &path.segments;
3115             if name.ident == self.target;
3116             then {
3117                 self.seen_other = true;
3118             } else {
3119                 walk_expr(self, expr);
3120             }
3121         }
3122     }
3123
3124     type Map = Map<'tcx>;
3125     fn nested_visit_map(&mut self) -> NestedVisitorMap<Self::Map> {
3126         NestedVisitorMap::None
3127     }
3128 }
3129
3130 struct UsedCountVisitor<'a, 'tcx> {
3131     cx: &'a LateContext<'tcx>,
3132     id: HirId,
3133     count: usize,
3134 }
3135
3136 impl<'a, 'tcx> Visitor<'tcx> for UsedCountVisitor<'a, 'tcx> {
3137     type Map = Map<'tcx>;
3138
3139     fn visit_expr(&mut self, expr: &'tcx Expr<'_>) {
3140         if path_to_local_id(expr, self.id) {
3141             self.count += 1;
3142         } else {
3143             walk_expr(self, expr);
3144         }
3145     }
3146
3147     fn nested_visit_map(&mut self) -> NestedVisitorMap<Self::Map> {
3148         NestedVisitorMap::OnlyBodies(self.cx.tcx.hir())
3149     }
3150 }
3151
3152 /// Detect the occurrences of calls to `iter` or `into_iter` for the
3153 /// given identifier
3154 fn detect_iter_and_into_iters<'tcx>(block: &'tcx Block<'tcx>, identifier: Ident) -> Option<Vec<IterFunction>> {
3155     let mut visitor = IterFunctionVisitor {
3156         uses: Vec::new(),
3157         target: identifier,
3158         seen_other: false,
3159     };
3160     visitor.visit_block(block);
3161     if visitor.seen_other { None } else { Some(visitor.uses) }
3162 }
3163
3164 fn shorten_needless_collect_span(expr: &Expr<'_>) -> Span {
3165     if_chain! {
3166         if let ExprKind::MethodCall(.., args, _) = &expr.kind;
3167         if let ExprKind::MethodCall(_, span, ..) = &args[0].kind;
3168         then {
3169             return expr.span.with_lo(span.lo());
3170         }
3171     }
3172     unreachable!();
3173 }