[−][src]Struct wasmer_runtime_core::state::FunctionStateMap
A map of function states.
Fields
initial: MachineState
Initial.
local_function_id: usize
Local Function Id.
locals: Vec<WasmAbstractValue>
Locals.
shadow_size: usize
Shadow size.
diffs: Vec<MachineStateDiff>
Diffs.
wasm_function_header_target_offset: Option<SuspendOffset>
Wasm Function Header target offset.
wasm_offset_to_target_offset: BTreeMap<usize, SuspendOffset>
Wasm offset to target offset
loop_offsets: BTreeMap<usize, OffsetInfo>
Loop offsets.
call_offsets: BTreeMap<usize, OffsetInfo>
Call offsets.
trappable_offsets: BTreeMap<usize, OffsetInfo>
Trappable offsets.
Methods
impl FunctionStateMap
[src]
pub fn new(
initial: MachineState,
local_function_id: usize,
shadow_size: usize,
locals: Vec<WasmAbstractValue>
) -> FunctionStateMap
[src]
initial: MachineState,
local_function_id: usize,
shadow_size: usize,
locals: Vec<WasmAbstractValue>
) -> FunctionStateMap
Creates a new FunctionStateMap
with the given parameters.
Trait Implementations
impl Clone for FunctionStateMap
[src]
fn clone(&self) -> FunctionStateMap
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Debug for FunctionStateMap
[src]
impl<'de> Deserialize<'de> for FunctionStateMap
[src]
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
[src]
__D: Deserializer<'de>,
impl Serialize for FunctionStateMap
[src]
Auto Trait Implementations
impl RefUnwindSafe for FunctionStateMap
impl Send for FunctionStateMap
impl Sync for FunctionStateMap
impl Unpin for FunctionStateMap
impl UnwindSafe for FunctionStateMap
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> DeserializeOwned for T where
T: Deserialize<'de>,
[src]
T: Deserialize<'de>,
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> Same<T> for T
[src]
type Output = T
Should always be Self
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T
[src]
fn clone_into(&self, target: &mut T)
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,