[−][src]Struct llvm_ir_analysis::CallGraph
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]
&'s self,
func_name: &'m str
) -> impl Iterator<Item = &'m str> + 's
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]
&'s self,
func_name: &'m str
) -> impl Iterator<Item = &'m str> + 's
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]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,