pub struct GlobalEnv {
    pub module_data: Vec<ModuleData>,
    pub used_spec_funs: BTreeSet<QualifiedId<SpecFunId>>,
    /* private fields */
}
Expand description

Global Environment

Global environment for a set of modules.

Fields

module_data: Vec<ModuleData>

List of loaded modules, in order they have been provided using add.

used_spec_funs: BTreeSet<QualifiedId<SpecFunId>>

A set containing spec functions which are called/used in specs. Note that these are represented without type instantiation because we assume the backend can handle generics in the expression language.

Implementations

Creates a new environment.

Creates a display container for the given value. There must be an implementation of fmt::Display for an instance to work in formatting.

Stores extension data in the environment. This can be arbitrary data which is indexed by type. Used by tools which want to store their own data in the environment, like a set of tool dependent options/flags. This can also be used to update extension data.

Retrieves extension data from the environment. Use as in env.get_extension::<T>(). An Rc is returned because extension data is stored in a RefCell and we can’t use lifetimes (&'a T) to control borrowing.

Updates extension data. If they are no outstanding references to this extension it is updated in place, otherwise it will be cloned before the update.

Checks whether there is an extension of type T.

Clear extension data from the environment (return the data if it is previously set). Use as in env.clear_extension::<T>() and an Rc<T> is returned if the extension data is previously stored in the environment.

Create a new global id unique to this environment.

Returns a reference to the symbol pool owned by this environment.

Adds a source to this environment, returning a FileId for it.

Find all target modules and return in a vector

Adds documentation for a file.

Adds diagnostic to the environment.

Adds an error to this environment, without notes.

Adds an error to this environment, with notes.

Adds a diagnostic of given severity to this environment.

Adds a diagnostic of given severity to this environment, with notes.

Adds a diagnostic of given severity to this environment, with secondary labels.

Checks whether any of the diagnostics contains string.

Clear all accumulated diagnosis.

Returns the unknown location.

Returns a Move IR version of the unknown location which is guaranteed to map to the regular unknown location via to_loc.

Returns the internal location.

Converts a Loc as used by the move-compiler compiler to the one we are using here. TODO: move-compiler should use FileId as well so we don’t need this here. There is already a todo in their code to remove the current use of &'static str for file names in Loc.

Returns the file id for a file name, if defined.

Maps a FileId to an index which can be mapped back to a FileId.

Maps a an index which was obtained by file_id_to_idx back to a FileId.

Returns file name and line/column position for a location, if available.

Returns line/column position for a location, if available.

Return the source text for the given location.

Return the source file name for file_id

Return the source file names.

Return the source file ids.

Returns true if diagnostics have error severity or worse.

Returns the number of diagnostics.

Returns the number of errors.

Returns true if diagnostics have warning severity or worse.

Writes accumulated diagnostics of given or higher severity.

Writes accumulated diagnostics that pass through filter

Adds a global invariant to this environment.

Get global invariant by id.

Return the global invariants which refer to the given memory.

Returns true if a spec fun is used in specs.

Determines whether the given spec fun is recursive.

Returns true if the type represents the well-known event handle type.

Adds a new module to the environment. StructData and FunctionData need to be provided in definition index order. See create_function_data and create_struct_data for how to create them.

Creates data for a named constant.

Creates data for a function, adding any information not contained in bytecode. This is a helper for adding a new module to the environment.

Creates data for a struct declared in Move. Currently all information is contained in the byte code. This is a helper for adding a new module to the environment.

Return the name of the ghost memory associated with spec var.

Finds a module by name and returns an environment for it.

Finds a module by simple name and returns an environment for it. TODO: we may need to disallow this to support modules of the same simple name but with different addresses in one verification session.

Find a module by its bytecode format ID

Find a function by its bytecode format name and ID

Gets a StructEnv in this module by its StructTag

Return the module enclosing this location.

Returns the function enclosing this location.

Returns the struct enclosing this location.

Return the FunctionEnv for fun

Return the StructEnv for str

Gets a module by id.

Gets a struct by qualified id.

Gets a function by qualified id.

Returns an iterator for all modules in the environment.

Returns an iterator for all bytecode modules in the environment.

Returns all structs in all modules which carry invariants.

Converts a storage module id into an AST module name.

Get documentation associated with an item at Loc.

Returns true if the boolean property is true.

Returns the value of a number property.

Attempt to compute a struct tag for (mid, sid, ts). Returns Some if all types in ts are closed, None otherwise

Attempt to compute a struct type for (mid, sid, ts).

Gets the location of the given node.

Gets the type of the given node.

Gets the type of the given node, if available.

Converts an index into a node id.

Returns the next free node number.

Allocates a new node id.

Allocates a new node id and assigns location and type to it.

Updates type for the given node id. Must have been set before.

Sets instantiation for the given node id. Must not have been set before.

Updates instantiation for the given node id. Must have been set before.

Gets the type parameter instantiation associated with the given node.

Gets the type parameter instantiation associated with the given node, if it is available.

Return the total number of declared functions in the modules of self

Return the total number of declared structs in the modules of self

Return the total number of Move bytecode instructions (not stackless bytecode) in the modules of self

Return the total number of Move modules that contain specs

Override the specification for a given module

Override the specification for a given function

Override the specification for a given code location

Produce a TypeDisplayContext to print types within the scope of this env

Returns the address where the standard lib is defined.

Returns the address where the extensions libs are defined.

Trait Implementations

Formats the value using the given formatter. Read more

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.