[][src]Struct ethereumvm::PCMut

pub struct PCMut<'a, P: Patch> { /* fields omitted */ }

Represents a mutable program counter in EVM.

Methods

impl<'a, P: Patch> PCMut<'a, P>[src]

pub fn code(&self) -> &[u8][src]

Get the code bytearray.

pub fn position(&self) -> usize[src]

Get the current program counter position.

pub fn opcode_position(&self) -> usize[src]

Get the current opcode position. Should only be used when debugging.

pub fn is_valid(&self, position: usize) -> bool[src]

Returns true if the position is a valid jump destination. If not, returns false.

pub fn is_end(&self) -> bool[src]

Check whether the PC is ended. Next read on this PC would result in PCError::PCOverflow.

pub fn peek_opcode(&self) -> Result<Opcode, OnChainError>[src]

Peek the next opcode.

pub fn peek(&self) -> Result<Instruction, OnChainError>[src]

Peek the next instruction.

impl<'a, P: Patch> PCMut<'a, P>[src]

pub fn new(
    patch: &'a P,
    code: &'a [u8],
    valids: &'a Valids,
    position: &'a mut usize
) -> Self
[src]

Create a new program counter from the given code.

pub fn jump(&mut self, position: usize) -> Result<(), OnChainError>[src]

Jump to a position in the code. The destination must be valid to jump.

pub fn read(&mut self) -> Result<Instruction, OnChainError>[src]

Read the next instruction and step the program counter.

Auto Trait Implementations

impl<'a, P> Sync for PCMut<'a, P> where
    P: Sync

impl<'a, P> Unpin for PCMut<'a, P>

impl<'a, P> Send for PCMut<'a, P> where
    P: Sync

impl<'a, P> !UnwindSafe for PCMut<'a, P>

impl<'a, P> RefUnwindSafe for PCMut<'a, P> where
    P: RefUnwindSafe

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]

impl<T> Same<T> for T

type Output = T

Should always be Self