]> git.lizzy.rs Git - rust.git/blob - clippy_lints/src/loops.rs
Auto merge of #5525 - flip1995:issue_1654, r=phansch
[rust.git] / clippy_lints / src / loops.rs
1 use crate::consts::{constant, Constant};
2 use crate::reexport::Name;
3 use crate::utils::paths;
4 use crate::utils::usage::{is_unused, mutated_variables};
5 use crate::utils::{
6     get_enclosing_block, get_parent_expr, get_trait_def_id, has_iter_method, higher, implements_trait,
7     is_integer_const, is_no_std_crate, is_refutable, last_path_segment, match_trait_method, match_type, match_var,
8     multispan_sugg, snippet, snippet_opt, snippet_with_applicability, span_lint, span_lint_and_help,
9     span_lint_and_sugg, span_lint_and_then, SpanlessEq,
10 };
11 use crate::utils::{is_type_diagnostic_item, qpath_res, same_tys, sext, sugg};
12 use if_chain::if_chain;
13 use itertools::Itertools;
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, LoopSource,
21     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};
29 use rustc_session::{declare_lint_pass, declare_tool_lint};
30 use rustc_span::source_map::Span;
31 use rustc_span::BytePos;
32 use rustc_typeck::expr_use_visitor::{ConsumeMode, Delegate, ExprUseVisitor, Place, PlaceBase};
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` 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     /// ```ignore
181     /// for x in option {
182     ///     ..
183     /// }
184     /// ```
185     ///
186     /// This should be
187     /// ```ignore
188     /// if let Some(x) = option {
189     ///     ..
190     /// }
191     /// ```
192     pub FOR_LOOP_OVER_OPTION,
193     correctness,
194     "for-looping over an `Option`, which is more clearly expressed as an `if let`"
195 }
196
197 declare_clippy_lint! {
198     /// **What it does:** Checks for `for` loops over `Result` values.
199     ///
200     /// **Why is this bad?** Readability. This is more clearly expressed as an `if
201     /// let`.
202     ///
203     /// **Known problems:** None.
204     ///
205     /// **Example:**
206     /// ```ignore
207     /// for x in result {
208     ///     ..
209     /// }
210     /// ```
211     ///
212     /// This should be
213     /// ```ignore
214     /// if let Ok(x) = result {
215     ///     ..
216     /// }
217     /// ```
218     pub FOR_LOOP_OVER_RESULT,
219     correctness,
220     "for-looping over a `Result`, which is more clearly expressed as an `if let`"
221 }
222
223 declare_clippy_lint! {
224     /// **What it does:** Detects `loop + match` combinations that are easier
225     /// written as a `while let` loop.
226     ///
227     /// **Why is this bad?** The `while let` loop is usually shorter and more
228     /// readable.
229     ///
230     /// **Known problems:** Sometimes the wrong binding is displayed (#383).
231     ///
232     /// **Example:**
233     /// ```rust,no_run
234     /// # let y = Some(1);
235     /// loop {
236     ///     let x = match y {
237     ///         Some(x) => x,
238     ///         None => break,
239     ///     };
240     ///     // .. do something with x
241     /// }
242     /// // is easier written as
243     /// while let Some(x) = y {
244     ///     // .. do something with x
245     /// };
246     /// ```
247     pub WHILE_LET_LOOP,
248     complexity,
249     "`loop { if let { ... } else break }`, which can be written as a `while let` loop"
250 }
251
252 declare_clippy_lint! {
253     /// **What it does:** Checks for functions collecting an iterator when collect
254     /// is not needed.
255     ///
256     /// **Why is this bad?** `collect` causes the allocation of a new data structure,
257     /// when this allocation may not be needed.
258     ///
259     /// **Known problems:**
260     /// None
261     ///
262     /// **Example:**
263     /// ```rust
264     /// # let iterator = vec![1].into_iter();
265     /// let len = iterator.clone().collect::<Vec<_>>().len();
266     /// // should be
267     /// let len = iterator.count();
268     /// ```
269     pub NEEDLESS_COLLECT,
270     perf,
271     "collecting an iterator when collect is not needed"
272 }
273
274 declare_clippy_lint! {
275     /// **What it does:** Checks for loops over ranges `x..y` where both `x` and `y`
276     /// are constant and `x` is greater or equal to `y`, unless the range is
277     /// reversed or has a negative `.step_by(_)`.
278     ///
279     /// **Why is it bad?** Such loops will either be skipped or loop until
280     /// wrap-around (in debug code, this may `panic!()`). Both options are probably
281     /// not intended.
282     ///
283     /// **Known problems:** The lint cannot catch loops over dynamically defined
284     /// ranges. Doing this would require simulating all possible inputs and code
285     /// paths through the program, which would be complex and error-prone.
286     ///
287     /// **Example:**
288     /// ```ignore
289     /// for x in 5..10 - 5 {
290     ///     ..
291     /// } // oops, stray `-`
292     /// ```
293     pub REVERSE_RANGE_LOOP,
294     correctness,
295     "iteration over an empty range, such as `10..0` or `5..5`"
296 }
297
298 declare_clippy_lint! {
299     /// **What it does:** Checks `for` loops over slices with an explicit counter
300     /// and suggests the use of `.enumerate()`.
301     ///
302     /// **Why is it bad?** Using `.enumerate()` makes the intent more clear,
303     /// declutters the code and may be faster in some instances.
304     ///
305     /// **Known problems:** None.
306     ///
307     /// **Example:**
308     /// ```rust
309     /// # let v = vec![1];
310     /// # fn bar(bar: usize, baz: usize) {}
311     /// let mut i = 0;
312     /// for item in &v {
313     ///     bar(i, *item);
314     ///     i += 1;
315     /// }
316     /// ```
317     /// Could be written as
318     /// ```rust
319     /// # let v = vec![1];
320     /// # fn bar(bar: usize, baz: usize) {}
321     /// for (i, item) in v.iter().enumerate() { bar(i, *item); }
322     /// ```
323     pub EXPLICIT_COUNTER_LOOP,
324     complexity,
325     "for-looping with an explicit counter when `_.enumerate()` would do"
326 }
327
328 declare_clippy_lint! {
329     /// **What it does:** Checks for empty `loop` expressions.
330     ///
331     /// **Why is this bad?** Those busy loops burn CPU cycles without doing
332     /// anything. Think of the environment and either block on something or at least
333     /// make the thread sleep for some microseconds.
334     ///
335     /// **Known problems:** None.
336     ///
337     /// **Example:**
338     /// ```no_run
339     /// loop {}
340     /// ```
341     pub EMPTY_LOOP,
342     style,
343     "empty `loop {}`, which should block or sleep"
344 }
345
346 declare_clippy_lint! {
347     /// **What it does:** Checks for `while let` expressions on iterators.
348     ///
349     /// **Why is this bad?** Readability. A simple `for` loop is shorter and conveys
350     /// the intent better.
351     ///
352     /// **Known problems:** None.
353     ///
354     /// **Example:**
355     /// ```ignore
356     /// while let Some(val) = iter() {
357     ///     ..
358     /// }
359     /// ```
360     pub WHILE_LET_ON_ITERATOR,
361     style,
362     "using a while-let loop instead of a for loop on an iterator"
363 }
364
365 declare_clippy_lint! {
366     /// **What it does:** Checks for iterating a map (`HashMap` or `BTreeMap`) and
367     /// ignoring either the keys or values.
368     ///
369     /// **Why is this bad?** Readability. There are `keys` and `values` methods that
370     /// can be used to express that don't need the values or keys.
371     ///
372     /// **Known problems:** None.
373     ///
374     /// **Example:**
375     /// ```ignore
376     /// for (k, _) in &map {
377     ///     ..
378     /// }
379     /// ```
380     ///
381     /// could be replaced by
382     ///
383     /// ```ignore
384     /// for k in map.keys() {
385     ///     ..
386     /// }
387     /// ```
388     pub FOR_KV_MAP,
389     style,
390     "looping on a map using `iter` when `keys` or `values` would do"
391 }
392
393 declare_clippy_lint! {
394     /// **What it does:** Checks for loops that will always `break`, `return` or
395     /// `continue` an outer loop.
396     ///
397     /// **Why is this bad?** This loop never loops, all it does is obfuscating the
398     /// code.
399     ///
400     /// **Known problems:** None
401     ///
402     /// **Example:**
403     /// ```rust
404     /// loop {
405     ///     ..;
406     ///     break;
407     /// }
408     /// ```
409     pub NEVER_LOOP,
410     correctness,
411     "any loop that will always `break` or `return`"
412 }
413
414 declare_clippy_lint! {
415     /// **What it does:** Checks for loops which have a range bound that is a mutable variable
416     ///
417     /// **Why is this bad?** One might think that modifying the mutable variable changes the loop bounds
418     ///
419     /// **Known problems:** None
420     ///
421     /// **Example:**
422     /// ```rust
423     /// let mut foo = 42;
424     /// for i in 0..foo {
425     ///     foo -= 1;
426     ///     println!("{}", i); // prints numbers from 0 to 42, not 0 to 21
427     /// }
428     /// ```
429     pub MUT_RANGE_BOUND,
430     complexity,
431     "for loop over a range where one of the bounds is a mutable variable"
432 }
433
434 declare_clippy_lint! {
435     /// **What it does:** Checks whether variables used within while loop condition
436     /// can be (and are) mutated in the body.
437     ///
438     /// **Why is this bad?** If the condition is unchanged, entering the body of the loop
439     /// will lead to an infinite loop.
440     ///
441     /// **Known problems:** If the `while`-loop is in a closure, the check for mutation of the
442     /// condition variables in the body can cause false negatives. For example when only `Upvar` `a` is
443     /// in the condition and only `Upvar` `b` gets mutated in the body, the lint will not trigger.
444     ///
445     /// **Example:**
446     /// ```rust
447     /// let i = 0;
448     /// while i > 10 {
449     ///     println!("let me loop forever!");
450     /// }
451     /// ```
452     pub WHILE_IMMUTABLE_CONDITION,
453     correctness,
454     "variables used within while expression are not mutated in the body"
455 }
456
457 declare_lint_pass!(Loops => [
458     MANUAL_MEMCPY,
459     NEEDLESS_RANGE_LOOP,
460     EXPLICIT_ITER_LOOP,
461     EXPLICIT_INTO_ITER_LOOP,
462     ITER_NEXT_LOOP,
463     FOR_LOOP_OVER_RESULT,
464     FOR_LOOP_OVER_OPTION,
465     WHILE_LET_LOOP,
466     NEEDLESS_COLLECT,
467     REVERSE_RANGE_LOOP,
468     EXPLICIT_COUNTER_LOOP,
469     EMPTY_LOOP,
470     WHILE_LET_ON_ITERATOR,
471     FOR_KV_MAP,
472     NEVER_LOOP,
473     MUT_RANGE_BOUND,
474     WHILE_IMMUTABLE_CONDITION,
475 ]);
476
477 impl<'a, 'tcx> LateLintPass<'a, 'tcx> for Loops {
478     #[allow(clippy::too_many_lines)]
479     fn check_expr(&mut self, cx: &LateContext<'a, 'tcx>, expr: &'tcx Expr<'_>) {
480         if let Some((pat, arg, body)) = higher::for_loop(expr) {
481             // we don't want to check expanded macros
482             // this check is not at the top of the function
483             // since higher::for_loop expressions are marked as expansions
484             if body.span.from_expansion() {
485                 return;
486             }
487             check_for_loop(cx, pat, arg, body, expr);
488         }
489
490         // we don't want to check expanded macros
491         if expr.span.from_expansion() {
492             return;
493         }
494
495         // check for never_loop
496         if let ExprKind::Loop(ref block, _, _) = expr.kind {
497             match never_loop_block(block, expr.hir_id) {
498                 NeverLoopResult::AlwaysBreak => span_lint(cx, NEVER_LOOP, expr.span, "this loop never actually loops"),
499                 NeverLoopResult::MayContinueMainLoop | NeverLoopResult::Otherwise => (),
500             }
501         }
502
503         // check for `loop { if let {} else break }` that could be `while let`
504         // (also matches an explicit "match" instead of "if let")
505         // (even if the "match" or "if let" is used for declaration)
506         if let ExprKind::Loop(ref block, _, LoopSource::Loop) = expr.kind {
507             // also check for empty `loop {}` statements
508             if block.stmts.is_empty() && block.expr.is_none() && !is_no_std_crate(cx.tcx.hir().krate()) {
509                 span_lint(
510                     cx,
511                     EMPTY_LOOP,
512                     expr.span,
513                     "empty `loop {}` detected. You may want to either use `panic!()` or add \
514                      `std::thread::sleep(..);` to the loop body.",
515                 );
516             }
517
518             // extract the expression from the first statement (if any) in a block
519             let inner_stmt_expr = extract_expr_from_first_stmt(block);
520             // or extract the first expression (if any) from the block
521             if let Some(inner) = inner_stmt_expr.or_else(|| extract_first_expr(block)) {
522                 if let ExprKind::Match(ref matchexpr, ref arms, ref source) = inner.kind {
523                     // ensure "if let" compatible match structure
524                     match *source {
525                         MatchSource::Normal | MatchSource::IfLetDesugar { .. } => {
526                             if arms.len() == 2
527                                 && arms[0].guard.is_none()
528                                 && arms[1].guard.is_none()
529                                 && is_simple_break_expr(&arms[1].body)
530                             {
531                                 if in_external_macro(cx.sess(), expr.span) {
532                                     return;
533                                 }
534
535                                 // NOTE: we used to build a body here instead of using
536                                 // ellipsis, this was removed because:
537                                 // 1) it was ugly with big bodies;
538                                 // 2) it was not indented properly;
539                                 // 3) it wasn’t very smart (see #675).
540                                 let mut applicability = Applicability::HasPlaceholders;
541                                 span_lint_and_sugg(
542                                     cx,
543                                     WHILE_LET_LOOP,
544                                     expr.span,
545                                     "this loop could be written as a `while let` loop",
546                                     "try",
547                                     format!(
548                                         "while let {} = {} {{ .. }}",
549                                         snippet_with_applicability(cx, arms[0].pat.span, "..", &mut applicability),
550                                         snippet_with_applicability(cx, matchexpr.span, "..", &mut applicability),
551                                     ),
552                                     applicability,
553                                 );
554                             }
555                         },
556                         _ => (),
557                     }
558                 }
559             }
560         }
561         if let ExprKind::Match(ref match_expr, ref arms, MatchSource::WhileLetDesugar) = expr.kind {
562             let pat = &arms[0].pat.kind;
563             if let (
564                 &PatKind::TupleStruct(ref qpath, ref pat_args, _),
565                 &ExprKind::MethodCall(ref method_path, _, ref method_args),
566             ) = (pat, &match_expr.kind)
567             {
568                 let iter_expr = &method_args[0];
569
570                 // Don't lint when the iterator is recreated on every iteration
571                 if_chain! {
572                     if let ExprKind::MethodCall(..) | ExprKind::Call(..) = iter_expr.kind;
573                     if let Some(iter_def_id) = get_trait_def_id(cx, &paths::ITERATOR);
574                     if implements_trait(cx, cx.tables.expr_ty(iter_expr), iter_def_id, &[]);
575                     then {
576                         return;
577                     }
578                 }
579
580                 let lhs_constructor = last_path_segment(qpath);
581                 if method_path.ident.name == sym!(next)
582                     && match_trait_method(cx, match_expr, &paths::ITERATOR)
583                     && lhs_constructor.ident.name == sym!(Some)
584                     && (pat_args.is_empty()
585                         || !is_refutable(cx, &pat_args[0])
586                             && !is_used_inside(cx, iter_expr, &arms[0].body)
587                             && !is_iterator_used_after_while_let(cx, iter_expr)
588                             && !is_nested(cx, expr, &method_args[0]))
589                 {
590                     let mut applicability = Applicability::MachineApplicable;
591                     let iterator = snippet_with_applicability(cx, method_args[0].span, "_", &mut applicability);
592                     let loop_var = if pat_args.is_empty() {
593                         "_".to_string()
594                     } else {
595                         snippet_with_applicability(cx, pat_args[0].span, "_", &mut applicability).into_owned()
596                     };
597                     span_lint_and_sugg(
598                         cx,
599                         WHILE_LET_ON_ITERATOR,
600                         expr.span.with_hi(match_expr.span.hi()),
601                         "this loop could be written as a `for` loop",
602                         "try",
603                         format!("for {} in {}", loop_var, iterator),
604                         applicability,
605                     );
606                 }
607             }
608         }
609
610         if let Some((cond, body)) = higher::while_loop(&expr) {
611             check_infinite_loop(cx, cond, body);
612         }
613
614         check_needless_collect(expr, cx);
615     }
616 }
617
618 enum NeverLoopResult {
619     // A break/return always get triggered but not necessarily for the main loop.
620     AlwaysBreak,
621     // A continue may occur for the main loop.
622     MayContinueMainLoop,
623     Otherwise,
624 }
625
626 #[must_use]
627 fn absorb_break(arg: &NeverLoopResult) -> NeverLoopResult {
628     match *arg {
629         NeverLoopResult::AlwaysBreak | NeverLoopResult::Otherwise => NeverLoopResult::Otherwise,
630         NeverLoopResult::MayContinueMainLoop => NeverLoopResult::MayContinueMainLoop,
631     }
632 }
633
634 // Combine two results for parts that are called in order.
635 #[must_use]
636 fn combine_seq(first: NeverLoopResult, second: NeverLoopResult) -> NeverLoopResult {
637     match first {
638         NeverLoopResult::AlwaysBreak | NeverLoopResult::MayContinueMainLoop => first,
639         NeverLoopResult::Otherwise => second,
640     }
641 }
642
643 // Combine two results where both parts are called but not necessarily in order.
644 #[must_use]
645 fn combine_both(left: NeverLoopResult, right: NeverLoopResult) -> NeverLoopResult {
646     match (left, right) {
647         (NeverLoopResult::MayContinueMainLoop, _) | (_, NeverLoopResult::MayContinueMainLoop) => {
648             NeverLoopResult::MayContinueMainLoop
649         },
650         (NeverLoopResult::AlwaysBreak, _) | (_, NeverLoopResult::AlwaysBreak) => NeverLoopResult::AlwaysBreak,
651         (NeverLoopResult::Otherwise, NeverLoopResult::Otherwise) => NeverLoopResult::Otherwise,
652     }
653 }
654
655 // Combine two results where only one of the part may have been executed.
656 #[must_use]
657 fn combine_branches(b1: NeverLoopResult, b2: NeverLoopResult) -> NeverLoopResult {
658     match (b1, b2) {
659         (NeverLoopResult::AlwaysBreak, NeverLoopResult::AlwaysBreak) => NeverLoopResult::AlwaysBreak,
660         (NeverLoopResult::MayContinueMainLoop, _) | (_, NeverLoopResult::MayContinueMainLoop) => {
661             NeverLoopResult::MayContinueMainLoop
662         },
663         (NeverLoopResult::Otherwise, _) | (_, NeverLoopResult::Otherwise) => NeverLoopResult::Otherwise,
664     }
665 }
666
667 fn never_loop_block(block: &Block<'_>, main_loop_id: HirId) -> NeverLoopResult {
668     let stmts = block.stmts.iter().map(stmt_to_expr);
669     let expr = once(block.expr.as_deref());
670     let mut iter = stmts.chain(expr).filter_map(|e| e);
671     never_loop_expr_seq(&mut iter, main_loop_id)
672 }
673
674 fn stmt_to_expr<'tcx>(stmt: &Stmt<'tcx>) -> Option<&'tcx Expr<'tcx>> {
675     match stmt.kind {
676         StmtKind::Semi(ref e, ..) | StmtKind::Expr(ref e, ..) => Some(e),
677         StmtKind::Local(ref local) => local.init.as_deref(),
678         _ => None,
679     }
680 }
681
682 fn never_loop_expr(expr: &Expr<'_>, main_loop_id: HirId) -> NeverLoopResult {
683     match expr.kind {
684         ExprKind::Box(ref e)
685         | ExprKind::Unary(_, ref e)
686         | ExprKind::Cast(ref e, _)
687         | ExprKind::Type(ref e, _)
688         | ExprKind::Field(ref e, _)
689         | ExprKind::AddrOf(_, _, ref e)
690         | ExprKind::Struct(_, _, Some(ref e))
691         | ExprKind::Repeat(ref e, _)
692         | ExprKind::DropTemps(ref e) => never_loop_expr(e, main_loop_id),
693         ExprKind::Array(ref es) | ExprKind::MethodCall(_, _, ref es) | ExprKind::Tup(ref es) => {
694             never_loop_expr_all(&mut es.iter(), main_loop_id)
695         },
696         ExprKind::Call(ref e, ref es) => never_loop_expr_all(&mut once(&**e).chain(es.iter()), main_loop_id),
697         ExprKind::Binary(_, ref e1, ref e2)
698         | ExprKind::Assign(ref e1, ref e2, _)
699         | ExprKind::AssignOp(_, ref e1, ref e2)
700         | ExprKind::Index(ref e1, ref e2) => never_loop_expr_all(&mut [&**e1, &**e2].iter().cloned(), main_loop_id),
701         ExprKind::Loop(ref b, _, _) => {
702             // Break can come from the inner loop so remove them.
703             absorb_break(&never_loop_block(b, main_loop_id))
704         },
705         ExprKind::Match(ref e, ref arms, _) => {
706             let e = never_loop_expr(e, main_loop_id);
707             if arms.is_empty() {
708                 e
709             } else {
710                 let arms = never_loop_expr_branch(&mut arms.iter().map(|a| &*a.body), main_loop_id);
711                 combine_seq(e, arms)
712             }
713         },
714         ExprKind::Block(ref b, _) => never_loop_block(b, main_loop_id),
715         ExprKind::Continue(d) => {
716             let id = d
717                 .target_id
718                 .expect("target ID can only be missing in the presence of compilation errors");
719             if id == main_loop_id {
720                 NeverLoopResult::MayContinueMainLoop
721             } else {
722                 NeverLoopResult::AlwaysBreak
723             }
724         },
725         ExprKind::Break(_, ref e) | ExprKind::Ret(ref e) => {
726             if let Some(ref e) = *e {
727                 combine_seq(never_loop_expr(e, main_loop_id), NeverLoopResult::AlwaysBreak)
728             } else {
729                 NeverLoopResult::AlwaysBreak
730             }
731         },
732         ExprKind::Struct(_, _, None)
733         | ExprKind::Yield(_, _)
734         | ExprKind::Closure(_, _, _, _, _)
735         | ExprKind::LlvmInlineAsm(_)
736         | ExprKind::Path(_)
737         | ExprKind::Lit(_)
738         | ExprKind::Err => NeverLoopResult::Otherwise,
739     }
740 }
741
742 fn never_loop_expr_seq<'a, T: Iterator<Item = &'a Expr<'a>>>(es: &mut T, main_loop_id: HirId) -> NeverLoopResult {
743     es.map(|e| never_loop_expr(e, main_loop_id))
744         .fold(NeverLoopResult::Otherwise, combine_seq)
745 }
746
747 fn never_loop_expr_all<'a, T: Iterator<Item = &'a Expr<'a>>>(es: &mut T, main_loop_id: HirId) -> NeverLoopResult {
748     es.map(|e| never_loop_expr(e, main_loop_id))
749         .fold(NeverLoopResult::Otherwise, combine_both)
750 }
751
752 fn never_loop_expr_branch<'a, T: Iterator<Item = &'a Expr<'a>>>(e: &mut T, main_loop_id: HirId) -> NeverLoopResult {
753     e.map(|e| never_loop_expr(e, main_loop_id))
754         .fold(NeverLoopResult::AlwaysBreak, combine_branches)
755 }
756
757 fn check_for_loop<'a, 'tcx>(
758     cx: &LateContext<'a, 'tcx>,
759     pat: &'tcx Pat<'_>,
760     arg: &'tcx Expr<'_>,
761     body: &'tcx Expr<'_>,
762     expr: &'tcx Expr<'_>,
763 ) {
764     check_for_loop_range(cx, pat, arg, body, expr);
765     check_for_loop_reverse_range(cx, arg, expr);
766     check_for_loop_arg(cx, pat, arg, expr);
767     check_for_loop_explicit_counter(cx, pat, arg, body, expr);
768     check_for_loop_over_map_kv(cx, pat, arg, body, expr);
769     check_for_mut_range_bound(cx, arg, body);
770     detect_manual_memcpy(cx, pat, arg, body, expr);
771 }
772
773 fn same_var<'a, 'tcx>(cx: &LateContext<'a, 'tcx>, expr: &Expr<'_>, var: HirId) -> bool {
774     if_chain! {
775         if let ExprKind::Path(ref qpath) = expr.kind;
776         if let QPath::Resolved(None, ref path) = *qpath;
777         if path.segments.len() == 1;
778         if let Res::Local(local_id) = qpath_res(cx, qpath, expr.hir_id);
779         // our variable!
780         if local_id == var;
781         then {
782             return true;
783         }
784     }
785
786     false
787 }
788
789 struct Offset {
790     value: String,
791     negate: bool,
792 }
793
794 impl Offset {
795     fn negative(s: String) -> Self {
796         Self { value: s, negate: true }
797     }
798
799     fn positive(s: String) -> Self {
800         Self {
801             value: s,
802             negate: false,
803         }
804     }
805 }
806
807 struct FixedOffsetVar {
808     var_name: String,
809     offset: Offset,
810 }
811
812 fn is_slice_like<'a, 'tcx>(cx: &LateContext<'a, 'tcx>, ty: Ty<'_>) -> bool {
813     let is_slice = match ty.kind {
814         ty::Ref(_, subty, _) => is_slice_like(cx, subty),
815         ty::Slice(..) | ty::Array(..) => true,
816         _ => false,
817     };
818
819     is_slice || is_type_diagnostic_item(cx, ty, sym!(vec_type)) || match_type(cx, ty, &paths::VEC_DEQUE)
820 }
821
822 fn get_fixed_offset_var<'a, 'tcx>(cx: &LateContext<'a, 'tcx>, expr: &Expr<'_>, var: HirId) -> Option<FixedOffsetVar> {
823     fn extract_offset<'a, 'tcx>(cx: &LateContext<'a, 'tcx>, e: &Expr<'_>, var: HirId) -> Option<String> {
824         match e.kind {
825             ExprKind::Lit(ref l) => match l.node {
826                 ast::LitKind::Int(x, _ty) => Some(x.to_string()),
827                 _ => None,
828             },
829             ExprKind::Path(..) if !same_var(cx, e, var) => Some(snippet_opt(cx, e.span).unwrap_or_else(|| "??".into())),
830             _ => None,
831         }
832     }
833
834     if let ExprKind::Index(ref seqexpr, ref idx) = expr.kind {
835         let ty = cx.tables.expr_ty(seqexpr);
836         if !is_slice_like(cx, ty) {
837             return None;
838         }
839
840         let offset = match idx.kind {
841             ExprKind::Binary(op, ref lhs, ref rhs) => match op.node {
842                 BinOpKind::Add => {
843                     let offset_opt = if same_var(cx, lhs, var) {
844                         extract_offset(cx, rhs, var)
845                     } else if same_var(cx, rhs, var) {
846                         extract_offset(cx, lhs, var)
847                     } else {
848                         None
849                     };
850
851                     offset_opt.map(Offset::positive)
852                 },
853                 BinOpKind::Sub if same_var(cx, lhs, var) => extract_offset(cx, rhs, var).map(Offset::negative),
854                 _ => None,
855             },
856             ExprKind::Path(..) => {
857                 if same_var(cx, idx, var) {
858                     Some(Offset::positive("0".into()))
859                 } else {
860                     None
861                 }
862             },
863             _ => None,
864         };
865
866         offset.map(|o| FixedOffsetVar {
867             var_name: snippet_opt(cx, seqexpr.span).unwrap_or_else(|| "???".into()),
868             offset: o,
869         })
870     } else {
871         None
872     }
873 }
874
875 fn fetch_cloned_fixed_offset_var<'a, 'tcx>(
876     cx: &LateContext<'a, 'tcx>,
877     expr: &Expr<'_>,
878     var: HirId,
879 ) -> Option<FixedOffsetVar> {
880     if_chain! {
881         if let ExprKind::MethodCall(ref method, _, ref args) = expr.kind;
882         if method.ident.name == sym!(clone);
883         if args.len() == 1;
884         if let Some(arg) = args.get(0);
885         then {
886             return get_fixed_offset_var(cx, arg, var);
887         }
888     }
889
890     get_fixed_offset_var(cx, expr, var)
891 }
892
893 fn get_indexed_assignments<'a, 'tcx>(
894     cx: &LateContext<'a, 'tcx>,
895     body: &Expr<'_>,
896     var: HirId,
897 ) -> Vec<(FixedOffsetVar, FixedOffsetVar)> {
898     fn get_assignment<'a, 'tcx>(
899         cx: &LateContext<'a, 'tcx>,
900         e: &Expr<'_>,
901         var: HirId,
902     ) -> Option<(FixedOffsetVar, FixedOffsetVar)> {
903         if let ExprKind::Assign(ref lhs, ref rhs, _) = e.kind {
904             match (
905                 get_fixed_offset_var(cx, lhs, var),
906                 fetch_cloned_fixed_offset_var(cx, rhs, var),
907             ) {
908                 (Some(offset_left), Some(offset_right)) => {
909                     // Source and destination must be different
910                     if offset_left.var_name == offset_right.var_name {
911                         None
912                     } else {
913                         Some((offset_left, offset_right))
914                     }
915                 },
916                 _ => None,
917             }
918         } else {
919             None
920         }
921     }
922
923     if let ExprKind::Block(ref b, _) = body.kind {
924         let Block {
925             ref stmts, ref expr, ..
926         } = **b;
927
928         stmts
929             .iter()
930             .map(|stmt| match stmt.kind {
931                 StmtKind::Local(..) | StmtKind::Item(..) => None,
932                 StmtKind::Expr(ref e) | StmtKind::Semi(ref e) => Some(get_assignment(cx, e, var)),
933             })
934             .chain(expr.as_ref().into_iter().map(|e| Some(get_assignment(cx, &*e, var))))
935             .filter_map(|op| op)
936             .collect::<Option<Vec<_>>>()
937             .unwrap_or_default()
938     } else {
939         get_assignment(cx, body, var).into_iter().collect()
940     }
941 }
942
943 /// Checks for for loops that sequentially copy items from one slice-like
944 /// object to another.
945 fn detect_manual_memcpy<'a, 'tcx>(
946     cx: &LateContext<'a, 'tcx>,
947     pat: &'tcx Pat<'_>,
948     arg: &'tcx Expr<'_>,
949     body: &'tcx Expr<'_>,
950     expr: &'tcx Expr<'_>,
951 ) {
952     if let Some(higher::Range {
953         start: Some(start),
954         ref end,
955         limits,
956     }) = higher::range(cx, arg)
957     {
958         // the var must be a single name
959         if let PatKind::Binding(_, canonical_id, _, _) = pat.kind {
960             let print_sum = |arg1: &Offset, arg2: &Offset| -> String {
961                 match (&arg1.value[..], arg1.negate, &arg2.value[..], arg2.negate) {
962                     ("0", _, "0", _) => "".into(),
963                     ("0", _, x, false) | (x, false, "0", false) => x.into(),
964                     ("0", _, x, true) | (x, false, "0", true) => format!("-{}", x),
965                     (x, false, y, false) => format!("({} + {})", x, y),
966                     (x, false, y, true) => {
967                         if x == y {
968                             "0".into()
969                         } else {
970                             format!("({} - {})", x, y)
971                         }
972                     },
973                     (x, true, y, false) => {
974                         if x == y {
975                             "0".into()
976                         } else {
977                             format!("({} - {})", y, x)
978                         }
979                     },
980                     (x, true, y, true) => format!("-({} + {})", x, y),
981                 }
982             };
983
984             let print_limit = |end: &Option<&Expr<'_>>, offset: Offset, var_name: &str| {
985                 if let Some(end) = *end {
986                     if_chain! {
987                         if let ExprKind::MethodCall(ref method, _, ref len_args) = end.kind;
988                         if method.ident.name == sym!(len);
989                         if len_args.len() == 1;
990                         if let Some(arg) = len_args.get(0);
991                         if snippet(cx, arg.span, "??") == var_name;
992                         then {
993                             return if offset.negate {
994                                 format!("({} - {})", snippet(cx, end.span, "<src>.len()"), offset.value)
995                             } else {
996                                 String::new()
997                             };
998                         }
999                     }
1000
1001                     let end_str = match limits {
1002                         ast::RangeLimits::Closed => {
1003                             let end = sugg::Sugg::hir(cx, end, "<count>");
1004                             format!("{}", end + sugg::ONE)
1005                         },
1006                         ast::RangeLimits::HalfOpen => format!("{}", snippet(cx, end.span, "..")),
1007                     };
1008
1009                     print_sum(&Offset::positive(end_str), &offset)
1010                 } else {
1011                     "..".into()
1012                 }
1013             };
1014
1015             // The only statements in the for loops can be indexed assignments from
1016             // indexed retrievals.
1017             let manual_copies = get_indexed_assignments(cx, body, canonical_id);
1018
1019             let big_sugg = manual_copies
1020                 .into_iter()
1021                 .map(|(dst_var, src_var)| {
1022                     let start_str = Offset::positive(snippet(cx, start.span, "").to_string());
1023                     let dst_offset = print_sum(&start_str, &dst_var.offset);
1024                     let dst_limit = print_limit(end, dst_var.offset, &dst_var.var_name);
1025                     let src_offset = print_sum(&start_str, &src_var.offset);
1026                     let src_limit = print_limit(end, src_var.offset, &src_var.var_name);
1027                     let dst = if dst_offset == "" && dst_limit == "" {
1028                         dst_var.var_name
1029                     } else {
1030                         format!("{}[{}..{}]", dst_var.var_name, dst_offset, dst_limit)
1031                     };
1032
1033                     format!(
1034                         "{}.clone_from_slice(&{}[{}..{}])",
1035                         dst, src_var.var_name, src_offset, src_limit
1036                     )
1037                 })
1038                 .join("\n    ");
1039
1040             if !big_sugg.is_empty() {
1041                 span_lint_and_sugg(
1042                     cx,
1043                     MANUAL_MEMCPY,
1044                     expr.span,
1045                     "it looks like you're manually copying between slices",
1046                     "try replacing the loop by",
1047                     big_sugg,
1048                     Applicability::Unspecified,
1049                 );
1050             }
1051         }
1052     }
1053 }
1054
1055 /// Checks for looping over a range and then indexing a sequence with it.
1056 /// The iteratee must be a range literal.
1057 #[allow(clippy::too_many_lines)]
1058 fn check_for_loop_range<'a, 'tcx>(
1059     cx: &LateContext<'a, 'tcx>,
1060     pat: &'tcx Pat<'_>,
1061     arg: &'tcx Expr<'_>,
1062     body: &'tcx Expr<'_>,
1063     expr: &'tcx Expr<'_>,
1064 ) {
1065     if let Some(higher::Range {
1066         start: Some(start),
1067         ref end,
1068         limits,
1069     }) = higher::range(cx, arg)
1070     {
1071         // the var must be a single name
1072         if let PatKind::Binding(_, canonical_id, ident, _) = pat.kind {
1073             let mut visitor = VarVisitor {
1074                 cx,
1075                 var: canonical_id,
1076                 indexed_mut: FxHashSet::default(),
1077                 indexed_indirectly: FxHashMap::default(),
1078                 indexed_directly: FxHashMap::default(),
1079                 referenced: FxHashSet::default(),
1080                 nonindex: false,
1081                 prefer_mutable: false,
1082             };
1083             walk_expr(&mut visitor, body);
1084
1085             // linting condition: we only indexed one variable, and indexed it directly
1086             if visitor.indexed_indirectly.is_empty() && visitor.indexed_directly.len() == 1 {
1087                 let (indexed, (indexed_extent, indexed_ty)) = visitor
1088                     .indexed_directly
1089                     .into_iter()
1090                     .next()
1091                     .expect("already checked that we have exactly 1 element");
1092
1093                 // ensure that the indexed variable was declared before the loop, see #601
1094                 if let Some(indexed_extent) = indexed_extent {
1095                     let parent_id = cx.tcx.hir().get_parent_item(expr.hir_id);
1096                     let parent_def_id = cx.tcx.hir().local_def_id(parent_id);
1097                     let region_scope_tree = cx.tcx.region_scope_tree(parent_def_id);
1098                     let pat_extent = region_scope_tree.var_scope(pat.hir_id.local_id);
1099                     if region_scope_tree.is_subscope_of(indexed_extent, pat_extent) {
1100                         return;
1101                     }
1102                 }
1103
1104                 // don't lint if the container that is indexed does not have .iter() method
1105                 let has_iter = has_iter_method(cx, indexed_ty);
1106                 if has_iter.is_none() {
1107                     return;
1108                 }
1109
1110                 // don't lint if the container that is indexed into is also used without
1111                 // indexing
1112                 if visitor.referenced.contains(&indexed) {
1113                     return;
1114                 }
1115
1116                 let starts_at_zero = is_integer_const(cx, start, 0);
1117
1118                 let skip = if starts_at_zero {
1119                     String::new()
1120                 } else {
1121                     format!(".skip({})", snippet(cx, start.span, ".."))
1122                 };
1123
1124                 let mut end_is_start_plus_val = false;
1125
1126                 let take = if let Some(end) = *end {
1127                     let mut take_expr = end;
1128
1129                     if let ExprKind::Binary(ref op, ref left, ref right) = end.kind {
1130                         if let BinOpKind::Add = op.node {
1131                             let start_equal_left = SpanlessEq::new(cx).eq_expr(start, left);
1132                             let start_equal_right = SpanlessEq::new(cx).eq_expr(start, right);
1133
1134                             if start_equal_left {
1135                                 take_expr = right;
1136                             } else if start_equal_right {
1137                                 take_expr = left;
1138                             }
1139
1140                             end_is_start_plus_val = start_equal_left | start_equal_right;
1141                         }
1142                     }
1143
1144                     if is_len_call(end, indexed) || is_end_eq_array_len(cx, end, limits, indexed_ty) {
1145                         String::new()
1146                     } else {
1147                         match limits {
1148                             ast::RangeLimits::Closed => {
1149                                 let take_expr = sugg::Sugg::hir(cx, take_expr, "<count>");
1150                                 format!(".take({})", take_expr + sugg::ONE)
1151                             },
1152                             ast::RangeLimits::HalfOpen => format!(".take({})", snippet(cx, take_expr.span, "..")),
1153                         }
1154                     }
1155                 } else {
1156                     String::new()
1157                 };
1158
1159                 let (ref_mut, method) = if visitor.indexed_mut.contains(&indexed) {
1160                     ("mut ", "iter_mut")
1161                 } else {
1162                     ("", "iter")
1163                 };
1164
1165                 let take_is_empty = take.is_empty();
1166                 let mut method_1 = take;
1167                 let mut method_2 = skip;
1168
1169                 if end_is_start_plus_val {
1170                     mem::swap(&mut method_1, &mut method_2);
1171                 }
1172
1173                 if visitor.nonindex {
1174                     span_lint_and_then(
1175                         cx,
1176                         NEEDLESS_RANGE_LOOP,
1177                         expr.span,
1178                         &format!("the loop variable `{}` is used to index `{}`", ident.name, indexed),
1179                         |diag| {
1180                             multispan_sugg(
1181                                 diag,
1182                                 "consider using an iterator".to_string(),
1183                                 vec![
1184                                     (pat.span, format!("({}, <item>)", ident.name)),
1185                                     (
1186                                         arg.span,
1187                                         format!("{}.{}().enumerate(){}{}", indexed, method, method_1, method_2),
1188                                     ),
1189                                 ],
1190                             );
1191                         },
1192                     );
1193                 } else {
1194                     let repl = if starts_at_zero && take_is_empty {
1195                         format!("&{}{}", ref_mut, indexed)
1196                     } else {
1197                         format!("{}.{}(){}{}", indexed, method, method_1, method_2)
1198                     };
1199
1200                     span_lint_and_then(
1201                         cx,
1202                         NEEDLESS_RANGE_LOOP,
1203                         expr.span,
1204                         &format!(
1205                             "the loop variable `{}` is only used to index `{}`.",
1206                             ident.name, indexed
1207                         ),
1208                         |diag| {
1209                             multispan_sugg(
1210                                 diag,
1211                                 "consider using an iterator".to_string(),
1212                                 vec![(pat.span, "<item>".to_string()), (arg.span, repl)],
1213                             );
1214                         },
1215                     );
1216                 }
1217             }
1218         }
1219     }
1220 }
1221
1222 fn is_len_call(expr: &Expr<'_>, var: Name) -> bool {
1223     if_chain! {
1224         if let ExprKind::MethodCall(ref method, _, ref len_args) = expr.kind;
1225         if len_args.len() == 1;
1226         if method.ident.name == sym!(len);
1227         if let ExprKind::Path(QPath::Resolved(_, ref path)) = len_args[0].kind;
1228         if path.segments.len() == 1;
1229         if path.segments[0].ident.name == var;
1230         then {
1231             return true;
1232         }
1233     }
1234
1235     false
1236 }
1237
1238 fn is_end_eq_array_len<'tcx>(
1239     cx: &LateContext<'_, 'tcx>,
1240     end: &Expr<'_>,
1241     limits: ast::RangeLimits,
1242     indexed_ty: Ty<'tcx>,
1243 ) -> bool {
1244     if_chain! {
1245         if let ExprKind::Lit(ref lit) = end.kind;
1246         if let ast::LitKind::Int(end_int, _) = lit.node;
1247         if let ty::Array(_, arr_len_const) = indexed_ty.kind;
1248         if let Some(arr_len) = arr_len_const.try_eval_usize(cx.tcx, cx.param_env);
1249         then {
1250             return match limits {
1251                 ast::RangeLimits::Closed => end_int + 1 >= arr_len.into(),
1252                 ast::RangeLimits::HalfOpen => end_int >= arr_len.into(),
1253             };
1254         }
1255     }
1256
1257     false
1258 }
1259
1260 fn check_for_loop_reverse_range<'a, 'tcx>(cx: &LateContext<'a, 'tcx>, arg: &'tcx Expr<'_>, expr: &'tcx Expr<'_>) {
1261     // if this for loop is iterating over a two-sided range...
1262     if let Some(higher::Range {
1263         start: Some(start),
1264         end: Some(end),
1265         limits,
1266     }) = higher::range(cx, arg)
1267     {
1268         // ...and both sides are compile-time constant integers...
1269         if let Some((start_idx, _)) = constant(cx, cx.tables, start) {
1270             if let Some((end_idx, _)) = constant(cx, cx.tables, end) {
1271                 // ...and the start index is greater than the end index,
1272                 // this loop will never run. This is often confusing for developers
1273                 // who think that this will iterate from the larger value to the
1274                 // smaller value.
1275                 let ty = cx.tables.expr_ty(start);
1276                 let (sup, eq) = match (start_idx, end_idx) {
1277                     (Constant::Int(start_idx), Constant::Int(end_idx)) => (
1278                         match ty.kind {
1279                             ty::Int(ity) => sext(cx.tcx, start_idx, ity) > sext(cx.tcx, end_idx, ity),
1280                             ty::Uint(_) => start_idx > end_idx,
1281                             _ => false,
1282                         },
1283                         start_idx == end_idx,
1284                     ),
1285                     _ => (false, false),
1286                 };
1287
1288                 if sup {
1289                     let start_snippet = snippet(cx, start.span, "_");
1290                     let end_snippet = snippet(cx, end.span, "_");
1291                     let dots = if limits == ast::RangeLimits::Closed {
1292                         "..="
1293                     } else {
1294                         ".."
1295                     };
1296
1297                     span_lint_and_then(
1298                         cx,
1299                         REVERSE_RANGE_LOOP,
1300                         expr.span,
1301                         "this range is empty so this for loop will never run",
1302                         |diag| {
1303                             diag.span_suggestion(
1304                                 arg.span,
1305                                 "consider using the following if you are attempting to iterate over this \
1306                                  range in reverse",
1307                                 format!(
1308                                     "({end}{dots}{start}).rev()",
1309                                     end = end_snippet,
1310                                     dots = dots,
1311                                     start = start_snippet
1312                                 ),
1313                                 Applicability::MaybeIncorrect,
1314                             );
1315                         },
1316                     );
1317                 } else if eq && limits != ast::RangeLimits::Closed {
1318                     // if they are equal, it's also problematic - this loop
1319                     // will never run.
1320                     span_lint(
1321                         cx,
1322                         REVERSE_RANGE_LOOP,
1323                         expr.span,
1324                         "this range is empty so this for loop will never run",
1325                     );
1326                 }
1327             }
1328         }
1329     }
1330 }
1331
1332 fn lint_iter_method(cx: &LateContext<'_, '_>, args: &[Expr<'_>], arg: &Expr<'_>, method_name: &str) {
1333     let mut applicability = Applicability::MachineApplicable;
1334     let object = snippet_with_applicability(cx, args[0].span, "_", &mut applicability);
1335     let muta = if method_name == "iter_mut" { "mut " } else { "" };
1336     span_lint_and_sugg(
1337         cx,
1338         EXPLICIT_ITER_LOOP,
1339         arg.span,
1340         "it is more concise to loop over references to containers instead of using explicit \
1341          iteration methods",
1342         "to write this more concisely, try",
1343         format!("&{}{}", muta, object),
1344         applicability,
1345     )
1346 }
1347
1348 fn check_for_loop_arg(cx: &LateContext<'_, '_>, pat: &Pat<'_>, arg: &Expr<'_>, expr: &Expr<'_>) {
1349     let mut next_loop_linted = false; // whether or not ITER_NEXT_LOOP lint was used
1350     if let ExprKind::MethodCall(ref method, _, ref args) = arg.kind {
1351         // just the receiver, no arguments
1352         if args.len() == 1 {
1353             let method_name = &*method.ident.as_str();
1354             // check for looping over x.iter() or x.iter_mut(), could use &x or &mut x
1355             if method_name == "iter" || method_name == "iter_mut" {
1356                 if is_ref_iterable_type(cx, &args[0]) {
1357                     lint_iter_method(cx, args, arg, method_name);
1358                 }
1359             } else if method_name == "into_iter" && match_trait_method(cx, arg, &paths::INTO_ITERATOR) {
1360                 let receiver_ty = cx.tables.expr_ty(&args[0]);
1361                 let receiver_ty_adjusted = cx.tables.expr_ty_adjusted(&args[0]);
1362                 if same_tys(cx, receiver_ty, receiver_ty_adjusted) {
1363                     let mut applicability = Applicability::MachineApplicable;
1364                     let object = snippet_with_applicability(cx, args[0].span, "_", &mut applicability);
1365                     span_lint_and_sugg(
1366                         cx,
1367                         EXPLICIT_INTO_ITER_LOOP,
1368                         arg.span,
1369                         "it is more concise to loop over containers instead of using explicit \
1370                          iteration methods",
1371                         "to write this more concisely, try",
1372                         object.to_string(),
1373                         applicability,
1374                     );
1375                 } else {
1376                     let ref_receiver_ty = cx.tcx.mk_ref(
1377                         cx.tcx.lifetimes.re_erased,
1378                         ty::TypeAndMut {
1379                             ty: receiver_ty,
1380                             mutbl: Mutability::Not,
1381                         },
1382                     );
1383                     if same_tys(cx, receiver_ty_adjusted, ref_receiver_ty) {
1384                         lint_iter_method(cx, args, arg, method_name)
1385                     }
1386                 }
1387             } else if method_name == "next" && match_trait_method(cx, arg, &paths::ITERATOR) {
1388                 span_lint(
1389                     cx,
1390                     ITER_NEXT_LOOP,
1391                     expr.span,
1392                     "you are iterating over `Iterator::next()` which is an Option; this will compile but is \
1393                      probably not what you want",
1394                 );
1395                 next_loop_linted = true;
1396             }
1397         }
1398     }
1399     if !next_loop_linted {
1400         check_arg_type(cx, pat, arg);
1401     }
1402 }
1403
1404 /// Checks for `for` loops over `Option`s and `Result`s.
1405 fn check_arg_type(cx: &LateContext<'_, '_>, pat: &Pat<'_>, arg: &Expr<'_>) {
1406     let ty = cx.tables.expr_ty(arg);
1407     if is_type_diagnostic_item(cx, ty, sym!(option_type)) {
1408         span_lint_and_help(
1409             cx,
1410             FOR_LOOP_OVER_OPTION,
1411             arg.span,
1412             &format!(
1413                 "for loop over `{0}`, which is an `Option`. This is more readably written as an \
1414                  `if let` statement.",
1415                 snippet(cx, arg.span, "_")
1416             ),
1417             None,
1418             &format!(
1419                 "consider replacing `for {0} in {1}` with `if let Some({0}) = {1}`",
1420                 snippet(cx, pat.span, "_"),
1421                 snippet(cx, arg.span, "_")
1422             ),
1423         );
1424     } else if is_type_diagnostic_item(cx, ty, sym!(result_type)) {
1425         span_lint_and_help(
1426             cx,
1427             FOR_LOOP_OVER_RESULT,
1428             arg.span,
1429             &format!(
1430                 "for loop over `{0}`, which is a `Result`. This is more readably written as an \
1431                  `if let` statement.",
1432                 snippet(cx, arg.span, "_")
1433             ),
1434             None,
1435             &format!(
1436                 "consider replacing `for {0} in {1}` with `if let Ok({0}) = {1}`",
1437                 snippet(cx, pat.span, "_"),
1438                 snippet(cx, arg.span, "_")
1439             ),
1440         );
1441     }
1442 }
1443
1444 fn check_for_loop_explicit_counter<'a, 'tcx>(
1445     cx: &LateContext<'a, 'tcx>,
1446     pat: &'tcx Pat<'_>,
1447     arg: &'tcx Expr<'_>,
1448     body: &'tcx Expr<'_>,
1449     expr: &'tcx Expr<'_>,
1450 ) {
1451     // Look for variables that are incremented once per loop iteration.
1452     let mut visitor = IncrementVisitor {
1453         cx,
1454         states: FxHashMap::default(),
1455         depth: 0,
1456         done: false,
1457     };
1458     walk_expr(&mut visitor, body);
1459
1460     // For each candidate, check the parent block to see if
1461     // it's initialized to zero at the start of the loop.
1462     if let Some(block) = get_enclosing_block(&cx, expr.hir_id) {
1463         for (id, _) in visitor.states.iter().filter(|&(_, v)| *v == VarState::IncrOnce) {
1464             let mut visitor2 = InitializeVisitor {
1465                 cx,
1466                 end_expr: expr,
1467                 var_id: *id,
1468                 state: VarState::IncrOnce,
1469                 name: None,
1470                 depth: 0,
1471                 past_loop: false,
1472             };
1473             walk_block(&mut visitor2, block);
1474
1475             if visitor2.state == VarState::Warn {
1476                 if let Some(name) = visitor2.name {
1477                     let mut applicability = Applicability::MachineApplicable;
1478
1479                     // for some reason this is the only way to get the `Span`
1480                     // of the entire `for` loop
1481                     let for_span = if let ExprKind::Match(_, arms, _) = &expr.kind {
1482                         arms[0].body.span
1483                     } else {
1484                         unreachable!()
1485                     };
1486
1487                     span_lint_and_sugg(
1488                         cx,
1489                         EXPLICIT_COUNTER_LOOP,
1490                         for_span.with_hi(arg.span.hi()),
1491                         &format!("the variable `{}` is used as a loop counter.", name),
1492                         "consider using",
1493                         format!(
1494                             "for ({}, {}) in {}.enumerate()",
1495                             name,
1496                             snippet_with_applicability(cx, pat.span, "item", &mut applicability),
1497                             make_iterator_snippet(cx, arg, &mut applicability),
1498                         ),
1499                         applicability,
1500                     );
1501                 }
1502             }
1503         }
1504     }
1505 }
1506
1507 /// If `arg` was the argument to a `for` loop, return the "cleanest" way of writing the
1508 /// actual `Iterator` that the loop uses.
1509 fn make_iterator_snippet(cx: &LateContext<'_, '_>, arg: &Expr<'_>, applic_ref: &mut Applicability) -> String {
1510     let impls_iterator = get_trait_def_id(cx, &paths::ITERATOR)
1511         .map_or(false, |id| implements_trait(cx, cx.tables.expr_ty(arg), id, &[]));
1512     if impls_iterator {
1513         format!(
1514             "{}",
1515             sugg::Sugg::hir_with_applicability(cx, arg, "_", applic_ref).maybe_par()
1516         )
1517     } else {
1518         // (&x).into_iter() ==> x.iter()
1519         // (&mut x).into_iter() ==> x.iter_mut()
1520         match &arg.kind {
1521             ExprKind::AddrOf(BorrowKind::Ref, mutability, arg_inner)
1522                 if has_iter_method(cx, cx.tables.expr_ty(&arg_inner)).is_some() =>
1523             {
1524                 let meth_name = match mutability {
1525                     Mutability::Mut => "iter_mut",
1526                     Mutability::Not => "iter",
1527                 };
1528                 format!(
1529                     "{}.{}()",
1530                     sugg::Sugg::hir_with_applicability(cx, &arg_inner, "_", applic_ref).maybe_par(),
1531                     meth_name,
1532                 )
1533             }
1534             _ => format!(
1535                 "{}.into_iter()",
1536                 sugg::Sugg::hir_with_applicability(cx, arg, "_", applic_ref).maybe_par()
1537             ),
1538         }
1539     }
1540 }
1541
1542 /// Checks for the `FOR_KV_MAP` lint.
1543 fn check_for_loop_over_map_kv<'a, 'tcx>(
1544     cx: &LateContext<'a, 'tcx>,
1545     pat: &'tcx Pat<'_>,
1546     arg: &'tcx Expr<'_>,
1547     body: &'tcx Expr<'_>,
1548     expr: &'tcx Expr<'_>,
1549 ) {
1550     let pat_span = pat.span;
1551
1552     if let PatKind::Tuple(ref pat, _) = pat.kind {
1553         if pat.len() == 2 {
1554             let arg_span = arg.span;
1555             let (new_pat_span, kind, ty, mutbl) = match cx.tables.expr_ty(arg).kind {
1556                 ty::Ref(_, ty, mutbl) => match (&pat[0].kind, &pat[1].kind) {
1557                     (key, _) if pat_is_wild(key, body) => (pat[1].span, "value", ty, mutbl),
1558                     (_, value) if pat_is_wild(value, body) => (pat[0].span, "key", ty, Mutability::Not),
1559                     _ => return,
1560                 },
1561                 _ => return,
1562             };
1563             let mutbl = match mutbl {
1564                 Mutability::Not => "",
1565                 Mutability::Mut => "_mut",
1566             };
1567             let arg = match arg.kind {
1568                 ExprKind::AddrOf(BorrowKind::Ref, _, ref expr) => &**expr,
1569                 _ => arg,
1570             };
1571
1572             if match_type(cx, ty, &paths::HASHMAP) || match_type(cx, ty, &paths::BTREEMAP) {
1573                 span_lint_and_then(
1574                     cx,
1575                     FOR_KV_MAP,
1576                     expr.span,
1577                     &format!("you seem to want to iterate on a map's {}s", kind),
1578                     |diag| {
1579                         let map = sugg::Sugg::hir(cx, arg, "map");
1580                         multispan_sugg(
1581                             diag,
1582                             "use the corresponding method".into(),
1583                             vec![
1584                                 (pat_span, snippet(cx, new_pat_span, kind).into_owned()),
1585                                 (arg_span, format!("{}.{}s{}()", map.maybe_par(), kind, mutbl)),
1586                             ],
1587                         );
1588                     },
1589                 );
1590             }
1591         }
1592     }
1593 }
1594
1595 struct MutatePairDelegate {
1596     hir_id_low: Option<HirId>,
1597     hir_id_high: Option<HirId>,
1598     span_low: Option<Span>,
1599     span_high: Option<Span>,
1600 }
1601
1602 impl<'tcx> Delegate<'tcx> for MutatePairDelegate {
1603     fn consume(&mut self, _: &Place<'tcx>, _: ConsumeMode) {}
1604
1605     fn borrow(&mut self, cmt: &Place<'tcx>, bk: ty::BorrowKind) {
1606         if let ty::BorrowKind::MutBorrow = bk {
1607             if let PlaceBase::Local(id) = cmt.base {
1608                 if Some(id) == self.hir_id_low {
1609                     self.span_low = Some(cmt.span)
1610                 }
1611                 if Some(id) == self.hir_id_high {
1612                     self.span_high = Some(cmt.span)
1613                 }
1614             }
1615         }
1616     }
1617
1618     fn mutate(&mut self, cmt: &Place<'tcx>) {
1619         if let PlaceBase::Local(id) = cmt.base {
1620             if Some(id) == self.hir_id_low {
1621                 self.span_low = Some(cmt.span)
1622             }
1623             if Some(id) == self.hir_id_high {
1624                 self.span_high = Some(cmt.span)
1625             }
1626         }
1627     }
1628 }
1629
1630 impl<'tcx> MutatePairDelegate {
1631     fn mutation_span(&self) -> (Option<Span>, Option<Span>) {
1632         (self.span_low, self.span_high)
1633     }
1634 }
1635
1636 fn check_for_mut_range_bound(cx: &LateContext<'_, '_>, arg: &Expr<'_>, body: &Expr<'_>) {
1637     if let Some(higher::Range {
1638         start: Some(start),
1639         end: Some(end),
1640         ..
1641     }) = higher::range(cx, arg)
1642     {
1643         let mut_ids = vec![check_for_mutability(cx, start), check_for_mutability(cx, end)];
1644         if mut_ids[0].is_some() || mut_ids[1].is_some() {
1645             let (span_low, span_high) = check_for_mutation(cx, body, &mut_ids);
1646             mut_warn_with_span(cx, span_low);
1647             mut_warn_with_span(cx, span_high);
1648         }
1649     }
1650 }
1651
1652 fn mut_warn_with_span(cx: &LateContext<'_, '_>, span: Option<Span>) {
1653     if let Some(sp) = span {
1654         span_lint(
1655             cx,
1656             MUT_RANGE_BOUND,
1657             sp,
1658             "attempt to mutate range bound within loop; note that the range of the loop is unchanged",
1659         );
1660     }
1661 }
1662
1663 fn check_for_mutability(cx: &LateContext<'_, '_>, bound: &Expr<'_>) -> Option<HirId> {
1664     if_chain! {
1665         if let ExprKind::Path(ref qpath) = bound.kind;
1666         if let QPath::Resolved(None, _) = *qpath;
1667         then {
1668             let res = qpath_res(cx, qpath, bound.hir_id);
1669             if let Res::Local(hir_id) = res {
1670                 let node_str = cx.tcx.hir().get(hir_id);
1671                 if_chain! {
1672                     if let Node::Binding(pat) = node_str;
1673                     if let PatKind::Binding(bind_ann, ..) = pat.kind;
1674                     if let BindingAnnotation::Mutable = bind_ann;
1675                     then {
1676                         return Some(hir_id);
1677                     }
1678                 }
1679             }
1680         }
1681     }
1682     None
1683 }
1684
1685 fn check_for_mutation(
1686     cx: &LateContext<'_, '_>,
1687     body: &Expr<'_>,
1688     bound_ids: &[Option<HirId>],
1689 ) -> (Option<Span>, Option<Span>) {
1690     let mut delegate = MutatePairDelegate {
1691         hir_id_low: bound_ids[0],
1692         hir_id_high: bound_ids[1],
1693         span_low: None,
1694         span_high: None,
1695     };
1696     let def_id = body.hir_id.owner.to_def_id();
1697     cx.tcx.infer_ctxt().enter(|infcx| {
1698         ExprUseVisitor::new(&mut delegate, &infcx, def_id, cx.param_env, cx.tables).walk_expr(body);
1699     });
1700     delegate.mutation_span()
1701 }
1702
1703 /// Returns `true` if the pattern is a `PatWild` or an ident prefixed with `_`.
1704 fn pat_is_wild<'tcx>(pat: &'tcx PatKind<'_>, body: &'tcx Expr<'_>) -> bool {
1705     match *pat {
1706         PatKind::Wild => true,
1707         PatKind::Binding(.., ident, None) if ident.as_str().starts_with('_') => is_unused(&ident, body),
1708         _ => false,
1709     }
1710 }
1711
1712 struct LocalUsedVisitor<'a, 'tcx> {
1713     cx: &'a LateContext<'a, 'tcx>,
1714     local: HirId,
1715     used: bool,
1716 }
1717
1718 impl<'a, 'tcx> Visitor<'tcx> for LocalUsedVisitor<'a, 'tcx> {
1719     type Map = Map<'tcx>;
1720
1721     fn visit_expr(&mut self, expr: &'tcx Expr<'_>) {
1722         if same_var(self.cx, expr, self.local) {
1723             self.used = true;
1724         } else {
1725             walk_expr(self, expr);
1726         }
1727     }
1728
1729     fn nested_visit_map(&mut self) -> NestedVisitorMap<Self::Map> {
1730         NestedVisitorMap::None
1731     }
1732 }
1733
1734 struct VarVisitor<'a, 'tcx> {
1735     /// context reference
1736     cx: &'a LateContext<'a, 'tcx>,
1737     /// var name to look for as index
1738     var: HirId,
1739     /// indexed variables that are used mutably
1740     indexed_mut: FxHashSet<Name>,
1741     /// indirectly indexed variables (`v[(i + 4) % N]`), the extend is `None` for global
1742     indexed_indirectly: FxHashMap<Name, Option<region::Scope>>,
1743     /// subset of `indexed` of vars that are indexed directly: `v[i]`
1744     /// this will not contain cases like `v[calc_index(i)]` or `v[(i + 4) % N]`
1745     indexed_directly: FxHashMap<Name, (Option<region::Scope>, Ty<'tcx>)>,
1746     /// Any names that are used outside an index operation.
1747     /// Used to detect things like `&mut vec` used together with `vec[i]`
1748     referenced: FxHashSet<Name>,
1749     /// has the loop variable been used in expressions other than the index of
1750     /// an index op?
1751     nonindex: bool,
1752     /// Whether we are inside the `$` in `&mut $` or `$ = foo` or `$.bar`, where bar
1753     /// takes `&mut self`
1754     prefer_mutable: bool,
1755 }
1756
1757 impl<'a, 'tcx> VarVisitor<'a, 'tcx> {
1758     fn check(&mut self, idx: &'tcx Expr<'_>, seqexpr: &'tcx Expr<'_>, expr: &'tcx Expr<'_>) -> bool {
1759         if_chain! {
1760             // the indexed container is referenced by a name
1761             if let ExprKind::Path(ref seqpath) = seqexpr.kind;
1762             if let QPath::Resolved(None, ref seqvar) = *seqpath;
1763             if seqvar.segments.len() == 1;
1764             then {
1765                 let index_used_directly = same_var(self.cx, idx, self.var);
1766                 let indexed_indirectly = {
1767                     let mut used_visitor = LocalUsedVisitor {
1768                         cx: self.cx,
1769                         local: self.var,
1770                         used: false,
1771                     };
1772                     walk_expr(&mut used_visitor, idx);
1773                     used_visitor.used
1774                 };
1775
1776                 if indexed_indirectly || index_used_directly {
1777                     if self.prefer_mutable {
1778                         self.indexed_mut.insert(seqvar.segments[0].ident.name);
1779                     }
1780                     let res = qpath_res(self.cx, seqpath, seqexpr.hir_id);
1781                     match res {
1782                         Res::Local(hir_id) => {
1783                             let parent_id = self.cx.tcx.hir().get_parent_item(expr.hir_id);
1784                             let parent_def_id = self.cx.tcx.hir().local_def_id(parent_id);
1785                             let extent = self.cx.tcx.region_scope_tree(parent_def_id).var_scope(hir_id.local_id);
1786                             if indexed_indirectly {
1787                                 self.indexed_indirectly.insert(seqvar.segments[0].ident.name, Some(extent));
1788                             }
1789                             if index_used_directly {
1790                                 self.indexed_directly.insert(
1791                                     seqvar.segments[0].ident.name,
1792                                     (Some(extent), self.cx.tables.node_type(seqexpr.hir_id)),
1793                                 );
1794                             }
1795                             return false;  // no need to walk further *on the variable*
1796                         }
1797                         Res::Def(DefKind::Static | DefKind::Const, ..) => {
1798                             if indexed_indirectly {
1799                                 self.indexed_indirectly.insert(seqvar.segments[0].ident.name, None);
1800                             }
1801                             if index_used_directly {
1802                                 self.indexed_directly.insert(
1803                                     seqvar.segments[0].ident.name,
1804                                     (None, self.cx.tables.node_type(seqexpr.hir_id)),
1805                                 );
1806                             }
1807                             return false;  // no need to walk further *on the variable*
1808                         }
1809                         _ => (),
1810                     }
1811                 }
1812             }
1813         }
1814         true
1815     }
1816 }
1817
1818 impl<'a, 'tcx> Visitor<'tcx> for VarVisitor<'a, 'tcx> {
1819     type Map = Map<'tcx>;
1820
1821     fn visit_expr(&mut self, expr: &'tcx Expr<'_>) {
1822         if_chain! {
1823             // a range index op
1824             if let ExprKind::MethodCall(ref meth, _, ref args) = expr.kind;
1825             if (meth.ident.name == sym!(index) && match_trait_method(self.cx, expr, &paths::INDEX))
1826                 || (meth.ident.name == sym!(index_mut) && match_trait_method(self.cx, expr, &paths::INDEX_MUT));
1827             if !self.check(&args[1], &args[0], expr);
1828             then { return }
1829         }
1830
1831         if_chain! {
1832             // an index op
1833             if let ExprKind::Index(ref seqexpr, ref idx) = expr.kind;
1834             if !self.check(idx, seqexpr, expr);
1835             then { return }
1836         }
1837
1838         if_chain! {
1839             // directly using a variable
1840             if let ExprKind::Path(ref qpath) = expr.kind;
1841             if let QPath::Resolved(None, ref path) = *qpath;
1842             if path.segments.len() == 1;
1843             then {
1844                 if let Res::Local(local_id) = qpath_res(self.cx, qpath, expr.hir_id) {
1845                     if local_id == self.var {
1846                         self.nonindex = true;
1847                     } else {
1848                         // not the correct variable, but still a variable
1849                         self.referenced.insert(path.segments[0].ident.name);
1850                     }
1851                 }
1852             }
1853         }
1854
1855         let old = self.prefer_mutable;
1856         match expr.kind {
1857             ExprKind::AssignOp(_, ref lhs, ref rhs) | ExprKind::Assign(ref lhs, ref rhs, _) => {
1858                 self.prefer_mutable = true;
1859                 self.visit_expr(lhs);
1860                 self.prefer_mutable = false;
1861                 self.visit_expr(rhs);
1862             },
1863             ExprKind::AddrOf(BorrowKind::Ref, mutbl, ref expr) => {
1864                 if mutbl == Mutability::Mut {
1865                     self.prefer_mutable = true;
1866                 }
1867                 self.visit_expr(expr);
1868             },
1869             ExprKind::Call(ref f, args) => {
1870                 self.visit_expr(f);
1871                 for expr in args {
1872                     let ty = self.cx.tables.expr_ty_adjusted(expr);
1873                     self.prefer_mutable = false;
1874                     if let ty::Ref(_, _, mutbl) = ty.kind {
1875                         if mutbl == Mutability::Mut {
1876                             self.prefer_mutable = true;
1877                         }
1878                     }
1879                     self.visit_expr(expr);
1880                 }
1881             },
1882             ExprKind::MethodCall(_, _, args) => {
1883                 let def_id = self.cx.tables.type_dependent_def_id(expr.hir_id).unwrap();
1884                 for (ty, expr) in self.cx.tcx.fn_sig(def_id).inputs().skip_binder().iter().zip(args) {
1885                     self.prefer_mutable = false;
1886                     if let ty::Ref(_, _, mutbl) = ty.kind {
1887                         if mutbl == Mutability::Mut {
1888                             self.prefer_mutable = true;
1889                         }
1890                     }
1891                     self.visit_expr(expr);
1892                 }
1893             },
1894             ExprKind::Closure(_, _, body_id, ..) => {
1895                 let body = self.cx.tcx.hir().body(body_id);
1896                 self.visit_expr(&body.value);
1897             },
1898             _ => walk_expr(self, expr),
1899         }
1900         self.prefer_mutable = old;
1901     }
1902     fn nested_visit_map(&mut self) -> NestedVisitorMap<Self::Map> {
1903         NestedVisitorMap::None
1904     }
1905 }
1906
1907 fn is_used_inside<'a, 'tcx>(cx: &'a LateContext<'a, 'tcx>, expr: &'tcx Expr<'_>, container: &'tcx Expr<'_>) -> bool {
1908     let def_id = match var_def_id(cx, expr) {
1909         Some(id) => id,
1910         None => return false,
1911     };
1912     if let Some(used_mutably) = mutated_variables(container, cx) {
1913         if used_mutably.contains(&def_id) {
1914             return true;
1915         }
1916     }
1917     false
1918 }
1919
1920 fn is_iterator_used_after_while_let<'a, 'tcx>(cx: &LateContext<'a, 'tcx>, iter_expr: &'tcx Expr<'_>) -> bool {
1921     let def_id = match var_def_id(cx, iter_expr) {
1922         Some(id) => id,
1923         None => return false,
1924     };
1925     let mut visitor = VarUsedAfterLoopVisitor {
1926         cx,
1927         def_id,
1928         iter_expr_id: iter_expr.hir_id,
1929         past_while_let: false,
1930         var_used_after_while_let: false,
1931     };
1932     if let Some(enclosing_block) = get_enclosing_block(cx, def_id) {
1933         walk_block(&mut visitor, enclosing_block);
1934     }
1935     visitor.var_used_after_while_let
1936 }
1937
1938 struct VarUsedAfterLoopVisitor<'a, 'tcx> {
1939     cx: &'a LateContext<'a, 'tcx>,
1940     def_id: HirId,
1941     iter_expr_id: HirId,
1942     past_while_let: bool,
1943     var_used_after_while_let: bool,
1944 }
1945
1946 impl<'a, 'tcx> Visitor<'tcx> for VarUsedAfterLoopVisitor<'a, 'tcx> {
1947     type Map = Map<'tcx>;
1948
1949     fn visit_expr(&mut self, expr: &'tcx Expr<'_>) {
1950         if self.past_while_let {
1951             if Some(self.def_id) == var_def_id(self.cx, expr) {
1952                 self.var_used_after_while_let = true;
1953             }
1954         } else if self.iter_expr_id == expr.hir_id {
1955             self.past_while_let = true;
1956         }
1957         walk_expr(self, expr);
1958     }
1959     fn nested_visit_map(&mut self) -> NestedVisitorMap<Self::Map> {
1960         NestedVisitorMap::None
1961     }
1962 }
1963
1964 /// Returns `true` if the type of expr is one that provides `IntoIterator` impls
1965 /// for `&T` and `&mut T`, such as `Vec`.
1966 #[rustfmt::skip]
1967 fn is_ref_iterable_type(cx: &LateContext<'_, '_>, e: &Expr<'_>) -> bool {
1968     // no walk_ptrs_ty: calling iter() on a reference can make sense because it
1969     // will allow further borrows afterwards
1970     let ty = cx.tables.expr_ty(e);
1971     is_iterable_array(ty, cx) ||
1972     is_type_diagnostic_item(cx, ty, sym!(vec_type)) ||
1973     match_type(cx, ty, &paths::LINKED_LIST) ||
1974     match_type(cx, ty, &paths::HASHMAP) ||
1975     match_type(cx, ty, &paths::HASHSET) ||
1976     match_type(cx, ty, &paths::VEC_DEQUE) ||
1977     match_type(cx, ty, &paths::BINARY_HEAP) ||
1978     match_type(cx, ty, &paths::BTREEMAP) ||
1979     match_type(cx, ty, &paths::BTREESET)
1980 }
1981
1982 fn is_iterable_array<'tcx>(ty: Ty<'tcx>, cx: &LateContext<'_, 'tcx>) -> bool {
1983     // IntoIterator is currently only implemented for array sizes <= 32 in rustc
1984     match ty.kind {
1985         ty::Array(_, n) => {
1986             if let Some(val) = n.try_eval_usize(cx.tcx, cx.param_env) {
1987                 (0..=32).contains(&val)
1988             } else {
1989                 false
1990             }
1991         },
1992         _ => false,
1993     }
1994 }
1995
1996 /// If a block begins with a statement (possibly a `let` binding) and has an
1997 /// expression, return it.
1998 fn extract_expr_from_first_stmt<'tcx>(block: &Block<'tcx>) -> Option<&'tcx Expr<'tcx>> {
1999     if block.stmts.is_empty() {
2000         return None;
2001     }
2002     if let StmtKind::Local(ref local) = block.stmts[0].kind {
2003         if let Some(expr) = local.init {
2004             Some(expr)
2005         } else {
2006             None
2007         }
2008     } else {
2009         None
2010     }
2011 }
2012
2013 /// If a block begins with an expression (with or without semicolon), return it.
2014 fn extract_first_expr<'tcx>(block: &Block<'tcx>) -> Option<&'tcx Expr<'tcx>> {
2015     match block.expr {
2016         Some(ref expr) if block.stmts.is_empty() => Some(expr),
2017         None if !block.stmts.is_empty() => match block.stmts[0].kind {
2018             StmtKind::Expr(ref expr) | StmtKind::Semi(ref expr) => Some(expr),
2019             StmtKind::Local(..) | StmtKind::Item(..) => None,
2020         },
2021         _ => None,
2022     }
2023 }
2024
2025 /// Returns `true` if expr contains a single break expr without destination label
2026 /// and
2027 /// passed expression. The expression may be within a block.
2028 fn is_simple_break_expr(expr: &Expr<'_>) -> bool {
2029     match expr.kind {
2030         ExprKind::Break(dest, ref passed_expr) if dest.label.is_none() && passed_expr.is_none() => true,
2031         ExprKind::Block(ref b, _) => extract_first_expr(b).map_or(false, |subexpr| is_simple_break_expr(subexpr)),
2032         _ => false,
2033     }
2034 }
2035
2036 // To trigger the EXPLICIT_COUNTER_LOOP lint, a variable must be
2037 // incremented exactly once in the loop body, and initialized to zero
2038 // at the start of the loop.
2039 #[derive(Debug, PartialEq)]
2040 enum VarState {
2041     Initial,  // Not examined yet
2042     IncrOnce, // Incremented exactly once, may be a loop counter
2043     Declared, // Declared but not (yet) initialized to zero
2044     Warn,
2045     DontWarn,
2046 }
2047
2048 /// Scan a for loop for variables that are incremented exactly once.
2049 struct IncrementVisitor<'a, 'tcx> {
2050     cx: &'a LateContext<'a, 'tcx>,      // context reference
2051     states: FxHashMap<HirId, VarState>, // incremented variables
2052     depth: u32,                         // depth of conditional expressions
2053     done: bool,
2054 }
2055
2056 impl<'a, 'tcx> Visitor<'tcx> for IncrementVisitor<'a, 'tcx> {
2057     type Map = Map<'tcx>;
2058
2059     fn visit_expr(&mut self, expr: &'tcx Expr<'_>) {
2060         if self.done {
2061             return;
2062         }
2063
2064         // If node is a variable
2065         if let Some(def_id) = var_def_id(self.cx, expr) {
2066             if let Some(parent) = get_parent_expr(self.cx, expr) {
2067                 let state = self.states.entry(def_id).or_insert(VarState::Initial);
2068
2069                 match parent.kind {
2070                     ExprKind::AssignOp(op, ref lhs, ref rhs) => {
2071                         if lhs.hir_id == expr.hir_id {
2072                             if op.node == BinOpKind::Add && is_integer_const(self.cx, rhs, 1) {
2073                                 *state = match *state {
2074                                     VarState::Initial if self.depth == 0 => VarState::IncrOnce,
2075                                     _ => VarState::DontWarn,
2076                                 };
2077                             } else {
2078                                 // Assigned some other value
2079                                 *state = VarState::DontWarn;
2080                             }
2081                         }
2082                     },
2083                     ExprKind::Assign(ref lhs, _, _) if lhs.hir_id == expr.hir_id => *state = VarState::DontWarn,
2084                     ExprKind::AddrOf(BorrowKind::Ref, mutability, _) if mutability == Mutability::Mut => {
2085                         *state = VarState::DontWarn
2086                     },
2087                     _ => (),
2088                 }
2089             }
2090         } else if is_loop(expr) || is_conditional(expr) {
2091             self.depth += 1;
2092             walk_expr(self, expr);
2093             self.depth -= 1;
2094             return;
2095         } else if let ExprKind::Continue(_) = expr.kind {
2096             self.done = true;
2097             return;
2098         }
2099         walk_expr(self, expr);
2100     }
2101     fn nested_visit_map(&mut self) -> NestedVisitorMap<Self::Map> {
2102         NestedVisitorMap::None
2103     }
2104 }
2105
2106 /// Checks whether a variable is initialized to zero at the start of a loop.
2107 struct InitializeVisitor<'a, 'tcx> {
2108     cx: &'a LateContext<'a, 'tcx>, // context reference
2109     end_expr: &'tcx Expr<'tcx>,    // the for loop. Stop scanning here.
2110     var_id: HirId,
2111     state: VarState,
2112     name: Option<Name>,
2113     depth: u32, // depth of conditional expressions
2114     past_loop: bool,
2115 }
2116
2117 impl<'a, 'tcx> Visitor<'tcx> for InitializeVisitor<'a, 'tcx> {
2118     type Map = Map<'tcx>;
2119
2120     fn visit_stmt(&mut self, stmt: &'tcx Stmt<'_>) {
2121         // Look for declarations of the variable
2122         if let StmtKind::Local(ref local) = stmt.kind {
2123             if local.pat.hir_id == self.var_id {
2124                 if let PatKind::Binding(.., ident, _) = local.pat.kind {
2125                     self.name = Some(ident.name);
2126
2127                     self.state = if let Some(ref init) = local.init {
2128                         if is_integer_const(&self.cx, init, 0) {
2129                             VarState::Warn
2130                         } else {
2131                             VarState::Declared
2132                         }
2133                     } else {
2134                         VarState::Declared
2135                     }
2136                 }
2137             }
2138         }
2139         walk_stmt(self, stmt);
2140     }
2141
2142     fn visit_expr(&mut self, expr: &'tcx Expr<'_>) {
2143         if self.state == VarState::DontWarn {
2144             return;
2145         }
2146         if SpanlessEq::new(self.cx).eq_expr(&expr, self.end_expr) {
2147             self.past_loop = true;
2148             return;
2149         }
2150         // No need to visit expressions before the variable is
2151         // declared
2152         if self.state == VarState::IncrOnce {
2153             return;
2154         }
2155
2156         // If node is the desired variable, see how it's used
2157         if var_def_id(self.cx, expr) == Some(self.var_id) {
2158             if let Some(parent) = get_parent_expr(self.cx, expr) {
2159                 match parent.kind {
2160                     ExprKind::AssignOp(_, ref lhs, _) if lhs.hir_id == expr.hir_id => {
2161                         self.state = VarState::DontWarn;
2162                     },
2163                     ExprKind::Assign(ref lhs, ref rhs, _) if lhs.hir_id == expr.hir_id => {
2164                         self.state = if is_integer_const(&self.cx, rhs, 0) && self.depth == 0 {
2165                             VarState::Warn
2166                         } else {
2167                             VarState::DontWarn
2168                         }
2169                     },
2170                     ExprKind::AddrOf(BorrowKind::Ref, mutability, _) if mutability == Mutability::Mut => {
2171                         self.state = VarState::DontWarn
2172                     },
2173                     _ => (),
2174                 }
2175             }
2176
2177             if self.past_loop {
2178                 self.state = VarState::DontWarn;
2179                 return;
2180             }
2181         } else if !self.past_loop && is_loop(expr) {
2182             self.state = VarState::DontWarn;
2183             return;
2184         } else if is_conditional(expr) {
2185             self.depth += 1;
2186             walk_expr(self, expr);
2187             self.depth -= 1;
2188             return;
2189         }
2190         walk_expr(self, expr);
2191     }
2192
2193     fn nested_visit_map(&mut self) -> NestedVisitorMap<Self::Map> {
2194         NestedVisitorMap::OnlyBodies(self.cx.tcx.hir())
2195     }
2196 }
2197
2198 fn var_def_id(cx: &LateContext<'_, '_>, expr: &Expr<'_>) -> Option<HirId> {
2199     if let ExprKind::Path(ref qpath) = expr.kind {
2200         let path_res = qpath_res(cx, qpath, expr.hir_id);
2201         if let Res::Local(hir_id) = path_res {
2202             return Some(hir_id);
2203         }
2204     }
2205     None
2206 }
2207
2208 fn is_loop(expr: &Expr<'_>) -> bool {
2209     match expr.kind {
2210         ExprKind::Loop(..) => true,
2211         _ => false,
2212     }
2213 }
2214
2215 fn is_conditional(expr: &Expr<'_>) -> bool {
2216     match expr.kind {
2217         ExprKind::Match(..) => true,
2218         _ => false,
2219     }
2220 }
2221
2222 fn is_nested(cx: &LateContext<'_, '_>, match_expr: &Expr<'_>, iter_expr: &Expr<'_>) -> bool {
2223     if_chain! {
2224         if let Some(loop_block) = get_enclosing_block(cx, match_expr.hir_id);
2225         let parent_node = cx.tcx.hir().get_parent_node(loop_block.hir_id);
2226         if let Some(Node::Expr(loop_expr)) = cx.tcx.hir().find(parent_node);
2227         then {
2228             return is_loop_nested(cx, loop_expr, iter_expr)
2229         }
2230     }
2231     false
2232 }
2233
2234 fn is_loop_nested(cx: &LateContext<'_, '_>, loop_expr: &Expr<'_>, iter_expr: &Expr<'_>) -> bool {
2235     let mut id = loop_expr.hir_id;
2236     let iter_name = if let Some(name) = path_name(iter_expr) {
2237         name
2238     } else {
2239         return true;
2240     };
2241     loop {
2242         let parent = cx.tcx.hir().get_parent_node(id);
2243         if parent == id {
2244             return false;
2245         }
2246         match cx.tcx.hir().find(parent) {
2247             Some(Node::Expr(expr)) => {
2248                 if let ExprKind::Loop(..) = expr.kind {
2249                     return true;
2250                 };
2251             },
2252             Some(Node::Block(block)) => {
2253                 let mut block_visitor = LoopNestVisitor {
2254                     hir_id: id,
2255                     iterator: iter_name,
2256                     nesting: Unknown,
2257                 };
2258                 walk_block(&mut block_visitor, block);
2259                 if block_visitor.nesting == RuledOut {
2260                     return false;
2261                 }
2262             },
2263             Some(Node::Stmt(_)) => (),
2264             _ => {
2265                 return false;
2266             },
2267         }
2268         id = parent;
2269     }
2270 }
2271
2272 #[derive(PartialEq, Eq)]
2273 enum Nesting {
2274     Unknown,     // no nesting detected yet
2275     RuledOut,    // the iterator is initialized or assigned within scope
2276     LookFurther, // no nesting detected, no further walk required
2277 }
2278
2279 use self::Nesting::{LookFurther, RuledOut, Unknown};
2280
2281 struct LoopNestVisitor {
2282     hir_id: HirId,
2283     iterator: Name,
2284     nesting: Nesting,
2285 }
2286
2287 impl<'tcx> Visitor<'tcx> for LoopNestVisitor {
2288     type Map = Map<'tcx>;
2289
2290     fn visit_stmt(&mut self, stmt: &'tcx Stmt<'_>) {
2291         if stmt.hir_id == self.hir_id {
2292             self.nesting = LookFurther;
2293         } else if self.nesting == Unknown {
2294             walk_stmt(self, stmt);
2295         }
2296     }
2297
2298     fn visit_expr(&mut self, expr: &'tcx Expr<'_>) {
2299         if self.nesting != Unknown {
2300             return;
2301         }
2302         if expr.hir_id == self.hir_id {
2303             self.nesting = LookFurther;
2304             return;
2305         }
2306         match expr.kind {
2307             ExprKind::Assign(ref path, _, _) | ExprKind::AssignOp(_, ref path, _) => {
2308                 if match_var(path, self.iterator) {
2309                     self.nesting = RuledOut;
2310                 }
2311             },
2312             _ => walk_expr(self, expr),
2313         }
2314     }
2315
2316     fn visit_pat(&mut self, pat: &'tcx Pat<'_>) {
2317         if self.nesting != Unknown {
2318             return;
2319         }
2320         if let PatKind::Binding(.., span_name, _) = pat.kind {
2321             if self.iterator == span_name.name {
2322                 self.nesting = RuledOut;
2323                 return;
2324             }
2325         }
2326         walk_pat(self, pat)
2327     }
2328
2329     fn nested_visit_map(&mut self) -> NestedVisitorMap<Self::Map> {
2330         NestedVisitorMap::None
2331     }
2332 }
2333
2334 fn path_name(e: &Expr<'_>) -> Option<Name> {
2335     if let ExprKind::Path(QPath::Resolved(_, ref path)) = e.kind {
2336         let segments = &path.segments;
2337         if segments.len() == 1 {
2338             return Some(segments[0].ident.name);
2339         }
2340     };
2341     None
2342 }
2343
2344 fn check_infinite_loop<'a, 'tcx>(cx: &LateContext<'a, 'tcx>, cond: &'tcx Expr<'_>, expr: &'tcx Expr<'_>) {
2345     if constant(cx, cx.tables, cond).is_some() {
2346         // A pure constant condition (e.g., `while false`) is not linted.
2347         return;
2348     }
2349
2350     let mut var_visitor = VarCollectorVisitor {
2351         cx,
2352         ids: FxHashSet::default(),
2353         def_ids: FxHashMap::default(),
2354         skip: false,
2355     };
2356     var_visitor.visit_expr(cond);
2357     if var_visitor.skip {
2358         return;
2359     }
2360     let used_in_condition = &var_visitor.ids;
2361     let no_cond_variable_mutated = if let Some(used_mutably) = mutated_variables(expr, cx) {
2362         used_in_condition.is_disjoint(&used_mutably)
2363     } else {
2364         return;
2365     };
2366     let mutable_static_in_cond = var_visitor.def_ids.iter().any(|(_, v)| *v);
2367
2368     let mut has_break_or_return_visitor = HasBreakOrReturnVisitor {
2369         has_break_or_return: false,
2370     };
2371     has_break_or_return_visitor.visit_expr(expr);
2372     let has_break_or_return = has_break_or_return_visitor.has_break_or_return;
2373
2374     if no_cond_variable_mutated && !mutable_static_in_cond {
2375         span_lint_and_then(
2376             cx,
2377             WHILE_IMMUTABLE_CONDITION,
2378             cond.span,
2379             "variables in the condition are not mutated in the loop body",
2380             |diag| {
2381                 diag.note("this may lead to an infinite or to a never running loop");
2382
2383                 if has_break_or_return {
2384                     diag.note("this loop contains `return`s or `break`s");
2385                     diag.help("rewrite it as `if cond { loop { } }`");
2386                 }
2387             },
2388         );
2389     }
2390 }
2391
2392 struct HasBreakOrReturnVisitor {
2393     has_break_or_return: bool,
2394 }
2395
2396 impl<'a, 'tcx> Visitor<'tcx> for HasBreakOrReturnVisitor {
2397     type Map = Map<'tcx>;
2398
2399     fn visit_expr(&mut self, expr: &'tcx Expr<'_>) {
2400         if self.has_break_or_return {
2401             return;
2402         }
2403
2404         match expr.kind {
2405             ExprKind::Ret(_) | ExprKind::Break(_, _) => {
2406                 self.has_break_or_return = true;
2407                 return;
2408             },
2409             _ => {},
2410         }
2411
2412         walk_expr(self, expr);
2413     }
2414
2415     fn nested_visit_map(&mut self) -> NestedVisitorMap<Self::Map> {
2416         NestedVisitorMap::None
2417     }
2418 }
2419
2420 /// Collects the set of variables in an expression
2421 /// Stops analysis if a function call is found
2422 /// Note: In some cases such as `self`, there are no mutable annotation,
2423 /// All variables definition IDs are collected
2424 struct VarCollectorVisitor<'a, 'tcx> {
2425     cx: &'a LateContext<'a, 'tcx>,
2426     ids: FxHashSet<HirId>,
2427     def_ids: FxHashMap<def_id::DefId, bool>,
2428     skip: bool,
2429 }
2430
2431 impl<'a, 'tcx> VarCollectorVisitor<'a, 'tcx> {
2432     fn insert_def_id(&mut self, ex: &'tcx Expr<'_>) {
2433         if_chain! {
2434             if let ExprKind::Path(ref qpath) = ex.kind;
2435             if let QPath::Resolved(None, _) = *qpath;
2436             let res = qpath_res(self.cx, qpath, ex.hir_id);
2437             then {
2438                 match res {
2439                     Res::Local(hir_id) => {
2440                         self.ids.insert(hir_id);
2441                     },
2442                     Res::Def(DefKind::Static, def_id) => {
2443                         let mutable = self.cx.tcx.is_mutable_static(def_id);
2444                         self.def_ids.insert(def_id, mutable);
2445                     },
2446                     _ => {},
2447                 }
2448             }
2449         }
2450     }
2451 }
2452
2453 impl<'a, 'tcx> Visitor<'tcx> for VarCollectorVisitor<'a, 'tcx> {
2454     type Map = Map<'tcx>;
2455
2456     fn visit_expr(&mut self, ex: &'tcx Expr<'_>) {
2457         match ex.kind {
2458             ExprKind::Path(_) => self.insert_def_id(ex),
2459             // If there is any function/method call… we just stop analysis
2460             ExprKind::Call(..) | ExprKind::MethodCall(..) => self.skip = true,
2461
2462             _ => walk_expr(self, ex),
2463         }
2464     }
2465
2466     fn nested_visit_map(&mut self) -> NestedVisitorMap<Self::Map> {
2467         NestedVisitorMap::None
2468     }
2469 }
2470
2471 const NEEDLESS_COLLECT_MSG: &str = "avoid using `collect()` when not needed";
2472
2473 fn check_needless_collect<'a, 'tcx>(expr: &'tcx Expr<'_>, cx: &LateContext<'a, 'tcx>) {
2474     if_chain! {
2475         if let ExprKind::MethodCall(ref method, _, ref args) = expr.kind;
2476         if let ExprKind::MethodCall(ref chain_method, _, _) = args[0].kind;
2477         if chain_method.ident.name == sym!(collect) && match_trait_method(cx, &args[0], &paths::ITERATOR);
2478         if let Some(ref generic_args) = chain_method.args;
2479         if let Some(GenericArg::Type(ref ty)) = generic_args.args.get(0);
2480         then {
2481             let ty = cx.tables.node_type(ty.hir_id);
2482             if is_type_diagnostic_item(cx, ty, sym!(vec_type)) ||
2483                 match_type(cx, ty, &paths::VEC_DEQUE) ||
2484                 match_type(cx, ty, &paths::BTREEMAP) ||
2485                 match_type(cx, ty, &paths::HASHMAP) {
2486                 if method.ident.name == sym!(len) {
2487                     let span = shorten_needless_collect_span(expr);
2488                     span_lint_and_sugg(
2489                         cx,
2490                         NEEDLESS_COLLECT,
2491                         span,
2492                         NEEDLESS_COLLECT_MSG,
2493                         "replace with",
2494                         ".count()".to_string(),
2495                         Applicability::MachineApplicable,
2496                     );
2497                 }
2498                 if method.ident.name == sym!(is_empty) {
2499                     let span = shorten_needless_collect_span(expr);
2500                     span_lint_and_sugg(
2501                         cx,
2502                         NEEDLESS_COLLECT,
2503                         span,
2504                         NEEDLESS_COLLECT_MSG,
2505                         "replace with",
2506                         ".next().is_none()".to_string(),
2507                         Applicability::MachineApplicable,
2508                     );
2509                 }
2510                 if method.ident.name == sym!(contains) {
2511                     let contains_arg = snippet(cx, args[1].span, "??");
2512                     let span = shorten_needless_collect_span(expr);
2513                     span_lint_and_then(
2514                         cx,
2515                         NEEDLESS_COLLECT,
2516                         span,
2517                         NEEDLESS_COLLECT_MSG,
2518                         |diag| {
2519                             let (arg, pred) = if contains_arg.starts_with('&') {
2520                                 ("x", &contains_arg[1..])
2521                             } else {
2522                                 ("&x", &*contains_arg)
2523                             };
2524                             diag.span_suggestion(
2525                                 span,
2526                                 "replace with",
2527                                 format!(
2528                                     ".any(|{}| x == {})",
2529                                     arg, pred
2530                                 ),
2531                                 Applicability::MachineApplicable,
2532                             );
2533                         }
2534                     );
2535                 }
2536             }
2537         }
2538     }
2539 }
2540
2541 fn shorten_needless_collect_span(expr: &Expr<'_>) -> Span {
2542     if_chain! {
2543         if let ExprKind::MethodCall(_, _, ref args) = expr.kind;
2544         if let ExprKind::MethodCall(_, ref span, _) = args[0].kind;
2545         then {
2546             return expr.span.with_lo(span.lo() - BytePos(1));
2547         }
2548     }
2549     unreachable!()
2550 }