]> git.lizzy.rs Git - rust.git/blob - clippy_lints/src/loops.rs
1c9373a756c8896d3de7472131aa8839f3d16206
[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!(
1629                             "the loop variable `{}` is only used to index `{}`.",
1630                             ident.name, indexed
1631                         ),
1632                         |diag| {
1633                             multispan_sugg(
1634                                 diag,
1635                                 "consider using an iterator",
1636                                 vec![(pat.span, "<item>".to_string()), (arg.span, repl)],
1637                             );
1638                         },
1639                     );
1640                 }
1641             }
1642         }
1643     }
1644 }
1645
1646 fn is_len_call(expr: &Expr<'_>, var: Symbol) -> bool {
1647     if_chain! {
1648         if let ExprKind::MethodCall(ref method, _, ref len_args, _) = expr.kind;
1649         if len_args.len() == 1;
1650         if method.ident.name == sym!(len);
1651         if let ExprKind::Path(QPath::Resolved(_, ref path)) = len_args[0].kind;
1652         if path.segments.len() == 1;
1653         if path.segments[0].ident.name == var;
1654         then {
1655             return true;
1656         }
1657     }
1658
1659     false
1660 }
1661
1662 fn is_end_eq_array_len<'tcx>(
1663     cx: &LateContext<'tcx>,
1664     end: &Expr<'_>,
1665     limits: ast::RangeLimits,
1666     indexed_ty: Ty<'tcx>,
1667 ) -> bool {
1668     if_chain! {
1669         if let ExprKind::Lit(ref lit) = end.kind;
1670         if let ast::LitKind::Int(end_int, _) = lit.node;
1671         if let ty::Array(_, arr_len_const) = indexed_ty.kind();
1672         if let Some(arr_len) = arr_len_const.try_eval_usize(cx.tcx, cx.param_env);
1673         then {
1674             return match limits {
1675                 ast::RangeLimits::Closed => end_int + 1 >= arr_len.into(),
1676                 ast::RangeLimits::HalfOpen => end_int >= arr_len.into(),
1677             };
1678         }
1679     }
1680
1681     false
1682 }
1683
1684 fn lint_iter_method(cx: &LateContext<'_>, args: &[Expr<'_>], arg: &Expr<'_>, method_name: &str) {
1685     let mut applicability = Applicability::MachineApplicable;
1686     let object = snippet_with_applicability(cx, args[0].span, "_", &mut applicability);
1687     let muta = if method_name == "iter_mut" { "mut " } else { "" };
1688     span_lint_and_sugg(
1689         cx,
1690         EXPLICIT_ITER_LOOP,
1691         arg.span,
1692         "it is more concise to loop over references to containers instead of using explicit \
1693          iteration methods",
1694         "to write this more concisely, try",
1695         format!("&{}{}", muta, object),
1696         applicability,
1697     )
1698 }
1699
1700 fn check_for_loop_arg(cx: &LateContext<'_>, pat: &Pat<'_>, arg: &Expr<'_>, expr: &Expr<'_>) {
1701     let mut next_loop_linted = false; // whether or not ITER_NEXT_LOOP lint was used
1702     if let ExprKind::MethodCall(ref method, _, ref args, _) = arg.kind {
1703         // just the receiver, no arguments
1704         if args.len() == 1 {
1705             let method_name = &*method.ident.as_str();
1706             // check for looping over x.iter() or x.iter_mut(), could use &x or &mut x
1707             if method_name == "iter" || method_name == "iter_mut" {
1708                 if is_ref_iterable_type(cx, &args[0]) {
1709                     lint_iter_method(cx, args, arg, method_name);
1710                 }
1711             } else if method_name == "into_iter" && match_trait_method(cx, arg, &paths::INTO_ITERATOR) {
1712                 let receiver_ty = cx.typeck_results().expr_ty(&args[0]);
1713                 let receiver_ty_adjusted = cx.typeck_results().expr_ty_adjusted(&args[0]);
1714                 if TyS::same_type(receiver_ty, receiver_ty_adjusted) {
1715                     let mut applicability = Applicability::MachineApplicable;
1716                     let object = snippet_with_applicability(cx, args[0].span, "_", &mut applicability);
1717                     span_lint_and_sugg(
1718                         cx,
1719                         EXPLICIT_INTO_ITER_LOOP,
1720                         arg.span,
1721                         "it is more concise to loop over containers instead of using explicit \
1722                          iteration methods",
1723                         "to write this more concisely, try",
1724                         object.to_string(),
1725                         applicability,
1726                     );
1727                 } else {
1728                     let ref_receiver_ty = cx.tcx.mk_ref(
1729                         cx.tcx.lifetimes.re_erased,
1730                         ty::TypeAndMut {
1731                             ty: receiver_ty,
1732                             mutbl: Mutability::Not,
1733                         },
1734                     );
1735                     if TyS::same_type(receiver_ty_adjusted, ref_receiver_ty) {
1736                         lint_iter_method(cx, args, arg, method_name)
1737                     }
1738                 }
1739             } else if method_name == "next" && match_trait_method(cx, arg, &paths::ITERATOR) {
1740                 span_lint(
1741                     cx,
1742                     ITER_NEXT_LOOP,
1743                     expr.span,
1744                     "you are iterating over `Iterator::next()` which is an Option; this will compile but is \
1745                     probably not what you want",
1746                 );
1747                 next_loop_linted = true;
1748             }
1749         }
1750     }
1751     if !next_loop_linted {
1752         check_arg_type(cx, pat, arg);
1753     }
1754 }
1755
1756 /// Checks for `for` loops over `Option`s and `Result`s.
1757 fn check_arg_type(cx: &LateContext<'_>, pat: &Pat<'_>, arg: &Expr<'_>) {
1758     let ty = cx.typeck_results().expr_ty(arg);
1759     if is_type_diagnostic_item(cx, ty, sym::option_type) {
1760         span_lint_and_help(
1761             cx,
1762             FOR_LOOPS_OVER_FALLIBLES,
1763             arg.span,
1764             &format!(
1765                 "for loop over `{0}`, which is an `Option`. This is more readably written as an \
1766                 `if let` statement.",
1767                 snippet(cx, arg.span, "_")
1768             ),
1769             None,
1770             &format!(
1771                 "consider replacing `for {0} in {1}` with `if let Some({0}) = {1}`",
1772                 snippet(cx, pat.span, "_"),
1773                 snippet(cx, arg.span, "_")
1774             ),
1775         );
1776     } else if is_type_diagnostic_item(cx, ty, sym::result_type) {
1777         span_lint_and_help(
1778             cx,
1779             FOR_LOOPS_OVER_FALLIBLES,
1780             arg.span,
1781             &format!(
1782                 "for loop over `{0}`, which is a `Result`. This is more readably written as an \
1783                 `if let` statement.",
1784                 snippet(cx, arg.span, "_")
1785             ),
1786             None,
1787             &format!(
1788                 "consider replacing `for {0} in {1}` with `if let Ok({0}) = {1}`",
1789                 snippet(cx, pat.span, "_"),
1790                 snippet(cx, arg.span, "_")
1791             ),
1792         );
1793     }
1794 }
1795
1796 // To trigger the EXPLICIT_COUNTER_LOOP lint, a variable must be
1797 // incremented exactly once in the loop body, and initialized to zero
1798 // at the start of the loop.
1799 fn check_for_loop_explicit_counter<'tcx>(
1800     cx: &LateContext<'tcx>,
1801     pat: &'tcx Pat<'_>,
1802     arg: &'tcx Expr<'_>,
1803     body: &'tcx Expr<'_>,
1804     expr: &'tcx Expr<'_>,
1805 ) {
1806     // Look for variables that are incremented once per loop iteration.
1807     let mut increment_visitor = IncrementVisitor::new(cx);
1808     walk_expr(&mut increment_visitor, body);
1809
1810     // For each candidate, check the parent block to see if
1811     // it's initialized to zero at the start of the loop.
1812     if let Some(block) = get_enclosing_block(&cx, expr.hir_id) {
1813         for id in increment_visitor.into_results() {
1814             let mut initialize_visitor = InitializeVisitor::new(cx, expr, id);
1815             walk_block(&mut initialize_visitor, block);
1816
1817             if_chain! {
1818                 if let Some((name, initializer)) = initialize_visitor.get_result();
1819                 if is_integer_const(cx, initializer, 0);
1820                 then {
1821                     let mut applicability = Applicability::MachineApplicable;
1822
1823                     let for_span = get_span_of_entire_for_loop(expr);
1824
1825                     span_lint_and_sugg(
1826                         cx,
1827                         EXPLICIT_COUNTER_LOOP,
1828                         for_span.with_hi(arg.span.hi()),
1829                         &format!("the variable `{}` is used as a loop counter.", name),
1830                         "consider using",
1831                         format!(
1832                             "for ({}, {}) in {}.enumerate()",
1833                             name,
1834                             snippet_with_applicability(cx, pat.span, "item", &mut applicability),
1835                             make_iterator_snippet(cx, arg, &mut applicability),
1836                         ),
1837                         applicability,
1838                     );
1839                 }
1840             }
1841         }
1842     }
1843 }
1844
1845 /// If `arg` was the argument to a `for` loop, return the "cleanest" way of writing the
1846 /// actual `Iterator` that the loop uses.
1847 fn make_iterator_snippet(cx: &LateContext<'_>, arg: &Expr<'_>, applic_ref: &mut Applicability) -> String {
1848     let impls_iterator = get_trait_def_id(cx, &paths::ITERATOR).map_or(false, |id| {
1849         implements_trait(cx, cx.typeck_results().expr_ty(arg), id, &[])
1850     });
1851     if impls_iterator {
1852         format!(
1853             "{}",
1854             sugg::Sugg::hir_with_applicability(cx, arg, "_", applic_ref).maybe_par()
1855         )
1856     } else {
1857         // (&x).into_iter() ==> x.iter()
1858         // (&mut x).into_iter() ==> x.iter_mut()
1859         match &arg.kind {
1860             ExprKind::AddrOf(BorrowKind::Ref, mutability, arg_inner)
1861                 if has_iter_method(cx, cx.typeck_results().expr_ty(&arg_inner)).is_some() =>
1862             {
1863                 let meth_name = match mutability {
1864                     Mutability::Mut => "iter_mut",
1865                     Mutability::Not => "iter",
1866                 };
1867                 format!(
1868                     "{}.{}()",
1869                     sugg::Sugg::hir_with_applicability(cx, &arg_inner, "_", applic_ref).maybe_par(),
1870                     meth_name,
1871                 )
1872             }
1873             _ => format!(
1874                 "{}.into_iter()",
1875                 sugg::Sugg::hir_with_applicability(cx, arg, "_", applic_ref).maybe_par()
1876             ),
1877         }
1878     }
1879 }
1880
1881 /// Checks for the `FOR_KV_MAP` lint.
1882 fn check_for_loop_over_map_kv<'tcx>(
1883     cx: &LateContext<'tcx>,
1884     pat: &'tcx Pat<'_>,
1885     arg: &'tcx Expr<'_>,
1886     body: &'tcx Expr<'_>,
1887     expr: &'tcx Expr<'_>,
1888 ) {
1889     let pat_span = pat.span;
1890
1891     if let PatKind::Tuple(ref pat, _) = pat.kind {
1892         if pat.len() == 2 {
1893             let arg_span = arg.span;
1894             let (new_pat_span, kind, ty, mutbl) = match *cx.typeck_results().expr_ty(arg).kind() {
1895                 ty::Ref(_, ty, mutbl) => match (&pat[0].kind, &pat[1].kind) {
1896                     (key, _) if pat_is_wild(cx, key, body) => (pat[1].span, "value", ty, mutbl),
1897                     (_, value) if pat_is_wild(cx, value, body) => (pat[0].span, "key", ty, Mutability::Not),
1898                     _ => return,
1899                 },
1900                 _ => return,
1901             };
1902             let mutbl = match mutbl {
1903                 Mutability::Not => "",
1904                 Mutability::Mut => "_mut",
1905             };
1906             let arg = match arg.kind {
1907                 ExprKind::AddrOf(BorrowKind::Ref, _, ref expr) => &**expr,
1908                 _ => arg,
1909             };
1910
1911             if is_type_diagnostic_item(cx, ty, sym!(hashmap_type)) || match_type(cx, ty, &paths::BTREEMAP) {
1912                 span_lint_and_then(
1913                     cx,
1914                     FOR_KV_MAP,
1915                     expr.span,
1916                     &format!("you seem to want to iterate on a map's {}s", kind),
1917                     |diag| {
1918                         let map = sugg::Sugg::hir(cx, arg, "map");
1919                         multispan_sugg(
1920                             diag,
1921                             "use the corresponding method",
1922                             vec![
1923                                 (pat_span, snippet(cx, new_pat_span, kind).into_owned()),
1924                                 (arg_span, format!("{}.{}s{}()", map.maybe_par(), kind, mutbl)),
1925                             ],
1926                         );
1927                     },
1928                 );
1929             }
1930         }
1931     }
1932 }
1933
1934 fn check_for_single_element_loop<'tcx>(
1935     cx: &LateContext<'tcx>,
1936     pat: &'tcx Pat<'_>,
1937     arg: &'tcx Expr<'_>,
1938     body: &'tcx Expr<'_>,
1939     expr: &'tcx Expr<'_>,
1940 ) {
1941     if_chain! {
1942         if let ExprKind::AddrOf(BorrowKind::Ref, _, ref arg_expr) = arg.kind;
1943         if let PatKind::Binding(.., target, _) = pat.kind;
1944         if let ExprKind::Array([arg_expression]) = arg_expr.kind;
1945         if let ExprKind::Path(ref list_item) = arg_expression.kind;
1946         if let Some(list_item_name) = single_segment_path(list_item).map(|ps| ps.ident.name);
1947         if let ExprKind::Block(ref block, _) = body.kind;
1948         if !block.stmts.is_empty();
1949
1950         then {
1951             let for_span = get_span_of_entire_for_loop(expr);
1952             let mut block_str = snippet(cx, block.span, "..").into_owned();
1953             block_str.remove(0);
1954             block_str.pop();
1955
1956
1957             span_lint_and_sugg(
1958                 cx,
1959                 SINGLE_ELEMENT_LOOP,
1960                 for_span,
1961                 "for loop over a single element",
1962                 "try",
1963                 format!("{{\n{}let {} = &{};{}}}", " ".repeat(indent_of(cx, block.stmts[0].span).unwrap_or(0)), target.name, list_item_name, block_str),
1964                 Applicability::MachineApplicable
1965             )
1966         }
1967     }
1968 }
1969
1970 /// Check for unnecessary `if let` usage in a for loop where only the `Some` or `Ok` variant of the
1971 /// iterator element is used.
1972 fn check_manual_flatten<'tcx>(
1973     cx: &LateContext<'tcx>,
1974     pat: &'tcx Pat<'_>,
1975     arg: &'tcx Expr<'_>,
1976     body: &'tcx Expr<'_>,
1977     span: Span,
1978 ) {
1979     if let ExprKind::Block(ref block, _) = body.kind {
1980         // Ensure the `if let` statement is the only expression or statement in the for-loop
1981         let inner_expr = if block.stmts.len() == 1 && block.expr.is_none() {
1982             let match_stmt = &block.stmts[0];
1983             if let StmtKind::Semi(inner_expr) = match_stmt.kind {
1984                 Some(inner_expr)
1985             } else {
1986                 None
1987             }
1988         } else if block.stmts.is_empty() {
1989             block.expr
1990         } else {
1991             None
1992         };
1993
1994         if_chain! {
1995             if let Some(inner_expr) = inner_expr;
1996             if let ExprKind::Match(
1997                 ref match_expr, ref match_arms, MatchSource::IfLetDesugar{ contains_else_clause: false }
1998             ) = inner_expr.kind;
1999             // Ensure match_expr in `if let` statement is the same as the pat from the for-loop
2000             if let PatKind::Binding(_, pat_hir_id, _, _) = pat.kind;
2001             if path_to_local_id(match_expr, pat_hir_id);
2002             // Ensure the `if let` statement is for the `Some` variant of `Option` or the `Ok` variant of `Result`
2003             if let PatKind::TupleStruct(QPath::Resolved(None, path), _, _) = match_arms[0].pat.kind;
2004             let some_ctor = is_some_ctor(cx, path.res);
2005             let ok_ctor = is_ok_ctor(cx, path.res);
2006             if some_ctor || ok_ctor;
2007             let if_let_type = if some_ctor { "Some" } else { "Ok" };
2008
2009             then {
2010                 // Prepare the error message
2011                 let msg = format!("unnecessary `if let` since only the `{}` variant of the iterator element is used", if_let_type);
2012
2013                 // Prepare the help message
2014                 let mut applicability = Applicability::MaybeIncorrect;
2015                 let arg_snippet = make_iterator_snippet(cx, arg, &mut applicability);
2016
2017                 span_lint_and_then(
2018                     cx,
2019                     MANUAL_FLATTEN,
2020                     span,
2021                     &msg,
2022                     |diag| {
2023                         let sugg = format!("{}.flatten()", arg_snippet);
2024                         diag.span_suggestion(
2025                             arg.span,
2026                             "try",
2027                             sugg,
2028                             Applicability::MaybeIncorrect,
2029                         );
2030                         diag.span_help(
2031                             inner_expr.span,
2032                             "...and remove the `if let` statement in the for loop",
2033                         );
2034                     }
2035                 );
2036             }
2037         }
2038     }
2039 }
2040
2041 struct MutatePairDelegate<'a, 'tcx> {
2042     cx: &'a LateContext<'tcx>,
2043     hir_id_low: Option<HirId>,
2044     hir_id_high: Option<HirId>,
2045     span_low: Option<Span>,
2046     span_high: Option<Span>,
2047 }
2048
2049 impl<'tcx> Delegate<'tcx> for MutatePairDelegate<'_, 'tcx> {
2050     fn consume(&mut self, _: &PlaceWithHirId<'tcx>, _: HirId, _: ConsumeMode) {}
2051
2052     fn borrow(&mut self, cmt: &PlaceWithHirId<'tcx>, diag_expr_id: HirId, bk: ty::BorrowKind) {
2053         if let ty::BorrowKind::MutBorrow = bk {
2054             if let PlaceBase::Local(id) = cmt.place.base {
2055                 if Some(id) == self.hir_id_low {
2056                     self.span_low = Some(self.cx.tcx.hir().span(diag_expr_id))
2057                 }
2058                 if Some(id) == self.hir_id_high {
2059                     self.span_high = Some(self.cx.tcx.hir().span(diag_expr_id))
2060                 }
2061             }
2062         }
2063     }
2064
2065     fn mutate(&mut self, cmt: &PlaceWithHirId<'tcx>, diag_expr_id: HirId) {
2066         if let PlaceBase::Local(id) = cmt.place.base {
2067             if Some(id) == self.hir_id_low {
2068                 self.span_low = Some(self.cx.tcx.hir().span(diag_expr_id))
2069             }
2070             if Some(id) == self.hir_id_high {
2071                 self.span_high = Some(self.cx.tcx.hir().span(diag_expr_id))
2072             }
2073         }
2074     }
2075 }
2076
2077 impl MutatePairDelegate<'_, '_> {
2078     fn mutation_span(&self) -> (Option<Span>, Option<Span>) {
2079         (self.span_low, self.span_high)
2080     }
2081 }
2082
2083 fn check_for_mut_range_bound(cx: &LateContext<'_>, arg: &Expr<'_>, body: &Expr<'_>) {
2084     if let Some(higher::Range {
2085         start: Some(start),
2086         end: Some(end),
2087         ..
2088     }) = higher::range(arg)
2089     {
2090         let mut_ids = vec![check_for_mutability(cx, start), check_for_mutability(cx, end)];
2091         if mut_ids[0].is_some() || mut_ids[1].is_some() {
2092             let (span_low, span_high) = check_for_mutation(cx, body, &mut_ids);
2093             mut_warn_with_span(cx, span_low);
2094             mut_warn_with_span(cx, span_high);
2095         }
2096     }
2097 }
2098
2099 fn mut_warn_with_span(cx: &LateContext<'_>, span: Option<Span>) {
2100     if let Some(sp) = span {
2101         span_lint(
2102             cx,
2103             MUT_RANGE_BOUND,
2104             sp,
2105             "attempt to mutate range bound within loop; note that the range of the loop is unchanged",
2106         );
2107     }
2108 }
2109
2110 fn check_for_mutability(cx: &LateContext<'_>, bound: &Expr<'_>) -> Option<HirId> {
2111     if_chain! {
2112         if let Some(hir_id) = path_to_local(bound);
2113         if let Node::Binding(pat) = cx.tcx.hir().get(hir_id);
2114         if let PatKind::Binding(BindingAnnotation::Mutable, ..) = pat.kind;
2115         then {
2116             return Some(hir_id);
2117         }
2118     }
2119     None
2120 }
2121
2122 fn check_for_mutation<'tcx>(
2123     cx: &LateContext<'tcx>,
2124     body: &Expr<'_>,
2125     bound_ids: &[Option<HirId>],
2126 ) -> (Option<Span>, Option<Span>) {
2127     let mut delegate = MutatePairDelegate {
2128         cx,
2129         hir_id_low: bound_ids[0],
2130         hir_id_high: bound_ids[1],
2131         span_low: None,
2132         span_high: None,
2133     };
2134     cx.tcx.infer_ctxt().enter(|infcx| {
2135         ExprUseVisitor::new(
2136             &mut delegate,
2137             &infcx,
2138             body.hir_id.owner,
2139             cx.param_env,
2140             cx.typeck_results(),
2141         )
2142         .walk_expr(body);
2143     });
2144     delegate.mutation_span()
2145 }
2146
2147 /// Returns `true` if the pattern is a `PatWild` or an ident prefixed with `_`.
2148 fn pat_is_wild<'tcx>(cx: &LateContext<'tcx>, pat: &'tcx PatKind<'_>, body: &'tcx Expr<'_>) -> bool {
2149     match *pat {
2150         PatKind::Wild => true,
2151         PatKind::Binding(_, id, ident, None) if ident.as_str().starts_with('_') => {
2152             !LocalUsedVisitor::new(cx, id).check_expr(body)
2153         },
2154         _ => false,
2155     }
2156 }
2157
2158 struct VarVisitor<'a, 'tcx> {
2159     /// context reference
2160     cx: &'a LateContext<'tcx>,
2161     /// var name to look for as index
2162     var: HirId,
2163     /// indexed variables that are used mutably
2164     indexed_mut: FxHashSet<Symbol>,
2165     /// indirectly indexed variables (`v[(i + 4) % N]`), the extend is `None` for global
2166     indexed_indirectly: FxHashMap<Symbol, Option<region::Scope>>,
2167     /// subset of `indexed` of vars that are indexed directly: `v[i]`
2168     /// this will not contain cases like `v[calc_index(i)]` or `v[(i + 4) % N]`
2169     indexed_directly: FxHashMap<Symbol, (Option<region::Scope>, Ty<'tcx>)>,
2170     /// Any names that are used outside an index operation.
2171     /// Used to detect things like `&mut vec` used together with `vec[i]`
2172     referenced: FxHashSet<Symbol>,
2173     /// has the loop variable been used in expressions other than the index of
2174     /// an index op?
2175     nonindex: bool,
2176     /// Whether we are inside the `$` in `&mut $` or `$ = foo` or `$.bar`, where bar
2177     /// takes `&mut self`
2178     prefer_mutable: bool,
2179 }
2180
2181 impl<'a, 'tcx> VarVisitor<'a, 'tcx> {
2182     fn check(&mut self, idx: &'tcx Expr<'_>, seqexpr: &'tcx Expr<'_>, expr: &'tcx Expr<'_>) -> bool {
2183         if_chain! {
2184             // the indexed container is referenced by a name
2185             if let ExprKind::Path(ref seqpath) = seqexpr.kind;
2186             if let QPath::Resolved(None, ref seqvar) = *seqpath;
2187             if seqvar.segments.len() == 1;
2188             then {
2189                 let index_used_directly = path_to_local_id(idx, self.var);
2190                 let indexed_indirectly = {
2191                     let mut used_visitor = LocalUsedVisitor::new(self.cx, self.var);
2192                     walk_expr(&mut used_visitor, idx);
2193                     used_visitor.used
2194                 };
2195
2196                 if indexed_indirectly || index_used_directly {
2197                     if self.prefer_mutable {
2198                         self.indexed_mut.insert(seqvar.segments[0].ident.name);
2199                     }
2200                     let res = self.cx.qpath_res(seqpath, seqexpr.hir_id);
2201                     match res {
2202                         Res::Local(hir_id) => {
2203                             let parent_id = self.cx.tcx.hir().get_parent_item(expr.hir_id);
2204                             let parent_def_id = self.cx.tcx.hir().local_def_id(parent_id);
2205                             let extent = self.cx.tcx.region_scope_tree(parent_def_id).var_scope(hir_id.local_id);
2206                             if indexed_indirectly {
2207                                 self.indexed_indirectly.insert(seqvar.segments[0].ident.name, Some(extent));
2208                             }
2209                             if index_used_directly {
2210                                 self.indexed_directly.insert(
2211                                     seqvar.segments[0].ident.name,
2212                                     (Some(extent), self.cx.typeck_results().node_type(seqexpr.hir_id)),
2213                                 );
2214                             }
2215                             return false;  // no need to walk further *on the variable*
2216                         }
2217                         Res::Def(DefKind::Static | DefKind::Const, ..) => {
2218                             if indexed_indirectly {
2219                                 self.indexed_indirectly.insert(seqvar.segments[0].ident.name, None);
2220                             }
2221                             if index_used_directly {
2222                                 self.indexed_directly.insert(
2223                                     seqvar.segments[0].ident.name,
2224                                     (None, self.cx.typeck_results().node_type(seqexpr.hir_id)),
2225                                 );
2226                             }
2227                             return false;  // no need to walk further *on the variable*
2228                         }
2229                         _ => (),
2230                     }
2231                 }
2232             }
2233         }
2234         true
2235     }
2236 }
2237
2238 impl<'a, 'tcx> Visitor<'tcx> for VarVisitor<'a, 'tcx> {
2239     type Map = Map<'tcx>;
2240
2241     fn visit_expr(&mut self, expr: &'tcx Expr<'_>) {
2242         if_chain! {
2243             // a range index op
2244             if let ExprKind::MethodCall(ref meth, _, ref args, _) = expr.kind;
2245             if (meth.ident.name == sym::index && match_trait_method(self.cx, expr, &paths::INDEX))
2246                 || (meth.ident.name == sym::index_mut && match_trait_method(self.cx, expr, &paths::INDEX_MUT));
2247             if !self.check(&args[1], &args[0], expr);
2248             then { return }
2249         }
2250
2251         if_chain! {
2252             // an index op
2253             if let ExprKind::Index(ref seqexpr, ref idx) = expr.kind;
2254             if !self.check(idx, seqexpr, expr);
2255             then { return }
2256         }
2257
2258         if_chain! {
2259             // directly using a variable
2260             if let ExprKind::Path(QPath::Resolved(None, path)) = expr.kind;
2261             if let Res::Local(local_id) = path.res;
2262             then {
2263                 if local_id == self.var {
2264                     self.nonindex = true;
2265                 } else {
2266                     // not the correct variable, but still a variable
2267                     self.referenced.insert(path.segments[0].ident.name);
2268                 }
2269             }
2270         }
2271
2272         let old = self.prefer_mutable;
2273         match expr.kind {
2274             ExprKind::AssignOp(_, ref lhs, ref rhs) | ExprKind::Assign(ref lhs, ref rhs, _) => {
2275                 self.prefer_mutable = true;
2276                 self.visit_expr(lhs);
2277                 self.prefer_mutable = false;
2278                 self.visit_expr(rhs);
2279             },
2280             ExprKind::AddrOf(BorrowKind::Ref, mutbl, ref expr) => {
2281                 if mutbl == Mutability::Mut {
2282                     self.prefer_mutable = true;
2283                 }
2284                 self.visit_expr(expr);
2285             },
2286             ExprKind::Call(ref f, args) => {
2287                 self.visit_expr(f);
2288                 for expr in args {
2289                     let ty = self.cx.typeck_results().expr_ty_adjusted(expr);
2290                     self.prefer_mutable = false;
2291                     if let ty::Ref(_, _, mutbl) = *ty.kind() {
2292                         if mutbl == Mutability::Mut {
2293                             self.prefer_mutable = true;
2294                         }
2295                     }
2296                     self.visit_expr(expr);
2297                 }
2298             },
2299             ExprKind::MethodCall(_, _, args, _) => {
2300                 let def_id = self.cx.typeck_results().type_dependent_def_id(expr.hir_id).unwrap();
2301                 for (ty, expr) in self.cx.tcx.fn_sig(def_id).inputs().skip_binder().iter().zip(args) {
2302                     self.prefer_mutable = false;
2303                     if let ty::Ref(_, _, mutbl) = *ty.kind() {
2304                         if mutbl == Mutability::Mut {
2305                             self.prefer_mutable = true;
2306                         }
2307                     }
2308                     self.visit_expr(expr);
2309                 }
2310             },
2311             ExprKind::Closure(_, _, body_id, ..) => {
2312                 let body = self.cx.tcx.hir().body(body_id);
2313                 self.visit_expr(&body.value);
2314             },
2315             _ => walk_expr(self, expr),
2316         }
2317         self.prefer_mutable = old;
2318     }
2319     fn nested_visit_map(&mut self) -> NestedVisitorMap<Self::Map> {
2320         NestedVisitorMap::None
2321     }
2322 }
2323
2324 fn is_used_inside<'tcx>(cx: &LateContext<'tcx>, expr: &'tcx Expr<'_>, container: &'tcx Expr<'_>) -> bool {
2325     let def_id = match path_to_local(expr) {
2326         Some(id) => id,
2327         None => return false,
2328     };
2329     if let Some(used_mutably) = mutated_variables(container, cx) {
2330         if used_mutably.contains(&def_id) {
2331             return true;
2332         }
2333     }
2334     false
2335 }
2336
2337 fn is_iterator_used_after_while_let<'tcx>(cx: &LateContext<'tcx>, iter_expr: &'tcx Expr<'_>) -> bool {
2338     let def_id = match path_to_local(iter_expr) {
2339         Some(id) => id,
2340         None => return false,
2341     };
2342     let mut visitor = VarUsedAfterLoopVisitor {
2343         def_id,
2344         iter_expr_id: iter_expr.hir_id,
2345         past_while_let: false,
2346         var_used_after_while_let: false,
2347     };
2348     if let Some(enclosing_block) = get_enclosing_block(cx, def_id) {
2349         walk_block(&mut visitor, enclosing_block);
2350     }
2351     visitor.var_used_after_while_let
2352 }
2353
2354 struct VarUsedAfterLoopVisitor {
2355     def_id: HirId,
2356     iter_expr_id: HirId,
2357     past_while_let: bool,
2358     var_used_after_while_let: bool,
2359 }
2360
2361 impl<'tcx> Visitor<'tcx> for VarUsedAfterLoopVisitor {
2362     type Map = Map<'tcx>;
2363
2364     fn visit_expr(&mut self, expr: &'tcx Expr<'_>) {
2365         if self.past_while_let {
2366             if path_to_local_id(expr, self.def_id) {
2367                 self.var_used_after_while_let = true;
2368             }
2369         } else if self.iter_expr_id == expr.hir_id {
2370             self.past_while_let = true;
2371         }
2372         walk_expr(self, expr);
2373     }
2374     fn nested_visit_map(&mut self) -> NestedVisitorMap<Self::Map> {
2375         NestedVisitorMap::None
2376     }
2377 }
2378
2379 /// Returns `true` if the type of expr is one that provides `IntoIterator` impls
2380 /// for `&T` and `&mut T`, such as `Vec`.
2381 #[rustfmt::skip]
2382 fn is_ref_iterable_type(cx: &LateContext<'_>, e: &Expr<'_>) -> bool {
2383     // no walk_ptrs_ty: calling iter() on a reference can make sense because it
2384     // will allow further borrows afterwards
2385     let ty = cx.typeck_results().expr_ty(e);
2386     is_iterable_array(ty, cx) ||
2387     is_type_diagnostic_item(cx, ty, sym::vec_type) ||
2388     match_type(cx, ty, &paths::LINKED_LIST) ||
2389     is_type_diagnostic_item(cx, ty, sym!(hashmap_type)) ||
2390     is_type_diagnostic_item(cx, ty, sym!(hashset_type)) ||
2391     is_type_diagnostic_item(cx, ty, sym!(vecdeque_type)) ||
2392     match_type(cx, ty, &paths::BINARY_HEAP) ||
2393     match_type(cx, ty, &paths::BTREEMAP) ||
2394     match_type(cx, ty, &paths::BTREESET)
2395 }
2396
2397 fn is_iterable_array<'tcx>(ty: Ty<'tcx>, cx: &LateContext<'tcx>) -> bool {
2398     // IntoIterator is currently only implemented for array sizes <= 32 in rustc
2399     match ty.kind() {
2400         ty::Array(_, n) => n
2401             .try_eval_usize(cx.tcx, cx.param_env)
2402             .map_or(false, |val| (0..=32).contains(&val)),
2403         _ => false,
2404     }
2405 }
2406
2407 /// If a block begins with a statement (possibly a `let` binding) and has an
2408 /// expression, return it.
2409 fn extract_expr_from_first_stmt<'tcx>(block: &Block<'tcx>) -> Option<&'tcx Expr<'tcx>> {
2410     if block.stmts.is_empty() {
2411         return None;
2412     }
2413     if let StmtKind::Local(ref local) = block.stmts[0].kind {
2414         local.init //.map(|expr| expr)
2415     } else {
2416         None
2417     }
2418 }
2419
2420 /// If a block begins with an expression (with or without semicolon), return it.
2421 fn extract_first_expr<'tcx>(block: &Block<'tcx>) -> Option<&'tcx Expr<'tcx>> {
2422     match block.expr {
2423         Some(ref expr) if block.stmts.is_empty() => Some(expr),
2424         None if !block.stmts.is_empty() => match block.stmts[0].kind {
2425             StmtKind::Expr(ref expr) | StmtKind::Semi(ref expr) => Some(expr),
2426             StmtKind::Local(..) | StmtKind::Item(..) => None,
2427         },
2428         _ => None,
2429     }
2430 }
2431
2432 /// Returns `true` if expr contains a single break expr without destination label
2433 /// and
2434 /// passed expression. The expression may be within a block.
2435 fn is_simple_break_expr(expr: &Expr<'_>) -> bool {
2436     match expr.kind {
2437         ExprKind::Break(dest, ref passed_expr) if dest.label.is_none() && passed_expr.is_none() => true,
2438         ExprKind::Block(ref b, _) => extract_first_expr(b).map_or(false, |subexpr| is_simple_break_expr(subexpr)),
2439         _ => false,
2440     }
2441 }
2442
2443 #[derive(Debug, PartialEq)]
2444 enum IncrementVisitorVarState {
2445     Initial,  // Not examined yet
2446     IncrOnce, // Incremented exactly once, may be a loop counter
2447     DontWarn,
2448 }
2449
2450 /// Scan a for loop for variables that are incremented exactly once and not used after that.
2451 struct IncrementVisitor<'a, 'tcx> {
2452     cx: &'a LateContext<'tcx>,                          // context reference
2453     states: FxHashMap<HirId, IncrementVisitorVarState>, // incremented variables
2454     depth: u32,                                         // depth of conditional expressions
2455     done: bool,
2456 }
2457
2458 impl<'a, 'tcx> IncrementVisitor<'a, 'tcx> {
2459     fn new(cx: &'a LateContext<'tcx>) -> Self {
2460         Self {
2461             cx,
2462             states: FxHashMap::default(),
2463             depth: 0,
2464             done: false,
2465         }
2466     }
2467
2468     fn into_results(self) -> impl Iterator<Item = HirId> {
2469         self.states.into_iter().filter_map(|(id, state)| {
2470             if state == IncrementVisitorVarState::IncrOnce {
2471                 Some(id)
2472             } else {
2473                 None
2474             }
2475         })
2476     }
2477 }
2478
2479 impl<'a, 'tcx> Visitor<'tcx> for IncrementVisitor<'a, 'tcx> {
2480     type Map = Map<'tcx>;
2481
2482     fn visit_expr(&mut self, expr: &'tcx Expr<'_>) {
2483         if self.done {
2484             return;
2485         }
2486
2487         // If node is a variable
2488         if let Some(def_id) = path_to_local(expr) {
2489             if let Some(parent) = get_parent_expr(self.cx, expr) {
2490                 let state = self.states.entry(def_id).or_insert(IncrementVisitorVarState::Initial);
2491                 if *state == IncrementVisitorVarState::IncrOnce {
2492                     *state = IncrementVisitorVarState::DontWarn;
2493                     return;
2494                 }
2495
2496                 match parent.kind {
2497                     ExprKind::AssignOp(op, ref lhs, ref rhs) => {
2498                         if lhs.hir_id == expr.hir_id {
2499                             *state = if op.node == BinOpKind::Add
2500                                 && is_integer_const(self.cx, rhs, 1)
2501                                 && *state == IncrementVisitorVarState::Initial
2502                                 && self.depth == 0
2503                             {
2504                                 IncrementVisitorVarState::IncrOnce
2505                             } else {
2506                                 // Assigned some other value or assigned multiple times
2507                                 IncrementVisitorVarState::DontWarn
2508                             };
2509                         }
2510                     },
2511                     ExprKind::Assign(ref lhs, _, _) if lhs.hir_id == expr.hir_id => {
2512                         *state = IncrementVisitorVarState::DontWarn
2513                     },
2514                     ExprKind::AddrOf(BorrowKind::Ref, mutability, _) if mutability == Mutability::Mut => {
2515                         *state = IncrementVisitorVarState::DontWarn
2516                     },
2517                     _ => (),
2518                 }
2519             }
2520
2521             walk_expr(self, expr);
2522         } else if is_loop(expr) || is_conditional(expr) {
2523             self.depth += 1;
2524             walk_expr(self, expr);
2525             self.depth -= 1;
2526         } else if let ExprKind::Continue(_) = expr.kind {
2527             self.done = true;
2528         } else {
2529             walk_expr(self, expr);
2530         }
2531     }
2532     fn nested_visit_map(&mut self) -> NestedVisitorMap<Self::Map> {
2533         NestedVisitorMap::None
2534     }
2535 }
2536
2537 enum InitializeVisitorState<'hir> {
2538     Initial,          // Not examined yet
2539     Declared(Symbol), // Declared but not (yet) initialized
2540     Initialized {
2541         name: Symbol,
2542         initializer: &'hir Expr<'hir>,
2543     },
2544     DontWarn,
2545 }
2546
2547 /// Checks whether a variable is initialized at the start of a loop and not modified
2548 /// and used after the loop.
2549 struct InitializeVisitor<'a, 'tcx> {
2550     cx: &'a LateContext<'tcx>,  // context reference
2551     end_expr: &'tcx Expr<'tcx>, // the for loop. Stop scanning here.
2552     var_id: HirId,
2553     state: InitializeVisitorState<'tcx>,
2554     depth: u32, // depth of conditional expressions
2555     past_loop: bool,
2556 }
2557
2558 impl<'a, 'tcx> InitializeVisitor<'a, 'tcx> {
2559     fn new(cx: &'a LateContext<'tcx>, end_expr: &'tcx Expr<'tcx>, var_id: HirId) -> Self {
2560         Self {
2561             cx,
2562             end_expr,
2563             var_id,
2564             state: InitializeVisitorState::Initial,
2565             depth: 0,
2566             past_loop: false,
2567         }
2568     }
2569
2570     fn get_result(&self) -> Option<(Symbol, &'tcx Expr<'tcx>)> {
2571         if let InitializeVisitorState::Initialized { name, initializer } = self.state {
2572             Some((name, initializer))
2573         } else {
2574             None
2575         }
2576     }
2577 }
2578
2579 impl<'a, 'tcx> Visitor<'tcx> for InitializeVisitor<'a, 'tcx> {
2580     type Map = Map<'tcx>;
2581
2582     fn visit_stmt(&mut self, stmt: &'tcx Stmt<'_>) {
2583         // Look for declarations of the variable
2584         if_chain! {
2585             if let StmtKind::Local(ref local) = stmt.kind;
2586             if local.pat.hir_id == self.var_id;
2587             if let PatKind::Binding(.., ident, _) = local.pat.kind;
2588             then {
2589                 self.state = local.init.map_or(InitializeVisitorState::Declared(ident.name), |init| {
2590                     InitializeVisitorState::Initialized {
2591                         initializer: init,
2592                         name: ident.name,
2593                     }
2594                 })
2595             }
2596         }
2597         walk_stmt(self, stmt);
2598     }
2599
2600     fn visit_expr(&mut self, expr: &'tcx Expr<'_>) {
2601         if matches!(self.state, InitializeVisitorState::DontWarn) {
2602             return;
2603         }
2604         if expr.hir_id == self.end_expr.hir_id {
2605             self.past_loop = true;
2606             return;
2607         }
2608         // No need to visit expressions before the variable is
2609         // declared
2610         if matches!(self.state, InitializeVisitorState::Initial) {
2611             return;
2612         }
2613
2614         // If node is the desired variable, see how it's used
2615         if path_to_local_id(expr, self.var_id) {
2616             if self.past_loop {
2617                 self.state = InitializeVisitorState::DontWarn;
2618                 return;
2619             }
2620
2621             if let Some(parent) = get_parent_expr(self.cx, expr) {
2622                 match parent.kind {
2623                     ExprKind::AssignOp(_, ref lhs, _) if lhs.hir_id == expr.hir_id => {
2624                         self.state = InitializeVisitorState::DontWarn;
2625                     },
2626                     ExprKind::Assign(ref lhs, ref rhs, _) if lhs.hir_id == expr.hir_id => {
2627                         self.state = if_chain! {
2628                             if self.depth == 0;
2629                             if let InitializeVisitorState::Declared(name)
2630                                 | InitializeVisitorState::Initialized { name, ..} = self.state;
2631                             then {
2632                                 InitializeVisitorState::Initialized { initializer: rhs, name }
2633                             } else {
2634                                 InitializeVisitorState::DontWarn
2635                             }
2636                         }
2637                     },
2638                     ExprKind::AddrOf(BorrowKind::Ref, mutability, _) if mutability == Mutability::Mut => {
2639                         self.state = InitializeVisitorState::DontWarn
2640                     },
2641                     _ => (),
2642                 }
2643             }
2644
2645             walk_expr(self, expr);
2646         } else if !self.past_loop && is_loop(expr) {
2647             self.state = InitializeVisitorState::DontWarn;
2648         } else if is_conditional(expr) {
2649             self.depth += 1;
2650             walk_expr(self, expr);
2651             self.depth -= 1;
2652         } else {
2653             walk_expr(self, expr);
2654         }
2655     }
2656
2657     fn nested_visit_map(&mut self) -> NestedVisitorMap<Self::Map> {
2658         NestedVisitorMap::OnlyBodies(self.cx.tcx.hir())
2659     }
2660 }
2661
2662 fn is_loop(expr: &Expr<'_>) -> bool {
2663     matches!(expr.kind, ExprKind::Loop(..))
2664 }
2665
2666 fn is_conditional(expr: &Expr<'_>) -> bool {
2667     matches!(expr.kind, ExprKind::If(..) | ExprKind::Match(..))
2668 }
2669
2670 fn is_nested(cx: &LateContext<'_>, match_expr: &Expr<'_>, iter_expr: &Expr<'_>) -> bool {
2671     if_chain! {
2672         if let Some(loop_block) = get_enclosing_block(cx, match_expr.hir_id);
2673         let parent_node = cx.tcx.hir().get_parent_node(loop_block.hir_id);
2674         if let Some(Node::Expr(loop_expr)) = cx.tcx.hir().find(parent_node);
2675         then {
2676             return is_loop_nested(cx, loop_expr, iter_expr)
2677         }
2678     }
2679     false
2680 }
2681
2682 fn is_loop_nested(cx: &LateContext<'_>, loop_expr: &Expr<'_>, iter_expr: &Expr<'_>) -> bool {
2683     let mut id = loop_expr.hir_id;
2684     let iter_id = if let Some(id) = path_to_local(iter_expr) {
2685         id
2686     } else {
2687         return true;
2688     };
2689     loop {
2690         let parent = cx.tcx.hir().get_parent_node(id);
2691         if parent == id {
2692             return false;
2693         }
2694         match cx.tcx.hir().find(parent) {
2695             Some(Node::Expr(expr)) => {
2696                 if let ExprKind::Loop(..) = expr.kind {
2697                     return true;
2698                 };
2699             },
2700             Some(Node::Block(block)) => {
2701                 let mut block_visitor = LoopNestVisitor {
2702                     hir_id: id,
2703                     iterator: iter_id,
2704                     nesting: Unknown,
2705                 };
2706                 walk_block(&mut block_visitor, block);
2707                 if block_visitor.nesting == RuledOut {
2708                     return false;
2709                 }
2710             },
2711             Some(Node::Stmt(_)) => (),
2712             _ => {
2713                 return false;
2714             },
2715         }
2716         id = parent;
2717     }
2718 }
2719
2720 #[derive(PartialEq, Eq)]
2721 enum Nesting {
2722     Unknown,     // no nesting detected yet
2723     RuledOut,    // the iterator is initialized or assigned within scope
2724     LookFurther, // no nesting detected, no further walk required
2725 }
2726
2727 use self::Nesting::{LookFurther, RuledOut, Unknown};
2728
2729 struct LoopNestVisitor {
2730     hir_id: HirId,
2731     iterator: HirId,
2732     nesting: Nesting,
2733 }
2734
2735 impl<'tcx> Visitor<'tcx> for LoopNestVisitor {
2736     type Map = Map<'tcx>;
2737
2738     fn visit_stmt(&mut self, stmt: &'tcx Stmt<'_>) {
2739         if stmt.hir_id == self.hir_id {
2740             self.nesting = LookFurther;
2741         } else if self.nesting == Unknown {
2742             walk_stmt(self, stmt);
2743         }
2744     }
2745
2746     fn visit_expr(&mut self, expr: &'tcx Expr<'_>) {
2747         if self.nesting != Unknown {
2748             return;
2749         }
2750         if expr.hir_id == self.hir_id {
2751             self.nesting = LookFurther;
2752             return;
2753         }
2754         match expr.kind {
2755             ExprKind::Assign(ref path, _, _) | ExprKind::AssignOp(_, ref path, _) => {
2756                 if path_to_local_id(path, self.iterator) {
2757                     self.nesting = RuledOut;
2758                 }
2759             },
2760             _ => walk_expr(self, expr),
2761         }
2762     }
2763
2764     fn visit_pat(&mut self, pat: &'tcx Pat<'_>) {
2765         if self.nesting != Unknown {
2766             return;
2767         }
2768         if let PatKind::Binding(_, id, ..) = pat.kind {
2769             if id == self.iterator {
2770                 self.nesting = RuledOut;
2771                 return;
2772             }
2773         }
2774         walk_pat(self, pat)
2775     }
2776
2777     fn nested_visit_map(&mut self) -> NestedVisitorMap<Self::Map> {
2778         NestedVisitorMap::None
2779     }
2780 }
2781
2782 fn check_infinite_loop<'tcx>(cx: &LateContext<'tcx>, cond: &'tcx Expr<'_>, expr: &'tcx Expr<'_>) {
2783     if constant(cx, cx.typeck_results(), cond).is_some() {
2784         // A pure constant condition (e.g., `while false`) is not linted.
2785         return;
2786     }
2787
2788     let mut var_visitor = VarCollectorVisitor {
2789         cx,
2790         ids: FxHashSet::default(),
2791         def_ids: FxHashMap::default(),
2792         skip: false,
2793     };
2794     var_visitor.visit_expr(cond);
2795     if var_visitor.skip {
2796         return;
2797     }
2798     let used_in_condition = &var_visitor.ids;
2799     let no_cond_variable_mutated = if let Some(used_mutably) = mutated_variables(expr, cx) {
2800         used_in_condition.is_disjoint(&used_mutably)
2801     } else {
2802         return;
2803     };
2804     let mutable_static_in_cond = var_visitor.def_ids.iter().any(|(_, v)| *v);
2805
2806     let mut has_break_or_return_visitor = HasBreakOrReturnVisitor {
2807         has_break_or_return: false,
2808     };
2809     has_break_or_return_visitor.visit_expr(expr);
2810     let has_break_or_return = has_break_or_return_visitor.has_break_or_return;
2811
2812     if no_cond_variable_mutated && !mutable_static_in_cond {
2813         span_lint_and_then(
2814             cx,
2815             WHILE_IMMUTABLE_CONDITION,
2816             cond.span,
2817             "variables in the condition are not mutated in the loop body",
2818             |diag| {
2819                 diag.note("this may lead to an infinite or to a never running loop");
2820
2821                 if has_break_or_return {
2822                     diag.note("this loop contains `return`s or `break`s");
2823                     diag.help("rewrite it as `if cond { loop { } }`");
2824                 }
2825             },
2826         );
2827     }
2828 }
2829
2830 struct HasBreakOrReturnVisitor {
2831     has_break_or_return: bool,
2832 }
2833
2834 impl<'tcx> Visitor<'tcx> for HasBreakOrReturnVisitor {
2835     type Map = Map<'tcx>;
2836
2837     fn visit_expr(&mut self, expr: &'tcx Expr<'_>) {
2838         if self.has_break_or_return {
2839             return;
2840         }
2841
2842         match expr.kind {
2843             ExprKind::Ret(_) | ExprKind::Break(_, _) => {
2844                 self.has_break_or_return = true;
2845                 return;
2846             },
2847             _ => {},
2848         }
2849
2850         walk_expr(self, expr);
2851     }
2852
2853     fn nested_visit_map(&mut self) -> NestedVisitorMap<Self::Map> {
2854         NestedVisitorMap::None
2855     }
2856 }
2857
2858 /// Collects the set of variables in an expression
2859 /// Stops analysis if a function call is found
2860 /// Note: In some cases such as `self`, there are no mutable annotation,
2861 /// All variables definition IDs are collected
2862 struct VarCollectorVisitor<'a, 'tcx> {
2863     cx: &'a LateContext<'tcx>,
2864     ids: FxHashSet<HirId>,
2865     def_ids: FxHashMap<def_id::DefId, bool>,
2866     skip: bool,
2867 }
2868
2869 impl<'a, 'tcx> VarCollectorVisitor<'a, 'tcx> {
2870     fn insert_def_id(&mut self, ex: &'tcx Expr<'_>) {
2871         if_chain! {
2872             if let ExprKind::Path(ref qpath) = ex.kind;
2873             if let QPath::Resolved(None, _) = *qpath;
2874             let res = self.cx.qpath_res(qpath, ex.hir_id);
2875             then {
2876                 match res {
2877                     Res::Local(hir_id) => {
2878                         self.ids.insert(hir_id);
2879                     },
2880                     Res::Def(DefKind::Static, def_id) => {
2881                         let mutable = self.cx.tcx.is_mutable_static(def_id);
2882                         self.def_ids.insert(def_id, mutable);
2883                     },
2884                     _ => {},
2885                 }
2886             }
2887         }
2888     }
2889 }
2890
2891 impl<'a, 'tcx> Visitor<'tcx> for VarCollectorVisitor<'a, 'tcx> {
2892     type Map = Map<'tcx>;
2893
2894     fn visit_expr(&mut self, ex: &'tcx Expr<'_>) {
2895         match ex.kind {
2896             ExprKind::Path(_) => self.insert_def_id(ex),
2897             // If there is any function/method call… we just stop analysis
2898             ExprKind::Call(..) | ExprKind::MethodCall(..) => self.skip = true,
2899
2900             _ => walk_expr(self, ex),
2901         }
2902     }
2903
2904     fn nested_visit_map(&mut self) -> NestedVisitorMap<Self::Map> {
2905         NestedVisitorMap::None
2906     }
2907 }
2908
2909 const NEEDLESS_COLLECT_MSG: &str = "avoid using `collect()` when not needed";
2910
2911 fn check_needless_collect<'tcx>(expr: &'tcx Expr<'_>, cx: &LateContext<'tcx>) {
2912     check_needless_collect_direct_usage(expr, cx);
2913     check_needless_collect_indirect_usage(expr, cx);
2914 }
2915 fn check_needless_collect_direct_usage<'tcx>(expr: &'tcx Expr<'_>, cx: &LateContext<'tcx>) {
2916     if_chain! {
2917         if let ExprKind::MethodCall(ref method, _, ref args, _) = expr.kind;
2918         if let ExprKind::MethodCall(ref chain_method, _, _, _) = args[0].kind;
2919         if chain_method.ident.name == sym!(collect) && match_trait_method(cx, &args[0], &paths::ITERATOR);
2920         if let Some(ref generic_args) = chain_method.args;
2921         if let Some(GenericArg::Type(ref ty)) = generic_args.args.get(0);
2922         then {
2923             let ty = cx.typeck_results().node_type(ty.hir_id);
2924             if is_type_diagnostic_item(cx, ty, sym::vec_type) ||
2925                 is_type_diagnostic_item(cx, ty, sym!(vecdeque_type)) ||
2926                 match_type(cx, ty, &paths::BTREEMAP) ||
2927                 is_type_diagnostic_item(cx, ty, sym!(hashmap_type)) {
2928                 if method.ident.name == sym!(len) {
2929                     let span = shorten_needless_collect_span(expr);
2930                     span_lint_and_sugg(
2931                         cx,
2932                         NEEDLESS_COLLECT,
2933                         span,
2934                         NEEDLESS_COLLECT_MSG,
2935                         "replace with",
2936                         "count()".to_string(),
2937                         Applicability::MachineApplicable,
2938                     );
2939                 }
2940                 if method.ident.name == sym!(is_empty) {
2941                     let span = shorten_needless_collect_span(expr);
2942                     span_lint_and_sugg(
2943                         cx,
2944                         NEEDLESS_COLLECT,
2945                         span,
2946                         NEEDLESS_COLLECT_MSG,
2947                         "replace with",
2948                         "next().is_none()".to_string(),
2949                         Applicability::MachineApplicable,
2950                     );
2951                 }
2952                 if method.ident.name == sym!(contains) {
2953                     let contains_arg = snippet(cx, args[1].span, "??");
2954                     let span = shorten_needless_collect_span(expr);
2955                     span_lint_and_then(
2956                         cx,
2957                         NEEDLESS_COLLECT,
2958                         span,
2959                         NEEDLESS_COLLECT_MSG,
2960                         |diag| {
2961                             let (arg, pred) = contains_arg
2962                                     .strip_prefix('&')
2963                                     .map_or(("&x", &*contains_arg), |s| ("x", s));
2964                             diag.span_suggestion(
2965                                 span,
2966                                 "replace with",
2967                                 format!(
2968                                     "any(|{}| x == {})",
2969                                     arg, pred
2970                                 ),
2971                                 Applicability::MachineApplicable,
2972                             );
2973                         }
2974                     );
2975                 }
2976             }
2977         }
2978     }
2979 }
2980
2981 fn check_needless_collect_indirect_usage<'tcx>(expr: &'tcx Expr<'_>, cx: &LateContext<'tcx>) {
2982     if let ExprKind::Block(ref block, _) = expr.kind {
2983         for ref stmt in block.stmts {
2984             if_chain! {
2985                 if let StmtKind::Local(
2986                     Local { pat: Pat { hir_id: pat_id, kind: PatKind::Binding(_, _, ident, .. ), .. },
2987                     init: Some(ref init_expr), .. }
2988                 ) = stmt.kind;
2989                 if let ExprKind::MethodCall(ref method_name, _, &[ref iter_source], ..) = init_expr.kind;
2990                 if method_name.ident.name == sym!(collect) && match_trait_method(cx, &init_expr, &paths::ITERATOR);
2991                 if let Some(ref generic_args) = method_name.args;
2992                 if let Some(GenericArg::Type(ref ty)) = generic_args.args.get(0);
2993                 if let ty = cx.typeck_results().node_type(ty.hir_id);
2994                 if is_type_diagnostic_item(cx, ty, sym::vec_type) ||
2995                     is_type_diagnostic_item(cx, ty, sym!(vecdeque_type)) ||
2996                     match_type(cx, ty, &paths::LINKED_LIST);
2997                 if let Some(iter_calls) = detect_iter_and_into_iters(block, *ident);
2998                 if iter_calls.len() == 1;
2999                 then {
3000                     let mut used_count_visitor = UsedCountVisitor {
3001                         cx,
3002                         id: *pat_id,
3003                         count: 0,
3004                     };
3005                     walk_block(&mut used_count_visitor, block);
3006                     if used_count_visitor.count > 1 {
3007                         return;
3008                     }
3009
3010                     // Suggest replacing iter_call with iter_replacement, and removing stmt
3011                     let iter_call = &iter_calls[0];
3012                     span_lint_and_then(
3013                         cx,
3014                         NEEDLESS_COLLECT,
3015                         stmt.span.until(iter_call.span),
3016                         NEEDLESS_COLLECT_MSG,
3017                         |diag| {
3018                             let iter_replacement = format!("{}{}", Sugg::hir(cx, iter_source, ".."), iter_call.get_iter_method(cx));
3019                             diag.multipart_suggestion(
3020                                 iter_call.get_suggestion_text(),
3021                                 vec![
3022                                     (stmt.span, String::new()),
3023                                     (iter_call.span, iter_replacement)
3024                                 ],
3025                                 Applicability::MachineApplicable,// MaybeIncorrect,
3026                             ).emit();
3027                         },
3028                     );
3029                 }
3030             }
3031         }
3032     }
3033 }
3034
3035 struct IterFunction {
3036     func: IterFunctionKind,
3037     span: Span,
3038 }
3039 impl IterFunction {
3040     fn get_iter_method(&self, cx: &LateContext<'_>) -> String {
3041         match &self.func {
3042             IterFunctionKind::IntoIter => String::new(),
3043             IterFunctionKind::Len => String::from(".count()"),
3044             IterFunctionKind::IsEmpty => String::from(".next().is_none()"),
3045             IterFunctionKind::Contains(span) => {
3046                 let s = snippet(cx, *span, "..");
3047                 if let Some(stripped) = s.strip_prefix('&') {
3048                     format!(".any(|x| x == {})", stripped)
3049                 } else {
3050                     format!(".any(|x| x == *{})", s)
3051                 }
3052             },
3053         }
3054     }
3055     fn get_suggestion_text(&self) -> &'static str {
3056         match &self.func {
3057             IterFunctionKind::IntoIter => {
3058                 "Use the original Iterator instead of collecting it and then producing a new one"
3059             },
3060             IterFunctionKind::Len => {
3061                 "Take the original Iterator's count instead of collecting it and finding the length"
3062             },
3063             IterFunctionKind::IsEmpty => {
3064                 "Check if the original Iterator has anything instead of collecting it and seeing if it's empty"
3065             },
3066             IterFunctionKind::Contains(_) => {
3067                 "Check if the original Iterator contains an element instead of collecting then checking"
3068             },
3069         }
3070     }
3071 }
3072 enum IterFunctionKind {
3073     IntoIter,
3074     Len,
3075     IsEmpty,
3076     Contains(Span),
3077 }
3078
3079 struct IterFunctionVisitor {
3080     uses: Vec<IterFunction>,
3081     seen_other: bool,
3082     target: Ident,
3083 }
3084 impl<'tcx> Visitor<'tcx> for IterFunctionVisitor {
3085     fn visit_expr(&mut self, expr: &'tcx Expr<'tcx>) {
3086         // Check function calls on our collection
3087         if_chain! {
3088             if let ExprKind::MethodCall(method_name, _, ref args, _) = &expr.kind;
3089             if let Some(Expr { kind: ExprKind::Path(QPath::Resolved(_, ref path)), .. }) = args.get(0);
3090             if let &[name] = &path.segments;
3091             if name.ident == self.target;
3092             then {
3093                 let len = sym!(len);
3094                 let is_empty = sym!(is_empty);
3095                 let contains = sym!(contains);
3096                 match method_name.ident.name {
3097                     sym::into_iter => self.uses.push(
3098                         IterFunction { func: IterFunctionKind::IntoIter, span: expr.span }
3099                     ),
3100                     name if name == len => self.uses.push(
3101                         IterFunction { func: IterFunctionKind::Len, span: expr.span }
3102                     ),
3103                     name if name == is_empty => self.uses.push(
3104                         IterFunction { func: IterFunctionKind::IsEmpty, span: expr.span }
3105                     ),
3106                     name if name == contains => self.uses.push(
3107                         IterFunction { func: IterFunctionKind::Contains(args[1].span), span: expr.span }
3108                     ),
3109                     _ => self.seen_other = true,
3110                 }
3111                 return
3112             }
3113         }
3114         // Check if the collection is used for anything else
3115         if_chain! {
3116             if let Expr { kind: ExprKind::Path(QPath::Resolved(_, ref path)), .. } = expr;
3117             if let &[name] = &path.segments;
3118             if name.ident == self.target;
3119             then {
3120                 self.seen_other = true;
3121             } else {
3122                 walk_expr(self, expr);
3123             }
3124         }
3125     }
3126
3127     type Map = Map<'tcx>;
3128     fn nested_visit_map(&mut self) -> NestedVisitorMap<Self::Map> {
3129         NestedVisitorMap::None
3130     }
3131 }
3132
3133 struct UsedCountVisitor<'a, 'tcx> {
3134     cx: &'a LateContext<'tcx>,
3135     id: HirId,
3136     count: usize,
3137 }
3138
3139 impl<'a, 'tcx> Visitor<'tcx> for UsedCountVisitor<'a, 'tcx> {
3140     type Map = Map<'tcx>;
3141
3142     fn visit_expr(&mut self, expr: &'tcx Expr<'_>) {
3143         if path_to_local_id(expr, self.id) {
3144             self.count += 1;
3145         } else {
3146             walk_expr(self, expr);
3147         }
3148     }
3149
3150     fn nested_visit_map(&mut self) -> NestedVisitorMap<Self::Map> {
3151         NestedVisitorMap::OnlyBodies(self.cx.tcx.hir())
3152     }
3153 }
3154
3155 /// Detect the occurrences of calls to `iter` or `into_iter` for the
3156 /// given identifier
3157 fn detect_iter_and_into_iters<'tcx>(block: &'tcx Block<'tcx>, identifier: Ident) -> Option<Vec<IterFunction>> {
3158     let mut visitor = IterFunctionVisitor {
3159         uses: Vec::new(),
3160         target: identifier,
3161         seen_other: false,
3162     };
3163     visitor.visit_block(block);
3164     if visitor.seen_other {
3165         None
3166     } else {
3167         Some(visitor.uses)
3168     }
3169 }
3170
3171 fn shorten_needless_collect_span(expr: &Expr<'_>) -> Span {
3172     if_chain! {
3173         if let ExprKind::MethodCall(.., args, _) = &expr.kind;
3174         if let ExprKind::MethodCall(_, span, ..) = &args[0].kind;
3175         then {
3176             return expr.span.with_lo(span.lo());
3177         }
3178     }
3179     unreachable!();
3180 }