pub struct ComponentSubIterator { /* private fields */ }
Expand description

Sub-iterator for a Component. Keeps track of current location in a Component.

Implementations§

source§

impl ComponentSubIterator

source

pub fn new( curr_mod: ModuleID, num_mods: usize, metadata: HashMap<ModuleID, HashMap<FunctionID, usize>>, skip_funcs: HashMap<ModuleID, Vec<FunctionID>>, ) -> Self

Creates a new ComponentSubIterator

source

pub fn reset(&mut self)

Resets the ComponentSubIterator and all child SubIterators

source

pub fn curr_mod_idx(&self) -> ModuleID

Gets the index of the current module in the component

source

pub fn curr_func_idx(&self) -> FunctionID

Gets the index of the current function in the current module

source

pub fn curr_instr_idx(&self) -> usize

Gets the index of the current instruction in the current function

source

pub fn end(&self) -> bool

Checks if the SubIterator has finished traversing all the modules

source

pub fn curr_loc(&self) -> (Location, bool)

Returns the Current Location as a Location and a bool value that says whether the location is at the end of the function.

source

pub fn next(&mut self) -> bool

Goes to the next instruction in the component

Auto Trait Implementations§

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, 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.