@@ -32,6 +32,7 @@ crate enum RegionNameSource {
32
32
MatchedAdtAndSegment ( Span ) ,
33
33
AnonRegionFromUpvar ( Span , String ) ,
34
34
AnonRegionFromOutput ( Span , String , String ) ,
35
+ AnonRegionFromYieldTy ( Span , String ) ,
35
36
}
36
37
37
38
impl RegionName {
@@ -46,7 +47,8 @@ impl RegionName {
46
47
RegionNameSource :: MatchedHirTy ( ..) |
47
48
RegionNameSource :: MatchedAdtAndSegment ( ..) |
48
49
RegionNameSource :: AnonRegionFromUpvar ( ..) |
49
- RegionNameSource :: AnonRegionFromOutput ( ..) => false ,
50
+ RegionNameSource :: AnonRegionFromOutput ( ..) |
51
+ RegionNameSource :: AnonRegionFromYieldTy ( ..) => false ,
50
52
}
51
53
}
52
54
@@ -103,6 +105,12 @@ impl RegionName {
103
105
format ! ( "return type{} is {}" , mir_description, type_name) ,
104
106
) ;
105
107
} ,
108
+ RegionNameSource :: AnonRegionFromYieldTy ( span, type_name) => {
109
+ diag. span_label (
110
+ * span,
111
+ format ! ( "yield type is {}" , type_name) ,
112
+ ) ;
113
+ }
106
114
RegionNameSource :: Static => { } ,
107
115
}
108
116
}
@@ -167,6 +175,11 @@ impl<'tcx> RegionInferenceContext<'tcx> {
167
175
self . give_name_if_anonymous_region_appears_in_output (
168
176
infcx, mir, mir_def_id, fr, counter,
169
177
)
178
+ } )
179
+ . or_else ( || {
180
+ self . give_name_if_anonymous_region_appears_in_yield_ty (
181
+ infcx, mir, mir_def_id, fr, counter,
182
+ )
170
183
} ) ;
171
184
172
185
debug ! ( "give_region_a_name: gave name {:?}" , value) ;
@@ -673,10 +686,7 @@ impl<'tcx> RegionInferenceContext<'tcx> {
673
686
"give_name_if_anonymous_region_appears_in_output: return_ty = {:?}" ,
674
687
return_ty
675
688
) ;
676
- if !infcx
677
- . tcx
678
- . any_free_region_meets ( & return_ty, |r| r. to_region_vid ( ) == fr)
679
- {
689
+ if !tcx. any_free_region_meets ( & return_ty, |r| r. to_region_vid ( ) == fr) {
680
690
return None ;
681
691
}
682
692
@@ -721,6 +731,57 @@ impl<'tcx> RegionInferenceContext<'tcx> {
721
731
} )
722
732
}
723
733
734
+ fn give_name_if_anonymous_region_appears_in_yield_ty (
735
+ & self ,
736
+ infcx : & InferCtxt < ' _ , ' _ , ' tcx > ,
737
+ mir : & Mir < ' tcx > ,
738
+ mir_def_id : DefId ,
739
+ fr : RegionVid ,
740
+ counter : & mut usize ,
741
+ ) -> Option < RegionName > {
742
+ // Note: generators from `async fn` yield `()`, so we don't have to
743
+ // worry about them here.
744
+ let yield_ty = self . universal_regions . yield_ty ?;
745
+ debug ! (
746
+ "give_name_if_anonymous_region_appears_in_yield_ty: yield_ty = {:?}" ,
747
+ yield_ty,
748
+ ) ;
749
+
750
+ let tcx = infcx. tcx ;
751
+
752
+ if !tcx. any_free_region_meets ( & yield_ty, |r| r. to_region_vid ( ) == fr) {
753
+ return None ;
754
+ }
755
+
756
+ let mut highlight = RegionHighlightMode :: default ( ) ;
757
+ highlight. highlighting_region_vid ( fr, * counter) ;
758
+ let type_name = infcx. extract_type_name ( & yield_ty, Some ( highlight) ) ;
759
+
760
+ let mir_node_id = tcx. hir ( ) . as_local_node_id ( mir_def_id) . expect ( "non-local mir" ) ;
761
+
762
+ let yield_span = match tcx. hir ( ) . get ( mir_node_id) {
763
+ hir:: Node :: Expr ( hir:: Expr {
764
+ node : hir:: ExprKind :: Closure ( _, _, _, span, _) ,
765
+ ..
766
+ } ) => (
767
+ tcx. sess . source_map ( ) . end_point ( * span)
768
+ ) ,
769
+ _ => mir. span ,
770
+ } ;
771
+
772
+ debug ! (
773
+ "give_name_if_anonymous_region_appears_in_yield_ty: \
774
+ type_name = {:?}, yield_span = {:?}",
775
+ yield_span,
776
+ type_name,
777
+ ) ;
778
+
779
+ Some ( RegionName {
780
+ name : self . synthesize_region_name ( counter) ,
781
+ source : RegionNameSource :: AnonRegionFromYieldTy ( yield_span, type_name) ,
782
+ } )
783
+ }
784
+
724
785
/// Creates a synthetic region named `'1`, incrementing the
725
786
/// counter.
726
787
fn synthesize_region_name ( & self , counter : & mut usize ) -> InternedString {
0 commit comments