Struct ImplicitParamInferer

Source
pub(crate) struct ImplicitParamInferer<'a, 'genv, 'tcx> {
    infcx: &'a mut InferCtxt<'genv, 'tcx>,
    errors: Errors<'genv>,
}
Expand description

Before the main sort inference, we do a first traversal checking all implicitly scoped parameters declared wih @ or # and infer their sort based on the type they are indexing, e.g., if n was declared as i32[@n], we infer int for n.

This prepass is necessary because sometimes the order in which we traverse expressions can affect what we can infer. By resolving implicit parameters first, we ensure more consistent and complete inference regardless of how expressions are later traversed.

It should be possible to improve sort checking (e.g., by allowing partially resolved sorts in function position) such that we don’t need this anymore.

Fields§

§infcx: &'a mut InferCtxt<'genv, 'tcx>§errors: Errors<'genv>

Implementations§

Source§

impl<'a, 'genv, 'tcx> ImplicitParamInferer<'a, 'genv, 'tcx>

Source

pub(crate) fn infer( infcx: &'a mut InferCtxt<'genv, 'tcx>, node: &OwnerNode<'genv>, ) -> Result<(), ErrorGuaranteed>

Source

fn infer_implicit_params(&mut self, idx: &Expr<'_>, expected: &Sort)

Trait Implementations§

Source§

impl<'genv> Visitor<'genv> for ImplicitParamInferer<'_, 'genv, '_>

Source§

fn visit_ty(&mut self, ty: &Ty<'genv>)

Source§

fn visit_flux_item(&mut self, item: &FluxItem<'v>)

Source§

fn visit_qualifier(&mut self, qualifier: &Qualifier<'v>)

Source§

fn visit_func(&mut self, func: &SpecFunc<'v>)

Source§

fn visit_node(&mut self, node: &OwnerNode<'v>)

Source§

fn visit_item(&mut self, item: &Item<'v>)

Source§

fn visit_trait_item(&mut self, trait_item: &TraitItem<'v>)

Source§

fn visit_impl_item(&mut self, impl_item: &ImplItem<'v>)

Source§

fn visit_foreign_item(&mut self, foreign_item: &ForeignItem<'v>)

Source§

fn visit_generics(&mut self, generics: &Generics<'v>)

Source§

fn visit_where_predicate(&mut self, predicate: &WhereBoundPredicate<'v>)

Source§

fn visit_impl(&mut self, impl_: &Impl<'v>)

Source§

fn visit_impl_assoc_reft(&mut self, assoc_reft: &ImplAssocReft<'v>)

Source§

fn visit_trait_assoc_reft(&mut self, assoc_reft: &TraitAssocReft<'v>)

Source§

fn visit_struct_def(&mut self, struct_def: &StructDef<'v>)

Source§

fn visit_enum_def(&mut self, enum_def: &EnumDef<'v>)

Source§

fn visit_variant(&mut self, variant: &VariantDef<'v>)

Source§

fn visit_field_def(&mut self, field: &FieldDef<'v>)

Source§

fn visit_variant_ret(&mut self, ret: &VariantRet<'v>)

Source§

fn visit_ty_alias(&mut self, ty_alias: &TyAlias<'v>)

Source§

fn visit_opaque_ty(&mut self, opaque_ty: &OpaqueTy<'v>)

Source§

fn visit_generic_bound(&mut self, bound: &GenericBound<'v>)

Source§

fn visit_poly_trait_ref(&mut self, trait_ref: &PolyTraitRef<'v>)

Source§

fn visit_fn_sig(&mut self, sig: &FnSig<'v>)

Source§

fn visit_fn_decl(&mut self, decl: &FnDecl<'v>)

Source§

fn visit_refine_param(&mut self, param: &RefineParam<'v>)

Source§

fn visit_requires(&mut self, requires: &Requires<'v>)

Source§

fn visit_ensures(&mut self, ensures: &Ensures<'v>)

Source§

fn visit_fn_output(&mut self, output: &FnOutput<'v>)

Source§

fn visit_generic_arg(&mut self, arg: &GenericArg<'v>)

Source§

fn visit_lifetime(&mut self, _lft: &Lifetime)

Source§

fn visit_bty(&mut self, bty: &BaseTy<'v>)

Source§

fn visit_qpath(&mut self, qpath: &QPath<'v>)

Source§

fn visit_path(&mut self, path: &Path<'v>)

Source§

fn visit_path_segment(&mut self, segment: &PathSegment<'v>)

Source§

fn visit_assoc_item_constraint(&mut self, constraint: &AssocItemConstraint<'v>)

Source§

fn visit_sort(&mut self, sort: &Sort<'v>)

Source§

fn visit_sort_path(&mut self, path: &SortPath<'v>)

Source§

fn visit_poly_func_sort(&mut self, func: &PolyFuncSort<'v>)

Source§

fn visit_func_sort(&mut self, func: &FuncSort<'v>)

Source§

fn visit_expr(&mut self, expr: &Expr<'v>)

Source§

fn visit_field_expr(&mut self, expr: &FieldExpr<'v>)

Source§

fn visit_alias_reft(&mut self, alias_reft: &AliasReft<'v>)

Source§

fn visit_literal(&mut self, _lit: &Lit)

Source§

fn visit_path_expr(&mut self, _path: &PathExpr<'v>)

Auto Trait Implementations§

§

impl<'a, 'genv, 'tcx> !Freeze for ImplicitParamInferer<'a, 'genv, 'tcx>

§

impl<'a, 'genv, 'tcx> !RefUnwindSafe for ImplicitParamInferer<'a, 'genv, 'tcx>

§

impl<'a, 'genv, 'tcx> !Send for ImplicitParamInferer<'a, 'genv, 'tcx>

§

impl<'a, 'genv, 'tcx> !Sync for ImplicitParamInferer<'a, 'genv, 'tcx>

§

impl<'a, 'genv, 'tcx> Unpin for ImplicitParamInferer<'a, 'genv, 'tcx>

§

impl<'a, 'genv, 'tcx> !UnwindSafe for ImplicitParamInferer<'a, 'genv, 'tcx>

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> IntoEither for T

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts 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 more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts 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 more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.