Struct rustc_infer::infer::InferCtxtInner
source · pub struct InferCtxtInner<'tcx> {
undo_log: InferCtxtUndoLogs<'tcx>,
projection_cache: ProjectionCacheStorage<'tcx>,
type_variable_storage: TypeVariableStorage<'tcx>,
const_unification_storage: UnificationTableStorage<ConstVidKey<'tcx>>,
int_unification_storage: UnificationTableStorage<IntVid>,
float_unification_storage: UnificationTableStorage<FloatVid>,
effect_unification_storage: UnificationTableStorage<EffectVidKey<'tcx>>,
region_constraint_storage: Option<RegionConstraintStorage<'tcx>>,
region_obligations: Vec<RegionObligation<'tcx>>,
opaque_type_storage: OpaqueTypeStorage<'tcx>,
}
Expand description
This type contains all the things within InferCtxt
that sit within a
RefCell
and are involved with taking/rolling back snapshots. Snapshot
operations are hot enough that we want only one call to borrow_mut
per
call to start_snapshot
and rollback_to
.
Fields§
§undo_log: InferCtxtUndoLogs<'tcx>
§projection_cache: ProjectionCacheStorage<'tcx>
Cache for projections.
This cache is snapshotted along with the infcx.
type_variable_storage: TypeVariableStorage<'tcx>
We instantiate UnificationTable
with bounds<Ty>
because the types
that might instantiate a general type variable have an order,
represented by its upper and lower bounds.
const_unification_storage: UnificationTableStorage<ConstVidKey<'tcx>>
Map from const parameter variable to the kind of const it represents.
int_unification_storage: UnificationTableStorage<IntVid>
Map from integral variable to the kind of integer it represents.
float_unification_storage: UnificationTableStorage<FloatVid>
Map from floating variable to the kind of float it represents.
effect_unification_storage: UnificationTableStorage<EffectVidKey<'tcx>>
Map from effect variable to the effect param it represents.
region_constraint_storage: Option<RegionConstraintStorage<'tcx>>
Tracks the set of region variables and the constraints between them.
This is initially Some(_)
but when
resolve_regions_and_report_errors
is invoked, this gets set to None
– further attempts to perform unification, etc., may fail if new
region constraints would’ve been added.
region_obligations: Vec<RegionObligation<'tcx>>
A set of constraints that regionck must validate.
Each constraint has the form T:'a
, meaning “some type T
must
outlive the lifetime ’a”. These constraints derive from
instantiated type parameters. So if you had a struct defined
like the following:
struct Foo<T: 'static> { ... }
In some expression let x = Foo { ... }
, it will
instantiate the type parameter T
with a fresh type $0
. At
the same time, it will record a region obligation of
$0: 'static
. This will get checked later by regionck. (We
can’t generally check these things right away because we have
to wait until types are resolved.)
These are stored in a map keyed to the id of the innermost enclosing fn body / static initializer expression. This is because the location where the obligation was incurred can be relevant with respect to which sublifetime assumptions are in place. The reason that we store under the fn-id, and not something more fine-grained, is so that it is easier for regionck to be sure that it has found all the region obligations (otherwise, it’s easy to fail to walk to a particular node-id).
Before running resolve_regions_and_report_errors
, the creator
of the inference context is expected to invoke
InferCtxt::process_registered_region_obligations
for each body-id in this map, which will process the
obligations within. This is expected to be done ‘late enough’
that all type inference variables have been bound and so forth.
opaque_type_storage: OpaqueTypeStorage<'tcx>
Caches for opaque type inference.
Implementations§
source§impl<'tcx> InferCtxtInner<'tcx>
impl<'tcx> InferCtxtInner<'tcx>
source§impl<'tcx> InferCtxtInner<'tcx>
impl<'tcx> InferCtxtInner<'tcx>
fn new() -> InferCtxtInner<'tcx>
pub fn region_obligations(&self) -> &[RegionObligation<'tcx>]
pub fn projection_cache(&mut self) -> ProjectionCache<'_, 'tcx>
fn try_type_variables_probe_ref( &self, vid: TyVid, ) -> Option<&TypeVariableValue<'tcx>>
fn type_variables(&mut self) -> TypeVariableTable<'_, 'tcx>
pub fn opaque_types(&mut self) -> OpaqueTypeTable<'_, 'tcx>
fn int_unification_table( &mut self, ) -> UnificationTable<InPlace<IntVid, &'_ mut UnificationStorage<IntVid>, &'_ mut InferCtxtUndoLogs<'tcx>>>
fn float_unification_table( &mut self, ) -> UnificationTable<InPlace<FloatVid, &'_ mut UnificationStorage<FloatVid>, &'_ mut InferCtxtUndoLogs<'tcx>>>
fn const_unification_table( &mut self, ) -> UnificationTable<InPlace<ConstVidKey<'tcx>, &'_ mut UnificationStorage<ConstVidKey<'tcx>>, &'_ mut InferCtxtUndoLogs<'tcx>>>
fn effect_unification_table( &mut self, ) -> UnificationTable<InPlace<EffectVidKey<'tcx>, &'_ mut UnificationStorage<EffectVidKey<'tcx>>, &'_ mut InferCtxtUndoLogs<'tcx>>>
pub fn unwrap_region_constraints( &mut self, ) -> RegionConstraintCollector<'_, 'tcx>
pub fn iter_opaque_types( &self, ) -> impl Iterator<Item = (OpaqueTypeKey<'tcx>, OpaqueHiddenType<'tcx>)> + '_
Trait Implementations§
source§impl<'tcx> Clone for InferCtxtInner<'tcx>
impl<'tcx> Clone for InferCtxtInner<'tcx>
source§fn clone(&self) -> InferCtxtInner<'tcx>
fn clone(&self) -> InferCtxtInner<'tcx>
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreAuto Trait Implementations§
impl<'tcx> Freeze for InferCtxtInner<'tcx>
impl<'tcx> !RefUnwindSafe for InferCtxtInner<'tcx>
impl<'tcx> !Send for InferCtxtInner<'tcx>
impl<'tcx> !Sync for InferCtxtInner<'tcx>
impl<'tcx> Unpin for InferCtxtInner<'tcx>
impl<'tcx> !UnwindSafe for InferCtxtInner<'tcx>
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)source§impl<T, R> CollectAndApply<T, R> for T
impl<T, R> CollectAndApply<T, R> for T
source§impl<T> Filterable for T
impl<T> Filterable for T
source§fn filterable(
self,
filter_name: &'static str,
) -> RequestFilterDataProvider<T, fn(_: DataRequest<'_>) -> bool>
fn filterable( self, filter_name: &'static str, ) -> RequestFilterDataProvider<T, fn(_: DataRequest<'_>) -> bool>
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§impl<P> IntoQueryParam<P> for P
impl<P> IntoQueryParam<P> for P
fn into_query_param(self) -> P
source§impl<T> MaybeResult<T> for T
impl<T> MaybeResult<T> for T
source§impl<I, T, U> Upcast<I, U> for Twhere
U: UpcastFrom<I, T>,
impl<I, T, U> Upcast<I, U> for Twhere
U: UpcastFrom<I, T>,
source§impl<I, T> UpcastFrom<I, T> for T
impl<I, T> UpcastFrom<I, T> for T
fn upcast_from(from: T, _tcx: I) -> T
source§impl<Tcx, T> Value<Tcx> for Twhere
Tcx: DepContext,
impl<Tcx, T> Value<Tcx> for Twhere
Tcx: DepContext,
default fn from_cycle_error( tcx: Tcx, cycle_error: &CycleError, _guar: ErrorGuaranteed, ) -> T
source§impl<T> WithSubscriber for T
impl<T> WithSubscriber for T
source§fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
source§fn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
impl<'a, T> Captures<'a> for Twhere
T: ?Sized,
impl<T> ErasedDestructor for Twhere
T: 'static,
impl<T> MaybeSendSync for T
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: 480 bytes