[][src]Struct rust_simple_stack_processor::StackMachine

pub struct StackMachine {
    pub st: StackMachineState,
    pub trap_handlers: Vec<Box<dyn HandleTrap>>,
}

Fields

st: StackMachineStatetrap_handlers: Vec<Box<dyn HandleTrap>>

Methods

impl StackMachine[src]

pub fn execute(
    &mut self,
    starting_point: usize,
    gas_limit: GasLimit
) -> Result<(), StackMachineError>
[src]

JR() is relative from the JR() instruction, 0 would jump back onto the JR instruction -1 Would jump back to the instruction before the JR(}) instruction 1 Would jump to the instruction after the JR() instruction

TRAPs always have a numeric code on the number stack to define which TRAP is being called

CMPLOOP pushes 1 on the stack if the loop counter is greater than or equal to the max pushes 0 on the stack if the loop counter is less than the max

Trait Implementations

impl Default for StackMachine[src]

Auto Trait Implementations

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]