Struct evmil::evm::Evm

source ·
pub struct Evm<'a, S: Stack> {
    pub pc: usize,
    pub code: &'a [u8],
    pub stack: S,
}
Expand description

Represents an EVM of some form. This could be a concrete EVM (i.e. useful for actually executing bytecodes), or an abstract EVM (i.e. useful for some kind of dataflow analysis).

Fields§

§pc: usize

Program Counter

§code: &'a [u8]

Bytecode being executed

§stack: S

Implementations§

Execute the contract to completion.

Construct a new EVM.

Peek ’n’th item on the stack.

Pop n items of the stack.

Push a word onto the stack.

Shift the pc by n bytes.

Update pc to a given location.

Trait Implementations§

Returns a copy of the value. Read more
Performs copy-assignment from source. Read more
Formats the value using the given formatter. Read more
Merge another abstract value into this value.
This method tests for self and other values to be equal, and is used by ==.
This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Take a single step of the EVM producing a result of some kind (e.g. an updated EVM state).

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.

The resulting type after obtaining ownership.
Creates owned data from borrowed data, usually by cloning. Read more
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.