CallGraphInfo

Struct CallGraphInfo 

Source
pub struct CallGraphInfo<'tcx> {
    pub functions: HashMap<usize, Node>,
    pub fn_calls: HashMap<usize, Vec<(usize, &'tcx Terminator<'tcx>)>>,
    pub node_registry: HashMap<String, usize>,
}

Fields§

§functions: HashMap<usize, Node>§fn_calls: HashMap<usize, Vec<(usize, &'tcx Terminator<'tcx>)>>§node_registry: HashMap<String, usize>

Implementations§

Source§

impl<'tcx> CallGraphInfo<'tcx>

Source

pub fn new() -> Self

Source

pub fn get_node_num(&self) -> usize

Source

pub fn get_callees_path( &self, caller_def_path: &String, ) -> Option<HashSet<String>>

Source

pub fn add_node(&mut self, def_id: DefId, def_path: &String)

Source

pub fn add_funciton_call_edge( &mut self, caller_id: usize, callee_id: usize, terminator_stmt: &'tcx Terminator<'tcx>, )

Source

pub fn get_node_by_path(&self, def_path: &String) -> Option<usize>

Source

pub fn get_callers_map( &self, ) -> HashMap<usize, Vec<(usize, &'tcx Terminator<'tcx>)>>

Source

pub fn display(&self)

Source

pub fn get_reverse_post_order(&self) -> Vec<DefId>

Source

fn dfs_post_order( &self, node_id: usize, visited: &mut HashSet<usize>, post_order_ids: &mut Vec<usize>, )

Helper function to perform a recursive depth-first search.

Auto Trait Implementations§

§

impl<'tcx> Freeze for CallGraphInfo<'tcx>

§

impl<'tcx> !RefUnwindSafe for CallGraphInfo<'tcx>

§

impl<'tcx> Send for CallGraphInfo<'tcx>

§

impl<'tcx> Sync for CallGraphInfo<'tcx>

§

impl<'tcx> Unpin for CallGraphInfo<'tcx>

§

impl<'tcx> !UnwindSafe for CallGraphInfo<'tcx>

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.