Struct InlinedFunction

Source
pub struct InlinedFunction<'input> { /* private fields */ }
Expand description

An inlined instance of a function.

Implementations§

Source§

impl<'input> InlinedFunction<'input>

Source

pub fn abstract_origin<'a>( &self, hash: &'a FileHash<'input>, ) -> Option<&'a Function<'input>>

The function that this is an inlined instance of.

Source

pub fn ranges(&self) -> &[Range]

The address ranges of the inlined function instance.

Source

pub fn size(&self) -> Option<u64>

The size of the inlined function instance.

Source

pub fn call_source(&self) -> &Source<'input>

The source information for call location.

Source

pub fn parameters(&self) -> &[Parameter<'input>]

The function parameters.

Source

pub fn variables(&self) -> &[LocalVariable<'input>]

The local variables.

Source

pub fn inlined_functions(&self) -> &[InlinedFunction<'input>]

The inlined functions within this inlined functions.

Trait Implementations§

Source§

impl<'input> Debug for InlinedFunction<'input>

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<'input> Default for InlinedFunction<'input>

Source§

fn default() -> InlinedFunction<'input>

Returns the “default value” for a type. Read more

Auto Trait Implementations§

§

impl<'input> Freeze for InlinedFunction<'input>

§

impl<'input> RefUnwindSafe for InlinedFunction<'input>

§

impl<'input> Send for InlinedFunction<'input>

§

impl<'input> Sync for InlinedFunction<'input>

§

impl<'input> Unpin for InlinedFunction<'input>

§

impl<'input> UnwindSafe for InlinedFunction<'input>

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.