Crate rustc_borrowck

Source
Expand description

This query borrow-checks the MIR to (further) ensure it is not broken.

Modules§

borrow_set 🔒
borrowck_errors 🔒
constraints 🔒
consumers
A public API provided for the Rust compiler consumers. This file provides API for compiler consumers.
dataflow 🔒
def_use 🔒
diagnostics 🔒
Borrow checker diagnostics.
member_constraints 🔒
nll 🔒
The entry point of the NLL borrow checker.
path_utils 🔒
place_ext 🔒
places_conflict 🔒
The borrowck rules for proving disjointness are applied from the “root” of the borrow forwards, iterating over “similar” projections in lockstep until we can prove overlap one way or another. Essentially, we treat Overlap as a monoid and report a conflict if the product ends up not being Disjoint.
polonius 🔒
Polonius analysis and support code:
prefixes 🔒
From the NLL RFC: “Shallow prefixes are found by stripping away fields, but stop at any dereference. So: writing a path like a is illegal if a.b is borrowed. But: writing a is legal if *a is borrowed, whether or not a is a shared or mutable reference. […] “
region_infer 🔒
renumber 🔒
session_diagnostics 🔒
type_check 🔒
This pass type-checks the MIR to ensure it is not broken.
universal_regions 🔒
Code to extract the universally quantified regions declared on a function and the relationships between them. For example:
used_muts 🔒

Structs§

BorrowckInferCtxt 🔒
MirBorrowckCtxt 🔒
RootPlace 🔒
TyCtxtConsts 🔒
Associate some local constants with the 'tcx lifetime

Enums§

AccessDepth 🔒
ArtificialField 🔒
InitializationRequiringAction 🔒
LocalMutationIsAllowed 🔒
When checking permissions for a place access, this flag is used to indicate that an immutable local place can be mutated.
Overlap 🔒
The degree of overlap between 2 places for borrow-checking.
ReadKind 🔒
Kind of read access to a value (For informational purposes only)
ReadOrWrite 🔒
Kind of access to a value: read or write (For informational purposes only)
WriteKind 🔒
Kind of write access to a value (For informational purposes only)

Statics§

DEFAULT_LOCALE_RESOURCE
Raw content of Fluent resource for this crate, generated by fluent_messages macro, imported by rustc_driver to include all crates’ resources in one bundle.

Functions§

do_mir_borrowck 🔒
Perform the actual borrow checking.
get_flow_results 🔒
mir_borrowck 🔒
provide