@@ -223,13 +223,6 @@ pub struct RegionMaps {
223
223
/// block (see `terminating_scopes`).
224
224
rvalue_scopes : NodeMap < CodeExtent > ,
225
225
226
- /// Records the value of rvalue scopes before they were shrunk by
227
- /// #36082, for error reporting.
228
- ///
229
- /// FIXME: this should be temporary. Remove this by 1.18.0 or
230
- /// so.
231
- shrunk_rvalue_scopes : NodeMap < CodeExtent > ,
232
-
233
226
/// Encodes the hierarchy of fn bodies. Every fn body (including
234
227
/// closures) forms its own distinct region hierarchy, rooted in
235
228
/// the block that is the fn body. This map points from the id of
@@ -301,7 +294,6 @@ impl<'tcx> RegionMaps {
301
294
destruction_scopes : FxHashMap ( ) ,
302
295
var_map : NodeMap ( ) ,
303
296
rvalue_scopes : NodeMap ( ) ,
304
- shrunk_rvalue_scopes : NodeMap ( ) ,
305
297
fn_tree : NodeMap ( ) ,
306
298
}
307
299
}
@@ -370,12 +362,6 @@ impl<'tcx> RegionMaps {
370
362
self . rvalue_scopes . insert ( var, lifetime) ;
371
363
}
372
364
373
- fn record_shrunk_rvalue_scope ( & mut self , var : ast:: NodeId , lifetime : CodeExtent ) {
374
- debug ! ( "record_rvalue_scope(sub={:?}, sup={:?})" , var, lifetime) ;
375
- assert ! ( var != lifetime. node_id( ) ) ;
376
- self . shrunk_rvalue_scopes . insert ( var, lifetime) ;
377
- }
378
-
379
365
pub fn opt_encl_scope ( & self , id : CodeExtent ) -> Option < CodeExtent > {
380
366
//! Returns the narrowest scope that encloses `id`, if any.
381
367
self . scope_map . get ( & id) . cloned ( )
@@ -395,32 +381,6 @@ impl<'tcx> RegionMaps {
395
381
}
396
382
}
397
383
398
- pub fn temporary_scope2 ( & self , expr_id : ast:: NodeId )
399
- -> ( Option < CodeExtent > , bool ) {
400
- let temporary_scope = self . temporary_scope ( expr_id) ;
401
- let was_shrunk = match self . shrunk_rvalue_scopes . get ( & expr_id) {
402
- Some ( & s) => {
403
- info ! ( "temporary_scope2({:?}, scope={:?}, shrunk={:?})" ,
404
- expr_id, temporary_scope, s) ;
405
- temporary_scope != Some ( s)
406
- }
407
- _ => false
408
- } ;
409
- info ! ( "temporary_scope2({:?}) - was_shrunk={:?}" , expr_id, was_shrunk) ;
410
- ( temporary_scope, was_shrunk)
411
- }
412
-
413
- pub fn old_and_new_temporary_scope ( & self , expr_id : ast:: NodeId )
414
- -> ( Option < CodeExtent > ,
415
- Option < CodeExtent > )
416
- {
417
- let temporary_scope = self . temporary_scope ( expr_id) ;
418
- ( temporary_scope,
419
- self . shrunk_rvalue_scopes
420
- . get ( & expr_id) . cloned ( )
421
- . or ( temporary_scope) )
422
- }
423
-
424
384
pub fn temporary_scope ( & self , expr_id : ast:: NodeId ) -> Option < CodeExtent > {
425
385
//! Returns the scope when temp created by expr_id will be cleaned up
426
386
@@ -896,10 +856,7 @@ fn resolve_local<'a, 'tcx>(visitor: &mut RegionResolutionVisitor<'a, 'tcx>,
896
856
// Rule A. `let (ref x, ref y) = (foo().x, 44)`. The rvalue `(22, 44)`
897
857
// would have an extended lifetime, but not `foo()`.
898
858
//
899
- // Rule B. `let x: &[...] = [foo().x]`. The rvalue `[foo().x]`
900
- // would have an extended lifetime, but not `foo()`.
901
- //
902
- // Rule C. `let x = &foo().x`. The rvalue ``foo()` would have extended
859
+ // Rule B. `let x = &foo().x`. The rvalue ``foo()` would have extended
903
860
// lifetime.
904
861
//
905
862
// In some cases, multiple rules may apply (though not to the same
@@ -916,13 +873,8 @@ fn resolve_local<'a, 'tcx>(visitor: &mut RegionResolutionVisitor<'a, 'tcx>,
916
873
if let Some ( ref expr) = local. init {
917
874
record_rvalue_scope_if_borrow_expr ( visitor, & expr, blk_scope) ;
918
875
919
- let is_borrow =
920
- if let Some ( ref ty) = local. ty { is_borrowed_ty ( & ty) } else { false } ;
921
-
922
876
if is_binding_pat ( & local. pat ) {
923
- record_rvalue_scope ( visitor, & expr, blk_scope, false ) ;
924
- } else if is_borrow {
925
- record_rvalue_scope ( visitor, & expr, blk_scope, true ) ;
877
+ record_rvalue_scope ( visitor, & expr, blk_scope) ;
926
878
}
927
879
}
928
880
@@ -963,14 +915,6 @@ fn resolve_local<'a, 'tcx>(visitor: &mut RegionResolutionVisitor<'a, 'tcx>,
963
915
}
964
916
}
965
917
966
- /// True if `ty` is a borrowed pointer type like `&int` or `&[...]`.
967
- fn is_borrowed_ty ( ty : & hir:: Ty ) -> bool {
968
- match ty. node {
969
- hir:: TyRptr ( ..) => true ,
970
- _ => false
971
- }
972
- }
973
-
974
918
/// If `expr` matches the `E&` grammar, then records an extended rvalue scope as appropriate:
975
919
///
976
920
/// E& = & ET
@@ -989,7 +933,7 @@ fn resolve_local<'a, 'tcx>(visitor: &mut RegionResolutionVisitor<'a, 'tcx>,
989
933
match expr. node {
990
934
hir:: ExprAddrOf ( _, ref subexpr) => {
991
935
record_rvalue_scope_if_borrow_expr ( visitor, & subexpr, blk_id) ;
992
- record_rvalue_scope ( visitor, & subexpr, blk_id, false ) ;
936
+ record_rvalue_scope ( visitor, & subexpr, blk_id) ;
993
937
}
994
938
hir:: ExprStruct ( _, ref fields, _) => {
995
939
for field in fields {
@@ -1034,21 +978,15 @@ fn resolve_local<'a, 'tcx>(visitor: &mut RegionResolutionVisitor<'a, 'tcx>,
1034
978
/// Note: ET is intended to match "rvalues or lvalues based on rvalues".
1035
979
fn record_rvalue_scope < ' a , ' tcx > ( visitor : & mut RegionResolutionVisitor < ' a , ' tcx > ,
1036
980
expr : & hir:: Expr ,
1037
- blk_scope : CodeExtent ,
1038
- is_shrunk : bool ) {
981
+ blk_scope : CodeExtent ) {
1039
982
let mut expr = expr;
1040
983
loop {
1041
984
// Note: give all the expressions matching `ET` with the
1042
985
// extended temporary lifetime, not just the innermost rvalue,
1043
986
// because in trans if we must compile e.g. `*rvalue()`
1044
987
// into a temporary, we request the temporary scope of the
1045
988
// outer expression.
1046
- if is_shrunk {
1047
- // this changed because of #36082
1048
- visitor. region_maps . record_shrunk_rvalue_scope ( expr. id , blk_scope) ;
1049
- } else {
1050
- visitor. region_maps . record_rvalue_scope ( expr. id , blk_scope) ;
1051
- }
989
+ visitor. region_maps . record_rvalue_scope ( expr. id , blk_scope) ;
1052
990
1053
991
match expr. node {
1054
992
hir:: ExprAddrOf ( _, ref subexpr) |
0 commit comments