]> git.lizzy.rs Git - rust.git/blob - src/librustc_resolve/lifetimes.rs
Rollup merge of #68361 - t6:patch-freebsd-lld-i386, r=alexcrichton
[rust.git] / src / librustc_resolve / lifetimes.rs
1 //! Name resolution for lifetimes.
2 //!
3 //! Name resolution for lifetimes follows *much* simpler rules than the
4 //! full resolve. For example, lifetime names are never exported or
5 //! used between functions, and they operate in a purely top-down
6 //! way. Therefore, we break lifetime name resolution into a separate pass.
7
8 use crate::diagnostics::{
9     add_missing_lifetime_specifiers_label, report_missing_lifetime_specifiers,
10 };
11 use rustc::hir::map::Map;
12 use rustc::lint;
13 use rustc::middle::resolve_lifetime::*;
14 use rustc::ty::{self, DefIdTree, GenericParamDefKind, TyCtxt};
15 use rustc::{bug, span_bug};
16 use rustc_data_structures::fx::{FxHashMap, FxHashSet};
17 use rustc_errors::{struct_span_err, Applicability, DiagnosticBuilder};
18 use rustc_hir as hir;
19 use rustc_hir::def::{DefKind, Res};
20 use rustc_hir::def_id::{CrateNum, DefId, DefIdMap, LocalDefId, LOCAL_CRATE};
21 use rustc_hir::intravisit::{self, NestedVisitorMap, Visitor};
22 use rustc_hir::{GenericArg, GenericParam, LifetimeName, Node, ParamName, QPath};
23 use rustc_hir::{GenericParamKind, HirIdMap, HirIdSet, LifetimeParamKind};
24 use rustc_span::symbol::{kw, sym};
25 use rustc_span::Span;
26 use std::borrow::Cow;
27 use std::cell::Cell;
28 use std::mem::{replace, take};
29 use syntax::ast;
30 use syntax::attr;
31 use syntax::walk_list;
32
33 use log::debug;
34
35 // This counts the no of times a lifetime is used
36 #[derive(Clone, Copy, Debug)]
37 pub enum LifetimeUseSet<'tcx> {
38     One(&'tcx hir::Lifetime),
39     Many,
40 }
41
42 trait RegionExt {
43     fn early(hir_map: &Map<'_>, index: &mut u32, param: &GenericParam<'_>) -> (ParamName, Region);
44
45     fn late(hir_map: &Map<'_>, param: &GenericParam<'_>) -> (ParamName, Region);
46
47     fn late_anon(index: &Cell<u32>) -> Region;
48
49     fn id(&self) -> Option<DefId>;
50
51     fn shifted(self, amount: u32) -> Region;
52
53     fn shifted_out_to_binder(self, binder: ty::DebruijnIndex) -> Region;
54
55     fn subst<'a, L>(self, params: L, map: &NamedRegionMap) -> Option<Region>
56     where
57         L: Iterator<Item = &'a hir::Lifetime>;
58 }
59
60 impl RegionExt for Region {
61     fn early(hir_map: &Map<'_>, index: &mut u32, param: &GenericParam<'_>) -> (ParamName, Region) {
62         let i = *index;
63         *index += 1;
64         let def_id = hir_map.local_def_id(param.hir_id);
65         let origin = LifetimeDefOrigin::from_param(param);
66         debug!("Region::early: index={} def_id={:?}", i, def_id);
67         (param.name.modern(), Region::EarlyBound(i, def_id, origin))
68     }
69
70     fn late(hir_map: &Map<'_>, param: &GenericParam<'_>) -> (ParamName, Region) {
71         let depth = ty::INNERMOST;
72         let def_id = hir_map.local_def_id(param.hir_id);
73         let origin = LifetimeDefOrigin::from_param(param);
74         debug!(
75             "Region::late: param={:?} depth={:?} def_id={:?} origin={:?}",
76             param, depth, def_id, origin,
77         );
78         (param.name.modern(), Region::LateBound(depth, def_id, origin))
79     }
80
81     fn late_anon(index: &Cell<u32>) -> Region {
82         let i = index.get();
83         index.set(i + 1);
84         let depth = ty::INNERMOST;
85         Region::LateBoundAnon(depth, i)
86     }
87
88     fn id(&self) -> Option<DefId> {
89         match *self {
90             Region::Static | Region::LateBoundAnon(..) => None,
91
92             Region::EarlyBound(_, id, _) | Region::LateBound(_, id, _) | Region::Free(_, id) => {
93                 Some(id)
94             }
95         }
96     }
97
98     fn shifted(self, amount: u32) -> Region {
99         match self {
100             Region::LateBound(debruijn, id, origin) => {
101                 Region::LateBound(debruijn.shifted_in(amount), id, origin)
102             }
103             Region::LateBoundAnon(debruijn, index) => {
104                 Region::LateBoundAnon(debruijn.shifted_in(amount), index)
105             }
106             _ => self,
107         }
108     }
109
110     fn shifted_out_to_binder(self, binder: ty::DebruijnIndex) -> Region {
111         match self {
112             Region::LateBound(debruijn, id, origin) => {
113                 Region::LateBound(debruijn.shifted_out_to_binder(binder), id, origin)
114             }
115             Region::LateBoundAnon(debruijn, index) => {
116                 Region::LateBoundAnon(debruijn.shifted_out_to_binder(binder), index)
117             }
118             _ => self,
119         }
120     }
121
122     fn subst<'a, L>(self, mut params: L, map: &NamedRegionMap) -> Option<Region>
123     where
124         L: Iterator<Item = &'a hir::Lifetime>,
125     {
126         if let Region::EarlyBound(index, _, _) = self {
127             params.nth(index as usize).and_then(|lifetime| map.defs.get(&lifetime.hir_id).cloned())
128         } else {
129             Some(self)
130         }
131     }
132 }
133
134 /// Maps the id of each lifetime reference to the lifetime decl
135 /// that it corresponds to.
136 ///
137 /// FIXME. This struct gets converted to a `ResolveLifetimes` for
138 /// actual use. It has the same data, but indexed by `DefIndex`.  This
139 /// is silly.
140 #[derive(Default)]
141 struct NamedRegionMap {
142     // maps from every use of a named (not anonymous) lifetime to a
143     // `Region` describing how that region is bound
144     defs: HirIdMap<Region>,
145
146     // the set of lifetime def ids that are late-bound; a region can
147     // be late-bound if (a) it does NOT appear in a where-clause and
148     // (b) it DOES appear in the arguments.
149     late_bound: HirIdSet,
150
151     // For each type and trait definition, maps type parameters
152     // to the trait object lifetime defaults computed from them.
153     object_lifetime_defaults: HirIdMap<Vec<ObjectLifetimeDefault>>,
154 }
155
156 struct LifetimeContext<'a, 'tcx> {
157     tcx: TyCtxt<'tcx>,
158     map: &'a mut NamedRegionMap,
159     scope: ScopeRef<'a>,
160
161     /// This is slightly complicated. Our representation for poly-trait-refs contains a single
162     /// binder and thus we only allow a single level of quantification. However,
163     /// the syntax of Rust permits quantification in two places, e.g., `T: for <'a> Foo<'a>`
164     /// and `for <'a, 'b> &'b T: Foo<'a>`. In order to get the De Bruijn indices
165     /// correct when representing these constraints, we should only introduce one
166     /// scope. However, we want to support both locations for the quantifier and
167     /// during lifetime resolution we want precise information (so we can't
168     /// desugar in an earlier phase).
169     ///
170     /// So, if we encounter a quantifier at the outer scope, we set
171     /// `trait_ref_hack` to `true` (and introduce a scope), and then if we encounter
172     /// a quantifier at the inner scope, we error. If `trait_ref_hack` is `false`,
173     /// then we introduce the scope at the inner quantifier.
174     trait_ref_hack: bool,
175
176     /// Used to disallow the use of in-band lifetimes in `fn` or `Fn` syntax.
177     is_in_fn_syntax: bool,
178
179     /// List of labels in the function/method currently under analysis.
180     labels_in_fn: Vec<ast::Ident>,
181
182     /// Cache for cross-crate per-definition object lifetime defaults.
183     xcrate_object_lifetime_defaults: DefIdMap<Vec<ObjectLifetimeDefault>>,
184
185     lifetime_uses: &'a mut DefIdMap<LifetimeUseSet<'tcx>>,
186
187     /// When encountering an undefined named lifetime, we will suggest introducing it in these
188     /// places.
189     missing_named_lifetime_spots: Vec<&'tcx hir::Generics<'tcx>>,
190 }
191
192 #[derive(Debug)]
193 enum Scope<'a> {
194     /// Declares lifetimes, and each can be early-bound or late-bound.
195     /// The `DebruijnIndex` of late-bound lifetimes starts at `1` and
196     /// it should be shifted by the number of `Binder`s in between the
197     /// declaration `Binder` and the location it's referenced from.
198     Binder {
199         lifetimes: FxHashMap<hir::ParamName, Region>,
200
201         /// if we extend this scope with another scope, what is the next index
202         /// we should use for an early-bound region?
203         next_early_index: u32,
204
205         /// Flag is set to true if, in this binder, `'_` would be
206         /// equivalent to a "single-use region". This is true on
207         /// impls, but not other kinds of items.
208         track_lifetime_uses: bool,
209
210         /// Whether or not this binder would serve as the parent
211         /// binder for opaque types introduced within. For example:
212         ///
213         /// ```text
214         ///     fn foo<'a>() -> impl for<'b> Trait<Item = impl Trait2<'a>>
215         /// ```
216         ///
217         /// Here, the opaque types we create for the `impl Trait`
218         /// and `impl Trait2` references will both have the `foo` item
219         /// as their parent. When we get to `impl Trait2`, we find
220         /// that it is nested within the `for<>` binder -- this flag
221         /// allows us to skip that when looking for the parent binder
222         /// of the resulting opaque type.
223         opaque_type_parent: bool,
224
225         s: ScopeRef<'a>,
226     },
227
228     /// Lifetimes introduced by a fn are scoped to the call-site for that fn,
229     /// if this is a fn body, otherwise the original definitions are used.
230     /// Unspecified lifetimes are inferred, unless an elision scope is nested,
231     /// e.g., `(&T, fn(&T) -> &T);` becomes `(&'_ T, for<'a> fn(&'a T) -> &'a T)`.
232     Body {
233         id: hir::BodyId,
234         s: ScopeRef<'a>,
235     },
236
237     /// A scope which either determines unspecified lifetimes or errors
238     /// on them (e.g., due to ambiguity). For more details, see `Elide`.
239     Elision {
240         elide: Elide,
241         s: ScopeRef<'a>,
242     },
243
244     /// Use a specific lifetime (if `Some`) or leave it unset (to be
245     /// inferred in a function body or potentially error outside one),
246     /// for the default choice of lifetime in a trait object type.
247     ObjectLifetimeDefault {
248         lifetime: Option<Region>,
249         s: ScopeRef<'a>,
250     },
251
252     Root,
253 }
254
255 #[derive(Clone, Debug)]
256 enum Elide {
257     /// Use a fresh anonymous late-bound lifetime each time, by
258     /// incrementing the counter to generate sequential indices.
259     FreshLateAnon(Cell<u32>),
260     /// Always use this one lifetime.
261     Exact(Region),
262     /// Less or more than one lifetime were found, error on unspecified.
263     Error(Vec<ElisionFailureInfo>),
264 }
265
266 #[derive(Clone, Debug)]
267 struct ElisionFailureInfo {
268     /// Where we can find the argument pattern.
269     parent: Option<hir::BodyId>,
270     /// The index of the argument in the original definition.
271     index: usize,
272     lifetime_count: usize,
273     have_bound_regions: bool,
274 }
275
276 type ScopeRef<'a> = &'a Scope<'a>;
277
278 const ROOT_SCOPE: ScopeRef<'static> = &Scope::Root;
279
280 pub fn provide(providers: &mut ty::query::Providers<'_>) {
281     *providers = ty::query::Providers {
282         resolve_lifetimes,
283
284         named_region_map: |tcx, id| {
285             let id = LocalDefId::from_def_id(DefId::local(id)); // (*)
286             tcx.resolve_lifetimes(LOCAL_CRATE).defs.get(&id)
287         },
288
289         is_late_bound_map: |tcx, id| {
290             let id = LocalDefId::from_def_id(DefId::local(id)); // (*)
291             tcx.resolve_lifetimes(LOCAL_CRATE).late_bound.get(&id)
292         },
293
294         object_lifetime_defaults_map: |tcx, id| {
295             let id = LocalDefId::from_def_id(DefId::local(id)); // (*)
296             tcx.resolve_lifetimes(LOCAL_CRATE).object_lifetime_defaults.get(&id)
297         },
298
299         ..*providers
300     };
301
302     // (*) FIXME the query should be defined to take a LocalDefId
303 }
304
305 /// Computes the `ResolveLifetimes` map that contains data for the
306 /// entire crate. You should not read the result of this query
307 /// directly, but rather use `named_region_map`, `is_late_bound_map`,
308 /// etc.
309 fn resolve_lifetimes(tcx: TyCtxt<'_>, for_krate: CrateNum) -> &ResolveLifetimes {
310     assert_eq!(for_krate, LOCAL_CRATE);
311
312     let named_region_map = krate(tcx);
313
314     let mut rl = ResolveLifetimes::default();
315
316     for (hir_id, v) in named_region_map.defs {
317         let map = rl.defs.entry(hir_id.owner_local_def_id()).or_default();
318         map.insert(hir_id.local_id, v);
319     }
320     for hir_id in named_region_map.late_bound {
321         let map = rl.late_bound.entry(hir_id.owner_local_def_id()).or_default();
322         map.insert(hir_id.local_id);
323     }
324     for (hir_id, v) in named_region_map.object_lifetime_defaults {
325         let map = rl.object_lifetime_defaults.entry(hir_id.owner_local_def_id()).or_default();
326         map.insert(hir_id.local_id, v);
327     }
328
329     tcx.arena.alloc(rl)
330 }
331
332 fn krate(tcx: TyCtxt<'_>) -> NamedRegionMap {
333     let krate = tcx.hir().krate();
334     let mut map = NamedRegionMap {
335         defs: Default::default(),
336         late_bound: Default::default(),
337         object_lifetime_defaults: compute_object_lifetime_defaults(tcx),
338     };
339     {
340         let mut visitor = LifetimeContext {
341             tcx,
342             map: &mut map,
343             scope: ROOT_SCOPE,
344             trait_ref_hack: false,
345             is_in_fn_syntax: false,
346             labels_in_fn: vec![],
347             xcrate_object_lifetime_defaults: Default::default(),
348             lifetime_uses: &mut Default::default(),
349             missing_named_lifetime_spots: vec![],
350         };
351         for (_, item) in &krate.items {
352             visitor.visit_item(item);
353         }
354     }
355     map
356 }
357
358 /// In traits, there is an implicit `Self` type parameter which comes before the generics.
359 /// We have to account for this when computing the index of the other generic parameters.
360 /// This function returns whether there is such an implicit parameter defined on the given item.
361 fn sub_items_have_self_param(node: &hir::ItemKind<'_>) -> bool {
362     match *node {
363         hir::ItemKind::Trait(..) | hir::ItemKind::TraitAlias(..) => true,
364         _ => false,
365     }
366 }
367
368 impl<'a, 'tcx> Visitor<'tcx> for LifetimeContext<'a, 'tcx> {
369     type Map = Map<'tcx>;
370
371     fn nested_visit_map(&mut self) -> NestedVisitorMap<'_, Self::Map> {
372         NestedVisitorMap::All(&self.tcx.hir())
373     }
374
375     // We want to nest trait/impl items in their parent, but nothing else.
376     fn visit_nested_item(&mut self, _: hir::ItemId) {}
377
378     fn visit_nested_body(&mut self, body: hir::BodyId) {
379         // Each body has their own set of labels, save labels.
380         let saved = take(&mut self.labels_in_fn);
381         let body = self.tcx.hir().body(body);
382         extract_labels(self, body);
383         self.with(Scope::Body { id: body.id(), s: self.scope }, |_, this| {
384             this.visit_body(body);
385         });
386         replace(&mut self.labels_in_fn, saved);
387     }
388
389     fn visit_item(&mut self, item: &'tcx hir::Item<'tcx>) {
390         match item.kind {
391             hir::ItemKind::Fn(ref sig, ref generics, _) => {
392                 self.missing_named_lifetime_spots.push(generics);
393                 self.visit_early_late(None, &sig.decl, generics, |this| {
394                     intravisit::walk_item(this, item);
395                 });
396                 self.missing_named_lifetime_spots.pop();
397             }
398
399             hir::ItemKind::ExternCrate(_)
400             | hir::ItemKind::Use(..)
401             | hir::ItemKind::Mod(..)
402             | hir::ItemKind::ForeignMod(..)
403             | hir::ItemKind::GlobalAsm(..) => {
404                 // These sorts of items have no lifetime parameters at all.
405                 intravisit::walk_item(self, item);
406             }
407             hir::ItemKind::Static(..) | hir::ItemKind::Const(..) => {
408                 // No lifetime parameters, but implied 'static.
409                 let scope = Scope::Elision { elide: Elide::Exact(Region::Static), s: ROOT_SCOPE };
410                 self.with(scope, |_, this| intravisit::walk_item(this, item));
411             }
412             hir::ItemKind::OpaqueTy(hir::OpaqueTy { impl_trait_fn: Some(_), .. }) => {
413                 // Currently opaque type declarations are just generated from `impl Trait`
414                 // items. Doing anything on this node is irrelevant, as we currently don't need
415                 // it.
416             }
417             hir::ItemKind::TyAlias(_, ref generics)
418             | hir::ItemKind::OpaqueTy(hir::OpaqueTy {
419                 impl_trait_fn: None, ref generics, ..
420             })
421             | hir::ItemKind::Enum(_, ref generics)
422             | hir::ItemKind::Struct(_, ref generics)
423             | hir::ItemKind::Union(_, ref generics)
424             | hir::ItemKind::Trait(_, _, ref generics, ..)
425             | hir::ItemKind::TraitAlias(ref generics, ..)
426             | hir::ItemKind::Impl { ref generics, .. } => {
427                 self.missing_named_lifetime_spots.push(generics);
428
429                 // Impls permit `'_` to be used and it is equivalent to "some fresh lifetime name".
430                 // This is not true for other kinds of items.x
431                 let track_lifetime_uses = match item.kind {
432                     hir::ItemKind::Impl { .. } => true,
433                     _ => false,
434                 };
435                 // These kinds of items have only early-bound lifetime parameters.
436                 let mut index = if sub_items_have_self_param(&item.kind) {
437                     1 // Self comes before lifetimes
438                 } else {
439                     0
440                 };
441                 let mut non_lifetime_count = 0;
442                 let lifetimes = generics
443                     .params
444                     .iter()
445                     .filter_map(|param| match param.kind {
446                         GenericParamKind::Lifetime { .. } => {
447                             Some(Region::early(&self.tcx.hir(), &mut index, param))
448                         }
449                         GenericParamKind::Type { .. } | GenericParamKind::Const { .. } => {
450                             non_lifetime_count += 1;
451                             None
452                         }
453                     })
454                     .collect();
455                 let scope = Scope::Binder {
456                     lifetimes,
457                     next_early_index: index + non_lifetime_count,
458                     opaque_type_parent: true,
459                     track_lifetime_uses,
460                     s: ROOT_SCOPE,
461                 };
462                 self.with(scope, |old_scope, this| {
463                     this.check_lifetime_params(old_scope, &generics.params);
464                     intravisit::walk_item(this, item);
465                 });
466                 self.missing_named_lifetime_spots.pop();
467             }
468         }
469     }
470
471     fn visit_foreign_item(&mut self, item: &'tcx hir::ForeignItem<'tcx>) {
472         match item.kind {
473             hir::ForeignItemKind::Fn(ref decl, _, ref generics) => {
474                 self.visit_early_late(None, decl, generics, |this| {
475                     intravisit::walk_foreign_item(this, item);
476                 })
477             }
478             hir::ForeignItemKind::Static(..) => {
479                 intravisit::walk_foreign_item(self, item);
480             }
481             hir::ForeignItemKind::Type => {
482                 intravisit::walk_foreign_item(self, item);
483             }
484         }
485     }
486
487     fn visit_ty(&mut self, ty: &'tcx hir::Ty<'tcx>) {
488         debug!("visit_ty: id={:?} ty={:?}", ty.hir_id, ty);
489         debug!("visit_ty: ty.kind={:?}", ty.kind);
490         match ty.kind {
491             hir::TyKind::BareFn(ref c) => {
492                 let next_early_index = self.next_early_index();
493                 let was_in_fn_syntax = self.is_in_fn_syntax;
494                 self.is_in_fn_syntax = true;
495                 let scope = Scope::Binder {
496                     lifetimes: c
497                         .generic_params
498                         .iter()
499                         .filter_map(|param| match param.kind {
500                             GenericParamKind::Lifetime { .. } => {
501                                 Some(Region::late(&self.tcx.hir(), param))
502                             }
503                             _ => None,
504                         })
505                         .collect(),
506                     s: self.scope,
507                     next_early_index,
508                     track_lifetime_uses: true,
509                     opaque_type_parent: false,
510                 };
511                 self.with(scope, |old_scope, this| {
512                     // a bare fn has no bounds, so everything
513                     // contained within is scoped within its binder.
514                     this.check_lifetime_params(old_scope, &c.generic_params);
515                     intravisit::walk_ty(this, ty);
516                 });
517                 self.is_in_fn_syntax = was_in_fn_syntax;
518             }
519             hir::TyKind::TraitObject(bounds, ref lifetime) => {
520                 debug!("visit_ty: TraitObject(bounds={:?}, lifetime={:?})", bounds, lifetime);
521                 for bound in bounds {
522                     self.visit_poly_trait_ref(bound, hir::TraitBoundModifier::None);
523                 }
524                 match lifetime.name {
525                     LifetimeName::Implicit => {
526                         // For types like `dyn Foo`, we should
527                         // generate a special form of elided.
528                         span_bug!(ty.span, "object-lifetime-default expected, not implict",);
529                     }
530                     LifetimeName::ImplicitObjectLifetimeDefault => {
531                         // If the user does not write *anything*, we
532                         // use the object lifetime defaulting
533                         // rules. So e.g., `Box<dyn Debug>` becomes
534                         // `Box<dyn Debug + 'static>`.
535                         self.resolve_object_lifetime_default(lifetime)
536                     }
537                     LifetimeName::Underscore => {
538                         // If the user writes `'_`, we use the *ordinary* elision
539                         // rules. So the `'_` in e.g., `Box<dyn Debug + '_>` will be
540                         // resolved the same as the `'_` in `&'_ Foo`.
541                         //
542                         // cc #48468
543                         self.resolve_elided_lifetimes(vec![lifetime])
544                     }
545                     LifetimeName::Param(_) | LifetimeName::Static => {
546                         // If the user wrote an explicit name, use that.
547                         self.visit_lifetime(lifetime);
548                     }
549                     LifetimeName::Error => {}
550                 }
551             }
552             hir::TyKind::Rptr(ref lifetime_ref, ref mt) => {
553                 self.visit_lifetime(lifetime_ref);
554                 let scope = Scope::ObjectLifetimeDefault {
555                     lifetime: self.map.defs.get(&lifetime_ref.hir_id).cloned(),
556                     s: self.scope,
557                 };
558                 self.with(scope, |_, this| this.visit_ty(&mt.ty));
559             }
560             hir::TyKind::Def(item_id, lifetimes) => {
561                 // Resolve the lifetimes in the bounds to the lifetime defs in the generics.
562                 // `fn foo<'a>() -> impl MyTrait<'a> { ... }` desugars to
563                 // `type MyAnonTy<'b> = impl MyTrait<'b>;`
564                 //                 ^                  ^ this gets resolved in the scope of
565                 //                                      the opaque_ty generics
566                 let (generics, bounds) = match self.tcx.hir().expect_item(item_id.id).kind {
567                     // Named opaque `impl Trait` types are reached via `TyKind::Path`.
568                     // This arm is for `impl Trait` in the types of statics, constants and locals.
569                     hir::ItemKind::OpaqueTy(hir::OpaqueTy { impl_trait_fn: None, .. }) => {
570                         intravisit::walk_ty(self, ty);
571                         return;
572                     }
573                     // RPIT (return position impl trait)
574                     hir::ItemKind::OpaqueTy(hir::OpaqueTy { ref generics, bounds, .. }) => {
575                         (generics, bounds)
576                     }
577                     ref i => bug!("`impl Trait` pointed to non-opaque type?? {:#?}", i),
578                 };
579
580                 // Resolve the lifetimes that are applied to the opaque type.
581                 // These are resolved in the current scope.
582                 // `fn foo<'a>() -> impl MyTrait<'a> { ... }` desugars to
583                 // `fn foo<'a>() -> MyAnonTy<'a> { ... }`
584                 //          ^                 ^this gets resolved in the current scope
585                 for lifetime in lifetimes {
586                     if let hir::GenericArg::Lifetime(lifetime) = lifetime {
587                         self.visit_lifetime(lifetime);
588
589                         // Check for predicates like `impl for<'a> Trait<impl OtherTrait<'a>>`
590                         // and ban them. Type variables instantiated inside binders aren't
591                         // well-supported at the moment, so this doesn't work.
592                         // In the future, this should be fixed and this error should be removed.
593                         let def = self.map.defs.get(&lifetime.hir_id).cloned();
594                         if let Some(Region::LateBound(_, def_id, _)) = def {
595                             if let Some(hir_id) = self.tcx.hir().as_local_hir_id(def_id) {
596                                 // Ensure that the parent of the def is an item, not HRTB
597                                 let parent_id = self.tcx.hir().get_parent_node(hir_id);
598                                 let parent_impl_id = hir::ImplItemId { hir_id: parent_id };
599                                 let parent_trait_id = hir::TraitItemId { hir_id: parent_id };
600                                 let krate = self.tcx.hir().forest.krate();
601
602                                 if !(krate.items.contains_key(&parent_id)
603                                     || krate.impl_items.contains_key(&parent_impl_id)
604                                     || krate.trait_items.contains_key(&parent_trait_id))
605                                 {
606                                     struct_span_err!(
607                                         self.tcx.sess,
608                                         lifetime.span,
609                                         E0657,
610                                         "`impl Trait` can only capture lifetimes \
611                                          bound at the fn or impl level"
612                                     )
613                                     .emit();
614                                     self.uninsert_lifetime_on_error(lifetime, def.unwrap());
615                                 }
616                             }
617                         }
618                     }
619                 }
620
621                 // We want to start our early-bound indices at the end of the parent scope,
622                 // not including any parent `impl Trait`s.
623                 let mut index = self.next_early_index_for_opaque_type();
624                 debug!("visit_ty: index = {}", index);
625
626                 let mut elision = None;
627                 let mut lifetimes = FxHashMap::default();
628                 let mut non_lifetime_count = 0;
629                 for param in generics.params {
630                     match param.kind {
631                         GenericParamKind::Lifetime { .. } => {
632                             let (name, reg) = Region::early(&self.tcx.hir(), &mut index, &param);
633                             let def_id = if let Region::EarlyBound(_, def_id, _) = reg {
634                                 def_id
635                             } else {
636                                 bug!();
637                             };
638                             if let hir::ParamName::Plain(param_name) = name {
639                                 if param_name.name == kw::UnderscoreLifetime {
640                                     // Pick the elided lifetime "definition" if one exists
641                                     // and use it to make an elision scope.
642                                     self.lifetime_uses.insert(def_id.clone(), LifetimeUseSet::Many);
643                                     elision = Some(reg);
644                                 } else {
645                                     lifetimes.insert(name, reg);
646                                 }
647                             } else {
648                                 self.lifetime_uses.insert(def_id.clone(), LifetimeUseSet::Many);
649                                 lifetimes.insert(name, reg);
650                             }
651                         }
652                         GenericParamKind::Type { .. } | GenericParamKind::Const { .. } => {
653                             non_lifetime_count += 1;
654                         }
655                     }
656                 }
657                 let next_early_index = index + non_lifetime_count;
658
659                 if let Some(elision_region) = elision {
660                     let scope =
661                         Scope::Elision { elide: Elide::Exact(elision_region), s: self.scope };
662                     self.with(scope, |_old_scope, this| {
663                         let scope = Scope::Binder {
664                             lifetimes,
665                             next_early_index,
666                             s: this.scope,
667                             track_lifetime_uses: true,
668                             opaque_type_parent: false,
669                         };
670                         this.with(scope, |_old_scope, this| {
671                             this.visit_generics(generics);
672                             for bound in bounds {
673                                 this.visit_param_bound(bound);
674                             }
675                         });
676                     });
677                 } else {
678                     let scope = Scope::Binder {
679                         lifetimes,
680                         next_early_index,
681                         s: self.scope,
682                         track_lifetime_uses: true,
683                         opaque_type_parent: false,
684                     };
685                     self.with(scope, |_old_scope, this| {
686                         this.visit_generics(generics);
687                         for bound in bounds {
688                             this.visit_param_bound(bound);
689                         }
690                     });
691                 }
692             }
693             _ => intravisit::walk_ty(self, ty),
694         }
695     }
696
697     fn visit_trait_item(&mut self, trait_item: &'tcx hir::TraitItem<'tcx>) {
698         use self::hir::TraitItemKind::*;
699         self.missing_named_lifetime_spots.push(&trait_item.generics);
700         match trait_item.kind {
701             Method(ref sig, _) => {
702                 let tcx = self.tcx;
703                 self.visit_early_late(
704                     Some(tcx.hir().get_parent_item(trait_item.hir_id)),
705                     &sig.decl,
706                     &trait_item.generics,
707                     |this| intravisit::walk_trait_item(this, trait_item),
708                 );
709             }
710             Type(bounds, ref ty) => {
711                 let generics = &trait_item.generics;
712                 let mut index = self.next_early_index();
713                 debug!("visit_ty: index = {}", index);
714                 let mut non_lifetime_count = 0;
715                 let lifetimes = generics
716                     .params
717                     .iter()
718                     .filter_map(|param| match param.kind {
719                         GenericParamKind::Lifetime { .. } => {
720                             Some(Region::early(&self.tcx.hir(), &mut index, param))
721                         }
722                         GenericParamKind::Type { .. } | GenericParamKind::Const { .. } => {
723                             non_lifetime_count += 1;
724                             None
725                         }
726                     })
727                     .collect();
728                 let scope = Scope::Binder {
729                     lifetimes,
730                     next_early_index: index + non_lifetime_count,
731                     s: self.scope,
732                     track_lifetime_uses: true,
733                     opaque_type_parent: true,
734                 };
735                 self.with(scope, |_old_scope, this| {
736                     this.visit_generics(generics);
737                     for bound in bounds {
738                         this.visit_param_bound(bound);
739                     }
740                     if let Some(ty) = ty {
741                         this.visit_ty(ty);
742                     }
743                 });
744             }
745             Const(_, _) => {
746                 // Only methods and types support generics.
747                 assert!(trait_item.generics.params.is_empty());
748                 intravisit::walk_trait_item(self, trait_item);
749             }
750         }
751         self.missing_named_lifetime_spots.pop();
752     }
753
754     fn visit_impl_item(&mut self, impl_item: &'tcx hir::ImplItem<'tcx>) {
755         use self::hir::ImplItemKind::*;
756         self.missing_named_lifetime_spots.push(&impl_item.generics);
757         match impl_item.kind {
758             Method(ref sig, _) => {
759                 let tcx = self.tcx;
760                 self.visit_early_late(
761                     Some(tcx.hir().get_parent_item(impl_item.hir_id)),
762                     &sig.decl,
763                     &impl_item.generics,
764                     |this| intravisit::walk_impl_item(this, impl_item),
765                 )
766             }
767             TyAlias(ref ty) => {
768                 let generics = &impl_item.generics;
769                 let mut index = self.next_early_index();
770                 let mut non_lifetime_count = 0;
771                 debug!("visit_ty: index = {}", index);
772                 let lifetimes = generics
773                     .params
774                     .iter()
775                     .filter_map(|param| match param.kind {
776                         GenericParamKind::Lifetime { .. } => {
777                             Some(Region::early(&self.tcx.hir(), &mut index, param))
778                         }
779                         GenericParamKind::Const { .. } | GenericParamKind::Type { .. } => {
780                             non_lifetime_count += 1;
781                             None
782                         }
783                     })
784                     .collect();
785                 let scope = Scope::Binder {
786                     lifetimes,
787                     next_early_index: index + non_lifetime_count,
788                     s: self.scope,
789                     track_lifetime_uses: true,
790                     opaque_type_parent: true,
791                 };
792                 self.with(scope, |_old_scope, this| {
793                     this.visit_generics(generics);
794                     this.visit_ty(ty);
795                 });
796             }
797             OpaqueTy(bounds) => {
798                 let generics = &impl_item.generics;
799                 let mut index = self.next_early_index();
800                 let mut next_early_index = index;
801                 debug!("visit_ty: index = {}", index);
802                 let lifetimes = generics
803                     .params
804                     .iter()
805                     .filter_map(|param| match param.kind {
806                         GenericParamKind::Lifetime { .. } => {
807                             Some(Region::early(&self.tcx.hir(), &mut index, param))
808                         }
809                         GenericParamKind::Type { .. } => {
810                             next_early_index += 1;
811                             None
812                         }
813                         GenericParamKind::Const { .. } => {
814                             next_early_index += 1;
815                             None
816                         }
817                     })
818                     .collect();
819
820                 let scope = Scope::Binder {
821                     lifetimes,
822                     next_early_index,
823                     s: self.scope,
824                     track_lifetime_uses: true,
825                     opaque_type_parent: true,
826                 };
827                 self.with(scope, |_old_scope, this| {
828                     this.visit_generics(generics);
829                     for bound in bounds {
830                         this.visit_param_bound(bound);
831                     }
832                 });
833             }
834             Const(_, _) => {
835                 // Only methods and types support generics.
836                 assert!(impl_item.generics.params.is_empty());
837                 intravisit::walk_impl_item(self, impl_item);
838             }
839         }
840         self.missing_named_lifetime_spots.pop();
841     }
842
843     fn visit_lifetime(&mut self, lifetime_ref: &'tcx hir::Lifetime) {
844         debug!("visit_lifetime(lifetime_ref={:?})", lifetime_ref);
845         if lifetime_ref.is_elided() {
846             self.resolve_elided_lifetimes(vec![lifetime_ref]);
847             return;
848         }
849         if lifetime_ref.is_static() {
850             self.insert_lifetime(lifetime_ref, Region::Static);
851             return;
852         }
853         self.resolve_lifetime_ref(lifetime_ref);
854     }
855
856     fn visit_path(&mut self, path: &'tcx hir::Path<'tcx>, _: hir::HirId) {
857         for (i, segment) in path.segments.iter().enumerate() {
858             let depth = path.segments.len() - i - 1;
859             if let Some(ref args) = segment.args {
860                 self.visit_segment_args(path.res, depth, args);
861             }
862         }
863     }
864
865     fn visit_fn_decl(&mut self, fd: &'tcx hir::FnDecl<'tcx>) {
866         let output = match fd.output {
867             hir::FunctionRetTy::DefaultReturn(_) => None,
868             hir::FunctionRetTy::Return(ref ty) => Some(&**ty),
869         };
870         self.visit_fn_like_elision(&fd.inputs, output);
871     }
872
873     fn visit_generics(&mut self, generics: &'tcx hir::Generics<'tcx>) {
874         check_mixed_explicit_and_in_band_defs(self.tcx, &generics.params);
875         for param in generics.params {
876             match param.kind {
877                 GenericParamKind::Lifetime { .. } => {}
878                 GenericParamKind::Type { ref default, .. } => {
879                     walk_list!(self, visit_param_bound, param.bounds);
880                     if let Some(ref ty) = default {
881                         self.visit_ty(&ty);
882                     }
883                 }
884                 GenericParamKind::Const { ref ty, .. } => {
885                     walk_list!(self, visit_param_bound, param.bounds);
886                     self.visit_ty(&ty);
887                 }
888             }
889         }
890         for predicate in generics.where_clause.predicates {
891             match predicate {
892                 &hir::WherePredicate::BoundPredicate(hir::WhereBoundPredicate {
893                     ref bounded_ty,
894                     bounds,
895                     ref bound_generic_params,
896                     ..
897                 }) => {
898                     let lifetimes: FxHashMap<_, _> = bound_generic_params
899                         .iter()
900                         .filter_map(|param| match param.kind {
901                             GenericParamKind::Lifetime { .. } => {
902                                 Some(Region::late(&self.tcx.hir(), param))
903                             }
904                             _ => None,
905                         })
906                         .collect();
907                     if !lifetimes.is_empty() {
908                         self.trait_ref_hack = true;
909                         let next_early_index = self.next_early_index();
910                         let scope = Scope::Binder {
911                             lifetimes,
912                             s: self.scope,
913                             next_early_index,
914                             track_lifetime_uses: true,
915                             opaque_type_parent: false,
916                         };
917                         let result = self.with(scope, |old_scope, this| {
918                             this.check_lifetime_params(old_scope, &bound_generic_params);
919                             this.visit_ty(&bounded_ty);
920                             walk_list!(this, visit_param_bound, bounds);
921                         });
922                         self.trait_ref_hack = false;
923                         result
924                     } else {
925                         self.visit_ty(&bounded_ty);
926                         walk_list!(self, visit_param_bound, bounds);
927                     }
928                 }
929                 &hir::WherePredicate::RegionPredicate(hir::WhereRegionPredicate {
930                     ref lifetime,
931                     bounds,
932                     ..
933                 }) => {
934                     self.visit_lifetime(lifetime);
935                     walk_list!(self, visit_param_bound, bounds);
936                 }
937                 &hir::WherePredicate::EqPredicate(hir::WhereEqPredicate {
938                     ref lhs_ty,
939                     ref rhs_ty,
940                     ..
941                 }) => {
942                     self.visit_ty(lhs_ty);
943                     self.visit_ty(rhs_ty);
944                 }
945             }
946         }
947     }
948
949     fn visit_poly_trait_ref(
950         &mut self,
951         trait_ref: &'tcx hir::PolyTraitRef<'tcx>,
952         _modifier: hir::TraitBoundModifier,
953     ) {
954         debug!("visit_poly_trait_ref(trait_ref={:?})", trait_ref);
955
956         if !self.trait_ref_hack
957             || trait_ref.bound_generic_params.iter().any(|param| match param.kind {
958                 GenericParamKind::Lifetime { .. } => true,
959                 _ => false,
960             })
961         {
962             if self.trait_ref_hack {
963                 struct_span_err!(
964                     self.tcx.sess,
965                     trait_ref.span,
966                     E0316,
967                     "nested quantification of lifetimes"
968                 )
969                 .emit();
970             }
971             let next_early_index = self.next_early_index();
972             let scope = Scope::Binder {
973                 lifetimes: trait_ref
974                     .bound_generic_params
975                     .iter()
976                     .filter_map(|param| match param.kind {
977                         GenericParamKind::Lifetime { .. } => {
978                             Some(Region::late(&self.tcx.hir(), param))
979                         }
980                         _ => None,
981                     })
982                     .collect(),
983                 s: self.scope,
984                 next_early_index,
985                 track_lifetime_uses: true,
986                 opaque_type_parent: false,
987             };
988             self.with(scope, |old_scope, this| {
989                 this.check_lifetime_params(old_scope, &trait_ref.bound_generic_params);
990                 walk_list!(this, visit_generic_param, trait_ref.bound_generic_params);
991                 this.visit_trait_ref(&trait_ref.trait_ref)
992             })
993         } else {
994             self.visit_trait_ref(&trait_ref.trait_ref)
995         }
996     }
997 }
998
999 #[derive(Copy, Clone, PartialEq)]
1000 enum ShadowKind {
1001     Label,
1002     Lifetime,
1003 }
1004 struct Original {
1005     kind: ShadowKind,
1006     span: Span,
1007 }
1008 struct Shadower {
1009     kind: ShadowKind,
1010     span: Span,
1011 }
1012
1013 fn original_label(span: Span) -> Original {
1014     Original { kind: ShadowKind::Label, span: span }
1015 }
1016 fn shadower_label(span: Span) -> Shadower {
1017     Shadower { kind: ShadowKind::Label, span: span }
1018 }
1019 fn original_lifetime(span: Span) -> Original {
1020     Original { kind: ShadowKind::Lifetime, span: span }
1021 }
1022 fn shadower_lifetime(param: &hir::GenericParam<'_>) -> Shadower {
1023     Shadower { kind: ShadowKind::Lifetime, span: param.span }
1024 }
1025
1026 impl ShadowKind {
1027     fn desc(&self) -> &'static str {
1028         match *self {
1029             ShadowKind::Label => "label",
1030             ShadowKind::Lifetime => "lifetime",
1031         }
1032     }
1033 }
1034
1035 fn check_mixed_explicit_and_in_band_defs(tcx: TyCtxt<'_>, params: &[hir::GenericParam<'_>]) {
1036     let lifetime_params: Vec<_> = params
1037         .iter()
1038         .filter_map(|param| match param.kind {
1039             GenericParamKind::Lifetime { kind, .. } => Some((kind, param.span)),
1040             _ => None,
1041         })
1042         .collect();
1043     let explicit = lifetime_params.iter().find(|(kind, _)| *kind == LifetimeParamKind::Explicit);
1044     let in_band = lifetime_params.iter().find(|(kind, _)| *kind == LifetimeParamKind::InBand);
1045
1046     if let (Some((_, explicit_span)), Some((_, in_band_span))) = (explicit, in_band) {
1047         struct_span_err!(
1048             tcx.sess,
1049             *in_band_span,
1050             E0688,
1051             "cannot mix in-band and explicit lifetime definitions"
1052         )
1053         .span_label(*in_band_span, "in-band lifetime definition here")
1054         .span_label(*explicit_span, "explicit lifetime definition here")
1055         .emit();
1056     }
1057 }
1058
1059 fn signal_shadowing_problem(tcx: TyCtxt<'_>, name: ast::Name, orig: Original, shadower: Shadower) {
1060     let mut err = if let (ShadowKind::Lifetime, ShadowKind::Lifetime) = (orig.kind, shadower.kind) {
1061         // lifetime/lifetime shadowing is an error
1062         struct_span_err!(
1063             tcx.sess,
1064             shadower.span,
1065             E0496,
1066             "{} name `{}` shadows a \
1067              {} name that is already in scope",
1068             shadower.kind.desc(),
1069             name,
1070             orig.kind.desc()
1071         )
1072     } else {
1073         // shadowing involving a label is only a warning, due to issues with
1074         // labels and lifetimes not being macro-hygienic.
1075         tcx.sess.struct_span_warn(
1076             shadower.span,
1077             &format!(
1078                 "{} name `{}` shadows a \
1079                  {} name that is already in scope",
1080                 shadower.kind.desc(),
1081                 name,
1082                 orig.kind.desc()
1083             ),
1084         )
1085     };
1086     err.span_label(orig.span, "first declared here");
1087     err.span_label(shadower.span, format!("lifetime {} already in scope", name));
1088     err.emit();
1089 }
1090
1091 // Adds all labels in `b` to `ctxt.labels_in_fn`, signalling a warning
1092 // if one of the label shadows a lifetime or another label.
1093 fn extract_labels(ctxt: &mut LifetimeContext<'_, '_>, body: &hir::Body<'_>) {
1094     struct GatherLabels<'a, 'tcx> {
1095         tcx: TyCtxt<'tcx>,
1096         scope: ScopeRef<'a>,
1097         labels_in_fn: &'a mut Vec<ast::Ident>,
1098     }
1099
1100     let mut gather =
1101         GatherLabels { tcx: ctxt.tcx, scope: ctxt.scope, labels_in_fn: &mut ctxt.labels_in_fn };
1102     gather.visit_body(body);
1103
1104     impl<'v, 'a, 'tcx> Visitor<'v> for GatherLabels<'a, 'tcx> {
1105         type Map = Map<'v>;
1106
1107         fn nested_visit_map(&mut self) -> NestedVisitorMap<'_, Self::Map> {
1108             NestedVisitorMap::None
1109         }
1110
1111         fn visit_expr(&mut self, ex: &hir::Expr<'_>) {
1112             if let Some(label) = expression_label(ex) {
1113                 for prior_label in &self.labels_in_fn[..] {
1114                     // FIXME (#24278): non-hygienic comparison
1115                     if label.name == prior_label.name {
1116                         signal_shadowing_problem(
1117                             self.tcx,
1118                             label.name,
1119                             original_label(prior_label.span),
1120                             shadower_label(label.span),
1121                         );
1122                     }
1123                 }
1124
1125                 check_if_label_shadows_lifetime(self.tcx, self.scope, label);
1126
1127                 self.labels_in_fn.push(label);
1128             }
1129             intravisit::walk_expr(self, ex)
1130         }
1131     }
1132
1133     fn expression_label(ex: &hir::Expr<'_>) -> Option<ast::Ident> {
1134         if let hir::ExprKind::Loop(_, Some(label), _) = ex.kind { Some(label.ident) } else { None }
1135     }
1136
1137     fn check_if_label_shadows_lifetime(
1138         tcx: TyCtxt<'_>,
1139         mut scope: ScopeRef<'_>,
1140         label: ast::Ident,
1141     ) {
1142         loop {
1143             match *scope {
1144                 Scope::Body { s, .. }
1145                 | Scope::Elision { s, .. }
1146                 | Scope::ObjectLifetimeDefault { s, .. } => {
1147                     scope = s;
1148                 }
1149
1150                 Scope::Root => {
1151                     return;
1152                 }
1153
1154                 Scope::Binder { ref lifetimes, s, .. } => {
1155                     // FIXME (#24278): non-hygienic comparison
1156                     if let Some(def) = lifetimes.get(&hir::ParamName::Plain(label.modern())) {
1157                         let hir_id = tcx.hir().as_local_hir_id(def.id().unwrap()).unwrap();
1158
1159                         signal_shadowing_problem(
1160                             tcx,
1161                             label.name,
1162                             original_lifetime(tcx.hir().span(hir_id)),
1163                             shadower_label(label.span),
1164                         );
1165                         return;
1166                     }
1167                     scope = s;
1168                 }
1169             }
1170         }
1171     }
1172 }
1173
1174 fn compute_object_lifetime_defaults(tcx: TyCtxt<'_>) -> HirIdMap<Vec<ObjectLifetimeDefault>> {
1175     let mut map = HirIdMap::default();
1176     for item in tcx.hir().krate().items.values() {
1177         match item.kind {
1178             hir::ItemKind::Struct(_, ref generics)
1179             | hir::ItemKind::Union(_, ref generics)
1180             | hir::ItemKind::Enum(_, ref generics)
1181             | hir::ItemKind::OpaqueTy(hir::OpaqueTy {
1182                 ref generics, impl_trait_fn: None, ..
1183             })
1184             | hir::ItemKind::TyAlias(_, ref generics)
1185             | hir::ItemKind::Trait(_, _, ref generics, ..) => {
1186                 let result = object_lifetime_defaults_for_item(tcx, generics);
1187
1188                 // Debugging aid.
1189                 if attr::contains_name(&item.attrs, sym::rustc_object_lifetime_default) {
1190                     let object_lifetime_default_reprs: String = result
1191                         .iter()
1192                         .map(|set| match *set {
1193                             Set1::Empty => "BaseDefault".into(),
1194                             Set1::One(Region::Static) => "'static".into(),
1195                             Set1::One(Region::EarlyBound(mut i, _, _)) => generics
1196                                 .params
1197                                 .iter()
1198                                 .find_map(|param| match param.kind {
1199                                     GenericParamKind::Lifetime { .. } => {
1200                                         if i == 0 {
1201                                             return Some(param.name.ident().to_string().into());
1202                                         }
1203                                         i -= 1;
1204                                         None
1205                                     }
1206                                     _ => None,
1207                                 })
1208                                 .unwrap(),
1209                             Set1::One(_) => bug!(),
1210                             Set1::Many => "Ambiguous".into(),
1211                         })
1212                         .collect::<Vec<Cow<'static, str>>>()
1213                         .join(",");
1214                     tcx.sess.span_err(item.span, &object_lifetime_default_reprs);
1215                 }
1216
1217                 map.insert(item.hir_id, result);
1218             }
1219             _ => {}
1220         }
1221     }
1222     map
1223 }
1224
1225 /// Scan the bounds and where-clauses on parameters to extract bounds
1226 /// of the form `T:'a` so as to determine the `ObjectLifetimeDefault`
1227 /// for each type parameter.
1228 fn object_lifetime_defaults_for_item(
1229     tcx: TyCtxt<'_>,
1230     generics: &hir::Generics<'_>,
1231 ) -> Vec<ObjectLifetimeDefault> {
1232     fn add_bounds(set: &mut Set1<hir::LifetimeName>, bounds: &[hir::GenericBound<'_>]) {
1233         for bound in bounds {
1234             if let hir::GenericBound::Outlives(ref lifetime) = *bound {
1235                 set.insert(lifetime.name.modern());
1236             }
1237         }
1238     }
1239
1240     generics
1241         .params
1242         .iter()
1243         .filter_map(|param| match param.kind {
1244             GenericParamKind::Lifetime { .. } => None,
1245             GenericParamKind::Type { .. } => {
1246                 let mut set = Set1::Empty;
1247
1248                 add_bounds(&mut set, &param.bounds);
1249
1250                 let param_def_id = tcx.hir().local_def_id(param.hir_id);
1251                 for predicate in generics.where_clause.predicates {
1252                     // Look for `type: ...` where clauses.
1253                     let data = match *predicate {
1254                         hir::WherePredicate::BoundPredicate(ref data) => data,
1255                         _ => continue,
1256                     };
1257
1258                     // Ignore `for<'a> type: ...` as they can change what
1259                     // lifetimes mean (although we could "just" handle it).
1260                     if !data.bound_generic_params.is_empty() {
1261                         continue;
1262                     }
1263
1264                     let res = match data.bounded_ty.kind {
1265                         hir::TyKind::Path(hir::QPath::Resolved(None, ref path)) => path.res,
1266                         _ => continue,
1267                     };
1268
1269                     if res == Res::Def(DefKind::TyParam, param_def_id) {
1270                         add_bounds(&mut set, &data.bounds);
1271                     }
1272                 }
1273
1274                 Some(match set {
1275                     Set1::Empty => Set1::Empty,
1276                     Set1::One(name) => {
1277                         if name == hir::LifetimeName::Static {
1278                             Set1::One(Region::Static)
1279                         } else {
1280                             generics
1281                                 .params
1282                                 .iter()
1283                                 .filter_map(|param| match param.kind {
1284                                     GenericParamKind::Lifetime { .. } => Some((
1285                                         param.hir_id,
1286                                         hir::LifetimeName::Param(param.name),
1287                                         LifetimeDefOrigin::from_param(param),
1288                                     )),
1289                                     _ => None,
1290                                 })
1291                                 .enumerate()
1292                                 .find(|&(_, (_, lt_name, _))| lt_name == name)
1293                                 .map_or(Set1::Many, |(i, (id, _, origin))| {
1294                                     let def_id = tcx.hir().local_def_id(id);
1295                                     Set1::One(Region::EarlyBound(i as u32, def_id, origin))
1296                                 })
1297                         }
1298                     }
1299                     Set1::Many => Set1::Many,
1300                 })
1301             }
1302             GenericParamKind::Const { .. } => {
1303                 // Generic consts don't impose any constraints.
1304                 None
1305             }
1306         })
1307         .collect()
1308 }
1309
1310 impl<'a, 'tcx> LifetimeContext<'a, 'tcx> {
1311     // FIXME(#37666) this works around a limitation in the region inferencer
1312     fn hack<F>(&mut self, f: F)
1313     where
1314         F: for<'b> FnOnce(&mut LifetimeContext<'b, 'tcx>),
1315     {
1316         f(self)
1317     }
1318
1319     fn with<F>(&mut self, wrap_scope: Scope<'_>, f: F)
1320     where
1321         F: for<'b> FnOnce(ScopeRef<'_>, &mut LifetimeContext<'b, 'tcx>),
1322     {
1323         let LifetimeContext { tcx, map, lifetime_uses, .. } = self;
1324         let labels_in_fn = take(&mut self.labels_in_fn);
1325         let xcrate_object_lifetime_defaults = take(&mut self.xcrate_object_lifetime_defaults);
1326         let missing_named_lifetime_spots = take(&mut self.missing_named_lifetime_spots);
1327         let mut this = LifetimeContext {
1328             tcx: *tcx,
1329             map: map,
1330             scope: &wrap_scope,
1331             trait_ref_hack: self.trait_ref_hack,
1332             is_in_fn_syntax: self.is_in_fn_syntax,
1333             labels_in_fn,
1334             xcrate_object_lifetime_defaults,
1335             lifetime_uses,
1336             missing_named_lifetime_spots,
1337         };
1338         debug!("entering scope {:?}", this.scope);
1339         f(self.scope, &mut this);
1340         this.check_uses_for_lifetimes_defined_by_scope();
1341         debug!("exiting scope {:?}", this.scope);
1342         self.labels_in_fn = this.labels_in_fn;
1343         self.xcrate_object_lifetime_defaults = this.xcrate_object_lifetime_defaults;
1344         self.missing_named_lifetime_spots = this.missing_named_lifetime_spots;
1345     }
1346
1347     /// helper method to determine the span to remove when suggesting the
1348     /// deletion of a lifetime
1349     fn lifetime_deletion_span(
1350         &self,
1351         name: ast::Ident,
1352         generics: &hir::Generics<'_>,
1353     ) -> Option<Span> {
1354         generics.params.iter().enumerate().find_map(|(i, param)| {
1355             if param.name.ident() == name {
1356                 let mut in_band = false;
1357                 if let hir::GenericParamKind::Lifetime { kind } = param.kind {
1358                     if let hir::LifetimeParamKind::InBand = kind {
1359                         in_band = true;
1360                     }
1361                 }
1362                 if in_band {
1363                     Some(param.span)
1364                 } else {
1365                     if generics.params.len() == 1 {
1366                         // if sole lifetime, remove the entire `<>` brackets
1367                         Some(generics.span)
1368                     } else {
1369                         // if removing within `<>` brackets, we also want to
1370                         // delete a leading or trailing comma as appropriate
1371                         if i >= generics.params.len() - 1 {
1372                             Some(generics.params[i - 1].span.shrink_to_hi().to(param.span))
1373                         } else {
1374                             Some(param.span.to(generics.params[i + 1].span.shrink_to_lo()))
1375                         }
1376                     }
1377                 }
1378             } else {
1379                 None
1380             }
1381         })
1382     }
1383
1384     // helper method to issue suggestions from `fn rah<'a>(&'a T)` to `fn rah(&T)`
1385     // or from `fn rah<'a>(T<'a>)` to `fn rah(T<'_>)`
1386     fn suggest_eliding_single_use_lifetime(
1387         &self,
1388         err: &mut DiagnosticBuilder<'_>,
1389         def_id: DefId,
1390         lifetime: &hir::Lifetime,
1391     ) {
1392         let name = lifetime.name.ident();
1393         let mut remove_decl = None;
1394         if let Some(parent_def_id) = self.tcx.parent(def_id) {
1395             if let Some(generics) = self.tcx.hir().get_generics(parent_def_id) {
1396                 remove_decl = self.lifetime_deletion_span(name, generics);
1397             }
1398         }
1399
1400         let mut remove_use = None;
1401         let mut elide_use = None;
1402         let mut find_arg_use_span = |inputs: &[hir::Ty<'_>]| {
1403             for input in inputs {
1404                 match input.kind {
1405                     hir::TyKind::Rptr(lt, _) => {
1406                         if lt.name.ident() == name {
1407                             // include the trailing whitespace between the lifetime and type names
1408                             let lt_through_ty_span = lifetime.span.to(input.span.shrink_to_hi());
1409                             remove_use = Some(
1410                                 self.tcx
1411                                     .sess
1412                                     .source_map()
1413                                     .span_until_non_whitespace(lt_through_ty_span),
1414                             );
1415                             break;
1416                         }
1417                     }
1418                     hir::TyKind::Path(ref qpath) => {
1419                         if let QPath::Resolved(_, path) = qpath {
1420                             let last_segment = &path.segments[path.segments.len() - 1];
1421                             let generics = last_segment.generic_args();
1422                             for arg in generics.args.iter() {
1423                                 if let GenericArg::Lifetime(lt) = arg {
1424                                     if lt.name.ident() == name {
1425                                         elide_use = Some(lt.span);
1426                                         break;
1427                                     }
1428                                 }
1429                             }
1430                             break;
1431                         }
1432                     }
1433                     _ => {}
1434                 }
1435             }
1436         };
1437         if let Node::Lifetime(hir_lifetime) = self.tcx.hir().get(lifetime.hir_id) {
1438             if let Some(parent) =
1439                 self.tcx.hir().find(self.tcx.hir().get_parent_item(hir_lifetime.hir_id))
1440             {
1441                 match parent {
1442                     Node::Item(item) => {
1443                         if let hir::ItemKind::Fn(sig, _, _) = &item.kind {
1444                             find_arg_use_span(sig.decl.inputs);
1445                         }
1446                     }
1447                     Node::ImplItem(impl_item) => {
1448                         if let hir::ImplItemKind::Method(sig, _) = &impl_item.kind {
1449                             find_arg_use_span(sig.decl.inputs);
1450                         }
1451                     }
1452                     _ => {}
1453                 }
1454             }
1455         }
1456
1457         let msg = "elide the single-use lifetime";
1458         match (remove_decl, remove_use, elide_use) {
1459             (Some(decl_span), Some(use_span), None) => {
1460                 // if both declaration and use deletion spans start at the same
1461                 // place ("start at" because the latter includes trailing
1462                 // whitespace), then this is an in-band lifetime
1463                 if decl_span.shrink_to_lo() == use_span.shrink_to_lo() {
1464                     err.span_suggestion(
1465                         use_span,
1466                         msg,
1467                         String::new(),
1468                         Applicability::MachineApplicable,
1469                     );
1470                 } else {
1471                     err.multipart_suggestion(
1472                         msg,
1473                         vec![(decl_span, String::new()), (use_span, String::new())],
1474                         Applicability::MachineApplicable,
1475                     );
1476                 }
1477             }
1478             (Some(decl_span), None, Some(use_span)) => {
1479                 err.multipart_suggestion(
1480                     msg,
1481                     vec![(decl_span, String::new()), (use_span, "'_".to_owned())],
1482                     Applicability::MachineApplicable,
1483                 );
1484             }
1485             _ => {}
1486         }
1487     }
1488
1489     fn check_uses_for_lifetimes_defined_by_scope(&mut self) {
1490         let defined_by = match self.scope {
1491             Scope::Binder { lifetimes, .. } => lifetimes,
1492             _ => {
1493                 debug!("check_uses_for_lifetimes_defined_by_scope: not in a binder scope");
1494                 return;
1495             }
1496         };
1497
1498         let mut def_ids: Vec<_> = defined_by
1499             .values()
1500             .flat_map(|region| match region {
1501                 Region::EarlyBound(_, def_id, _)
1502                 | Region::LateBound(_, def_id, _)
1503                 | Region::Free(_, def_id) => Some(*def_id),
1504
1505                 Region::LateBoundAnon(..) | Region::Static => None,
1506             })
1507             .collect();
1508
1509         // ensure that we issue lints in a repeatable order
1510         def_ids.sort_by_cached_key(|&def_id| self.tcx.def_path_hash(def_id));
1511
1512         for def_id in def_ids {
1513             debug!("check_uses_for_lifetimes_defined_by_scope: def_id = {:?}", def_id);
1514
1515             let lifetimeuseset = self.lifetime_uses.remove(&def_id);
1516
1517             debug!(
1518                 "check_uses_for_lifetimes_defined_by_scope: lifetimeuseset = {:?}",
1519                 lifetimeuseset
1520             );
1521
1522             match lifetimeuseset {
1523                 Some(LifetimeUseSet::One(lifetime)) => {
1524                     let hir_id = self.tcx.hir().as_local_hir_id(def_id).unwrap();
1525                     debug!("hir id first={:?}", hir_id);
1526                     if let Some((id, span, name)) = match self.tcx.hir().get(hir_id) {
1527                         Node::Lifetime(hir_lifetime) => Some((
1528                             hir_lifetime.hir_id,
1529                             hir_lifetime.span,
1530                             hir_lifetime.name.ident(),
1531                         )),
1532                         Node::GenericParam(param) => {
1533                             Some((param.hir_id, param.span, param.name.ident()))
1534                         }
1535                         _ => None,
1536                     } {
1537                         debug!("id = {:?} span = {:?} name = {:?}", id, span, name);
1538                         if name.name == kw::UnderscoreLifetime {
1539                             continue;
1540                         }
1541
1542                         if let Some(parent_def_id) = self.tcx.parent(def_id) {
1543                             if let Some(parent_hir_id) =
1544                                 self.tcx.hir().as_local_hir_id(parent_def_id)
1545                             {
1546                                 // lifetimes in `derive` expansions don't count (Issue #53738)
1547                                 if self
1548                                     .tcx
1549                                     .hir()
1550                                     .attrs(parent_hir_id)
1551                                     .iter()
1552                                     .any(|attr| attr.check_name(sym::automatically_derived))
1553                                 {
1554                                     continue;
1555                                 }
1556                             }
1557                         }
1558
1559                         let mut err = self.tcx.struct_span_lint_hir(
1560                             lint::builtin::SINGLE_USE_LIFETIMES,
1561                             id,
1562                             span,
1563                             &format!("lifetime parameter `{}` only used once", name),
1564                         );
1565
1566                         if span == lifetime.span {
1567                             // spans are the same for in-band lifetime declarations
1568                             err.span_label(span, "this lifetime is only used here");
1569                         } else {
1570                             err.span_label(span, "this lifetime...");
1571                             err.span_label(lifetime.span, "...is used only here");
1572                         }
1573                         self.suggest_eliding_single_use_lifetime(&mut err, def_id, lifetime);
1574                         err.emit();
1575                     }
1576                 }
1577                 Some(LifetimeUseSet::Many) => {
1578                     debug!("not one use lifetime");
1579                 }
1580                 None => {
1581                     let hir_id = self.tcx.hir().as_local_hir_id(def_id).unwrap();
1582                     if let Some((id, span, name)) = match self.tcx.hir().get(hir_id) {
1583                         Node::Lifetime(hir_lifetime) => Some((
1584                             hir_lifetime.hir_id,
1585                             hir_lifetime.span,
1586                             hir_lifetime.name.ident(),
1587                         )),
1588                         Node::GenericParam(param) => {
1589                             Some((param.hir_id, param.span, param.name.ident()))
1590                         }
1591                         _ => None,
1592                     } {
1593                         debug!("id ={:?} span = {:?} name = {:?}", id, span, name);
1594                         let mut err = self.tcx.struct_span_lint_hir(
1595                             lint::builtin::UNUSED_LIFETIMES,
1596                             id,
1597                             span,
1598                             &format!("lifetime parameter `{}` never used", name),
1599                         );
1600                         if let Some(parent_def_id) = self.tcx.parent(def_id) {
1601                             if let Some(generics) = self.tcx.hir().get_generics(parent_def_id) {
1602                                 let unused_lt_span = self.lifetime_deletion_span(name, generics);
1603                                 if let Some(span) = unused_lt_span {
1604                                     err.span_suggestion(
1605                                         span,
1606                                         "elide the unused lifetime",
1607                                         String::new(),
1608                                         Applicability::MachineApplicable,
1609                                     );
1610                                 }
1611                             }
1612                         }
1613                         err.emit();
1614                     }
1615                 }
1616             }
1617         }
1618     }
1619
1620     /// Visits self by adding a scope and handling recursive walk over the contents with `walk`.
1621     ///
1622     /// Handles visiting fns and methods. These are a bit complicated because we must distinguish
1623     /// early- vs late-bound lifetime parameters. We do this by checking which lifetimes appear
1624     /// within type bounds; those are early bound lifetimes, and the rest are late bound.
1625     ///
1626     /// For example:
1627     ///
1628     ///    fn foo<'a,'b,'c,T:Trait<'b>>(...)
1629     ///
1630     /// Here `'a` and `'c` are late bound but `'b` is early bound. Note that early- and late-bound
1631     /// lifetimes may be interspersed together.
1632     ///
1633     /// If early bound lifetimes are present, we separate them into their own list (and likewise
1634     /// for late bound). They will be numbered sequentially, starting from the lowest index that is
1635     /// already in scope (for a fn item, that will be 0, but for a method it might not be). Late
1636     /// bound lifetimes are resolved by name and associated with a binder ID (`binder_id`), so the
1637     /// ordering is not important there.
1638     fn visit_early_late<F>(
1639         &mut self,
1640         parent_id: Option<hir::HirId>,
1641         decl: &'tcx hir::FnDecl<'tcx>,
1642         generics: &'tcx hir::Generics<'tcx>,
1643         walk: F,
1644     ) where
1645         F: for<'b, 'c> FnOnce(&'b mut LifetimeContext<'c, 'tcx>),
1646     {
1647         insert_late_bound_lifetimes(self.map, decl, generics);
1648
1649         // Find the start of nested early scopes, e.g., in methods.
1650         let mut index = 0;
1651         if let Some(parent_id) = parent_id {
1652             let parent = self.tcx.hir().expect_item(parent_id);
1653             if sub_items_have_self_param(&parent.kind) {
1654                 index += 1; // Self comes before lifetimes
1655             }
1656             match parent.kind {
1657                 hir::ItemKind::Trait(_, _, ref generics, ..)
1658                 | hir::ItemKind::Impl { ref generics, .. } => {
1659                     index += generics.params.len() as u32;
1660                 }
1661                 _ => {}
1662             }
1663         }
1664
1665         let mut non_lifetime_count = 0;
1666         let lifetimes = generics
1667             .params
1668             .iter()
1669             .filter_map(|param| match param.kind {
1670                 GenericParamKind::Lifetime { .. } => {
1671                     if self.map.late_bound.contains(&param.hir_id) {
1672                         Some(Region::late(&self.tcx.hir(), param))
1673                     } else {
1674                         Some(Region::early(&self.tcx.hir(), &mut index, param))
1675                     }
1676                 }
1677                 GenericParamKind::Type { .. } | GenericParamKind::Const { .. } => {
1678                     non_lifetime_count += 1;
1679                     None
1680                 }
1681             })
1682             .collect();
1683         let next_early_index = index + non_lifetime_count;
1684
1685         let scope = Scope::Binder {
1686             lifetimes,
1687             next_early_index,
1688             s: self.scope,
1689             opaque_type_parent: true,
1690             track_lifetime_uses: false,
1691         };
1692         self.with(scope, move |old_scope, this| {
1693             this.check_lifetime_params(old_scope, &generics.params);
1694             this.hack(walk); // FIXME(#37666) workaround in place of `walk(this)`
1695         });
1696     }
1697
1698     fn next_early_index_helper(&self, only_opaque_type_parent: bool) -> u32 {
1699         let mut scope = self.scope;
1700         loop {
1701             match *scope {
1702                 Scope::Root => return 0,
1703
1704                 Scope::Binder { next_early_index, opaque_type_parent, .. }
1705                     if (!only_opaque_type_parent || opaque_type_parent) =>
1706                 {
1707                     return next_early_index;
1708                 }
1709
1710                 Scope::Binder { s, .. }
1711                 | Scope::Body { s, .. }
1712                 | Scope::Elision { s, .. }
1713                 | Scope::ObjectLifetimeDefault { s, .. } => scope = s,
1714             }
1715         }
1716     }
1717
1718     /// Returns the next index one would use for an early-bound-region
1719     /// if extending the current scope.
1720     fn next_early_index(&self) -> u32 {
1721         self.next_early_index_helper(true)
1722     }
1723
1724     /// Returns the next index one would use for an `impl Trait` that
1725     /// is being converted into an opaque type alias `impl Trait`. This will be the
1726     /// next early index from the enclosing item, for the most
1727     /// part. See the `opaque_type_parent` field for more info.
1728     fn next_early_index_for_opaque_type(&self) -> u32 {
1729         self.next_early_index_helper(false)
1730     }
1731
1732     fn resolve_lifetime_ref(&mut self, lifetime_ref: &'tcx hir::Lifetime) {
1733         debug!("resolve_lifetime_ref(lifetime_ref={:?})", lifetime_ref);
1734
1735         // If we've already reported an error, just ignore `lifetime_ref`.
1736         if let LifetimeName::Error = lifetime_ref.name {
1737             return;
1738         }
1739
1740         // Walk up the scope chain, tracking the number of fn scopes
1741         // that we pass through, until we find a lifetime with the
1742         // given name or we run out of scopes.
1743         // search.
1744         let mut late_depth = 0;
1745         let mut scope = self.scope;
1746         let mut outermost_body = None;
1747         let result = loop {
1748             match *scope {
1749                 Scope::Body { id, s } => {
1750                     outermost_body = Some(id);
1751                     scope = s;
1752                 }
1753
1754                 Scope::Root => {
1755                     break None;
1756                 }
1757
1758                 Scope::Binder { ref lifetimes, s, .. } => {
1759                     match lifetime_ref.name {
1760                         LifetimeName::Param(param_name) => {
1761                             if let Some(&def) = lifetimes.get(&param_name.modern()) {
1762                                 break Some(def.shifted(late_depth));
1763                             }
1764                         }
1765                         _ => bug!("expected LifetimeName::Param"),
1766                     }
1767
1768                     late_depth += 1;
1769                     scope = s;
1770                 }
1771
1772                 Scope::Elision { s, .. } | Scope::ObjectLifetimeDefault { s, .. } => {
1773                     scope = s;
1774                 }
1775             }
1776         };
1777
1778         if let Some(mut def) = result {
1779             if let Region::EarlyBound(..) = def {
1780                 // Do not free early-bound regions, only late-bound ones.
1781             } else if let Some(body_id) = outermost_body {
1782                 let fn_id = self.tcx.hir().body_owner(body_id);
1783                 match self.tcx.hir().get(fn_id) {
1784                     Node::Item(&hir::Item { kind: hir::ItemKind::Fn(..), .. })
1785                     | Node::TraitItem(&hir::TraitItem {
1786                         kind: hir::TraitItemKind::Method(..),
1787                         ..
1788                     })
1789                     | Node::ImplItem(&hir::ImplItem {
1790                         kind: hir::ImplItemKind::Method(..), ..
1791                     }) => {
1792                         let scope = self.tcx.hir().local_def_id(fn_id);
1793                         def = Region::Free(scope, def.id().unwrap());
1794                     }
1795                     _ => {}
1796                 }
1797             }
1798
1799             // Check for fn-syntax conflicts with in-band lifetime definitions
1800             if self.is_in_fn_syntax {
1801                 match def {
1802                     Region::EarlyBound(_, _, LifetimeDefOrigin::InBand)
1803                     | Region::LateBound(_, _, LifetimeDefOrigin::InBand) => {
1804                         struct_span_err!(
1805                             self.tcx.sess,
1806                             lifetime_ref.span,
1807                             E0687,
1808                             "lifetimes used in `fn` or `Fn` syntax must be \
1809                              explicitly declared using `<...>` binders"
1810                         )
1811                         .span_label(lifetime_ref.span, "in-band lifetime definition")
1812                         .emit();
1813                     }
1814
1815                     Region::Static
1816                     | Region::EarlyBound(_, _, LifetimeDefOrigin::ExplicitOrElided)
1817                     | Region::LateBound(_, _, LifetimeDefOrigin::ExplicitOrElided)
1818                     | Region::EarlyBound(_, _, LifetimeDefOrigin::Error)
1819                     | Region::LateBound(_, _, LifetimeDefOrigin::Error)
1820                     | Region::LateBoundAnon(..)
1821                     | Region::Free(..) => {}
1822                 }
1823             }
1824
1825             self.insert_lifetime(lifetime_ref, def);
1826         } else {
1827             let mut err = struct_span_err!(
1828                 self.tcx.sess,
1829                 lifetime_ref.span,
1830                 E0261,
1831                 "use of undeclared lifetime name `{}`",
1832                 lifetime_ref
1833             );
1834             err.span_label(lifetime_ref.span, "undeclared lifetime");
1835             if !self.is_in_fn_syntax {
1836                 for generics in &self.missing_named_lifetime_spots {
1837                     let (span, sugg) = match &generics.params {
1838                         [] => (generics.span, format!("<{}>", lifetime_ref)),
1839                         [param, ..] => (param.span.shrink_to_lo(), format!("{}, ", lifetime_ref)),
1840                     };
1841                     err.span_suggestion(
1842                         span,
1843                         &format!("consider introducing lifetime `{}` here", lifetime_ref),
1844                         sugg,
1845                         Applicability::MaybeIncorrect,
1846                     );
1847                 }
1848             }
1849             err.emit();
1850         }
1851     }
1852
1853     fn visit_segment_args(
1854         &mut self,
1855         res: Res,
1856         depth: usize,
1857         generic_args: &'tcx hir::GenericArgs<'tcx>,
1858     ) {
1859         debug!(
1860             "visit_segment_args(res={:?}, depth={:?}, generic_args={:?})",
1861             res, depth, generic_args,
1862         );
1863
1864         if generic_args.parenthesized {
1865             let was_in_fn_syntax = self.is_in_fn_syntax;
1866             self.is_in_fn_syntax = true;
1867             self.visit_fn_like_elision(generic_args.inputs(), Some(generic_args.bindings[0].ty()));
1868             self.is_in_fn_syntax = was_in_fn_syntax;
1869             return;
1870         }
1871
1872         let mut elide_lifetimes = true;
1873         let lifetimes = generic_args
1874             .args
1875             .iter()
1876             .filter_map(|arg| match arg {
1877                 hir::GenericArg::Lifetime(lt) => {
1878                     if !lt.is_elided() {
1879                         elide_lifetimes = false;
1880                     }
1881                     Some(lt)
1882                 }
1883                 _ => None,
1884             })
1885             .collect();
1886         if elide_lifetimes {
1887             self.resolve_elided_lifetimes(lifetimes);
1888         } else {
1889             lifetimes.iter().for_each(|lt| self.visit_lifetime(lt));
1890         }
1891
1892         // Figure out if this is a type/trait segment,
1893         // which requires object lifetime defaults.
1894         let parent_def_id = |this: &mut Self, def_id: DefId| {
1895             let def_key = this.tcx.def_key(def_id);
1896             DefId { krate: def_id.krate, index: def_key.parent.expect("missing parent") }
1897         };
1898         let type_def_id = match res {
1899             Res::Def(DefKind::AssocTy, def_id) if depth == 1 => Some(parent_def_id(self, def_id)),
1900             Res::Def(DefKind::Variant, def_id) if depth == 0 => Some(parent_def_id(self, def_id)),
1901             Res::Def(DefKind::Struct, def_id)
1902             | Res::Def(DefKind::Union, def_id)
1903             | Res::Def(DefKind::Enum, def_id)
1904             | Res::Def(DefKind::TyAlias, def_id)
1905             | Res::Def(DefKind::Trait, def_id)
1906                 if depth == 0 =>
1907             {
1908                 Some(def_id)
1909             }
1910             _ => None,
1911         };
1912
1913         debug!("visit_segment_args: type_def_id={:?}", type_def_id);
1914
1915         // Compute a vector of defaults, one for each type parameter,
1916         // per the rules given in RFCs 599 and 1156. Example:
1917         //
1918         // ```rust
1919         // struct Foo<'a, T: 'a, U> { }
1920         // ```
1921         //
1922         // If you have `Foo<'x, dyn Bar, dyn Baz>`, we want to default
1923         // `dyn Bar` to `dyn Bar + 'x` (because of the `T: 'a` bound)
1924         // and `dyn Baz` to `dyn Baz + 'static` (because there is no
1925         // such bound).
1926         //
1927         // Therefore, we would compute `object_lifetime_defaults` to a
1928         // vector like `['x, 'static]`. Note that the vector only
1929         // includes type parameters.
1930         let object_lifetime_defaults = type_def_id.map_or(vec![], |def_id| {
1931             let in_body = {
1932                 let mut scope = self.scope;
1933                 loop {
1934                     match *scope {
1935                         Scope::Root => break false,
1936
1937                         Scope::Body { .. } => break true,
1938
1939                         Scope::Binder { s, .. }
1940                         | Scope::Elision { s, .. }
1941                         | Scope::ObjectLifetimeDefault { s, .. } => {
1942                             scope = s;
1943                         }
1944                     }
1945                 }
1946             };
1947
1948             let map = &self.map;
1949             let unsubst = if let Some(id) = self.tcx.hir().as_local_hir_id(def_id) {
1950                 &map.object_lifetime_defaults[&id]
1951             } else {
1952                 let tcx = self.tcx;
1953                 self.xcrate_object_lifetime_defaults.entry(def_id).or_insert_with(|| {
1954                     tcx.generics_of(def_id)
1955                         .params
1956                         .iter()
1957                         .filter_map(|param| match param.kind {
1958                             GenericParamDefKind::Type { object_lifetime_default, .. } => {
1959                                 Some(object_lifetime_default)
1960                             }
1961                             GenericParamDefKind::Lifetime | GenericParamDefKind::Const => None,
1962                         })
1963                         .collect()
1964                 })
1965             };
1966             debug!("visit_segment_args: unsubst={:?}", unsubst);
1967             unsubst
1968                 .iter()
1969                 .map(|set| match *set {
1970                     Set1::Empty => {
1971                         if in_body {
1972                             None
1973                         } else {
1974                             Some(Region::Static)
1975                         }
1976                     }
1977                     Set1::One(r) => {
1978                         let lifetimes = generic_args.args.iter().filter_map(|arg| match arg {
1979                             GenericArg::Lifetime(lt) => Some(lt),
1980                             _ => None,
1981                         });
1982                         r.subst(lifetimes, map)
1983                     }
1984                     Set1::Many => None,
1985                 })
1986                 .collect()
1987         });
1988
1989         debug!("visit_segment_args: object_lifetime_defaults={:?}", object_lifetime_defaults);
1990
1991         let mut i = 0;
1992         for arg in generic_args.args {
1993             match arg {
1994                 GenericArg::Lifetime(_) => {}
1995                 GenericArg::Type(ty) => {
1996                     if let Some(&lt) = object_lifetime_defaults.get(i) {
1997                         let scope = Scope::ObjectLifetimeDefault { lifetime: lt, s: self.scope };
1998                         self.with(scope, |_, this| this.visit_ty(ty));
1999                     } else {
2000                         self.visit_ty(ty);
2001                     }
2002                     i += 1;
2003                 }
2004                 GenericArg::Const(ct) => {
2005                     self.visit_anon_const(&ct.value);
2006                 }
2007             }
2008         }
2009
2010         // Hack: when resolving the type `XX` in binding like `dyn
2011         // Foo<'b, Item = XX>`, the current object-lifetime default
2012         // would be to examine the trait `Foo` to check whether it has
2013         // a lifetime bound declared on `Item`. e.g., if `Foo` is
2014         // declared like so, then the default object lifetime bound in
2015         // `XX` should be `'b`:
2016         //
2017         // ```rust
2018         // trait Foo<'a> {
2019         //   type Item: 'a;
2020         // }
2021         // ```
2022         //
2023         // but if we just have `type Item;`, then it would be
2024         // `'static`. However, we don't get all of this logic correct.
2025         //
2026         // Instead, we do something hacky: if there are no lifetime parameters
2027         // to the trait, then we simply use a default object lifetime
2028         // bound of `'static`, because there is no other possibility. On the other hand,
2029         // if there ARE lifetime parameters, then we require the user to give an
2030         // explicit bound for now.
2031         //
2032         // This is intended to leave room for us to implement the
2033         // correct behavior in the future.
2034         let has_lifetime_parameter = generic_args.args.iter().any(|arg| match arg {
2035             GenericArg::Lifetime(_) => true,
2036             _ => false,
2037         });
2038
2039         // Resolve lifetimes found in the type `XX` from `Item = XX` bindings.
2040         for b in generic_args.bindings {
2041             let scope = Scope::ObjectLifetimeDefault {
2042                 lifetime: if has_lifetime_parameter { None } else { Some(Region::Static) },
2043                 s: self.scope,
2044             };
2045             self.with(scope, |_, this| this.visit_assoc_type_binding(b));
2046         }
2047     }
2048
2049     fn visit_fn_like_elision(
2050         &mut self,
2051         inputs: &'tcx [hir::Ty<'tcx>],
2052         output: Option<&'tcx hir::Ty<'tcx>>,
2053     ) {
2054         debug!("visit_fn_like_elision: enter");
2055         let mut arg_elide = Elide::FreshLateAnon(Cell::new(0));
2056         let arg_scope = Scope::Elision { elide: arg_elide.clone(), s: self.scope };
2057         self.with(arg_scope, |_, this| {
2058             for input in inputs {
2059                 this.visit_ty(input);
2060             }
2061             match *this.scope {
2062                 Scope::Elision { ref elide, .. } => {
2063                     arg_elide = elide.clone();
2064                 }
2065                 _ => bug!(),
2066             }
2067         });
2068
2069         let output = match output {
2070             Some(ty) => ty,
2071             None => return,
2072         };
2073
2074         debug!("visit_fn_like_elision: determine output");
2075
2076         // Figure out if there's a body we can get argument names from,
2077         // and whether there's a `self` argument (treated specially).
2078         let mut assoc_item_kind = None;
2079         let mut impl_self = None;
2080         let parent = self.tcx.hir().get_parent_node(output.hir_id);
2081         let body = match self.tcx.hir().get(parent) {
2082             // `fn` definitions and methods.
2083             Node::Item(&hir::Item { kind: hir::ItemKind::Fn(.., body), .. }) => Some(body),
2084
2085             Node::TraitItem(&hir::TraitItem {
2086                 kind: hir::TraitItemKind::Method(_, ref m), ..
2087             }) => {
2088                 if let hir::ItemKind::Trait(.., ref trait_items) =
2089                     self.tcx.hir().expect_item(self.tcx.hir().get_parent_item(parent)).kind
2090                 {
2091                     assoc_item_kind =
2092                         trait_items.iter().find(|ti| ti.id.hir_id == parent).map(|ti| ti.kind);
2093                 }
2094                 match *m {
2095                     hir::TraitMethod::Required(_) => None,
2096                     hir::TraitMethod::Provided(body) => Some(body),
2097                 }
2098             }
2099
2100             Node::ImplItem(&hir::ImplItem { kind: hir::ImplItemKind::Method(_, body), .. }) => {
2101                 if let hir::ItemKind::Impl { ref self_ty, ref items, .. } =
2102                     self.tcx.hir().expect_item(self.tcx.hir().get_parent_item(parent)).kind
2103                 {
2104                     impl_self = Some(self_ty);
2105                     assoc_item_kind =
2106                         items.iter().find(|ii| ii.id.hir_id == parent).map(|ii| ii.kind);
2107                 }
2108                 Some(body)
2109             }
2110
2111             // Foreign functions, `fn(...) -> R` and `Trait(...) -> R` (both types and bounds).
2112             Node::ForeignItem(_) | Node::Ty(_) | Node::TraitRef(_) => None,
2113             // Everything else (only closures?) doesn't
2114             // actually enjoy elision in return types.
2115             _ => {
2116                 self.visit_ty(output);
2117                 return;
2118             }
2119         };
2120
2121         let has_self = match assoc_item_kind {
2122             Some(hir::AssocItemKind::Method { has_self }) => has_self,
2123             _ => false,
2124         };
2125
2126         // In accordance with the rules for lifetime elision, we can determine
2127         // what region to use for elision in the output type in two ways.
2128         // First (determined here), if `self` is by-reference, then the
2129         // implied output region is the region of the self parameter.
2130         if has_self {
2131             struct SelfVisitor<'a> {
2132                 map: &'a NamedRegionMap,
2133                 impl_self: Option<&'a hir::TyKind<'a>>,
2134                 lifetime: Set1<Region>,
2135             }
2136
2137             impl SelfVisitor<'_> {
2138                 // Look for `self: &'a Self` - also desugared from `&'a self`,
2139                 // and if that matches, use it for elision and return early.
2140                 fn is_self_ty(&self, res: Res) -> bool {
2141                     if let Res::SelfTy(..) = res {
2142                         return true;
2143                     }
2144
2145                     // Can't always rely on literal (or implied) `Self` due
2146                     // to the way elision rules were originally specified.
2147                     if let Some(&hir::TyKind::Path(hir::QPath::Resolved(None, ref path))) =
2148                         self.impl_self
2149                     {
2150                         match path.res {
2151                             // Whitelist the types that unambiguously always
2152                             // result in the same type constructor being used
2153                             // (it can't differ between `Self` and `self`).
2154                             Res::Def(DefKind::Struct, _)
2155                             | Res::Def(DefKind::Union, _)
2156                             | Res::Def(DefKind::Enum, _)
2157                             | Res::PrimTy(_) => return res == path.res,
2158                             _ => {}
2159                         }
2160                     }
2161
2162                     false
2163                 }
2164             }
2165
2166             impl<'a> Visitor<'a> for SelfVisitor<'a> {
2167                 type Map = Map<'a>;
2168
2169                 fn nested_visit_map(&mut self) -> NestedVisitorMap<'_, Self::Map> {
2170                     NestedVisitorMap::None
2171                 }
2172
2173                 fn visit_ty(&mut self, ty: &'a hir::Ty<'a>) {
2174                     if let hir::TyKind::Rptr(lifetime_ref, ref mt) = ty.kind {
2175                         if let hir::TyKind::Path(hir::QPath::Resolved(None, ref path)) = mt.ty.kind
2176                         {
2177                             if self.is_self_ty(path.res) {
2178                                 if let Some(lifetime) = self.map.defs.get(&lifetime_ref.hir_id) {
2179                                     self.lifetime.insert(*lifetime);
2180                                 }
2181                             }
2182                         }
2183                     }
2184                     intravisit::walk_ty(self, ty)
2185                 }
2186             }
2187
2188             let mut visitor = SelfVisitor {
2189                 map: self.map,
2190                 impl_self: impl_self.map(|ty| &ty.kind),
2191                 lifetime: Set1::Empty,
2192             };
2193             visitor.visit_ty(&inputs[0]);
2194             if let Set1::One(lifetime) = visitor.lifetime {
2195                 let scope = Scope::Elision { elide: Elide::Exact(lifetime), s: self.scope };
2196                 self.with(scope, |_, this| this.visit_ty(output));
2197                 return;
2198             }
2199         }
2200
2201         // Second, if there was exactly one lifetime (either a substitution or a
2202         // reference) in the arguments, then any anonymous regions in the output
2203         // have that lifetime.
2204         let mut possible_implied_output_region = None;
2205         let mut lifetime_count = 0;
2206         let arg_lifetimes = inputs
2207             .iter()
2208             .enumerate()
2209             .skip(has_self as usize)
2210             .map(|(i, input)| {
2211                 let mut gather = GatherLifetimes {
2212                     map: self.map,
2213                     outer_index: ty::INNERMOST,
2214                     have_bound_regions: false,
2215                     lifetimes: Default::default(),
2216                 };
2217                 gather.visit_ty(input);
2218
2219                 lifetime_count += gather.lifetimes.len();
2220
2221                 if lifetime_count == 1 && gather.lifetimes.len() == 1 {
2222                     // there's a chance that the unique lifetime of this
2223                     // iteration will be the appropriate lifetime for output
2224                     // parameters, so lets store it.
2225                     possible_implied_output_region = gather.lifetimes.iter().cloned().next();
2226                 }
2227
2228                 ElisionFailureInfo {
2229                     parent: body,
2230                     index: i,
2231                     lifetime_count: gather.lifetimes.len(),
2232                     have_bound_regions: gather.have_bound_regions,
2233                 }
2234             })
2235             .collect();
2236
2237         let elide = if lifetime_count == 1 {
2238             Elide::Exact(possible_implied_output_region.unwrap())
2239         } else {
2240             Elide::Error(arg_lifetimes)
2241         };
2242
2243         debug!("visit_fn_like_elision: elide={:?}", elide);
2244
2245         let scope = Scope::Elision { elide, s: self.scope };
2246         self.with(scope, |_, this| this.visit_ty(output));
2247         debug!("visit_fn_like_elision: exit");
2248
2249         struct GatherLifetimes<'a> {
2250             map: &'a NamedRegionMap,
2251             outer_index: ty::DebruijnIndex,
2252             have_bound_regions: bool,
2253             lifetimes: FxHashSet<Region>,
2254         }
2255
2256         impl<'v, 'a> Visitor<'v> for GatherLifetimes<'a> {
2257             type Map = Map<'v>;
2258
2259             fn nested_visit_map(&mut self) -> NestedVisitorMap<'_, Self::Map> {
2260                 NestedVisitorMap::None
2261             }
2262
2263             fn visit_ty(&mut self, ty: &hir::Ty<'_>) {
2264                 if let hir::TyKind::BareFn(_) = ty.kind {
2265                     self.outer_index.shift_in(1);
2266                 }
2267                 match ty.kind {
2268                     hir::TyKind::TraitObject(bounds, ref lifetime) => {
2269                         for bound in bounds {
2270                             self.visit_poly_trait_ref(bound, hir::TraitBoundModifier::None);
2271                         }
2272
2273                         // Stay on the safe side and don't include the object
2274                         // lifetime default (which may not end up being used).
2275                         if !lifetime.is_elided() {
2276                             self.visit_lifetime(lifetime);
2277                         }
2278                     }
2279                     _ => {
2280                         intravisit::walk_ty(self, ty);
2281                     }
2282                 }
2283                 if let hir::TyKind::BareFn(_) = ty.kind {
2284                     self.outer_index.shift_out(1);
2285                 }
2286             }
2287
2288             fn visit_generic_param(&mut self, param: &hir::GenericParam<'_>) {
2289                 if let hir::GenericParamKind::Lifetime { .. } = param.kind {
2290                     // FIXME(eddyb) Do we want this? It only makes a difference
2291                     // if this `for<'a>` lifetime parameter is never used.
2292                     self.have_bound_regions = true;
2293                 }
2294
2295                 intravisit::walk_generic_param(self, param);
2296             }
2297
2298             fn visit_poly_trait_ref(
2299                 &mut self,
2300                 trait_ref: &hir::PolyTraitRef<'_>,
2301                 modifier: hir::TraitBoundModifier,
2302             ) {
2303                 self.outer_index.shift_in(1);
2304                 intravisit::walk_poly_trait_ref(self, trait_ref, modifier);
2305                 self.outer_index.shift_out(1);
2306             }
2307
2308             fn visit_lifetime(&mut self, lifetime_ref: &hir::Lifetime) {
2309                 if let Some(&lifetime) = self.map.defs.get(&lifetime_ref.hir_id) {
2310                     match lifetime {
2311                         Region::LateBound(debruijn, _, _) | Region::LateBoundAnon(debruijn, _)
2312                             if debruijn < self.outer_index =>
2313                         {
2314                             self.have_bound_regions = true;
2315                         }
2316                         _ => {
2317                             self.lifetimes.insert(lifetime.shifted_out_to_binder(self.outer_index));
2318                         }
2319                     }
2320                 }
2321             }
2322         }
2323     }
2324
2325     fn resolve_elided_lifetimes(&mut self, lifetime_refs: Vec<&'tcx hir::Lifetime>) {
2326         debug!("resolve_elided_lifetimes(lifetime_refs={:?})", lifetime_refs);
2327
2328         if lifetime_refs.is_empty() {
2329             return;
2330         }
2331
2332         let span = lifetime_refs[0].span;
2333         let mut late_depth = 0;
2334         let mut scope = self.scope;
2335         let mut lifetime_names = FxHashSet::default();
2336         let error = loop {
2337             match *scope {
2338                 // Do not assign any resolution, it will be inferred.
2339                 Scope::Body { .. } => return,
2340
2341                 Scope::Root => break None,
2342
2343                 Scope::Binder { s, ref lifetimes, .. } => {
2344                     // collect named lifetimes for suggestions
2345                     for name in lifetimes.keys() {
2346                         if let hir::ParamName::Plain(name) = name {
2347                             lifetime_names.insert(*name);
2348                         }
2349                     }
2350                     late_depth += 1;
2351                     scope = s;
2352                 }
2353
2354                 Scope::Elision { ref elide, ref s, .. } => {
2355                     let lifetime = match *elide {
2356                         Elide::FreshLateAnon(ref counter) => {
2357                             for lifetime_ref in lifetime_refs {
2358                                 let lifetime = Region::late_anon(counter).shifted(late_depth);
2359                                 self.insert_lifetime(lifetime_ref, lifetime);
2360                             }
2361                             return;
2362                         }
2363                         Elide::Exact(l) => l.shifted(late_depth),
2364                         Elide::Error(ref e) => {
2365                             if let Scope::Binder { ref lifetimes, .. } = s {
2366                                 // collect named lifetimes for suggestions
2367                                 for name in lifetimes.keys() {
2368                                     if let hir::ParamName::Plain(name) = name {
2369                                         lifetime_names.insert(*name);
2370                                     }
2371                                 }
2372                             }
2373                             break Some(e);
2374                         }
2375                     };
2376                     for lifetime_ref in lifetime_refs {
2377                         self.insert_lifetime(lifetime_ref, lifetime);
2378                     }
2379                     return;
2380                 }
2381
2382                 Scope::ObjectLifetimeDefault { s, .. } => {
2383                     scope = s;
2384                 }
2385             }
2386         };
2387
2388         let mut err = report_missing_lifetime_specifiers(self.tcx.sess, span, lifetime_refs.len());
2389         let mut add_label = true;
2390
2391         if let Some(params) = error {
2392             if lifetime_refs.len() == 1 {
2393                 add_label = add_label && self.report_elision_failure(&mut err, params, span);
2394             }
2395         }
2396         if add_label {
2397             add_missing_lifetime_specifiers_label(
2398                 &mut err,
2399                 span,
2400                 lifetime_refs.len(),
2401                 &lifetime_names,
2402                 self.tcx.sess.source_map().span_to_snippet(span).ok().as_ref().map(|s| s.as_str()),
2403                 &self.missing_named_lifetime_spots,
2404             );
2405         }
2406
2407         err.emit();
2408     }
2409
2410     fn suggest_lifetime(&self, db: &mut DiagnosticBuilder<'_>, span: Span, msg: &str) -> bool {
2411         match self.tcx.sess.source_map().span_to_snippet(span) {
2412             Ok(ref snippet) => {
2413                 let (sugg, applicability) = if snippet == "&" {
2414                     ("&'static ".to_owned(), Applicability::MachineApplicable)
2415                 } else if snippet == "'_" {
2416                     ("'static".to_owned(), Applicability::MachineApplicable)
2417                 } else {
2418                     (format!("{} + 'static", snippet), Applicability::MaybeIncorrect)
2419                 };
2420                 db.span_suggestion(span, msg, sugg, applicability);
2421                 false
2422             }
2423             Err(_) => {
2424                 db.help(msg);
2425                 true
2426             }
2427         }
2428     }
2429
2430     fn report_elision_failure(
2431         &mut self,
2432         db: &mut DiagnosticBuilder<'_>,
2433         params: &[ElisionFailureInfo],
2434         span: Span,
2435     ) -> bool {
2436         let mut m = String::new();
2437         let len = params.len();
2438
2439         let elided_params: Vec<_> =
2440             params.iter().cloned().filter(|info| info.lifetime_count > 0).collect();
2441
2442         let elided_len = elided_params.len();
2443
2444         for (i, info) in elided_params.into_iter().enumerate() {
2445             let ElisionFailureInfo { parent, index, lifetime_count: n, have_bound_regions } = info;
2446
2447             let help_name = if let Some(ident) =
2448                 parent.and_then(|body| self.tcx.hir().body(body).params[index].pat.simple_ident())
2449             {
2450                 format!("`{}`", ident)
2451             } else {
2452                 format!("argument {}", index + 1)
2453             };
2454
2455             m.push_str(
2456                 &(if n == 1 {
2457                     help_name
2458                 } else {
2459                     format!(
2460                         "one of {}'s {} {}lifetimes",
2461                         help_name,
2462                         n,
2463                         if have_bound_regions { "free " } else { "" }
2464                     )
2465                 })[..],
2466             );
2467
2468             if elided_len == 2 && i == 0 {
2469                 m.push_str(" or ");
2470             } else if i + 2 == elided_len {
2471                 m.push_str(", or ");
2472             } else if i != elided_len - 1 {
2473                 m.push_str(", ");
2474             }
2475         }
2476
2477         if len == 0 {
2478             db.help(
2479                 "this function's return type contains a borrowed value, \
2480                 but there is no value for it to be borrowed from",
2481             );
2482             self.suggest_lifetime(db, span, "consider giving it a 'static lifetime")
2483         } else if elided_len == 0 {
2484             db.help(
2485                 "this function's return type contains a borrowed value with \
2486                  an elided lifetime, but the lifetime cannot be derived from \
2487                  the arguments",
2488             );
2489             let msg = "consider giving it an explicit bounded or 'static lifetime";
2490             self.suggest_lifetime(db, span, msg)
2491         } else if elided_len == 1 {
2492             db.help(&format!(
2493                 "this function's return type contains a borrowed value, \
2494                 but the signature does not say which {} it is borrowed from",
2495                 m
2496             ));
2497             true
2498         } else {
2499             db.help(&format!(
2500                 "this function's return type contains a borrowed value, \
2501                 but the signature does not say whether it is borrowed from {}",
2502                 m
2503             ));
2504             true
2505         }
2506     }
2507
2508     fn resolve_object_lifetime_default(&mut self, lifetime_ref: &'tcx hir::Lifetime) {
2509         debug!("resolve_object_lifetime_default(lifetime_ref={:?})", lifetime_ref);
2510         let mut late_depth = 0;
2511         let mut scope = self.scope;
2512         let lifetime = loop {
2513             match *scope {
2514                 Scope::Binder { s, .. } => {
2515                     late_depth += 1;
2516                     scope = s;
2517                 }
2518
2519                 Scope::Root | Scope::Elision { .. } => break Region::Static,
2520
2521                 Scope::Body { .. } | Scope::ObjectLifetimeDefault { lifetime: None, .. } => return,
2522
2523                 Scope::ObjectLifetimeDefault { lifetime: Some(l), .. } => break l,
2524             }
2525         };
2526         self.insert_lifetime(lifetime_ref, lifetime.shifted(late_depth));
2527     }
2528
2529     fn check_lifetime_params(
2530         &mut self,
2531         old_scope: ScopeRef<'_>,
2532         params: &'tcx [hir::GenericParam<'tcx>],
2533     ) {
2534         let lifetimes: Vec<_> = params
2535             .iter()
2536             .filter_map(|param| match param.kind {
2537                 GenericParamKind::Lifetime { .. } => Some((param, param.name.modern())),
2538                 _ => None,
2539             })
2540             .collect();
2541         for (i, (lifetime_i, lifetime_i_name)) in lifetimes.iter().enumerate() {
2542             if let hir::ParamName::Plain(_) = lifetime_i_name {
2543                 let name = lifetime_i_name.ident().name;
2544                 if name == kw::UnderscoreLifetime || name == kw::StaticLifetime {
2545                     let mut err = struct_span_err!(
2546                         self.tcx.sess,
2547                         lifetime_i.span,
2548                         E0262,
2549                         "invalid lifetime parameter name: `{}`",
2550                         lifetime_i.name.ident(),
2551                     );
2552                     err.span_label(
2553                         lifetime_i.span,
2554                         format!("{} is a reserved lifetime name", name),
2555                     );
2556                     err.emit();
2557                 }
2558             }
2559
2560             // It is a hard error to shadow a lifetime within the same scope.
2561             for (lifetime_j, lifetime_j_name) in lifetimes.iter().skip(i + 1) {
2562                 if lifetime_i_name == lifetime_j_name {
2563                     struct_span_err!(
2564                         self.tcx.sess,
2565                         lifetime_j.span,
2566                         E0263,
2567                         "lifetime name `{}` declared twice in the same scope",
2568                         lifetime_j.name.ident()
2569                     )
2570                     .span_label(lifetime_j.span, "declared twice")
2571                     .span_label(lifetime_i.span, "previous declaration here")
2572                     .emit();
2573                 }
2574             }
2575
2576             // It is a soft error to shadow a lifetime within a parent scope.
2577             self.check_lifetime_param_for_shadowing(old_scope, &lifetime_i);
2578
2579             for bound in lifetime_i.bounds {
2580                 match bound {
2581                     hir::GenericBound::Outlives(ref lt) => match lt.name {
2582                         hir::LifetimeName::Underscore => self.tcx.sess.delay_span_bug(
2583                             lt.span,
2584                             "use of `'_` in illegal place, but not caught by lowering",
2585                         ),
2586                         hir::LifetimeName::Static => {
2587                             self.insert_lifetime(lt, Region::Static);
2588                             self.tcx
2589                                 .sess
2590                                 .struct_span_warn(
2591                                     lifetime_i.span.to(lt.span),
2592                                     &format!(
2593                                         "unnecessary lifetime parameter `{}`",
2594                                         lifetime_i.name.ident(),
2595                                     ),
2596                                 )
2597                                 .help(&format!(
2598                                     "you can use the `'static` lifetime directly, in place of `{}`",
2599                                     lifetime_i.name.ident(),
2600                                 ))
2601                                 .emit();
2602                         }
2603                         hir::LifetimeName::Param(_) | hir::LifetimeName::Implicit => {
2604                             self.resolve_lifetime_ref(lt);
2605                         }
2606                         hir::LifetimeName::ImplicitObjectLifetimeDefault => {
2607                             self.tcx.sess.delay_span_bug(
2608                                 lt.span,
2609                                 "lowering generated `ImplicitObjectLifetimeDefault` \
2610                                  outside of an object type",
2611                             )
2612                         }
2613                         hir::LifetimeName::Error => {
2614                             // No need to do anything, error already reported.
2615                         }
2616                     },
2617                     _ => bug!(),
2618                 }
2619             }
2620         }
2621     }
2622
2623     fn check_lifetime_param_for_shadowing(
2624         &self,
2625         mut old_scope: ScopeRef<'_>,
2626         param: &'tcx hir::GenericParam<'tcx>,
2627     ) {
2628         for label in &self.labels_in_fn {
2629             // FIXME (#24278): non-hygienic comparison
2630             if param.name.ident().name == label.name {
2631                 signal_shadowing_problem(
2632                     self.tcx,
2633                     label.name,
2634                     original_label(label.span),
2635                     shadower_lifetime(&param),
2636                 );
2637                 return;
2638             }
2639         }
2640
2641         loop {
2642             match *old_scope {
2643                 Scope::Body { s, .. }
2644                 | Scope::Elision { s, .. }
2645                 | Scope::ObjectLifetimeDefault { s, .. } => {
2646                     old_scope = s;
2647                 }
2648
2649                 Scope::Root => {
2650                     return;
2651                 }
2652
2653                 Scope::Binder { ref lifetimes, s, .. } => {
2654                     if let Some(&def) = lifetimes.get(&param.name.modern()) {
2655                         let hir_id = self.tcx.hir().as_local_hir_id(def.id().unwrap()).unwrap();
2656
2657                         signal_shadowing_problem(
2658                             self.tcx,
2659                             param.name.ident().name,
2660                             original_lifetime(self.tcx.hir().span(hir_id)),
2661                             shadower_lifetime(&param),
2662                         );
2663                         return;
2664                     }
2665
2666                     old_scope = s;
2667                 }
2668             }
2669         }
2670     }
2671
2672     /// Returns `true` if, in the current scope, replacing `'_` would be
2673     /// equivalent to a single-use lifetime.
2674     fn track_lifetime_uses(&self) -> bool {
2675         let mut scope = self.scope;
2676         loop {
2677             match *scope {
2678                 Scope::Root => break false,
2679
2680                 // Inside of items, it depends on the kind of item.
2681                 Scope::Binder { track_lifetime_uses, .. } => break track_lifetime_uses,
2682
2683                 // Inside a body, `'_` will use an inference variable,
2684                 // should be fine.
2685                 Scope::Body { .. } => break true,
2686
2687                 // A lifetime only used in a fn argument could as well
2688                 // be replaced with `'_`, as that would generate a
2689                 // fresh name, too.
2690                 Scope::Elision { elide: Elide::FreshLateAnon(_), .. } => break true,
2691
2692                 // In the return type or other such place, `'_` is not
2693                 // going to make a fresh name, so we cannot
2694                 // necessarily replace a single-use lifetime with
2695                 // `'_`.
2696                 Scope::Elision { elide: Elide::Exact(_), .. } => break false,
2697                 Scope::Elision { elide: Elide::Error(_), .. } => break false,
2698
2699                 Scope::ObjectLifetimeDefault { s, .. } => scope = s,
2700             }
2701         }
2702     }
2703
2704     fn insert_lifetime(&mut self, lifetime_ref: &'tcx hir::Lifetime, def: Region) {
2705         if lifetime_ref.hir_id == hir::DUMMY_HIR_ID {
2706             span_bug!(
2707                 lifetime_ref.span,
2708                 "lifetime reference not renumbered, \
2709                  probably a bug in syntax::fold"
2710             );
2711         }
2712
2713         debug!(
2714             "insert_lifetime: {} resolved to {:?} span={:?}",
2715             self.tcx.hir().node_to_string(lifetime_ref.hir_id),
2716             def,
2717             self.tcx.sess.source_map().span_to_string(lifetime_ref.span)
2718         );
2719         self.map.defs.insert(lifetime_ref.hir_id, def);
2720
2721         match def {
2722             Region::LateBoundAnon(..) | Region::Static => {
2723                 // These are anonymous lifetimes or lifetimes that are not declared.
2724             }
2725
2726             Region::Free(_, def_id)
2727             | Region::LateBound(_, def_id, _)
2728             | Region::EarlyBound(_, def_id, _) => {
2729                 // A lifetime declared by the user.
2730                 let track_lifetime_uses = self.track_lifetime_uses();
2731                 debug!("insert_lifetime: track_lifetime_uses={}", track_lifetime_uses);
2732                 if track_lifetime_uses && !self.lifetime_uses.contains_key(&def_id) {
2733                     debug!("insert_lifetime: first use of {:?}", def_id);
2734                     self.lifetime_uses.insert(def_id, LifetimeUseSet::One(lifetime_ref));
2735                 } else {
2736                     debug!("insert_lifetime: many uses of {:?}", def_id);
2737                     self.lifetime_uses.insert(def_id, LifetimeUseSet::Many);
2738                 }
2739             }
2740         }
2741     }
2742
2743     /// Sometimes we resolve a lifetime, but later find that it is an
2744     /// error (esp. around impl trait). In that case, we remove the
2745     /// entry into `map.defs` so as not to confuse later code.
2746     fn uninsert_lifetime_on_error(&mut self, lifetime_ref: &'tcx hir::Lifetime, bad_def: Region) {
2747         let old_value = self.map.defs.remove(&lifetime_ref.hir_id);
2748         assert_eq!(old_value, Some(bad_def));
2749     }
2750 }
2751
2752 /// Detects late-bound lifetimes and inserts them into
2753 /// `map.late_bound`.
2754 ///
2755 /// A region declared on a fn is **late-bound** if:
2756 /// - it is constrained by an argument type;
2757 /// - it does not appear in a where-clause.
2758 ///
2759 /// "Constrained" basically means that it appears in any type but
2760 /// not amongst the inputs to a projection. In other words, `<&'a
2761 /// T as Trait<''b>>::Foo` does not constrain `'a` or `'b`.
2762 fn insert_late_bound_lifetimes(
2763     map: &mut NamedRegionMap,
2764     decl: &hir::FnDecl<'_>,
2765     generics: &hir::Generics<'_>,
2766 ) {
2767     debug!("insert_late_bound_lifetimes(decl={:?}, generics={:?})", decl, generics);
2768
2769     let mut constrained_by_input = ConstrainedCollector::default();
2770     for arg_ty in decl.inputs {
2771         constrained_by_input.visit_ty(arg_ty);
2772     }
2773
2774     let mut appears_in_output = AllCollector::default();
2775     intravisit::walk_fn_ret_ty(&mut appears_in_output, &decl.output);
2776
2777     debug!("insert_late_bound_lifetimes: constrained_by_input={:?}", constrained_by_input.regions);
2778
2779     // Walk the lifetimes that appear in where clauses.
2780     //
2781     // Subtle point: because we disallow nested bindings, we can just
2782     // ignore binders here and scrape up all names we see.
2783     let mut appears_in_where_clause = AllCollector::default();
2784     appears_in_where_clause.visit_generics(generics);
2785
2786     for param in generics.params {
2787         if let hir::GenericParamKind::Lifetime { .. } = param.kind {
2788             if !param.bounds.is_empty() {
2789                 // `'a: 'b` means both `'a` and `'b` are referenced
2790                 appears_in_where_clause
2791                     .regions
2792                     .insert(hir::LifetimeName::Param(param.name.modern()));
2793             }
2794         }
2795     }
2796
2797     debug!(
2798         "insert_late_bound_lifetimes: appears_in_where_clause={:?}",
2799         appears_in_where_clause.regions
2800     );
2801
2802     // Late bound regions are those that:
2803     // - appear in the inputs
2804     // - do not appear in the where-clauses
2805     // - are not implicitly captured by `impl Trait`
2806     for param in generics.params {
2807         match param.kind {
2808             hir::GenericParamKind::Lifetime { .. } => { /* fall through */ }
2809
2810             // Neither types nor consts are late-bound.
2811             hir::GenericParamKind::Type { .. } | hir::GenericParamKind::Const { .. } => continue,
2812         }
2813
2814         let lt_name = hir::LifetimeName::Param(param.name.modern());
2815         // appears in the where clauses? early-bound.
2816         if appears_in_where_clause.regions.contains(&lt_name) {
2817             continue;
2818         }
2819
2820         // does not appear in the inputs, but appears in the return type? early-bound.
2821         if !constrained_by_input.regions.contains(&lt_name)
2822             && appears_in_output.regions.contains(&lt_name)
2823         {
2824             continue;
2825         }
2826
2827         debug!(
2828             "insert_late_bound_lifetimes: lifetime {:?} with id {:?} is late-bound",
2829             param.name.ident(),
2830             param.hir_id
2831         );
2832
2833         let inserted = map.late_bound.insert(param.hir_id);
2834         assert!(inserted, "visited lifetime {:?} twice", param.hir_id);
2835     }
2836
2837     return;
2838
2839     #[derive(Default)]
2840     struct ConstrainedCollector {
2841         regions: FxHashSet<hir::LifetimeName>,
2842     }
2843
2844     impl<'v> Visitor<'v> for ConstrainedCollector {
2845         type Map = Map<'v>;
2846
2847         fn nested_visit_map(&mut self) -> NestedVisitorMap<'_, Self::Map> {
2848             NestedVisitorMap::None
2849         }
2850
2851         fn visit_ty(&mut self, ty: &'v hir::Ty<'v>) {
2852             match ty.kind {
2853                 hir::TyKind::Path(hir::QPath::Resolved(Some(_), _))
2854                 | hir::TyKind::Path(hir::QPath::TypeRelative(..)) => {
2855                     // ignore lifetimes appearing in associated type
2856                     // projections, as they are not *constrained*
2857                     // (defined above)
2858                 }
2859
2860                 hir::TyKind::Path(hir::QPath::Resolved(None, ref path)) => {
2861                     // consider only the lifetimes on the final
2862                     // segment; I am not sure it's even currently
2863                     // valid to have them elsewhere, but even if it
2864                     // is, those would be potentially inputs to
2865                     // projections
2866                     if let Some(last_segment) = path.segments.last() {
2867                         self.visit_path_segment(path.span, last_segment);
2868                     }
2869                 }
2870
2871                 _ => {
2872                     intravisit::walk_ty(self, ty);
2873                 }
2874             }
2875         }
2876
2877         fn visit_lifetime(&mut self, lifetime_ref: &'v hir::Lifetime) {
2878             self.regions.insert(lifetime_ref.name.modern());
2879         }
2880     }
2881
2882     #[derive(Default)]
2883     struct AllCollector {
2884         regions: FxHashSet<hir::LifetimeName>,
2885     }
2886
2887     impl<'v> Visitor<'v> for AllCollector {
2888         type Map = Map<'v>;
2889
2890         fn nested_visit_map(&mut self) -> NestedVisitorMap<'_, Self::Map> {
2891             NestedVisitorMap::None
2892         }
2893
2894         fn visit_lifetime(&mut self, lifetime_ref: &'v hir::Lifetime) {
2895             self.regions.insert(lifetime_ref.name.modern());
2896         }
2897     }
2898 }