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>
§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>
impl<'genv, 'tcx, Tag> FixpointCtxt<'genv, 'tcx, Tag>
pub fn new( genv: GlobalEnv<'genv, 'tcx>, def_id: MaybeExternId, kvars: KVarGen, ) -> Self
pub fn check( self, cache: &mut FixQueryCache, constraint: Constraint, scrape_quals: bool, solver: SmtSolver, ) -> QueryResult<Vec<Tag>>
fn run_task_with_cache( task: Task, key: String, cache: &mut FixQueryCache, ) -> FixpointResult<TagIdx>
fn tag_idx(&mut self, tag: Tag) -> TagIdxwhere
Tag: Debug,
pub(crate) fn with_name_map<R>( &mut self, name: Name, f: impl FnOnce(&mut Self, LocalVar) -> R, ) -> R
pub(crate) fn sort_to_fixpoint(&mut self, sort: &Sort) -> Sort
pub(crate) fn var_to_fixpoint(&self, var: &Var) -> Var
Sourcepub(crate) fn head_to_fixpoint(
&mut self,
expr: &Expr,
mk_tag: impl Fn(Option<ESpan>) -> Tag + Copy,
) -> QueryResult<Constraint>where
Tag: Debug,
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.
Sourcepub(crate) fn assumption_to_fixpoint(
&mut self,
pred: &Expr,
) -> QueryResult<(Vec<Bind>, Pred)>
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.
Sourcefn assumption_to_fixpoint_aux(
&mut self,
expr: &Expr,
bindings: &mut Vec<Bind>,
preds: &mut Vec<Pred>,
) -> QueryResult
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
fn kvar_to_fixpoint( &mut self, kvar: &KVar, bindings: &mut Vec<Bind>, ) -> QueryResult<Pred>
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> 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
Mutably borrows from an owned value. Read more
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>
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 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>
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