Struct ExprEncodingCtxt

Source
struct ExprEncodingCtxt<'genv, 'tcx> {
    genv: GlobalEnv<'genv, 'tcx>,
    local_var_env: LocalVarEnv,
    global_var_gen: IndexGen<GlobalVar>,
    const_map: FxIndexMap<Key<'tcx>, ConstInfo>,
    def_map: FxIndexMap<FluxDefId, Var>,
    errors: Errors<'genv>,
    def_span: Span,
}

Fields§

§genv: GlobalEnv<'genv, 'tcx>§local_var_env: LocalVarEnv§global_var_gen: IndexGen<GlobalVar>§const_map: FxIndexMap<Key<'tcx>, ConstInfo>§def_map: FxIndexMap<FluxDefId, Var>§errors: Errors<'genv>§def_span: Span

Implementations§

Source§

impl<'genv, 'tcx> ExprEncodingCtxt<'genv, 'tcx>

Source

fn new(genv: GlobalEnv<'genv, 'tcx>, def_span: Span) -> Self

Source

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

Source

fn variant_to_fixpoint( &self, scx: &mut SortEncodingCtxt, enum_def_id: &DefId, idx: VariantIdx, ) -> Expr

Source

fn fields_to_fixpoint( &mut self, flds: &[Expr], scx: &mut SortEncodingCtxt, ) -> QueryResult<Expr>

Source

fn expr_to_fixpoint( &mut self, expr: &Expr, scx: &mut SortEncodingCtxt, ) -> QueryResult<Expr>

Source

fn exprs_to_fixpoint<'b>( &mut self, exprs: impl IntoIterator<Item = &'b Expr>, scx: &mut SortEncodingCtxt, ) -> QueryResult<Vec<Expr>>

Source

fn proj_to_fixpoint( &mut self, e: &Expr, proj: FieldProj, scx: &mut SortEncodingCtxt, ) -> QueryResult<Expr>

Source

fn un_op_to_fixpoint( &mut self, op: UnOp, e: &Expr, scx: &mut SortEncodingCtxt, ) -> QueryResult<Expr>

Source

fn bv_rel_to_fixpoint(&self, rel: &BinRel) -> Expr

Source

fn bv_op_to_fixpoint(&self, op: &BinOp) -> Expr

Source

fn bin_op_to_fixpoint( &mut self, op: &BinOp, e1: &Expr, e2: &Expr, scx: &mut SortEncodingCtxt, ) -> QueryResult<Expr>

Source

fn bin_rel_to_fixpoint( &mut self, sort: &Sort, rel: BinRel, e1: &Expr, e2: &Expr, scx: &mut SortEncodingCtxt, ) -> QueryResult<Expr>

A binary relation is encoded as a structurally recursive relation between aggregate sorts. For “leaf” expressions, we encode them as an interpreted relation if the sort supports it, otherwise we use an uninterpreted function. For example, consider the following relation between two tuples of sort (int, int -> int)

(0, λv. v + 1) <= (1, λv. v + 1)

The encoding in fixpoint will be

0 <= 1 && (le (λv. v + 1) (λv. v + 1))

Where <= is the (interpreted) less than or equal relation between integers and le is an uninterpreted relation between (the encoding of) lambdas.

Source

fn apply_bin_rel_rec( &mut self, sorts: &[Sort], rel: BinRel, e1: &Expr, e2: &Expr, scx: &mut SortEncodingCtxt, mk_proj: impl Fn(u32) -> FieldProj, ) -> QueryResult<Expr>

Apply binary relation recursively over aggregate expressions

Source

fn imm( &mut self, arg: &Expr, sort: &Sort, scx: &mut SortEncodingCtxt, bindings: &mut Vec<Bind>, ) -> QueryResult<Var>

Source

fn register_def(&mut self, def_id: FluxDefId) -> Var

Source

fn register_uif(&mut self, def_id: FluxDefId, scx: &mut SortEncodingCtxt) -> Var

Source

fn register_rust_const( &mut self, def_id: DefId, scx: &mut SortEncodingCtxt, info: &ConstantInfo, ) -> Var

Source

fn register_const_for_alias_reft( &mut self, alias_reft: &AliasReft, fsort: FuncSort, scx: &mut SortEncodingCtxt, ) -> Var

returns the ‘constant’ UIF for Var used to represent the alias_pred, creating and adding it to the const_map if necessary

Source

fn register_const_for_lambda( &mut self, lam: &Lambda, scx: &mut SortEncodingCtxt, ) -> Var

We encode lambdas with uninterpreted constant. Two syntactically equal lambdas will be encoded with the same constant.

Source

fn assume_const_values( &mut self, constraint: Constraint, scx: &mut SortEncodingCtxt, ) -> QueryResult<Constraint>

Source

fn qualifiers_for( &mut self, def_id: LocalDefId, scx: &mut SortEncodingCtxt, ) -> QueryResult<Vec<Qualifier>>

Source

fn define_funs( &mut self, def_id: LocalDefId, scx: &mut SortEncodingCtxt, ) -> QueryResult<(Vec<FunDecl>, Vec<ConstDecl>)>

Source

fn body_to_fixpoint( &mut self, body: &Binder<Expr>, scx: &mut SortEncodingCtxt, ) -> QueryResult<(Vec<(Var, Sort)>, Expr)>

Source

fn qualifier_to_fixpoint( &mut self, qualifier: &Qualifier, scx: &mut SortEncodingCtxt, ) -> QueryResult<Qualifier>

Auto Trait Implementations§

§

impl<'genv, 'tcx> !Freeze for ExprEncodingCtxt<'genv, 'tcx>

§

impl<'genv, 'tcx> !RefUnwindSafe for ExprEncodingCtxt<'genv, 'tcx>

§

impl<'genv, 'tcx> !Send for ExprEncodingCtxt<'genv, 'tcx>

§

impl<'genv, 'tcx> !Sync for ExprEncodingCtxt<'genv, 'tcx>

§

impl<'genv, 'tcx> Unpin for ExprEncodingCtxt<'genv, 'tcx>

§

impl<'genv, 'tcx> !UnwindSafe for ExprEncodingCtxt<'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.