Struct InterpreterState

Source
pub struct InterpreterState<'a> {
    pub functions: FunctionStore<'a>,
    pub libcall_handler: LibCallHandler,
    pub frame_stack: Vec<Frame<'a>>,
    pub frame_offset: usize,
    pub stack: Vec<u8>,
    pub pinned_reg: DataValue,
    pub native_endianness: Endianness,
}
Expand description

Maintains the Interpreter’s state, implementing the State trait.

Fields§

§functions: FunctionStore<'a>§libcall_handler: LibCallHandler§frame_stack: Vec<Frame<'a>>§frame_offset: usize

Number of bytes from the bottom of the stack where the current frame’s stack space is

§stack: Vec<u8>§pinned_reg: DataValue§native_endianness: Endianness

Implementations§

Source§

impl<'a> InterpreterState<'a>

Source

pub fn with_function_store(self, functions: FunctionStore<'a>) -> Self

Source

pub fn with_libcall_handler(self, handler: LibCallHandler) -> Self

Registers a libcall handler

Trait Implementations§

Source§

impl Default for InterpreterState<'_>

Source§

fn default() -> Self

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

impl<'a> State<'a> for InterpreterState<'a>

Source§

fn resolve_global_value( &self, gv: GlobalValue, ) -> Result<DataValue, MemoryError>

Non-Recursively resolves a global value until its address is found

Source§

fn get_function(&self, func_ref: FuncRef) -> Option<&'a Function>

Retrieve a reference to a [Function].
Source§

fn get_current_function(&self) -> &'a Function

Retrieve a reference to the currently executing [Function].
Source§

fn get_libcall_handler(&self) -> LibCallHandler

Retrieve the handler callback for a [LibCall]
Source§

fn push_frame(&mut self, function: &'a Function)

Record that an interpreter has called into a new [Function].
Source§

fn pop_frame(&mut self)

Record that an interpreter has returned from a called [Function].
Source§

fn current_frame_mut(&mut self) -> &mut Frame<'a>

Source§

fn current_frame(&self) -> &Frame<'a>

Source§

fn stack_address( &self, size: AddressSize, slot: StackSlot, offset: u64, ) -> Result<Address, MemoryError>

Computes the stack address for this stack slot, including an offset.
Source§

fn checked_load( &self, addr: Address, ty: Type, mem_flags: MemFlags, ) -> Result<DataValue, MemoryError>

Retrieve a value V from memory at the given address, checking if it belongs either to the stack or to one of the heaps; the number of bytes loaded corresponds to the specified [Type].
Source§

fn checked_store( &mut self, addr: Address, v: DataValue, mem_flags: MemFlags, ) -> Result<(), MemoryError>

Store a value V into memory at the given address, checking if it belongs either to the stack or to one of the heaps; the number of bytes stored corresponds to the specified [Type].
Source§

fn function_address( &self, size: AddressSize, name: &ExternalName, ) -> Result<Address, MemoryError>

Compute the address of a function given its name.
Source§

fn get_function_from_address( &self, address: Address, ) -> Option<InterpreterFunctionRef<'a>>

Retrieve a reference to a [Function] given its address.
Source§

fn get_pinned_reg(&self) -> DataValue

Retrieves the current pinned reg value
Source§

fn set_pinned_reg(&mut self, v: DataValue)

Sets a value for the pinned reg
Source§

fn collect_values(&self, names: &[Value]) -> SmallVec<[DataValue; 1]>

Collect a list of values V by their value references.

Auto Trait Implementations§

§

impl<'a> Freeze for InterpreterState<'a>

§

impl<'a> RefUnwindSafe for InterpreterState<'a>

§

impl<'a> Send for InterpreterState<'a>

§

impl<'a> Sync for InterpreterState<'a>

§

impl<'a> Unpin for InterpreterState<'a>

§

impl<'a> UnwindSafe for InterpreterState<'a>

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

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

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.