[][src]Struct llvm_ir_analysis::CallGraph

pub struct CallGraph<'m> { /* fields omitted */ }

The call graph for the Module: which functions may call which other functions.

To construct a CallGraph, use Analysis.

Implementations

impl<'m> CallGraph<'m>[src]

pub fn callers<'s>(
    &'s self,
    func_name: &'m str
) -> impl Iterator<Item = &'m str> + 's
[src]

Get the names of functions in this Module which may call the given function.

This analysis conservatively assumes that function pointers may point to any function in the Module that has the appropriate type.

Panics if the given function is not found in the Module.

pub fn callees<'s>(
    &'s self,
    func_name: &'m str
) -> impl Iterator<Item = &'m str> + 's
[src]

Get the names of functions in this Module which may be called by the given function.

This analysis conservatively assumes that function pointers may point to any function in the Module that has the appropriate type.

Panics if the given function is not found in the Module.

Auto Trait Implementations

impl<'m> RefUnwindSafe for CallGraph<'m>

impl<'m> Send for CallGraph<'m>

impl<'m> Sync for CallGraph<'m>

impl<'m> Unpin for CallGraph<'m>

impl<'m> UnwindSafe for CallGraph<'m>

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.