pub struct Instructions<'a, 'b> { /* private fields */ }Expand description
Writer for a sequence of instructions in a function subsection
Implementations§
Source§impl Instructions<'_, '_>
impl Instructions<'_, '_>
pub fn arg_get(&mut self, arg: u32)
pub fn call_core(&mut self, func: u32)
pub fn memory_to_string(&mut self, mem: u32)
pub fn string_to_memory(&mut self, malloc: u32, mem: u32)
pub fn call_adapter(&mut self, func: u32)
pub fn defer_call_core(&mut self, func: u32)
pub fn i32_to_s8(&mut self)
pub fn i32_to_s8x(&mut self)
pub fn i32_to_u8(&mut self)
pub fn i32_to_s16(&mut self)
pub fn i32_to_s16x(&mut self)
pub fn i32_to_u16(&mut self)
pub fn i32_to_s32(&mut self)
pub fn i32_to_u32(&mut self)
pub fn i32_to_s64(&mut self)
pub fn i32_to_u64(&mut self)
pub fn i64_to_s8(&mut self)
pub fn i64_to_s8x(&mut self)
pub fn i64_to_u8(&mut self)
pub fn i64_to_s16(&mut self)
pub fn i64_to_s16x(&mut self)
pub fn i64_to_u16(&mut self)
pub fn i64_to_s32(&mut self)
pub fn i64_to_s32x(&mut self)
pub fn i64_to_u32(&mut self)
pub fn i64_to_s64(&mut self)
pub fn i64_to_u64(&mut self)
pub fn s8_to_i32(&mut self)
pub fn u8_to_i32(&mut self)
pub fn s16_to_i32(&mut self)
pub fn u16_to_i32(&mut self)
pub fn s32_to_i32(&mut self)
pub fn u32_to_i32(&mut self)
pub fn s64_to_i32(&mut self)
pub fn s64_to_i32x(&mut self)
pub fn u64_to_i32(&mut self)
pub fn u64_to_i32x(&mut self)
pub fn s8_to_i64(&mut self)
pub fn u8_to_i64(&mut self)
pub fn s16_to_i64(&mut self)
pub fn u16_to_i64(&mut self)
pub fn s32_to_i64(&mut self)
pub fn u32_to_i64(&mut self)
pub fn s64_to_i64(&mut self)
pub fn u64_to_i64(&mut self)
Trait Implementations§
Auto Trait Implementations§
impl<'a, 'b> Freeze for Instructions<'a, 'b>
impl<'a, 'b> RefUnwindSafe for Instructions<'a, 'b>
impl<'a, 'b> Send for Instructions<'a, 'b>
impl<'a, 'b> Sync for Instructions<'a, 'b>
impl<'a, 'b> Unpin for Instructions<'a, 'b>
impl<'a, 'b> !UnwindSafe for Instructions<'a, 'b>
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