#[repr(C)]pub struct M3Compilation {Show 23 fields
pub runtime: IM3Runtime,
pub module: IM3Module,
pub wasm: bytes_t,
pub wasmEnd: bytes_t,
pub block: M3CompilationScope,
pub function: IM3Function,
pub page: IM3CodePage,
pub releasedPatches: IM3BranchPatch,
pub numEmits: u32_,
pub numOpcodes: u32_,
pub firstDynamicStackIndex: u16_,
pub stackIndex: u16_,
pub firstConstSlotIndex: u16_,
pub maxConstSlotIndex: u16_,
pub firstLocalSlotIndex: u16_,
pub firstDynamicSlotIndex: u16_,
pub constants: [m3slot_t; 120],
pub wasmStack: [u16_; 2000],
pub typeStack: [u8_; 2000],
pub m3Slots: [u8_; 4000],
pub maxAllocatedSlotPlusOne: u16_,
pub regStackIndexPlusOne: [u16_; 2],
pub previousOpcode: m3opcode_t,
}Fields§
§runtime: IM3Runtime§module: IM3Module§wasm: bytes_t§wasmEnd: bytes_t§block: M3CompilationScope§function: IM3Function§page: IM3CodePage§releasedPatches: IM3BranchPatch§numEmits: u32_§numOpcodes: u32_§firstDynamicStackIndex: u16_§stackIndex: u16_§firstConstSlotIndex: u16_§maxConstSlotIndex: u16_§firstLocalSlotIndex: u16_§firstDynamicSlotIndex: u16_§constants: [m3slot_t; 120]§wasmStack: [u16_; 2000]§typeStack: [u8_; 2000]§m3Slots: [u8_; 4000]§maxAllocatedSlotPlusOne: u16_§regStackIndexPlusOne: [u16_; 2]§previousOpcode: m3opcode_tTrait Implementations§
Source§impl Clone for M3Compilation
impl Clone for M3Compilation
Source§fn clone(&self) -> M3Compilation
fn clone(&self) -> M3Compilation
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for M3Compilation
Auto Trait Implementations§
impl Freeze for M3Compilation
impl RefUnwindSafe for M3Compilation
impl !Send for M3Compilation
impl !Sync for M3Compilation
impl Unpin for M3Compilation
impl UnwindSafe for M3Compilation
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more