Struct rustc_passes::region::RegionResolutionVisitor [−][src]
struct RegionResolutionVisitor<'tcx> {
tcx: TyCtxt<'tcx>,
expr_and_pat_count: usize,
pessimistic_yield: bool,
fixup_scopes: Vec<Scope>,
scope_tree: ScopeTree,
cx: Context,
terminating_scopes: FxHashSet<ItemLocalId>,
}
Fields
tcx: TyCtxt<'tcx>
expr_and_pat_count: usize
pessimistic_yield: bool
fixup_scopes: Vec<Scope>
scope_tree: ScopeTree
cx: Context
terminating_scopes: FxHashSet<ItemLocalId>
terminating_scopes
is a set containing the ids of each
statement, or conditional/repeating expression. These scopes
are calling “terminating scopes” because, when attempting to
find the scope of a temporary, by default we search up the
enclosing scopes until we encounter the terminating scope. A
conditional/repeating expression is one which is not
guaranteed to execute exactly once upon entering the parent
scope. This could be because the expression only executes
conditionally, such as the expression b
in a && b
, or
because the expression may execute many times, such as a loop
body. The reason that we distinguish such expressions is that,
upon exiting the parent scope, we cannot statically know how
many times the expression executed, and thus if the expression
creates temporaries we cannot know statically how many such
temporaries we would have to cleanup. Therefore, we ensure that
the temporaries never outlast the conditional/repeating
expression, preventing the need for dynamic checks and/or
arbitrary amounts of stack space. Terminating scopes end
up being contained in a DestructionScope that contains the
destructor’s execution.
Implementations
Records the current parent (if any) as the parent of child_scope
.
Returns the depth of child_scope
.
Records the current parent (if any) as the parent of child_scope
,
and sets child_scope
as the new current parent.
Trait Implementations
The default versions of the visit_nested_XXX
routines invoke
this method to get a map to use. By selecting an enum variant,
you control which kinds of nested HIR are visited; see
NestedVisitorMap
for details. By “nested HIR”, we are
referring to bits of HIR that are not directly embedded within
one another but rather indirectly, through a table in the
crate. This is done to control dependencies during incremental
compilation: the non-inline bits of HIR can be tracked and
hashed separately. Read more
Invoked when a nested item is encountered. By default does
nothing unless you override nested_visit_map
to return other than
None
, in which case it will walk the item. You probably
don’t want to override this method – instead, override
nested_visit_map
or use the “shallow” or “deep” visit
patterns described on itemlikevisit::ItemLikeVisitor
. The only
reason to override this method is if you want a nested pattern
but cannot supply a Map
; see nested_visit_map
for advice. Read more
Like visit_nested_item()
, but for trait items. See
visit_nested_item()
for advice on when to override this
method. Read more
Like visit_nested_item()
, but for impl items. See
visit_nested_item()
for advice on when to override this
method. Read more
Like visit_nested_item()
, but for foreign items. See
visit_nested_item()
for advice on when to override this
method. Read more
Invoked to visit the body of a function, method or closure. Like
visit_nested_item, does nothing by default unless you override
nested_visit_map
to return other than None
, in which case it will walk
the body. Read more
Visits the top-level item and (optionally) nested items / impl items. See
visit_nested_item
for details. Read more
When invoking visit_all_item_likes()
, you need to supply an
item-like visitor. This method converts an “intra-visit”
visitor into an item-like visitor that walks the entire tree.
If you use this, you probably don’t want to process the
contents of nested item-like things, since the outer loop will
visit them as well. Read more
fn visit_variant_data(
&mut self,
s: &'v VariantData<'v>,
Symbol,
&'v Generics<'v>,
_parent_id: HirId,
Span
)
fn visit_enum_def(
&mut self,
enum_definition: &'v EnumDef<'v>,
generics: &'v Generics<'v>,
item_id: HirId,
Span
)
Auto Trait Implementations
impl<'tcx> !RefUnwindSafe for RegionResolutionVisitor<'tcx>
impl<'tcx> !Send for RegionResolutionVisitor<'tcx>
impl<'tcx> !Sync for RegionResolutionVisitor<'tcx>
impl<'tcx> Unpin for RegionResolutionVisitor<'tcx>
impl<'tcx> !UnwindSafe for RegionResolutionVisitor<'tcx>
Blanket Implementations
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: 312 bytes