Struct rustc_borrowck::type_check::TypeChecker
source · [−]struct TypeChecker<'a, 'tcx> {
infcx: &'a InferCtxt<'a, 'tcx>,
param_env: ParamEnv<'tcx>,
last_span: Span,
body: &'a Body<'tcx>,
user_type_annotations: &'a CanonicalUserTypeAnnotations<'tcx>,
region_bound_pairs: &'a RegionBoundPairs<'tcx>,
implicit_region_bound: Region<'tcx>,
reported_errors: FxHashSet<(Ty<'tcx>, Span)>,
borrowck_context: &'a mut BorrowCheckContext<'a, 'tcx>,
}
Expand description
The MIR type checker. Visits the MIR and enforces all the constraints needed for it to be valid and well-typed. Along the way, it accrues region constraints – these can later be used by NLL region checking.
Fields
infcx: &'a InferCtxt<'a, 'tcx>
param_env: ParamEnv<'tcx>
last_span: Span
body: &'a Body<'tcx>
user_type_annotations: &'a CanonicalUserTypeAnnotations<'tcx>
User type annotations are shared between the main MIR and the MIR of all of the promoted items.
region_bound_pairs: &'a RegionBoundPairs<'tcx>
implicit_region_bound: Region<'tcx>
reported_errors: FxHashSet<(Ty<'tcx>, Span)>
borrowck_context: &'a mut BorrowCheckContext<'a, 'tcx>
Implementations
sourceimpl<'a, 'tcx> TypeChecker<'a, 'tcx>
impl<'a, 'tcx> TypeChecker<'a, 'tcx>
sourcepub(super) fn fully_perform_op<R, Op>(
&mut self,
locations: Locations,
category: ConstraintCategory<'tcx>,
op: Op
) -> Fallible<R>where
Op: TypeOp<'tcx, Output = R>,
Op::ErrorInfo: ToUniverseInfo<'tcx>,
pub(super) fn fully_perform_op<R, Op>(
&mut self,
locations: Locations,
category: ConstraintCategory<'tcx>,
op: Op
) -> Fallible<R>where
Op: TypeOp<'tcx, Output = R>,
Op::ErrorInfo: ToUniverseInfo<'tcx>,
Given some operation op
that manipulates types, proves
predicates, or otherwise uses the inference context, executes
op
and then executes all the further obligations that op
returns. This will yield a set of outlives constraints amongst
regions which are extracted and stored as having occurred at
locations
.
Any rustc_infer::infer
operations that might generate region
constraints should occur within this method so that those
constraints can be properly localized!
pub(super) fn instantiate_canonical_with_fresh_inference_vars<T>(
&mut self,
span: Span,
canonical: &Canonical<'tcx, T>
) -> Twhere
T: TypeFoldable<'tcx>,
pub(super) fn prove_trait_ref(
&mut self,
trait_ref: TraitRef<'tcx>,
locations: Locations,
category: ConstraintCategory<'tcx>
)
pub(super) fn normalize_and_prove_instantiated_predicates(
&mut self,
_def_id: DefId,
instantiated_predicates: InstantiatedPredicates<'tcx>,
locations: Locations
)
pub(super) fn prove_predicates(
&mut self,
predicates: impl IntoIterator<Item = impl ToPredicate<'tcx>>,
locations: Locations,
category: ConstraintCategory<'tcx>
)
pub(super) fn prove_predicate(
&mut self,
predicate: Predicate<'tcx>,
locations: Locations,
category: ConstraintCategory<'tcx>
)
pub(super) fn normalize<T>(
&mut self,
value: T,
location: impl NormalizeLocation
) -> Twhere
T: Normalizable<'tcx> + Display + Copy + 'tcx,
sourceimpl<'a, 'tcx> TypeChecker<'a, 'tcx>
impl<'a, 'tcx> TypeChecker<'a, 'tcx>
pub(super) fn equate_inputs_and_outputs(
&mut self,
body: &Body<'tcx>,
universal_regions: &UniversalRegions<'tcx>,
normalized_inputs_and_output: &[Ty<'tcx>]
)
fn equate_normalized_input_or_output(
&mut self,
a: Ty<'tcx>,
b: Ty<'tcx>,
span: Span
)
pub(crate) fn normalize_and_add_constraints(
&mut self,
t: Ty<'tcx>
) -> Fallible<Ty<'tcx>>
sourceimpl<'a, 'tcx> TypeChecker<'a, 'tcx>
impl<'a, 'tcx> TypeChecker<'a, 'tcx>
sourcepub(super) fn relate_types(
&mut self,
a: Ty<'tcx>,
v: Variance,
b: Ty<'tcx>,
locations: Locations,
category: ConstraintCategory<'tcx>
) -> Fallible<()>
pub(super) fn relate_types(
&mut self,
a: Ty<'tcx>,
v: Variance,
b: Ty<'tcx>,
locations: Locations,
category: ConstraintCategory<'tcx>
) -> Fallible<()>
Adds sufficient constraints to ensure that a R b
where R
depends on v
:
- “Covariant”
a <: b
- “Invariant”
a == b
- “Contravariant”
a :> b
N.B., the type a
is permitted to have unresolved inference
variables, but not the type b
.
sourcepub(super) fn eq_substs(
&mut self,
a: SubstsRef<'tcx>,
b: SubstsRef<'tcx>,
locations: Locations,
category: ConstraintCategory<'tcx>
) -> Fallible<()>
pub(super) fn eq_substs(
&mut self,
a: SubstsRef<'tcx>,
b: SubstsRef<'tcx>,
locations: Locations,
category: ConstraintCategory<'tcx>
) -> Fallible<()>
Add sufficient constraints to ensure a == b
. See also Self::relate_types.
sourceimpl<'a, 'tcx> TypeChecker<'a, 'tcx>
impl<'a, 'tcx> TypeChecker<'a, 'tcx>
fn new(
infcx: &'a InferCtxt<'a, 'tcx>,
body: &'a Body<'tcx>,
param_env: ParamEnv<'tcx>,
region_bound_pairs: &'a RegionBoundPairs<'tcx>,
implicit_region_bound: Region<'tcx>,
borrowck_context: &'a mut BorrowCheckContext<'a, 'tcx>
) -> Self
fn body(&self) -> &Body<'tcx>
fn unsized_feature_enabled(&self) -> bool
sourcefn check_user_type_annotations(&mut self)
fn check_user_type_annotations(&mut self)
Equate the inferred type and the annotated type for user type annotations
fn push_region_constraints(
&mut self,
locations: Locations,
category: ConstraintCategory<'tcx>,
data: &QueryRegionConstraints<'tcx>
)
sourcefn sub_types(
&mut self,
sub: Ty<'tcx>,
sup: Ty<'tcx>,
locations: Locations,
category: ConstraintCategory<'tcx>
) -> Fallible<()>
fn sub_types(
&mut self,
sub: Ty<'tcx>,
sup: Ty<'tcx>,
locations: Locations,
category: ConstraintCategory<'tcx>
) -> Fallible<()>
Try to relate sub <: sup
fn eq_types(
&mut self,
expected: Ty<'tcx>,
found: Ty<'tcx>,
locations: Locations,
category: ConstraintCategory<'tcx>
) -> Fallible<()>
fn relate_type_and_user_type(
&mut self,
a: Ty<'tcx>,
v: Variance,
user_ty: &UserTypeProjection,
locations: Locations,
category: ConstraintCategory<'tcx>
) -> Fallible<()>
fn tcx(&self) -> TyCtxt<'tcx>
fn check_stmt(
&mut self,
body: &Body<'tcx>,
stmt: &Statement<'tcx>,
location: Location
)
fn check_terminator(
&mut self,
body: &Body<'tcx>,
term: &Terminator<'tcx>,
term_location: Location
)
fn check_call_dest(
&mut self,
body: &Body<'tcx>,
term: &Terminator<'tcx>,
sig: &FnSig<'tcx>,
destination: Place<'tcx>,
target: Option<BasicBlock>,
term_location: Location
)
fn check_call_inputs(
&mut self,
body: &Body<'tcx>,
term: &Terminator<'tcx>,
sig: &FnSig<'tcx>,
args: &[Operand<'tcx>],
term_location: Location,
from_hir_call: bool
)
fn check_iscleanup(
&mut self,
body: &Body<'tcx>,
block_data: &BasicBlockData<'tcx>
)
fn assert_iscleanup(
&mut self,
body: &Body<'tcx>,
ctxt: &dyn Debug,
bb: BasicBlock,
iscleanuppad: bool
)
fn check_local(
&mut self,
body: &Body<'tcx>,
local: Local,
local_decl: &LocalDecl<'tcx>
)
fn ensure_place_sized(&mut self, ty: Ty<'tcx>, span: Span)
fn aggregate_field_ty(
&mut self,
ak: &AggregateKind<'tcx>,
field_index: usize,
location: Location
) -> Result<Ty<'tcx>, FieldAccessError>
fn check_operand(&mut self, op: &Operand<'tcx>, location: Location)
fn check_rvalue(
&mut self,
body: &Body<'tcx>,
rvalue: &Rvalue<'tcx>,
location: Location
)
sourcefn rvalue_user_ty(
&self,
rvalue: &Rvalue<'tcx>
) -> Option<UserTypeAnnotationIndex>
fn rvalue_user_ty(
&self,
rvalue: &Rvalue<'tcx>
) -> Option<UserTypeAnnotationIndex>
If this rvalue supports a user-given type annotation, then extract and return it. This represents the final type of the rvalue and will be unified with the inferred type.
fn check_aggregate_rvalue(
&mut self,
body: &Body<'tcx>,
rvalue: &Rvalue<'tcx>,
aggregate_kind: &AggregateKind<'tcx>,
operands: &[Operand<'tcx>],
location: Location
)
sourcefn add_reborrow_constraint(
&mut self,
body: &Body<'tcx>,
location: Location,
borrow_region: Region<'tcx>,
borrowed_place: &Place<'tcx>
)
fn add_reborrow_constraint(
&mut self,
body: &Body<'tcx>,
location: Location,
borrow_region: Region<'tcx>,
borrowed_place: &Place<'tcx>
)
Adds the constraints that arise from a borrow expression &'a P
at the location L
.
Parameters
location
: the locationL
where the borrow expression occursborrow_region
: the region'a
associated with the borrowborrowed_place
: the placeP
being borrowed
fn prove_aggregate_predicates(
&mut self,
aggregate_kind: &AggregateKind<'tcx>,
location: Location
)
fn prove_closure_bounds(
&mut self,
tcx: TyCtxt<'tcx>,
def_id: LocalDefId,
substs: SubstsRef<'tcx>,
location: Location
) -> InstantiatedPredicates<'tcx>
fn typeck_mir(&mut self, body: &Body<'tcx>)
Auto Trait Implementations
impl<'a, 'tcx> !RefUnwindSafe for TypeChecker<'a, 'tcx>
impl<'a, 'tcx> !Send for TypeChecker<'a, 'tcx>
impl<'a, 'tcx> !Sync for TypeChecker<'a, 'tcx>
impl<'a, 'tcx> Unpin for TypeChecker<'a, 'tcx>where
'tcx: 'a,
impl<'a, 'tcx> !UnwindSafe for TypeChecker<'a, 'tcx>
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
impl<'a, T> Captures<'a> for Twhere
T: ?Sized,
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: 96 bytes