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