Struct FixpointCtxt

Source
pub struct FixpointCtxt<'genv, 'tcx, T: Eq + Hash> {
    comments: Vec<String>,
    genv: GlobalEnv<'genv, 'tcx>,
    kvars: KVarGen,
    scx: SortEncodingCtxt,
    kcx: KVarEncodingCtxt,
    ecx: ExprEncodingCtxt<'genv, 'tcx>,
    tags: IndexVec<TagIdx, T>,
    tags_inv: UnordMap<T, TagIdx>,
    def_id: MaybeExternId,
}

Fields§

§comments: Vec<String>§genv: GlobalEnv<'genv, 'tcx>§kvars: KVarGen§scx: SortEncodingCtxt§kcx: KVarEncodingCtxt§ecx: ExprEncodingCtxt<'genv, 'tcx>§tags: IndexVec<TagIdx, T>§tags_inv: UnordMap<T, TagIdx>§def_id: MaybeExternId

DefId of the item being checked. This can be a function/method or an adt when checking invariants.

Implementations§

Source§

impl<'genv, 'tcx, Tag> FixpointCtxt<'genv, 'tcx, Tag>
where Tag: Hash + Eq + Copy,

Source

pub fn new( genv: GlobalEnv<'genv, 'tcx>, def_id: MaybeExternId, kvars: KVarGen, ) -> Self

Source

pub fn check( self, cache: &mut FixQueryCache, constraint: Constraint, scrape_quals: bool, solver: SmtSolver, ) -> QueryResult<Vec<Tag>>

Source

fn run_task_with_cache( task: Task, key: String, cache: &mut FixQueryCache, ) -> FixpointResult<TagIdx>

Source

fn tag_idx(&mut self, tag: Tag) -> TagIdx
where Tag: Debug,

Source

pub(crate) fn with_name_map<R>( &mut self, name: Name, f: impl FnOnce(&mut Self, LocalVar) -> R, ) -> R

Source

pub(crate) fn sort_to_fixpoint(&mut self, sort: &Sort) -> Sort

Source

pub(crate) fn var_to_fixpoint(&self, var: &Var) -> Var

Source

pub(crate) fn head_to_fixpoint( &mut self, expr: &Expr, mk_tag: impl Fn(Option<ESpan>) -> Tag + Copy, ) -> QueryResult<Constraint>
where Tag: Debug,

Encodes an expression in head position as a fixpoint::Constraint “peeling out” implications and foralls.

Source

pub(crate) fn assumption_to_fixpoint( &mut self, pred: &Expr, ) -> QueryResult<(Vec<Bind>, Pred)>

Encodes an expression in assumptive position as a fixpoint::Pred. Returns the encoded predicate and a list of bindings produced by ANF-ing kvars.

Source

fn assumption_to_fixpoint_aux( &mut self, expr: &Expr, bindings: &mut Vec<Bind>, preds: &mut Vec<Pred>, ) -> QueryResult

Auxiliary function to merge nested conjunctions in a single predicate

Source

fn kvar_to_fixpoint( &mut self, kvar: &KVar, bindings: &mut Vec<Bind>, ) -> QueryResult<Pred>

Source

fn def_span(&self) -> Span

Auto Trait Implementations§

§

impl<'genv, 'tcx, T> !Freeze for FixpointCtxt<'genv, 'tcx, T>

§

impl<'genv, 'tcx, T> !RefUnwindSafe for FixpointCtxt<'genv, 'tcx, T>

§

impl<'genv, 'tcx, T> !Send for FixpointCtxt<'genv, 'tcx, T>

§

impl<'genv, 'tcx, T> !Sync for FixpointCtxt<'genv, 'tcx, T>

§

impl<'genv, 'tcx, T> Unpin for FixpointCtxt<'genv, 'tcx, T>
where T: Unpin,

§

impl<'genv, 'tcx, T> !UnwindSafe for FixpointCtxt<'genv, 'tcx, T>

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.