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