pub enum ExpData {
    Invalid(NodeId),
    Value(NodeIdValue),
    LocalVar(NodeIdSymbol),
    Temporary(NodeIdTempIndex),
    Call(NodeIdOperationVec<Exp>),
    Invoke(NodeIdExpVec<Exp>),
    Lambda(NodeIdVec<LocalVarDecl>, Exp),
    Quant(NodeIdQuantKindVec<(LocalVarDecl, Exp)>, Vec<Vec<Exp>>, Option<Exp>, Exp),
    Block(NodeIdVec<LocalVarDecl>, Exp),
    IfElse(NodeIdExpExpExp),
}
Expand description

The type of expression data.

Expression layout follows the following design principles:

  • We try to keep the number of expression variants minimal, for easier treatment in generic traversals. Builtin and user functions are abstracted into a general Call(.., operation, args) construct.
  • Each expression has a unique node id assigned. This id allows to build attribute tables for additional information, like expression type and source location. The id is globally unique.

Variants

Invalid(NodeId)

Represents an invalid expression. This is used as a stub for algorithms which generate expressions but can fail with multiple errors, like a translator from some other source into expressions. Consumers of expressions should assume this variant is not present and can panic when seeing it.

Value(NodeIdValue)

Represents a value.

LocalVar(NodeIdSymbol)

Represents a reference to a local variable introduced by a specification construct, e.g. a quantifier.

Temporary(NodeIdTempIndex)

Represents a reference to a temporary used in bytecode.

Call(NodeIdOperationVec<Exp>)

Represents a call to an operation. The Operation enum covers all builtin functions (including operators, constants, …) as well as user functions.

Invoke(NodeIdExpVec<Exp>)

Represents an invocation of a function value, as a lambda.

Lambda(NodeIdVec<LocalVarDecl>, Exp)

Represents a lambda.

Quant(NodeIdQuantKindVec<(LocalVarDecl, Exp)>, Vec<Vec<Exp>>, Option<Exp>, Exp)

Tuple Fields

0: NodeId
2: Vec<(LocalVarDecl, Exp)>

Ranges

3: Vec<Vec<Exp>>

Triggers

4: Option<Exp>

Optional where clause

5: Exp

Body

Represents a quantified formula over multiple variables and ranges.

Block(NodeIdVec<LocalVarDecl>, Exp)

Represents a block which contains a set of variable bindings and an expression for which those are defined.

IfElse(NodeIdExpExpExp)

Represents a conditional.

Implementations

Version of into which does not require type annotations.

Returns the free local variables, inclusive their types, used in this expression. Result is ordered by occurrence.

Returns the used memory of this expression.

Returns the temporaries used in this expression. Result is ordered by occurrence.

Visits expression, calling visitor on each sub-expression, depth first.

source

pub fn visit_pre_post<F>(&self, visitor: &mut F) where
    F: FnMut(bool, &ExpData), 

Visits expression, calling visitor on each sub-expression. visitor(false, ..) will be called before descending into expression, and visitor(true, ..) after. Notice we use one function instead of two so a lambda can be passed which encapsulates mutable references.

Rewrites this expression and sub-expression based on the rewriter function. The function returns Ok(e) if the expression is rewritten, and passes back ownership using Err(e) if the expression stays unchanged. This function stops traversing on Ok(e) and descents into sub-expressions on Err(e).

Rewrites the node ids in the expression. This is used to rewrite types of expressions.

Rewrites the expression and for unchanged sub-expressions, the node ids in the expression

A function which can be used for Exp::rewrite_node_id to instantiate types in an expression based on a type parameter instantiation.

Returns the set of module ids used by this expression.

Extract access to ghost memory from expression. Returns a tuple of the instantiated struct, the field of the selected value, and the expression with the address of the access.

Collect struct-related operations

Collect field-related operations

Collect vector-related operations

Determines whether this expression depends on global memory

Checks whether the expression is pure, i.e. does not depend on memory or mutable variables.

Creates a display of an expression which can be used in formatting.

Trait Implementations

Converts this type into a shared reference of the (usually inferred) input type.

Immutably borrows from an owned value. Read more

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Takes an expression and returns expression data.

Converts to this type from the input type.

Feeds this value into the given Hasher. Read more

Feeds a slice of this type into the given Hasher. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Compare self to key and return true if they are equal.

Returns the argument unchanged.

Calls U::from(self).

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

Should always be Self

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.