Skip to content

Commit 4225019

Browse files
committed
Auto merge of #42396 - venkatagiri:remove_lifetime_extn, r=arielb1
rustc: remove temporary lifetime extension by borrow hint closes #39283. Thanks to @nikomatsakis for mentoring on this one. r? @arielb1
2 parents 2f2d741 + ac8a1f5 commit 4225019

File tree

12 files changed

+28
-142
lines changed

12 files changed

+28
-142
lines changed

src/librustc/middle/expr_use_visitor.rs

-1
Original file line numberDiff line numberDiff line change
@@ -303,7 +303,6 @@ impl<'a, 'gcx, 'tcx> ExprUseVisitor<'a, 'gcx, 'tcx> {
303303
arg.id,
304304
arg.pat.span,
305305
fn_body_scope_r, // Args live only as long as the fn body.
306-
fn_body_scope_r,
307306
arg_ty);
308307

309308
self.walk_irrefutable_pat(arg_cmt, &arg.pat);

src/librustc/middle/mem_categorization.rs

+10-20
Original file line numberDiff line numberDiff line change
@@ -88,8 +88,7 @@ use std::rc::Rc;
8888

8989
#[derive(Clone, PartialEq)]
9090
pub enum Categorization<'tcx> {
91-
// temporary val, argument is its scope
92-
Rvalue(ty::Region<'tcx>, ty::Region<'tcx>),
91+
Rvalue(ty::Region<'tcx>), // temporary val, argument is its scope
9392
StaticItem,
9493
Upvar(Upvar), // upvar referenced by closure env
9594
Local(ast::NodeId), // local variable
@@ -827,18 +826,13 @@ impl<'a, 'gcx, 'tcx> MemCategorizationContext<'a, 'gcx, 'tcx> {
827826

828827
/// Returns the lifetime of a temporary created by expr with id `id`.
829828
/// This could be `'static` if `id` is part of a constant expression.
830-
pub fn temporary_scope(&self, id: ast::NodeId) -> (ty::Region<'tcx>, ty::Region<'tcx>)
829+
pub fn temporary_scope(&self, id: ast::NodeId) -> ty::Region<'tcx>
831830
{
832-
let (scope, old_scope) =
833-
self.region_maps.old_and_new_temporary_scope(id);
834-
(self.tcx().mk_region(match scope {
831+
let scope = self.region_maps.temporary_scope(id);
832+
self.tcx().mk_region(match scope {
835833
Some(scope) => ty::ReScope(scope),
836834
None => ty::ReStatic
837-
}),
838-
self.tcx().mk_region(match old_scope {
839-
Some(scope) => ty::ReScope(scope),
840-
None => ty::ReStatic
841-
}))
835+
})
842836
}
843837

844838
pub fn cat_rvalue_node(&self,
@@ -858,13 +852,12 @@ impl<'a, 'gcx, 'tcx> MemCategorizationContext<'a, 'gcx, 'tcx> {
858852
// Compute maximum lifetime of this rvalue. This is 'static if
859853
// we can promote to a constant, otherwise equal to enclosing temp
860854
// lifetime.
861-
let (re, old_re) = if promotable {
862-
(self.tcx().types.re_static,
863-
self.tcx().types.re_static)
855+
let re = if promotable {
856+
self.tcx().types.re_static
864857
} else {
865858
self.temporary_scope(id)
866859
};
867-
let ret = self.cat_rvalue(id, span, re, old_re, expr_ty);
860+
let ret = self.cat_rvalue(id, span, re, expr_ty);
868861
debug!("cat_rvalue_node ret {:?}", ret);
869862
ret
870863
}
@@ -873,12 +866,11 @@ impl<'a, 'gcx, 'tcx> MemCategorizationContext<'a, 'gcx, 'tcx> {
873866
cmt_id: ast::NodeId,
874867
span: Span,
875868
temp_scope: ty::Region<'tcx>,
876-
old_temp_scope: ty::Region<'tcx>,
877869
expr_ty: Ty<'tcx>) -> cmt<'tcx> {
878870
let ret = Rc::new(cmt_ {
879871
id:cmt_id,
880872
span:span,
881-
cat:Categorization::Rvalue(temp_scope, old_temp_scope),
873+
cat:Categorization::Rvalue(temp_scope),
882874
mutbl:McDeclared,
883875
ty:expr_ty,
884876
note: NoteNone
@@ -1415,9 +1407,7 @@ impl<'tcx> fmt::Debug for Categorization<'tcx> {
14151407
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
14161408
match *self {
14171409
Categorization::StaticItem => write!(f, "static"),
1418-
Categorization::Rvalue(r, or) => {
1419-
write!(f, "rvalue({:?}, {:?})", r, or)
1420-
}
1410+
Categorization::Rvalue(r) => { write!(f, "rvalue({:?})", r) }
14211411
Categorization::Local(id) => {
14221412
let name = ty::tls::with(|tcx| tcx.local_var_name_str(id));
14231413
write!(f, "local({})", name)

src/librustc/middle/region.rs

+5-67
Original file line numberDiff line numberDiff line change
@@ -223,13 +223,6 @@ pub struct RegionMaps {
223223
/// block (see `terminating_scopes`).
224224
rvalue_scopes: NodeMap<CodeExtent>,
225225

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-
233226
/// Encodes the hierarchy of fn bodies. Every fn body (including
234227
/// closures) forms its own distinct region hierarchy, rooted in
235228
/// the block that is the fn body. This map points from the id of
@@ -301,7 +294,6 @@ impl<'tcx> RegionMaps {
301294
destruction_scopes: FxHashMap(),
302295
var_map: NodeMap(),
303296
rvalue_scopes: NodeMap(),
304-
shrunk_rvalue_scopes: NodeMap(),
305297
fn_tree: NodeMap(),
306298
}
307299
}
@@ -370,12 +362,6 @@ impl<'tcx> RegionMaps {
370362
self.rvalue_scopes.insert(var, lifetime);
371363
}
372364

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-
379365
pub fn opt_encl_scope(&self, id: CodeExtent) -> Option<CodeExtent> {
380366
//! Returns the narrowest scope that encloses `id`, if any.
381367
self.scope_map.get(&id).cloned()
@@ -395,32 +381,6 @@ impl<'tcx> RegionMaps {
395381
}
396382
}
397383

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-
424384
pub fn temporary_scope(&self, expr_id: ast::NodeId) -> Option<CodeExtent> {
425385
//! Returns the scope when temp created by expr_id will be cleaned up
426386
@@ -896,10 +856,7 @@ fn resolve_local<'a, 'tcx>(visitor: &mut RegionResolutionVisitor<'a, 'tcx>,
896856
// Rule A. `let (ref x, ref y) = (foo().x, 44)`. The rvalue `(22, 44)`
897857
// would have an extended lifetime, but not `foo()`.
898858
//
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
903860
// lifetime.
904861
//
905862
// 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>,
916873
if let Some(ref expr) = local.init {
917874
record_rvalue_scope_if_borrow_expr(visitor, &expr, blk_scope);
918875

919-
let is_borrow =
920-
if let Some(ref ty) = local.ty { is_borrowed_ty(&ty) } else { false };
921-
922876
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);
926878
}
927879
}
928880

@@ -963,14 +915,6 @@ fn resolve_local<'a, 'tcx>(visitor: &mut RegionResolutionVisitor<'a, 'tcx>,
963915
}
964916
}
965917

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-
974918
/// If `expr` matches the `E&` grammar, then records an extended rvalue scope as appropriate:
975919
///
976920
/// E& = & ET
@@ -989,7 +933,7 @@ fn resolve_local<'a, 'tcx>(visitor: &mut RegionResolutionVisitor<'a, 'tcx>,
989933
match expr.node {
990934
hir::ExprAddrOf(_, ref subexpr) => {
991935
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);
993937
}
994938
hir::ExprStruct(_, ref fields, _) => {
995939
for field in fields {
@@ -1034,21 +978,15 @@ fn resolve_local<'a, 'tcx>(visitor: &mut RegionResolutionVisitor<'a, 'tcx>,
1034978
/// Note: ET is intended to match "rvalues or lvalues based on rvalues".
1035979
fn record_rvalue_scope<'a, 'tcx>(visitor: &mut RegionResolutionVisitor<'a, 'tcx>,
1036980
expr: &hir::Expr,
1037-
blk_scope: CodeExtent,
1038-
is_shrunk: bool) {
981+
blk_scope: CodeExtent) {
1039982
let mut expr = expr;
1040983
loop {
1041984
// Note: give all the expressions matching `ET` with the
1042985
// extended temporary lifetime, not just the innermost rvalue,
1043986
// because in trans if we must compile e.g. `*rvalue()`
1044987
// into a temporary, we request the temporary scope of the
1045988
// 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);
1052990

1053991
match expr.node {
1054992
hir::ExprAddrOf(_, ref subexpr) |

src/librustc_borrowck/borrowck/gather_loans/lifetime.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ impl<'a, 'tcx> GuaranteeLifetimeContext<'a, 'tcx> {
108108
//! rooting etc, and presuming `cmt` is not mutated.
109109
110110
match cmt.cat {
111-
Categorization::Rvalue(temp_scope, _) => {
111+
Categorization::Rvalue(temp_scope) => {
112112
temp_scope
113113
}
114114
Categorization::Upvar(..) => {

src/librustc_borrowck/borrowck/mod.rs

-11
Original file line numberDiff line numberDiff line change
@@ -1125,17 +1125,6 @@ impl<'a, 'tcx> BorrowckCtxt<'a, 'tcx> {
11251125
if let Some(_) = statement_scope_span(self.tcx, super_scope) {
11261126
db.note("consider using a `let` binding to increase its lifetime");
11271127
}
1128-
1129-
1130-
1131-
match err.cmt.cat {
1132-
mc::Categorization::Rvalue(r, or) if r != or => {
1133-
db.note("\
1134-
before rustc 1.16, this temporary lived longer - see issue #39283 \
1135-
(https://github.com/rust-lang/rust/issues/39283)");
1136-
}
1137-
_ => {}
1138-
}
11391128
}
11401129

11411130
err_borrowed_pointer_too_short(loan_scope, ptr_scope) => {

src/librustc_mir/build/expr/as_constant.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ impl<'a, 'gcx, 'tcx> Builder<'a, 'gcx, 'tcx> {
2626

2727
fn expr_as_constant(&mut self, expr: Expr<'tcx>) -> Constant<'tcx> {
2828
let this = self;
29-
let Expr { ty, temp_lifetime: _, temp_lifetime_was_shrunk: _, span, kind }
29+
let Expr { ty, temp_lifetime: _, span, kind }
3030
= expr;
3131
match kind {
3232
ExprKind::Scope { extent: _, value } =>

src/librustc_mir/build/expr/as_temp.rs

-7
Original file line numberDiff line numberDiff line change
@@ -50,13 +50,6 @@ impl<'a, 'gcx, 'tcx> Builder<'a, 'gcx, 'tcx> {
5050
let temp = this.temp(expr_ty.clone(), expr_span);
5151
let source_info = this.source_info(expr_span);
5252

53-
if expr.temp_lifetime_was_shrunk && this.hir.needs_drop(expr_ty) {
54-
this.hir.tcx().sess.span_warn(
55-
expr_span,
56-
"this temporary used to live longer - see issue #39283 \
57-
(https://github.com/rust-lang/rust/issues/39283)");
58-
}
59-
6053
if !expr_ty.is_never() && temp_lifetime.is_some() {
6154
this.cfg.push(block, Statement {
6255
source_info: source_info,

src/librustc_mir/hair/cx/block.rs

+1-2
Original file line numberDiff line numberDiff line change
@@ -82,11 +82,10 @@ pub fn to_expr_ref<'a, 'gcx, 'tcx>(cx: &mut Cx<'a, 'gcx, 'tcx>,
8282
block: &'tcx hir::Block)
8383
-> ExprRef<'tcx> {
8484
let block_ty = cx.tables().node_id_to_type(block.id);
85-
let (temp_lifetime, was_shrunk) = cx.region_maps.temporary_scope2(block.id);
85+
let temp_lifetime = cx.region_maps.temporary_scope(block.id);
8686
let expr = Expr {
8787
ty: block_ty,
8888
temp_lifetime: temp_lifetime,
89-
temp_lifetime_was_shrunk: was_shrunk,
9089
span: block.span,
9190
kind: ExprKind::Block { body: block },
9291
};

0 commit comments

Comments
 (0)