pub struct Body<'a> {
pub locals: Vec<(u32, DataType)>,
pub num_locals: u32,
pub instructions: Vec<Instruction<'a>>,
pub num_instructions: usize,
pub name: Option<String>,
}
Expand description
Body of a function in a wasm module
Fields§
§locals: Vec<(u32, DataType)>
Local variables of the function, given as tuples of (# of locals, type). Note that these do not include the function parameters which are given indices before the locals. So if a function has 2 parameters and a local defined here then local indices 0 and 1 will refer to the parameters and index 2 will refer to the local here.
num_locals: u32
§instructions: Vec<Instruction<'a>>
§num_instructions: usize
§name: Option<String>
Implementations§
Source§impl<'a, 'b> Body<'a>where
'b: 'a,
impl<'a, 'b> Body<'a>where
'b: 'a,
Sourcepub fn push_op(&mut self, op: Operator<'b>)
pub fn push_op(&mut self, op: Operator<'b>)
Push a new operator (instruction) to the end of the body
Sourcepub fn get_op(&self, idx: usize) -> &Operator<'_>
pub fn get_op(&self, idx: usize) -> &Operator<'_>
Get some operator (instruction) at the specified index of the body
Sourcepub fn get_instr_flag(&self, idx: usize) -> &InstrumentationFlag<'_>
pub fn get_instr_flag(&self, idx: usize) -> &InstrumentationFlag<'_>
Get the instrumentation of some operator in the body
Sourcepub fn clear_instr(&mut self, idx: usize, mode: InstrumentationMode)
pub fn clear_instr(&mut self, idx: usize, mode: InstrumentationMode)
Get the instrumentation of some operator in the body
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for Body<'a>
impl<'a> RefUnwindSafe for Body<'a>
impl<'a> Send for Body<'a>
impl<'a> Sync for Body<'a>
impl<'a> Unpin for Body<'a>
impl<'a> UnwindSafe for Body<'a>
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