]> git.lizzy.rs Git - rust.git/blob - compiler/rustc_passes/src/region.rs
Stabilize File::options()
[rust.git] / compiler / rustc_passes / src / region.rs
1 //! This file builds up the `ScopeTree`, which describes
2 //! the parent links in the region hierarchy.
3 //!
4 //! For more information about how MIR-based region-checking works,
5 //! see the [rustc dev guide].
6 //!
7 //! [rustc dev guide]: https://rustc-dev-guide.rust-lang.org/borrow_check.html
8
9 use rustc_ast::walk_list;
10 use rustc_data_structures::fx::FxHashSet;
11 use rustc_hir as hir;
12 use rustc_hir::def_id::DefId;
13 use rustc_hir::intravisit::{self, NestedVisitorMap, Visitor};
14 use rustc_hir::{Arm, Block, Expr, Local, Node, Pat, PatKind, Stmt};
15 use rustc_index::vec::Idx;
16 use rustc_middle::middle::region::*;
17 use rustc_middle::ty::query::Providers;
18 use rustc_middle::ty::TyCtxt;
19 use rustc_span::source_map;
20 use rustc_span::Span;
21
22 use std::mem;
23
24 #[derive(Debug, Copy, Clone)]
25 pub struct Context {
26     /// The scope that contains any new variables declared, plus its depth in
27     /// the scope tree.
28     var_parent: Option<(Scope, ScopeDepth)>,
29
30     /// Region parent of expressions, etc., plus its depth in the scope tree.
31     parent: Option<(Scope, ScopeDepth)>,
32 }
33
34 struct RegionResolutionVisitor<'tcx> {
35     tcx: TyCtxt<'tcx>,
36
37     // The number of expressions and patterns visited in the current body.
38     expr_and_pat_count: usize,
39     // When this is `true`, we record the `Scopes` we encounter
40     // when processing a Yield expression. This allows us to fix
41     // up their indices.
42     pessimistic_yield: bool,
43     // Stores scopes when `pessimistic_yield` is `true`.
44     fixup_scopes: Vec<Scope>,
45     // The generated scope tree.
46     scope_tree: ScopeTree,
47
48     cx: Context,
49
50     /// `terminating_scopes` is a set containing the ids of each
51     /// statement, or conditional/repeating expression. These scopes
52     /// are calling "terminating scopes" because, when attempting to
53     /// find the scope of a temporary, by default we search up the
54     /// enclosing scopes until we encounter the terminating scope. A
55     /// conditional/repeating expression is one which is not
56     /// guaranteed to execute exactly once upon entering the parent
57     /// scope. This could be because the expression only executes
58     /// conditionally, such as the expression `b` in `a && b`, or
59     /// because the expression may execute many times, such as a loop
60     /// body. The reason that we distinguish such expressions is that,
61     /// upon exiting the parent scope, we cannot statically know how
62     /// many times the expression executed, and thus if the expression
63     /// creates temporaries we cannot know statically how many such
64     /// temporaries we would have to cleanup. Therefore, we ensure that
65     /// the temporaries never outlast the conditional/repeating
66     /// expression, preventing the need for dynamic checks and/or
67     /// arbitrary amounts of stack space. Terminating scopes end
68     /// up being contained in a DestructionScope that contains the
69     /// destructor's execution.
70     terminating_scopes: FxHashSet<hir::ItemLocalId>,
71 }
72
73 /// Records the lifetime of a local variable as `cx.var_parent`
74 fn record_var_lifetime(
75     visitor: &mut RegionResolutionVisitor<'_>,
76     var_id: hir::ItemLocalId,
77     _sp: Span,
78 ) {
79     match visitor.cx.var_parent {
80         None => {
81             // this can happen in extern fn declarations like
82             //
83             // extern fn isalnum(c: c_int) -> c_int
84         }
85         Some((parent_scope, _)) => visitor.scope_tree.record_var_scope(var_id, parent_scope),
86     }
87 }
88
89 fn resolve_block<'tcx>(visitor: &mut RegionResolutionVisitor<'tcx>, blk: &'tcx hir::Block<'tcx>) {
90     debug!("resolve_block(blk.hir_id={:?})", blk.hir_id);
91
92     let prev_cx = visitor.cx;
93
94     // We treat the tail expression in the block (if any) somewhat
95     // differently from the statements. The issue has to do with
96     // temporary lifetimes. Consider the following:
97     //
98     //    quux({
99     //        let inner = ... (&bar()) ...;
100     //
101     //        (... (&foo()) ...) // (the tail expression)
102     //    }, other_argument());
103     //
104     // Each of the statements within the block is a terminating
105     // scope, and thus a temporary (e.g., the result of calling
106     // `bar()` in the initializer expression for `let inner = ...;`)
107     // will be cleaned up immediately after its corresponding
108     // statement (i.e., `let inner = ...;`) executes.
109     //
110     // On the other hand, temporaries associated with evaluating the
111     // tail expression for the block are assigned lifetimes so that
112     // they will be cleaned up as part of the terminating scope
113     // *surrounding* the block expression. Here, the terminating
114     // scope for the block expression is the `quux(..)` call; so
115     // those temporaries will only be cleaned up *after* both
116     // `other_argument()` has run and also the call to `quux(..)`
117     // itself has returned.
118
119     visitor.enter_node_scope_with_dtor(blk.hir_id.local_id);
120     visitor.cx.var_parent = visitor.cx.parent;
121
122     {
123         // This block should be kept approximately in sync with
124         // `intravisit::walk_block`. (We manually walk the block, rather
125         // than call `walk_block`, in order to maintain precise
126         // index information.)
127
128         for (i, statement) in blk.stmts.iter().enumerate() {
129             match statement.kind {
130                 hir::StmtKind::Local(..) | hir::StmtKind::Item(..) => {
131                     // Each declaration introduces a subscope for bindings
132                     // introduced by the declaration; this subscope covers a
133                     // suffix of the block. Each subscope in a block has the
134                     // previous subscope in the block as a parent, except for
135                     // the first such subscope, which has the block itself as a
136                     // parent.
137                     visitor.enter_scope(Scope {
138                         id: blk.hir_id.local_id,
139                         data: ScopeData::Remainder(FirstStatementIndex::new(i)),
140                     });
141                     visitor.cx.var_parent = visitor.cx.parent;
142                 }
143                 hir::StmtKind::Expr(..) | hir::StmtKind::Semi(..) => {}
144             }
145             visitor.visit_stmt(statement)
146         }
147         walk_list!(visitor, visit_expr, &blk.expr);
148     }
149
150     visitor.cx = prev_cx;
151 }
152
153 fn resolve_arm<'tcx>(visitor: &mut RegionResolutionVisitor<'tcx>, arm: &'tcx hir::Arm<'tcx>) {
154     let prev_cx = visitor.cx;
155
156     visitor.enter_scope(Scope { id: arm.hir_id.local_id, data: ScopeData::Node });
157     visitor.cx.var_parent = visitor.cx.parent;
158
159     visitor.terminating_scopes.insert(arm.body.hir_id.local_id);
160
161     if let Some(hir::Guard::If(ref expr)) = arm.guard {
162         visitor.terminating_scopes.insert(expr.hir_id.local_id);
163     }
164
165     intravisit::walk_arm(visitor, arm);
166
167     visitor.cx = prev_cx;
168 }
169
170 fn resolve_pat<'tcx>(visitor: &mut RegionResolutionVisitor<'tcx>, pat: &'tcx hir::Pat<'tcx>) {
171     visitor.record_child_scope(Scope { id: pat.hir_id.local_id, data: ScopeData::Node });
172
173     // If this is a binding then record the lifetime of that binding.
174     if let PatKind::Binding(..) = pat.kind {
175         record_var_lifetime(visitor, pat.hir_id.local_id, pat.span);
176     }
177
178     debug!("resolve_pat - pre-increment {} pat = {:?}", visitor.expr_and_pat_count, pat);
179
180     intravisit::walk_pat(visitor, pat);
181
182     visitor.expr_and_pat_count += 1;
183
184     debug!("resolve_pat - post-increment {} pat = {:?}", visitor.expr_and_pat_count, pat);
185 }
186
187 fn resolve_stmt<'tcx>(visitor: &mut RegionResolutionVisitor<'tcx>, stmt: &'tcx hir::Stmt<'tcx>) {
188     let stmt_id = stmt.hir_id.local_id;
189     debug!("resolve_stmt(stmt.id={:?})", stmt_id);
190
191     // Every statement will clean up the temporaries created during
192     // execution of that statement. Therefore each statement has an
193     // associated destruction scope that represents the scope of the
194     // statement plus its destructors, and thus the scope for which
195     // regions referenced by the destructors need to survive.
196     visitor.terminating_scopes.insert(stmt_id);
197
198     let prev_parent = visitor.cx.parent;
199     visitor.enter_node_scope_with_dtor(stmt_id);
200
201     intravisit::walk_stmt(visitor, stmt);
202
203     visitor.cx.parent = prev_parent;
204 }
205
206 fn resolve_expr<'tcx>(visitor: &mut RegionResolutionVisitor<'tcx>, expr: &'tcx hir::Expr<'tcx>) {
207     debug!("resolve_expr - pre-increment {} expr = {:?}", visitor.expr_and_pat_count, expr);
208
209     let prev_cx = visitor.cx;
210     visitor.enter_node_scope_with_dtor(expr.hir_id.local_id);
211
212     {
213         let terminating_scopes = &mut visitor.terminating_scopes;
214         let mut terminating = |id: hir::ItemLocalId| {
215             terminating_scopes.insert(id);
216         };
217         match expr.kind {
218             // Conditional or repeating scopes are always terminating
219             // scopes, meaning that temporaries cannot outlive them.
220             // This ensures fixed size stacks.
221             hir::ExprKind::Binary(
222                 source_map::Spanned { node: hir::BinOpKind::And, .. },
223                 _,
224                 ref r,
225             )
226             | hir::ExprKind::Binary(
227                 source_map::Spanned { node: hir::BinOpKind::Or, .. },
228                 _,
229                 ref r,
230             ) => {
231                 // For shortcircuiting operators, mark the RHS as a terminating
232                 // scope since it only executes conditionally.
233                 terminating(r.hir_id.local_id);
234             }
235
236             hir::ExprKind::If(_, ref then, Some(ref otherwise)) => {
237                 terminating(then.hir_id.local_id);
238                 terminating(otherwise.hir_id.local_id);
239             }
240
241             hir::ExprKind::If(_, ref then, None) => {
242                 terminating(then.hir_id.local_id);
243             }
244
245             hir::ExprKind::Loop(ref body, _, _, _) => {
246                 terminating(body.hir_id.local_id);
247             }
248
249             hir::ExprKind::DropTemps(ref expr) => {
250                 // `DropTemps(expr)` does not denote a conditional scope.
251                 // Rather, we want to achieve the same behavior as `{ let _t = expr; _t }`.
252                 terminating(expr.hir_id.local_id);
253             }
254
255             hir::ExprKind::AssignOp(..)
256             | hir::ExprKind::Index(..)
257             | hir::ExprKind::Unary(..)
258             | hir::ExprKind::Call(..)
259             | hir::ExprKind::MethodCall(..) => {
260                 // FIXME(https://github.com/rust-lang/rfcs/issues/811) Nested method calls
261                 //
262                 // The lifetimes for a call or method call look as follows:
263                 //
264                 // call.id
265                 // - arg0.id
266                 // - ...
267                 // - argN.id
268                 // - call.callee_id
269                 //
270                 // The idea is that call.callee_id represents *the time when
271                 // the invoked function is actually running* and call.id
272                 // represents *the time to prepare the arguments and make the
273                 // call*.  See the section "Borrows in Calls" borrowck/README.md
274                 // for an extended explanation of why this distinction is
275                 // important.
276                 //
277                 // record_superlifetime(new_cx, expr.callee_id);
278             }
279
280             _ => {}
281         }
282     }
283
284     let prev_pessimistic = visitor.pessimistic_yield;
285
286     // Ordinarily, we can rely on the visit order of HIR intravisit
287     // to correspond to the actual execution order of statements.
288     // However, there's a weird corner case with compound assignment
289     // operators (e.g. `a += b`). The evaluation order depends on whether
290     // or not the operator is overloaded (e.g. whether or not a trait
291     // like AddAssign is implemented).
292
293     // For primitive types (which, despite having a trait impl, don't actually
294     // end up calling it), the evluation order is right-to-left. For example,
295     // the following code snippet:
296     //
297     //    let y = &mut 0;
298     //    *{println!("LHS!"); y} += {println!("RHS!"); 1};
299     //
300     // will print:
301     //
302     // RHS!
303     // LHS!
304     //
305     // However, if the operator is used on a non-primitive type,
306     // the evaluation order will be left-to-right, since the operator
307     // actually get desugared to a method call. For example, this
308     // nearly identical code snippet:
309     //
310     //     let y = &mut String::new();
311     //    *{println!("LHS String"); y} += {println!("RHS String"); "hi"};
312     //
313     // will print:
314     // LHS String
315     // RHS String
316     //
317     // To determine the actual execution order, we need to perform
318     // trait resolution. Unfortunately, we need to be able to compute
319     // yield_in_scope before type checking is even done, as it gets
320     // used by AST borrowcheck.
321     //
322     // Fortunately, we don't need to know the actual execution order.
323     // It suffices to know the 'worst case' order with respect to yields.
324     // Specifically, we need to know the highest 'expr_and_pat_count'
325     // that we could assign to the yield expression. To do this,
326     // we pick the greater of the two values from the left-hand
327     // and right-hand expressions. This makes us overly conservative
328     // about what types could possibly live across yield points,
329     // but we will never fail to detect that a type does actually
330     // live across a yield point. The latter part is critical -
331     // we're already overly conservative about what types will live
332     // across yield points, as the generated MIR will determine
333     // when things are actually live. However, for typecheck to work
334     // properly, we can't miss any types.
335
336     match expr.kind {
337         // Manually recurse over closures, because they are the only
338         // case of nested bodies that share the parent environment.
339         hir::ExprKind::Closure(.., body, _, _) => {
340             let body = visitor.tcx.hir().body(body);
341             visitor.visit_body(body);
342         }
343         hir::ExprKind::AssignOp(_, ref left_expr, ref right_expr) => {
344             debug!(
345                 "resolve_expr - enabling pessimistic_yield, was previously {}",
346                 prev_pessimistic
347             );
348
349             let start_point = visitor.fixup_scopes.len();
350             visitor.pessimistic_yield = true;
351
352             // If the actual execution order turns out to be right-to-left,
353             // then we're fine. However, if the actual execution order is left-to-right,
354             // then we'll assign too low a count to any `yield` expressions
355             // we encounter in 'right_expression' - they should really occur after all of the
356             // expressions in 'left_expression'.
357             visitor.visit_expr(&right_expr);
358             visitor.pessimistic_yield = prev_pessimistic;
359
360             debug!("resolve_expr - restoring pessimistic_yield to {}", prev_pessimistic);
361             visitor.visit_expr(&left_expr);
362             debug!("resolve_expr - fixing up counts to {}", visitor.expr_and_pat_count);
363
364             // Remove and process any scopes pushed by the visitor
365             let target_scopes = visitor.fixup_scopes.drain(start_point..);
366
367             for scope in target_scopes {
368                 let mut yield_data = visitor.scope_tree.yield_in_scope.get_mut(&scope).unwrap();
369                 let count = yield_data.expr_and_pat_count;
370                 let span = yield_data.span;
371
372                 // expr_and_pat_count never decreases. Since we recorded counts in yield_in_scope
373                 // before walking the left-hand side, it should be impossible for the recorded
374                 // count to be greater than the left-hand side count.
375                 if count > visitor.expr_and_pat_count {
376                     bug!(
377                         "Encountered greater count {} at span {:?} - expected no greater than {}",
378                         count,
379                         span,
380                         visitor.expr_and_pat_count
381                     );
382                 }
383                 let new_count = visitor.expr_and_pat_count;
384                 debug!(
385                     "resolve_expr - increasing count for scope {:?} from {} to {} at span {:?}",
386                     scope, count, new_count, span
387                 );
388
389                 yield_data.expr_and_pat_count = new_count;
390             }
391         }
392
393         hir::ExprKind::If(ref cond, ref then, Some(ref otherwise)) => {
394             let expr_cx = visitor.cx;
395             visitor.enter_scope(Scope { id: then.hir_id.local_id, data: ScopeData::IfThen });
396             visitor.cx.var_parent = visitor.cx.parent;
397             visitor.visit_expr(cond);
398             visitor.visit_expr(then);
399             visitor.cx = expr_cx;
400             visitor.visit_expr(otherwise);
401         }
402
403         hir::ExprKind::If(ref cond, ref then, None) => {
404             let expr_cx = visitor.cx;
405             visitor.enter_scope(Scope { id: then.hir_id.local_id, data: ScopeData::IfThen });
406             visitor.cx.var_parent = visitor.cx.parent;
407             visitor.visit_expr(cond);
408             visitor.visit_expr(then);
409             visitor.cx = expr_cx;
410         }
411
412         _ => intravisit::walk_expr(visitor, expr),
413     }
414
415     visitor.expr_and_pat_count += 1;
416
417     debug!("resolve_expr post-increment {}, expr = {:?}", visitor.expr_and_pat_count, expr);
418
419     if let hir::ExprKind::Yield(_, source) = &expr.kind {
420         // Mark this expr's scope and all parent scopes as containing `yield`.
421         let mut scope = Scope { id: expr.hir_id.local_id, data: ScopeData::Node };
422         loop {
423             let data = YieldData {
424                 span: expr.span,
425                 expr_and_pat_count: visitor.expr_and_pat_count,
426                 source: *source,
427             };
428             visitor.scope_tree.yield_in_scope.insert(scope, data);
429             if visitor.pessimistic_yield {
430                 debug!("resolve_expr in pessimistic_yield - marking scope {:?} for fixup", scope);
431                 visitor.fixup_scopes.push(scope);
432             }
433
434             // Keep traversing up while we can.
435             match visitor.scope_tree.parent_map.get(&scope) {
436                 // Don't cross from closure bodies to their parent.
437                 Some(&(superscope, _)) => match superscope.data {
438                     ScopeData::CallSite => break,
439                     _ => scope = superscope,
440                 },
441                 None => break,
442             }
443         }
444     }
445
446     visitor.cx = prev_cx;
447 }
448
449 fn resolve_local<'tcx>(
450     visitor: &mut RegionResolutionVisitor<'tcx>,
451     pat: Option<&'tcx hir::Pat<'tcx>>,
452     init: Option<&'tcx hir::Expr<'tcx>>,
453 ) {
454     debug!("resolve_local(pat={:?}, init={:?})", pat, init);
455
456     let blk_scope = visitor.cx.var_parent.map(|(p, _)| p);
457
458     // As an exception to the normal rules governing temporary
459     // lifetimes, initializers in a let have a temporary lifetime
460     // of the enclosing block. This means that e.g., a program
461     // like the following is legal:
462     //
463     //     let ref x = HashMap::new();
464     //
465     // Because the hash map will be freed in the enclosing block.
466     //
467     // We express the rules more formally based on 3 grammars (defined
468     // fully in the helpers below that implement them):
469     //
470     // 1. `E&`, which matches expressions like `&<rvalue>` that
471     //    own a pointer into the stack.
472     //
473     // 2. `P&`, which matches patterns like `ref x` or `(ref x, ref
474     //    y)` that produce ref bindings into the value they are
475     //    matched against or something (at least partially) owned by
476     //    the value they are matched against. (By partially owned,
477     //    I mean that creating a binding into a ref-counted or managed value
478     //    would still count.)
479     //
480     // 3. `ET`, which matches both rvalues like `foo()` as well as places
481     //    based on rvalues like `foo().x[2].y`.
482     //
483     // A subexpression `<rvalue>` that appears in a let initializer
484     // `let pat [: ty] = expr` has an extended temporary lifetime if
485     // any of the following conditions are met:
486     //
487     // A. `pat` matches `P&` and `expr` matches `ET`
488     //    (covers cases where `pat` creates ref bindings into an rvalue
489     //     produced by `expr`)
490     // B. `ty` is a borrowed pointer and `expr` matches `ET`
491     //    (covers cases where coercion creates a borrow)
492     // C. `expr` matches `E&`
493     //    (covers cases `expr` borrows an rvalue that is then assigned
494     //     to memory (at least partially) owned by the binding)
495     //
496     // Here are some examples hopefully giving an intuition where each
497     // rule comes into play and why:
498     //
499     // Rule A. `let (ref x, ref y) = (foo().x, 44)`. The rvalue `(22, 44)`
500     // would have an extended lifetime, but not `foo()`.
501     //
502     // Rule B. `let x = &foo().x`. The rvalue `foo()` would have extended
503     // lifetime.
504     //
505     // In some cases, multiple rules may apply (though not to the same
506     // rvalue). For example:
507     //
508     //     let ref x = [&a(), &b()];
509     //
510     // Here, the expression `[...]` has an extended lifetime due to rule
511     // A, but the inner rvalues `a()` and `b()` have an extended lifetime
512     // due to rule C.
513
514     if let Some(expr) = init {
515         record_rvalue_scope_if_borrow_expr(visitor, &expr, blk_scope);
516
517         if let Some(pat) = pat {
518             if is_binding_pat(pat) {
519                 record_rvalue_scope(visitor, &expr, blk_scope);
520             }
521         }
522     }
523
524     // Make sure we visit the initializer first, so expr_and_pat_count remains correct
525     if let Some(expr) = init {
526         visitor.visit_expr(expr);
527     }
528     if let Some(pat) = pat {
529         visitor.visit_pat(pat);
530     }
531
532     /// Returns `true` if `pat` match the `P&` non-terminal.
533     ///
534     /// ```text
535     ///     P& = ref X
536     ///        | StructName { ..., P&, ... }
537     ///        | VariantName(..., P&, ...)
538     ///        | [ ..., P&, ... ]
539     ///        | ( ..., P&, ... )
540     ///        | ... "|" P& "|" ...
541     ///        | box P&
542     /// ```
543     fn is_binding_pat(pat: &hir::Pat<'_>) -> bool {
544         // Note that the code below looks for *explicit* refs only, that is, it won't
545         // know about *implicit* refs as introduced in #42640.
546         //
547         // This is not a problem. For example, consider
548         //
549         //      let (ref x, ref y) = (Foo { .. }, Bar { .. });
550         //
551         // Due to the explicit refs on the left hand side, the below code would signal
552         // that the temporary value on the right hand side should live until the end of
553         // the enclosing block (as opposed to being dropped after the let is complete).
554         //
555         // To create an implicit ref, however, you must have a borrowed value on the RHS
556         // already, as in this example (which won't compile before #42640):
557         //
558         //      let Foo { x, .. } = &Foo { x: ..., ... };
559         //
560         // in place of
561         //
562         //      let Foo { ref x, .. } = Foo { ... };
563         //
564         // In the former case (the implicit ref version), the temporary is created by the
565         // & expression, and its lifetime would be extended to the end of the block (due
566         // to a different rule, not the below code).
567         match pat.kind {
568             PatKind::Binding(hir::BindingAnnotation::Ref, ..)
569             | PatKind::Binding(hir::BindingAnnotation::RefMut, ..) => true,
570
571             PatKind::Struct(_, ref field_pats, _) => {
572                 field_pats.iter().any(|fp| is_binding_pat(&fp.pat))
573             }
574
575             PatKind::Slice(ref pats1, ref pats2, ref pats3) => {
576                 pats1.iter().any(|p| is_binding_pat(&p))
577                     || pats2.iter().any(|p| is_binding_pat(&p))
578                     || pats3.iter().any(|p| is_binding_pat(&p))
579             }
580
581             PatKind::Or(ref subpats)
582             | PatKind::TupleStruct(_, ref subpats, _)
583             | PatKind::Tuple(ref subpats, _) => subpats.iter().any(|p| is_binding_pat(&p)),
584
585             PatKind::Box(ref subpat) => is_binding_pat(&subpat),
586
587             PatKind::Ref(_, _)
588             | PatKind::Binding(
589                 hir::BindingAnnotation::Unannotated | hir::BindingAnnotation::Mutable,
590                 ..,
591             )
592             | PatKind::Wild
593             | PatKind::Path(_)
594             | PatKind::Lit(_)
595             | PatKind::Range(_, _, _) => false,
596         }
597     }
598
599     /// If `expr` matches the `E&` grammar, then records an extended rvalue scope as appropriate:
600     ///
601     /// ```text
602     ///     E& = & ET
603     ///        | StructName { ..., f: E&, ... }
604     ///        | [ ..., E&, ... ]
605     ///        | ( ..., E&, ... )
606     ///        | {...; E&}
607     ///        | box E&
608     ///        | E& as ...
609     ///        | ( E& )
610     /// ```
611     fn record_rvalue_scope_if_borrow_expr<'tcx>(
612         visitor: &mut RegionResolutionVisitor<'tcx>,
613         expr: &hir::Expr<'_>,
614         blk_id: Option<Scope>,
615     ) {
616         match expr.kind {
617             hir::ExprKind::AddrOf(_, _, ref subexpr) => {
618                 record_rvalue_scope_if_borrow_expr(visitor, &subexpr, blk_id);
619                 record_rvalue_scope(visitor, &subexpr, blk_id);
620             }
621             hir::ExprKind::Struct(_, fields, _) => {
622                 for field in fields {
623                     record_rvalue_scope_if_borrow_expr(visitor, &field.expr, blk_id);
624                 }
625             }
626             hir::ExprKind::Array(subexprs) | hir::ExprKind::Tup(subexprs) => {
627                 for subexpr in subexprs {
628                     record_rvalue_scope_if_borrow_expr(visitor, &subexpr, blk_id);
629                 }
630             }
631             hir::ExprKind::Cast(ref subexpr, _) => {
632                 record_rvalue_scope_if_borrow_expr(visitor, &subexpr, blk_id)
633             }
634             hir::ExprKind::Block(ref block, _) => {
635                 if let Some(ref subexpr) = block.expr {
636                     record_rvalue_scope_if_borrow_expr(visitor, &subexpr, blk_id);
637                 }
638             }
639             _ => {}
640         }
641     }
642
643     /// Applied to an expression `expr` if `expr` -- or something owned or partially owned by
644     /// `expr` -- is going to be indirectly referenced by a variable in a let statement. In that
645     /// case, the "temporary lifetime" or `expr` is extended to be the block enclosing the `let`
646     /// statement.
647     ///
648     /// More formally, if `expr` matches the grammar `ET`, record the rvalue scope of the matching
649     /// `<rvalue>` as `blk_id`:
650     ///
651     /// ```text
652     ///     ET = *ET
653     ///        | ET[...]
654     ///        | ET.f
655     ///        | (ET)
656     ///        | <rvalue>
657     /// ```
658     ///
659     /// Note: ET is intended to match "rvalues or places based on rvalues".
660     fn record_rvalue_scope<'tcx>(
661         visitor: &mut RegionResolutionVisitor<'tcx>,
662         expr: &hir::Expr<'_>,
663         blk_scope: Option<Scope>,
664     ) {
665         let mut expr = expr;
666         loop {
667             // Note: give all the expressions matching `ET` with the
668             // extended temporary lifetime, not just the innermost rvalue,
669             // because in codegen if we must compile e.g., `*rvalue()`
670             // into a temporary, we request the temporary scope of the
671             // outer expression.
672             visitor.scope_tree.record_rvalue_scope(expr.hir_id.local_id, blk_scope);
673
674             match expr.kind {
675                 hir::ExprKind::AddrOf(_, _, ref subexpr)
676                 | hir::ExprKind::Unary(hir::UnOp::Deref, ref subexpr)
677                 | hir::ExprKind::Field(ref subexpr, _)
678                 | hir::ExprKind::Index(ref subexpr, _) => {
679                     expr = &subexpr;
680                 }
681                 _ => {
682                     return;
683                 }
684             }
685         }
686     }
687 }
688
689 impl<'tcx> RegionResolutionVisitor<'tcx> {
690     /// Records the current parent (if any) as the parent of `child_scope`.
691     /// Returns the depth of `child_scope`.
692     fn record_child_scope(&mut self, child_scope: Scope) -> ScopeDepth {
693         let parent = self.cx.parent;
694         self.scope_tree.record_scope_parent(child_scope, parent);
695         // If `child_scope` has no parent, it must be the root node, and so has
696         // a depth of 1. Otherwise, its depth is one more than its parent's.
697         parent.map_or(1, |(_p, d)| d + 1)
698     }
699
700     /// Records the current parent (if any) as the parent of `child_scope`,
701     /// and sets `child_scope` as the new current parent.
702     fn enter_scope(&mut self, child_scope: Scope) {
703         let child_depth = self.record_child_scope(child_scope);
704         self.cx.parent = Some((child_scope, child_depth));
705     }
706
707     fn enter_node_scope_with_dtor(&mut self, id: hir::ItemLocalId) {
708         // If node was previously marked as a terminating scope during the
709         // recursive visit of its parent node in the AST, then we need to
710         // account for the destruction scope representing the scope of
711         // the destructors that run immediately after it completes.
712         if self.terminating_scopes.contains(&id) {
713             self.enter_scope(Scope { id, data: ScopeData::Destruction });
714         }
715         self.enter_scope(Scope { id, data: ScopeData::Node });
716     }
717 }
718
719 impl<'tcx> Visitor<'tcx> for RegionResolutionVisitor<'tcx> {
720     type Map = intravisit::ErasedMap<'tcx>;
721
722     fn nested_visit_map(&mut self) -> NestedVisitorMap<Self::Map> {
723         NestedVisitorMap::None
724     }
725
726     fn visit_block(&mut self, b: &'tcx Block<'tcx>) {
727         resolve_block(self, b);
728     }
729
730     fn visit_body(&mut self, body: &'tcx hir::Body<'tcx>) {
731         let body_id = body.id();
732         let owner_id = self.tcx.hir().body_owner(body_id);
733
734         debug!(
735             "visit_body(id={:?}, span={:?}, body.id={:?}, cx.parent={:?})",
736             owner_id,
737             self.tcx.sess.source_map().span_to_diagnostic_string(body.value.span),
738             body_id,
739             self.cx.parent
740         );
741
742         // Save all state that is specific to the outer function
743         // body. These will be restored once down below, once we've
744         // visited the body.
745         let outer_ec = mem::replace(&mut self.expr_and_pat_count, 0);
746         let outer_cx = self.cx;
747         let outer_ts = mem::take(&mut self.terminating_scopes);
748         // The 'pessimistic yield' flag is set to true when we are
749         // processing a `+=` statement and have to make pessimistic
750         // control flow assumptions. This doesn't apply to nested
751         // bodies within the `+=` statements. See #69307.
752         let outer_pessimistic_yield = mem::replace(&mut self.pessimistic_yield, false);
753         self.terminating_scopes.insert(body.value.hir_id.local_id);
754
755         self.enter_scope(Scope { id: body.value.hir_id.local_id, data: ScopeData::CallSite });
756         self.enter_scope(Scope { id: body.value.hir_id.local_id, data: ScopeData::Arguments });
757
758         // The arguments and `self` are parented to the fn.
759         self.cx.var_parent = self.cx.parent.take();
760         for param in body.params {
761             self.visit_pat(&param.pat);
762         }
763
764         // The body of the every fn is a root scope.
765         self.cx.parent = self.cx.var_parent;
766         if self.tcx.hir().body_owner_kind(owner_id).is_fn_or_closure() {
767             self.visit_expr(&body.value)
768         } else {
769             // Only functions have an outer terminating (drop) scope, while
770             // temporaries in constant initializers may be 'static, but only
771             // according to rvalue lifetime semantics, using the same
772             // syntactical rules used for let initializers.
773             //
774             // e.g., in `let x = &f();`, the temporary holding the result from
775             // the `f()` call lives for the entirety of the surrounding block.
776             //
777             // Similarly, `const X: ... = &f();` would have the result of `f()`
778             // live for `'static`, implying (if Drop restrictions on constants
779             // ever get lifted) that the value *could* have a destructor, but
780             // it'd get leaked instead of the destructor running during the
781             // evaluation of `X` (if at all allowed by CTFE).
782             //
783             // However, `const Y: ... = g(&f());`, like `let y = g(&f());`,
784             // would *not* let the `f()` temporary escape into an outer scope
785             // (i.e., `'static`), which means that after `g` returns, it drops,
786             // and all the associated destruction scope rules apply.
787             self.cx.var_parent = None;
788             resolve_local(self, None, Some(&body.value));
789         }
790
791         if body.generator_kind.is_some() {
792             self.scope_tree.body_expr_count.insert(body_id, self.expr_and_pat_count);
793         }
794
795         // Restore context we had at the start.
796         self.expr_and_pat_count = outer_ec;
797         self.cx = outer_cx;
798         self.terminating_scopes = outer_ts;
799         self.pessimistic_yield = outer_pessimistic_yield;
800     }
801
802     fn visit_arm(&mut self, a: &'tcx Arm<'tcx>) {
803         resolve_arm(self, a);
804     }
805     fn visit_pat(&mut self, p: &'tcx Pat<'tcx>) {
806         resolve_pat(self, p);
807     }
808     fn visit_stmt(&mut self, s: &'tcx Stmt<'tcx>) {
809         resolve_stmt(self, s);
810     }
811     fn visit_expr(&mut self, ex: &'tcx Expr<'tcx>) {
812         resolve_expr(self, ex);
813     }
814     fn visit_local(&mut self, l: &'tcx Local<'tcx>) {
815         resolve_local(self, Some(&l.pat), l.init);
816     }
817 }
818
819 fn region_scope_tree(tcx: TyCtxt<'_>, def_id: DefId) -> &ScopeTree {
820     let closure_base_def_id = tcx.closure_base_def_id(def_id);
821     if closure_base_def_id != def_id {
822         return tcx.region_scope_tree(closure_base_def_id);
823     }
824
825     let id = tcx.hir().local_def_id_to_hir_id(def_id.expect_local());
826     let scope_tree = if let Some(body_id) = tcx.hir().maybe_body_owned_by(id) {
827         let mut visitor = RegionResolutionVisitor {
828             tcx,
829             scope_tree: ScopeTree::default(),
830             expr_and_pat_count: 0,
831             cx: Context { parent: None, var_parent: None },
832             terminating_scopes: Default::default(),
833             pessimistic_yield: false,
834             fixup_scopes: vec![],
835         };
836
837         let body = tcx.hir().body(body_id);
838         visitor.scope_tree.root_body = Some(body.value.hir_id);
839
840         // If the item is an associated const or a method,
841         // record its impl/trait parent, as it can also have
842         // lifetime parameters free in this body.
843         match tcx.hir().get(id) {
844             Node::ImplItem(_) | Node::TraitItem(_) => {
845                 visitor.scope_tree.root_parent = Some(tcx.hir().get_parent_item(id));
846             }
847             _ => {}
848         }
849
850         visitor.visit_body(body);
851
852         visitor.scope_tree
853     } else {
854         ScopeTree::default()
855     };
856
857     tcx.arena.alloc(scope_tree)
858 }
859
860 pub fn provide(providers: &mut Providers) {
861     *providers = Providers { region_scope_tree, ..*providers };
862 }