Struct rustc_middle::middle::region::ScopeTree [−][src]
pub struct ScopeTree {
pub root_body: Option<HirId>,
pub root_parent: Option<HirId>,
pub parent_map: FxHashMap<Scope, (Scope, ScopeDepth)>,
var_map: FxHashMap<ItemLocalId, Scope>,
destruction_scopes: FxHashMap<ItemLocalId, Scope>,
rvalue_scopes: FxHashMap<ItemLocalId, Option<Scope>>,
pub yield_in_scope: FxHashMap<Scope, YieldData>,
pub body_expr_count: FxHashMap<BodyId, usize>,
}
Expand description
The region scope tree encodes information about region relationships.
Fields
root_body: Option<HirId>
If not empty, this body is the root of this region hierarchy.
root_parent: Option<HirId>
The parent of the root body owner, if the latter is an an associated const or method, as impls/traits can also have lifetime parameters free in this body.
parent_map: FxHashMap<Scope, (Scope, ScopeDepth)>
Maps from a scope ID to the enclosing scope id; this is usually corresponding to the lexical nesting, though in the case of closures the parent scope is the innermost conditional expression or repeating block. (Note that the enclosing scope ID for the block associated with a closure is the closure itself.)
var_map: FxHashMap<ItemLocalId, Scope>
Maps from a variable or binding ID to the block in which that variable is declared.
destruction_scopes: FxHashMap<ItemLocalId, Scope>
Maps from a NodeId
to the associated destruction scope (if any).
rvalue_scopes: FxHashMap<ItemLocalId, Option<Scope>>
rvalue_scopes
includes entries for those expressions whose
cleanup scope is larger than the default. The map goes from the
expression ID to the cleanup scope id. For rvalues not present in
this table, the appropriate cleanup scope is the innermost
enclosing statement, conditional expression, or repeating
block (see terminating_scopes
).
In constants, None is used to indicate that certain expressions
escape into ’static and should have no local cleanup scope.
yield_in_scope: FxHashMap<Scope, YieldData>
If there are any yield
nested within a scope, this map
stores the Span
of the last one and its index in the
postorder of the Visitor traversal on the HIR.
HIR Visitor postorder indexes might seem like a peculiar thing to care about. but it turns out that HIR bindings and the temporary results of HIR expressions are never storage-live at the end of HIR nodes with postorder indexes lower than theirs, and therefore don’t need to be suspended at yield-points at these indexes.
For an example, suppose we have some code such as:
foo(f(), yield y, bar(g()))
With the HIR tree (calls numbered for expository purposes)
Call#0(foo, [Call#1(f), Yield(y), Call#2(bar, Call#3(g))])
Obviously, the result of f()
was created before the yield
(and therefore needs to be kept valid over the yield) while
the result of g()
occurs after the yield (and therefore
doesn’t). If we want to infer that, we can look at the
postorder traversal:
`foo` `f` Call#1 `y` Yield `bar` `g` Call#3 Call#2 Call#0
In which we can easily see that Call#1
occurs before the yield,
and Call#3
after it.
To see that this method works, consider:
Let D
be our binding/temporary and U
be our other HIR node, with
HIR-postorder(U) < HIR-postorder(D)
. Suppose, as in our example,
U is the yield and D is one of the calls.
Let’s show that D
is storage-dead at U
.
Remember that storage-live/storage-dead refers to the state of the storage, and does not consider moves/drop flags.
Then:
-
From the ordering guarantee of HIR visitors (see
rustc_hir::intravisit
),D
does not dominateU
. -
Therefore,
D
is potentially storage-dead atU
(because we might visitU
without ever getting toD
). -
However, we guarantee that at each HIR point, each binding/temporary is always either always storage-live or always storage-dead. This is what is being guaranteed by
terminating_scopes
including all blocks where the count of executions is not guaranteed. -
By
2.
and3.
,D
is statically storage-dead atU
, QED.
This property ought to not on (3) in an essential way – it is probably still correct even if we have “unrestricted” terminating scopes. However, why use the complicated proof when a simple one works?
A subtle thing: box
expressions, such as box (&x, yield 2, &y)
. It
might seem that a box
expression creates a Box<T>
temporary
when it starts executing, at HIR-preorder(BOX-EXPR)
. That might
be true in the MIR desugaring, but it is not important in the semantics.
The reason is that semantically, until the box
expression returns,
the values are still owned by their containing expressions. So
we’ll see that &x
.
body_expr_count: FxHashMap<BodyId, usize>
The number of visit_expr and visit_pat calls done in the body. Used to sanity check visit_expr/visit_pat call count when calculating generator interiors.
Implementations
Returns the narrowest scope that encloses id
, if any.
Returns the lifetime of the local variable var_id
Returns the scope when the temp created by expr_id
will be cleaned up.
Returns true
if subscope
is equal to or is lexically nested inside superscope
, and
false
otherwise.
Used by clippy.
Checks whether the given scope contains a yield
. If so,
returns Some(YieldData)
. If not, returns None
.
Gives the number of expressions visited in a body. Used to sanity check visit_expr call count when calculating generator interiors.
Trait Implementations
fn allocate_from_iter<'a>(
arena: &'a Arena<'tcx>,
iter: impl IntoIterator<Item = Self>
) -> &'a mut [Self]
Auto Trait Implementations
impl RefUnwindSafe for ScopeTree
impl UnwindSafe for ScopeTree
Blanket Implementations
Mutably borrows from an owned value. Read more
impl<Ctxt, T> DepNodeParams<Ctxt> for T where
Ctxt: DepContext,
T: for<'a> HashStable<StableHashingContext<'a>> + Debug,
impl<Ctxt, T> DepNodeParams<Ctxt> for T where
Ctxt: DepContext,
T: for<'a> HashStable<StableHashingContext<'a>> + Debug,
This method turns the parameters of a DepNodeConstructor into an opaque Fingerprint to be used in DepNode. Not all DepNodeParams support being turned into a Fingerprint (they don’t need to if the corresponding DepNode is anonymous). Read more
This method tries to recover the query key from the given DepNode
,
something which is needed when forcing DepNode
s during red-green
evaluation. The query system will only call this method if
fingerprint_style()
is not FingerprintStyle::Opaque
.
It is always valid to return None
here, in which case incremental
compilation will treat the query as having changed instead of forcing it. Read more
Layout
Note: Most layout information is completely unstable and may even differ between compilations. The only exception is types with certain repr(...)
attributes. Please see the Rust Reference’s “Type Layout” chapter for details on type layout guarantees.
Size: 208 bytes