pub struct TranslatedSpec {
Show 13 fields pub saved_memory: BTreeMap<QualifiedInstId<StructId>, MemoryLabel>, pub saved_spec_vars: BTreeMap<QualifiedInstId<SpecVarId>, MemoryLabel>, pub saved_params: BTreeMap<TempIndex, TempIndex>, pub debug_traces: Vec<(NodeId, TraceKind, Exp)>, pub pre: Vec<(Loc, Exp)>, pub post: Vec<(Loc, Exp)>, pub aborts: Vec<(Loc, Exp, Option<Exp>)>, pub aborts_with: Vec<(Loc, Vec<Exp>)>, pub emits: Vec<(Loc, Exp, Exp, Option<Exp>)>, pub modifies: Vec<(Loc, Exp)>, pub invariants: Vec<(Loc, GlobalId, Exp)>, pub lets: Vec<(Loc, bool, TempIndex, Exp)>, pub updates: Vec<(Loc, Exp, Exp)>,
}
Expand description

Represents a translated spec.

Fields

saved_memory: BTreeMap<QualifiedInstId<StructId>, MemoryLabel>saved_spec_vars: BTreeMap<QualifiedInstId<SpecVarId>, MemoryLabel>saved_params: BTreeMap<TempIndex, TempIndex>debug_traces: Vec<(NodeId, TraceKind, Exp)>pre: Vec<(Loc, Exp)>post: Vec<(Loc, Exp)>aborts: Vec<(Loc, Exp, Option<Exp>)>aborts_with: Vec<(Loc, Vec<Exp>)>emits: Vec<(Loc, Exp, Exp, Option<Exp>)>modifies: Vec<(Loc, Exp)>invariants: Vec<(Loc, GlobalId, Exp)>lets: Vec<(Loc, bool, TempIndex, Exp)>updates: Vec<(Loc, Exp, Exp)>

Implementations

Creates a boolean expression which describes the overall abort condition. This is a disjunction of the individual abort conditions.

Creates a boolean expression which describes the overall condition which constraints the abort code.

Let (P1, C1)..(Pj, Cj) be aborts_if with a code, Pk..Pl aborts_if without a code, and the Cm..Cn standalone aborts codes from an aborts_with:

 P1 && abort_code == C1 || .. || Pj && abort_code == Cj
     || Pk || .. || Pl
     || abort_code == Cm || .. || abort_code == Cn

This characterizes the allowed value of the code. In the presence of aborts_if with code, whenever the aborts condition is true, the code must also be the specified ones. Notice that still allows any other member of the disjunction to make the overall condition true. Specifically, if someone specifies aborts_if P with C1; aborts_with C2, then even if P is true, C2 is allowed as an abort code.

Returns true if there are any specs about the abort code.

Return an iterator of effective pre conditions.

Returns a sequence of EventStoreIncludes expressions which verify the emits clauses of a function spec. While logically we could generate a single EventStoreIncludes, for better error reporting we construct incrementally multiple EventStoreIncludes expressions with some redundancy for each individual `emits, so we the see the exact failure at the right emit condition.

Trait Implementations

Returns the “default value” for a type. Read more

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

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 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.