]> git.lizzy.rs Git - rust.git/blob - compiler/rustc_mir/src/borrow_check/diagnostics/region_name.rs
Rollup merge of #76768 - workingjubilee:reject-oob-shuffles, r=ralfjung
[rust.git] / compiler / rustc_mir / src / borrow_check / diagnostics / region_name.rs
1 use std::fmt::{self, Display};
2
3 use rustc_errors::DiagnosticBuilder;
4 use rustc_hir as hir;
5 use rustc_hir::def::{DefKind, Res};
6 use rustc_middle::ty::print::RegionHighlightMode;
7 use rustc_middle::ty::subst::{GenericArgKind, SubstsRef};
8 use rustc_middle::ty::{self, RegionVid, Ty};
9 use rustc_span::symbol::kw;
10 use rustc_span::{symbol::Symbol, Span, DUMMY_SP};
11
12 use crate::borrow_check::{nll::ToRegionVid, universal_regions::DefiningTy, MirBorrowckCtxt};
13
14 /// A name for a particular region used in emitting diagnostics. This name could be a generated
15 /// name like `'1`, a name used by the user like `'a`, or a name like `'static`.
16 #[derive(Debug, Clone)]
17 crate struct RegionName {
18     /// The name of the region (interned).
19     crate name: Symbol,
20     /// Where the region comes from.
21     crate source: RegionNameSource,
22 }
23
24 /// Denotes the source of a region that is named by a `RegionName`. For example, a free region that
25 /// was named by the user would get `NamedFreeRegion` and `'static` lifetime would get `Static`.
26 /// This helps to print the right kinds of diagnostics.
27 #[derive(Debug, Clone)]
28 crate enum RegionNameSource {
29     /// A bound (not free) region that was substituted at the def site (not an HRTB).
30     NamedEarlyBoundRegion(Span),
31     /// A free region that the user has a name (`'a`) for.
32     NamedFreeRegion(Span),
33     /// The `'static` region.
34     Static,
35     /// The free region corresponding to the environment of a closure.
36     SynthesizedFreeEnvRegion(Span, String),
37     /// The region corresponding to an argument.
38     AnonRegionFromArgument(RegionNameHighlight),
39     /// The region corresponding to a closure upvar.
40     AnonRegionFromUpvar(Span, String),
41     /// The region corresponding to the return type of a closure.
42     AnonRegionFromOutput(Span, String, String),
43     /// The region from a type yielded by a generator.
44     AnonRegionFromYieldTy(Span, String),
45     /// An anonymous region from an async fn.
46     AnonRegionFromAsyncFn(Span),
47 }
48
49 /// Describes what to highlight to explain to the user that we're giving an anonymous region a
50 /// synthesized name, and how to highlight it.
51 #[derive(Debug, Clone)]
52 crate enum RegionNameHighlight {
53     /// The anonymous region corresponds to a reference that was found by traversing the type in the HIR.
54     MatchedHirTy(Span),
55     /// The anonymous region corresponds to a `'_` in the generics list of a struct/enum/union.
56     MatchedAdtAndSegment(Span),
57     /// The anonymous region corresponds to a region where the type annotation is completely missing
58     /// from the code, e.g. in a closure arguments `|x| { ... }`, where `x` is a reference.
59     CannotMatchHirTy(Span, String),
60 }
61
62 impl RegionName {
63     crate fn was_named(&self) -> bool {
64         match self.source {
65             RegionNameSource::NamedEarlyBoundRegion(..)
66             | RegionNameSource::NamedFreeRegion(..)
67             | RegionNameSource::Static => true,
68             RegionNameSource::SynthesizedFreeEnvRegion(..)
69             | RegionNameSource::AnonRegionFromArgument(..)
70             | RegionNameSource::AnonRegionFromUpvar(..)
71             | RegionNameSource::AnonRegionFromOutput(..)
72             | RegionNameSource::AnonRegionFromYieldTy(..)
73             | RegionNameSource::AnonRegionFromAsyncFn(..) => false,
74         }
75     }
76
77     crate fn span(&self) -> Option<Span> {
78         match self.source {
79             RegionNameSource::Static => None,
80             RegionNameSource::NamedEarlyBoundRegion(span)
81             | RegionNameSource::NamedFreeRegion(span)
82             | RegionNameSource::SynthesizedFreeEnvRegion(span, _)
83             | RegionNameSource::AnonRegionFromUpvar(span, _)
84             | RegionNameSource::AnonRegionFromOutput(span, _, _)
85             | RegionNameSource::AnonRegionFromYieldTy(span, _)
86             | RegionNameSource::AnonRegionFromAsyncFn(span) => Some(span),
87             RegionNameSource::AnonRegionFromArgument(ref highlight) => match *highlight {
88                 RegionNameHighlight::MatchedHirTy(span)
89                 | RegionNameHighlight::MatchedAdtAndSegment(span)
90                 | RegionNameHighlight::CannotMatchHirTy(span, _) => Some(span),
91             },
92         }
93     }
94
95     crate fn highlight_region_name(&self, diag: &mut DiagnosticBuilder<'_>) {
96         match &self.source {
97             RegionNameSource::NamedFreeRegion(span)
98             | RegionNameSource::NamedEarlyBoundRegion(span) => {
99                 diag.span_label(*span, format!("lifetime `{}` defined here", self));
100             }
101             RegionNameSource::SynthesizedFreeEnvRegion(span, note) => {
102                 diag.span_label(
103                     *span,
104                     format!("lifetime `{}` represents this closure's body", self),
105                 );
106                 diag.note(&note);
107             }
108             RegionNameSource::AnonRegionFromArgument(RegionNameHighlight::CannotMatchHirTy(
109                 span,
110                 type_name,
111             )) => {
112                 diag.span_label(*span, format!("has type `{}`", type_name));
113             }
114             RegionNameSource::AnonRegionFromArgument(RegionNameHighlight::MatchedHirTy(span))
115             | RegionNameSource::AnonRegionFromAsyncFn(span) => {
116                 diag.span_label(
117                     *span,
118                     format!("let's call the lifetime of this reference `{}`", self),
119                 );
120             }
121             RegionNameSource::AnonRegionFromArgument(
122                 RegionNameHighlight::MatchedAdtAndSegment(span),
123             ) => {
124                 diag.span_label(*span, format!("let's call this `{}`", self));
125             }
126             RegionNameSource::AnonRegionFromUpvar(span, upvar_name) => {
127                 diag.span_label(
128                     *span,
129                     format!("lifetime `{}` appears in the type of `{}`", self, upvar_name),
130                 );
131             }
132             RegionNameSource::AnonRegionFromOutput(span, mir_description, type_name) => {
133                 diag.span_label(*span, format!("return type{} is {}", mir_description, type_name));
134             }
135             RegionNameSource::AnonRegionFromYieldTy(span, type_name) => {
136                 diag.span_label(*span, format!("yield type is {}", type_name));
137             }
138             RegionNameSource::Static => {}
139         }
140     }
141 }
142
143 impl Display for RegionName {
144     fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
145         write!(f, "{}", self.name)
146     }
147 }
148
149 impl<'tcx> MirBorrowckCtxt<'_, 'tcx> {
150     /// Generate a synthetic region named `'N`, where `N` is the next value of the counter. Then,
151     /// increment the counter.
152     ///
153     /// This is _not_ idempotent. Call `give_region_a_name` when possible.
154     fn synthesize_region_name(&self) -> Symbol {
155         let c = self.next_region_name.replace_with(|counter| *counter + 1);
156         Symbol::intern(&format!("'{:?}", c))
157     }
158
159     /// Maps from an internal MIR region vid to something that we can
160     /// report to the user. In some cases, the region vids will map
161     /// directly to lifetimes that the user has a name for (e.g.,
162     /// `'static`). But frequently they will not, in which case we
163     /// have to find some way to identify the lifetime to the user. To
164     /// that end, this function takes a "diagnostic" so that it can
165     /// create auxiliary notes as needed.
166     ///
167     /// The names are memoized, so this is both cheap to recompute and idempotent.
168     ///
169     /// Example (function arguments):
170     ///
171     /// Suppose we are trying to give a name to the lifetime of the
172     /// reference `x`:
173     ///
174     /// ```
175     /// fn foo(x: &u32) { .. }
176     /// ```
177     ///
178     /// This function would create a label like this:
179     ///
180     /// ```text
181     ///  | fn foo(x: &u32) { .. }
182     ///           ------- fully elaborated type of `x` is `&'1 u32`
183     /// ```
184     ///
185     /// and then return the name `'1` for us to use.
186     crate fn give_region_a_name(&self, fr: RegionVid) -> Option<RegionName> {
187         debug!(
188             "give_region_a_name(fr={:?}, counter={:?})",
189             fr,
190             self.next_region_name.try_borrow().unwrap()
191         );
192
193         assert!(self.regioncx.universal_regions().is_universal_region(fr));
194
195         if let Some(value) = self.region_names.try_borrow_mut().unwrap().get(&fr) {
196             return Some(value.clone());
197         }
198
199         let value = self
200             .give_name_from_error_region(fr)
201             .or_else(|| self.give_name_if_anonymous_region_appears_in_arguments(fr))
202             .or_else(|| self.give_name_if_anonymous_region_appears_in_upvars(fr))
203             .or_else(|| self.give_name_if_anonymous_region_appears_in_output(fr))
204             .or_else(|| self.give_name_if_anonymous_region_appears_in_yield_ty(fr));
205
206         if let Some(ref value) = value {
207             self.region_names.try_borrow_mut().unwrap().insert(fr, value.clone());
208         }
209
210         debug!("give_region_a_name: gave name {:?}", value);
211         value
212     }
213
214     /// Checks for the case where `fr` maps to something that the
215     /// *user* has a name for. In that case, we'll be able to map
216     /// `fr` to a `Region<'tcx>`, and that region will be one of
217     /// named variants.
218     fn give_name_from_error_region(&self, fr: RegionVid) -> Option<RegionName> {
219         let error_region = self.to_error_region(fr)?;
220
221         let tcx = self.infcx.tcx;
222
223         debug!("give_region_a_name: error_region = {:?}", error_region);
224         match error_region {
225             ty::ReEarlyBound(ebr) => {
226                 if ebr.has_name() {
227                     let span = tcx.hir().span_if_local(ebr.def_id).unwrap_or(DUMMY_SP);
228                     Some(RegionName {
229                         name: ebr.name,
230                         source: RegionNameSource::NamedEarlyBoundRegion(span),
231                     })
232                 } else {
233                     None
234                 }
235             }
236
237             ty::ReStatic => {
238                 Some(RegionName { name: kw::StaticLifetime, source: RegionNameSource::Static })
239             }
240
241             ty::ReFree(free_region) => match free_region.bound_region {
242                 ty::BoundRegion::BrNamed(region_def_id, name) => {
243                     // Get the span to point to, even if we don't use the name.
244                     let span = tcx.hir().span_if_local(region_def_id).unwrap_or(DUMMY_SP);
245                     debug!(
246                         "bound region named: {:?}, is_named: {:?}",
247                         name,
248                         free_region.bound_region.is_named()
249                     );
250
251                     if free_region.bound_region.is_named() {
252                         // A named region that is actually named.
253                         Some(RegionName { name, source: RegionNameSource::NamedFreeRegion(span) })
254                     } else {
255                         // If we spuriously thought that the region is named, we should let the
256                         // system generate a true name for error messages. Currently this can
257                         // happen if we have an elided name in an async fn for example: the
258                         // compiler will generate a region named `'_`, but reporting such a name is
259                         // not actually useful, so we synthesize a name for it instead.
260                         let name = self.synthesize_region_name();
261                         Some(RegionName {
262                             name,
263                             source: RegionNameSource::AnonRegionFromAsyncFn(span),
264                         })
265                     }
266                 }
267
268                 ty::BoundRegion::BrEnv => {
269                     let mir_hir_id = self.infcx.tcx.hir().local_def_id_to_hir_id(self.mir_def_id);
270                     let def_ty = self.regioncx.universal_regions().defining_ty;
271
272                     if let DefiningTy::Closure(_, substs) = def_ty {
273                         let args_span = if let hir::ExprKind::Closure(_, _, _, span, _) =
274                             tcx.hir().expect_expr(mir_hir_id).kind
275                         {
276                             span
277                         } else {
278                             bug!("Closure is not defined by a closure expr");
279                         };
280                         let region_name = self.synthesize_region_name();
281
282                         let closure_kind_ty = substs.as_closure().kind_ty();
283                         let note = match closure_kind_ty.to_opt_closure_kind() {
284                             Some(ty::ClosureKind::Fn) => {
285                                 "closure implements `Fn`, so references to captured variables \
286                                  can't escape the closure"
287                             }
288                             Some(ty::ClosureKind::FnMut) => {
289                                 "closure implements `FnMut`, so references to captured variables \
290                                  can't escape the closure"
291                             }
292                             Some(ty::ClosureKind::FnOnce) => {
293                                 bug!("BrEnv in a `FnOnce` closure");
294                             }
295                             None => bug!("Closure kind not inferred in borrow check"),
296                         };
297
298                         Some(RegionName {
299                             name: region_name,
300                             source: RegionNameSource::SynthesizedFreeEnvRegion(
301                                 args_span,
302                                 note.to_string(),
303                             ),
304                         })
305                     } else {
306                         // Can't have BrEnv in functions, constants or generators.
307                         bug!("BrEnv outside of closure.");
308                     }
309                 }
310
311                 ty::BoundRegion::BrAnon(_) => None,
312             },
313
314             ty::ReLateBound(..)
315             | ty::ReVar(..)
316             | ty::RePlaceholder(..)
317             | ty::ReEmpty(_)
318             | ty::ReErased => None,
319         }
320     }
321
322     /// Finds an argument that contains `fr` and label it with a fully
323     /// elaborated type, returning something like `'1`. Result looks
324     /// like:
325     ///
326     /// ```text
327     ///  | fn foo(x: &u32) { .. }
328     ///           ------- fully elaborated type of `x` is `&'1 u32`
329     /// ```
330     fn give_name_if_anonymous_region_appears_in_arguments(
331         &self,
332         fr: RegionVid,
333     ) -> Option<RegionName> {
334         let implicit_inputs = self.regioncx.universal_regions().defining_ty.implicit_inputs();
335         let argument_index = self.regioncx.get_argument_index_for_region(self.infcx.tcx, fr)?;
336
337         let arg_ty = self.regioncx.universal_regions().unnormalized_input_tys
338             [implicit_inputs + argument_index];
339         let (_, span) = self.regioncx.get_argument_name_and_span_for_region(
340             &self.body,
341             &self.local_names,
342             argument_index,
343         );
344
345         self.get_argument_hir_ty_for_highlighting(argument_index)
346             .and_then(|arg_hir_ty| self.highlight_if_we_can_match_hir_ty(fr, arg_ty, arg_hir_ty))
347             .or_else(|| {
348                 // `highlight_if_we_cannot_match_hir_ty` needs to know the number we will give to
349                 // the anonymous region. If it succeeds, the `synthesize_region_name` call below
350                 // will increment the counter, "reserving" the number we just used.
351                 let counter = *self.next_region_name.try_borrow().unwrap();
352                 self.highlight_if_we_cannot_match_hir_ty(fr, arg_ty, span, counter)
353             })
354             .map(|highlight| RegionName {
355                 name: self.synthesize_region_name(),
356                 source: RegionNameSource::AnonRegionFromArgument(highlight),
357             })
358     }
359
360     fn get_argument_hir_ty_for_highlighting(
361         &self,
362         argument_index: usize,
363     ) -> Option<&hir::Ty<'tcx>> {
364         let mir_hir_id = self.infcx.tcx.hir().local_def_id_to_hir_id(self.mir_def_id);
365         let fn_decl = self.infcx.tcx.hir().fn_decl_by_hir_id(mir_hir_id)?;
366         let argument_hir_ty: &hir::Ty<'_> = fn_decl.inputs.get(argument_index)?;
367         match argument_hir_ty.kind {
368             // This indicates a variable with no type annotation, like
369             // `|x|`... in that case, we can't highlight the type but
370             // must highlight the variable.
371             // NOTE(eddyb) this is handled in/by the sole caller
372             // (`give_name_if_anonymous_region_appears_in_arguments`).
373             hir::TyKind::Infer => None,
374
375             _ => Some(argument_hir_ty),
376         }
377     }
378
379     /// Attempts to highlight the specific part of a type in an argument
380     /// that has no type annotation.
381     /// For example, we might produce an annotation like this:
382     ///
383     /// ```text
384     ///  |     foo(|a, b| b)
385     ///  |          -  -
386     ///  |          |  |
387     ///  |          |  has type `&'1 u32`
388     ///  |          has type `&'2 u32`
389     /// ```
390     fn highlight_if_we_cannot_match_hir_ty(
391         &self,
392         needle_fr: RegionVid,
393         ty: Ty<'tcx>,
394         span: Span,
395         counter: usize,
396     ) -> Option<RegionNameHighlight> {
397         let mut highlight = RegionHighlightMode::default();
398         highlight.highlighting_region_vid(needle_fr, counter);
399         let type_name =
400             self.infcx.extract_inference_diagnostics_data(ty.into(), Some(highlight)).name;
401
402         debug!(
403             "highlight_if_we_cannot_match_hir_ty: type_name={:?} needle_fr={:?}",
404             type_name, needle_fr
405         );
406         if type_name.find(&format!("'{}", counter)).is_some() {
407             // Only add a label if we can confirm that a region was labelled.
408             Some(RegionNameHighlight::CannotMatchHirTy(span, type_name))
409         } else {
410             None
411         }
412     }
413
414     /// Attempts to highlight the specific part of a type annotation
415     /// that contains the anonymous reference we want to give a name
416     /// to. For example, we might produce an annotation like this:
417     ///
418     /// ```text
419     ///  | fn a<T>(items: &[T]) -> Box<dyn Iterator<Item = &T>> {
420     ///  |                - let's call the lifetime of this reference `'1`
421     /// ```
422     ///
423     /// the way this works is that we match up `ty`, which is
424     /// a `Ty<'tcx>` (the internal form of the type) with
425     /// `hir_ty`, a `hir::Ty` (the syntax of the type
426     /// annotation). We are descending through the types stepwise,
427     /// looking in to find the region `needle_fr` in the internal
428     /// type. Once we find that, we can use the span of the `hir::Ty`
429     /// to add the highlight.
430     ///
431     /// This is a somewhat imperfect process, so along the way we also
432     /// keep track of the **closest** type we've found. If we fail to
433     /// find the exact `&` or `'_` to highlight, then we may fall back
434     /// to highlighting that closest type instead.
435     fn highlight_if_we_can_match_hir_ty(
436         &self,
437         needle_fr: RegionVid,
438         ty: Ty<'tcx>,
439         hir_ty: &hir::Ty<'_>,
440     ) -> Option<RegionNameHighlight> {
441         let search_stack: &mut Vec<(Ty<'tcx>, &hir::Ty<'_>)> = &mut vec![(ty, hir_ty)];
442
443         while let Some((ty, hir_ty)) = search_stack.pop() {
444             match (&ty.kind(), &hir_ty.kind) {
445                 // Check if the `ty` is `&'X ..` where `'X`
446                 // is the region we are looking for -- if so, and we have a `&T`
447                 // on the RHS, then we want to highlight the `&` like so:
448                 //
449                 //     &
450                 //     - let's call the lifetime of this reference `'1`
451                 (
452                     ty::Ref(region, referent_ty, _),
453                     hir::TyKind::Rptr(_lifetime, referent_hir_ty),
454                 ) => {
455                     if region.to_region_vid() == needle_fr {
456                         // Just grab the first character, the `&`.
457                         let source_map = self.infcx.tcx.sess.source_map();
458                         let ampersand_span = source_map.start_point(hir_ty.span);
459
460                         return Some(RegionNameHighlight::MatchedHirTy(ampersand_span));
461                     }
462
463                     // Otherwise, let's descend into the referent types.
464                     search_stack.push((referent_ty, &referent_hir_ty.ty));
465                 }
466
467                 // Match up something like `Foo<'1>`
468                 (
469                     ty::Adt(_adt_def, substs),
470                     hir::TyKind::Path(hir::QPath::Resolved(None, path)),
471                 ) => {
472                     match path.res {
473                         // Type parameters of the type alias have no reason to
474                         // be the same as those of the ADT.
475                         // FIXME: We should be able to do something similar to
476                         // match_adt_and_segment in this case.
477                         Res::Def(DefKind::TyAlias, _) => (),
478                         _ => {
479                             if let Some(last_segment) = path.segments.last() {
480                                 if let Some(highlight) = self.match_adt_and_segment(
481                                     substs,
482                                     needle_fr,
483                                     last_segment,
484                                     search_stack,
485                                 ) {
486                                     return Some(highlight);
487                                 }
488                             }
489                         }
490                     }
491                 }
492
493                 // The following cases don't have lifetimes, so we
494                 // just worry about trying to match up the rustc type
495                 // with the HIR types:
496                 (ty::Tuple(elem_tys), hir::TyKind::Tup(elem_hir_tys)) => {
497                     search_stack.extend(elem_tys.iter().map(|k| k.expect_ty()).zip(*elem_hir_tys));
498                 }
499
500                 (ty::Slice(elem_ty), hir::TyKind::Slice(elem_hir_ty))
501                 | (ty::Array(elem_ty, _), hir::TyKind::Array(elem_hir_ty, _)) => {
502                     search_stack.push((elem_ty, elem_hir_ty));
503                 }
504
505                 (ty::RawPtr(mut_ty), hir::TyKind::Ptr(mut_hir_ty)) => {
506                     search_stack.push((mut_ty.ty, &mut_hir_ty.ty));
507                 }
508
509                 _ => {
510                     // FIXME there are other cases that we could trace
511                 }
512             }
513         }
514
515         None
516     }
517
518     /// We've found an enum/struct/union type with the substitutions
519     /// `substs` and -- in the HIR -- a path type with the final
520     /// segment `last_segment`. Try to find a `'_` to highlight in
521     /// the generic args (or, if not, to produce new zipped pairs of
522     /// types+hir to search through).
523     fn match_adt_and_segment<'hir>(
524         &self,
525         substs: SubstsRef<'tcx>,
526         needle_fr: RegionVid,
527         last_segment: &'hir hir::PathSegment<'hir>,
528         search_stack: &mut Vec<(Ty<'tcx>, &'hir hir::Ty<'hir>)>,
529     ) -> Option<RegionNameHighlight> {
530         // Did the user give explicit arguments? (e.g., `Foo<..>`)
531         let args = last_segment.args.as_ref()?;
532         let lifetime =
533             self.try_match_adt_and_generic_args(substs, needle_fr, args, search_stack)?;
534         match lifetime.name {
535             hir::LifetimeName::Param(_)
536             | hir::LifetimeName::Error
537             | hir::LifetimeName::Static
538             | hir::LifetimeName::Underscore => {
539                 let lifetime_span = lifetime.span;
540                 Some(RegionNameHighlight::MatchedAdtAndSegment(lifetime_span))
541             }
542
543             hir::LifetimeName::ImplicitObjectLifetimeDefault | hir::LifetimeName::Implicit => {
544                 // In this case, the user left off the lifetime; so
545                 // they wrote something like:
546                 //
547                 // ```
548                 // x: Foo<T>
549                 // ```
550                 //
551                 // where the fully elaborated form is `Foo<'_, '1,
552                 // T>`. We don't consider this a match; instead we let
553                 // the "fully elaborated" type fallback above handle
554                 // it.
555                 None
556             }
557         }
558     }
559
560     /// We've found an enum/struct/union type with the substitutions
561     /// `substs` and -- in the HIR -- a path with the generic
562     /// arguments `args`. If `needle_fr` appears in the args, return
563     /// the `hir::Lifetime` that corresponds to it. If not, push onto
564     /// `search_stack` the types+hir to search through.
565     fn try_match_adt_and_generic_args<'hir>(
566         &self,
567         substs: SubstsRef<'tcx>,
568         needle_fr: RegionVid,
569         args: &'hir hir::GenericArgs<'hir>,
570         search_stack: &mut Vec<(Ty<'tcx>, &'hir hir::Ty<'hir>)>,
571     ) -> Option<&'hir hir::Lifetime> {
572         for (kind, hir_arg) in substs.iter().zip(args.args) {
573             match (kind.unpack(), hir_arg) {
574                 (GenericArgKind::Lifetime(r), hir::GenericArg::Lifetime(lt)) => {
575                     if r.to_region_vid() == needle_fr {
576                         return Some(lt);
577                     }
578                 }
579
580                 (GenericArgKind::Type(ty), hir::GenericArg::Type(hir_ty)) => {
581                     search_stack.push((ty, hir_ty));
582                 }
583
584                 (GenericArgKind::Const(_ct), hir::GenericArg::Const(_hir_ct)) => {
585                     // Lifetimes cannot be found in consts, so we don't need
586                     // to search anything here.
587                 }
588
589                 (
590                     GenericArgKind::Lifetime(_)
591                     | GenericArgKind::Type(_)
592                     | GenericArgKind::Const(_),
593                     _,
594                 ) => {
595                     // I *think* that HIR lowering should ensure this
596                     // doesn't happen, even in erroneous
597                     // programs. Else we should use delay-span-bug.
598                     span_bug!(
599                         hir_arg.span(),
600                         "unmatched subst and hir arg: found {:?} vs {:?}",
601                         kind,
602                         hir_arg,
603                     );
604                 }
605             }
606         }
607
608         None
609     }
610
611     /// Finds a closure upvar that contains `fr` and label it with a
612     /// fully elaborated type, returning something like `'1`. Result
613     /// looks like:
614     ///
615     /// ```text
616     ///  | let x = Some(&22);
617     ///        - fully elaborated type of `x` is `Option<&'1 u32>`
618     /// ```
619     fn give_name_if_anonymous_region_appears_in_upvars(&self, fr: RegionVid) -> Option<RegionName> {
620         let upvar_index = self.regioncx.get_upvar_index_for_region(self.infcx.tcx, fr)?;
621         let (upvar_name, upvar_span) = self.regioncx.get_upvar_name_and_span_for_region(
622             self.infcx.tcx,
623             &self.upvars,
624             upvar_index,
625         );
626         let region_name = self.synthesize_region_name();
627
628         Some(RegionName {
629             name: region_name,
630             source: RegionNameSource::AnonRegionFromUpvar(upvar_span, upvar_name.to_string()),
631         })
632     }
633
634     /// Checks for arguments appearing in the (closure) return type. It
635     /// must be a closure since, in a free fn, such an argument would
636     /// have to either also appear in an argument (if using elision)
637     /// or be early bound (named, not in argument).
638     fn give_name_if_anonymous_region_appears_in_output(&self, fr: RegionVid) -> Option<RegionName> {
639         let tcx = self.infcx.tcx;
640
641         let return_ty = self.regioncx.universal_regions().unnormalized_output_ty;
642         debug!("give_name_if_anonymous_region_appears_in_output: return_ty = {:?}", return_ty);
643         if !tcx.any_free_region_meets(&return_ty, |r| r.to_region_vid() == fr) {
644             return None;
645         }
646
647         let mut highlight = RegionHighlightMode::default();
648         highlight.highlighting_region_vid(fr, *self.next_region_name.try_borrow().unwrap());
649         let type_name =
650             self.infcx.extract_inference_diagnostics_data(return_ty.into(), Some(highlight)).name;
651
652         let mir_hir_id = tcx.hir().local_def_id_to_hir_id(self.mir_def_id);
653
654         let (return_span, mir_description) = match tcx.hir().get(mir_hir_id) {
655             hir::Node::Expr(hir::Expr {
656                 kind: hir::ExprKind::Closure(_, return_ty, _, span, gen_move),
657                 ..
658             }) => (
659                 match return_ty.output {
660                     hir::FnRetTy::DefaultReturn(_) => tcx.sess.source_map().end_point(*span),
661                     hir::FnRetTy::Return(_) => return_ty.output.span(),
662                 },
663                 if gen_move.is_some() { " of generator" } else { " of closure" },
664             ),
665             hir::Node::ImplItem(hir::ImplItem {
666                 kind: hir::ImplItemKind::Fn(method_sig, _),
667                 ..
668             }) => (method_sig.decl.output.span(), ""),
669             _ => (self.body.span, ""),
670         };
671
672         Some(RegionName {
673             // This counter value will already have been used, so this function will increment it
674             // so the next value will be used next and return the region name that would have been
675             // used.
676             name: self.synthesize_region_name(),
677             source: RegionNameSource::AnonRegionFromOutput(
678                 return_span,
679                 mir_description.to_string(),
680                 type_name,
681             ),
682         })
683     }
684
685     fn give_name_if_anonymous_region_appears_in_yield_ty(
686         &self,
687         fr: RegionVid,
688     ) -> Option<RegionName> {
689         // Note: generators from `async fn` yield `()`, so we don't have to
690         // worry about them here.
691         let yield_ty = self.regioncx.universal_regions().yield_ty?;
692         debug!("give_name_if_anonymous_region_appears_in_yield_ty: yield_ty = {:?}", yield_ty,);
693
694         let tcx = self.infcx.tcx;
695
696         if !tcx.any_free_region_meets(&yield_ty, |r| r.to_region_vid() == fr) {
697             return None;
698         }
699
700         let mut highlight = RegionHighlightMode::default();
701         highlight.highlighting_region_vid(fr, *self.next_region_name.try_borrow().unwrap());
702         let type_name =
703             self.infcx.extract_inference_diagnostics_data(yield_ty.into(), Some(highlight)).name;
704
705         let mir_hir_id = tcx.hir().local_def_id_to_hir_id(self.mir_def_id);
706
707         let yield_span = match tcx.hir().get(mir_hir_id) {
708             hir::Node::Expr(hir::Expr {
709                 kind: hir::ExprKind::Closure(_, _, _, span, _), ..
710             }) => (tcx.sess.source_map().end_point(*span)),
711             _ => self.body.span,
712         };
713
714         debug!(
715             "give_name_if_anonymous_region_appears_in_yield_ty: \
716              type_name = {:?}, yield_span = {:?}",
717             yield_span, type_name,
718         );
719
720         Some(RegionName {
721             name: self.synthesize_region_name(),
722             source: RegionNameSource::AnonRegionFromYieldTy(yield_span, type_name),
723         })
724     }
725 }