pub struct ControlFlowGraph<T>where
    T: HasWeight<T>,{ /* private fields */ }
Expand description

An LLVM style control flow graph. Note: This does not track across functions.

Implementations§

source§

impl<T> ControlFlowGraph<T>where T: HasWeight<T>,

source

pub fn new() -> Self

Inserts an edge into CFG.

source§

impl<T> ControlFlowGraph<T>where T: HasWeight<T>,

source

pub fn from_file(file_name: &str) -> ControlFlowGraph<T>

Load a CFG from a dump file generated by AFLCoverage pass.

source

pub fn from_content(content: &str) -> ControlFlowGraph<T>

Load a CFG from string generated by AFLCoverage pass.

source

pub fn get_edge(&self, xored_loc: usize) -> Option<&CfgEdge<T>>

Get the edge at the index of the coverage map AFL inserts to.

source

pub fn get_edge_mut(&mut self, xored_loc: usize) -> Option<&mut CfgEdge<T>>

Get the mutable edge at the index of the coverage map AFL inserts to.

source

pub fn get_entry(&self, func_name: &str) -> Option<&EntryBasicBlockInfo>

Get entry basic block information of a function.

source

pub fn get_entry_mut( &mut self, func_name: &str ) -> Option<&mut EntryBasicBlockInfo>

Get mutable entry basic block information of a function.

source

pub fn calculate_distances_to_all_edges( &self, start: usize ) -> HashMap<usize, u32>

Calculate shortest distance from start edge to all other edges in the function containing such start.

Unreachable edges from start would not be inserted in the returned hash map.

Trait Implementations§

source§

impl<T> Debug for ControlFlowGraph<T>where T: HasWeight<T> + Debug,

source§

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

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

impl<T> Default for ControlFlowGraph<T>where T: HasWeight<T>,

source§

fn default() -> Self

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

Auto Trait Implementations§

§

impl<T> RefUnwindSafe for ControlFlowGraph<T>where T: RefUnwindSafe,

§

impl<T> Send for ControlFlowGraph<T>where T: Send,

§

impl<T> Sync for ControlFlowGraph<T>where T: Sync,

§

impl<T> Unpin for ControlFlowGraph<T>where T: Unpin,

§

impl<T> UnwindSafe for ControlFlowGraph<T>where T: UnwindSafe,

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere 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 Twhere 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 Twhere U: Into<T>,

§

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 Twhere U: TryFrom<T>,

§

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.