Struct falcon::il::Function

source ·
pub struct Function { /* private fields */ }
Expand description

A function for Falcon IL. Provides location and context in a Program to a ControlFlowGraph.

Implementations§

source§

impl Function

source

pub fn new(address: u64, control_flow_graph: ControlFlowGraph) -> Function

Create a new Function

Parameters
  • address - The address where we recovered this function.
  • control_flow_graph - A ControlFlowGraph capturing the semantics of this function.
source

pub fn locations(&self) -> Vec<RefFunctionLocation<'_>>

Create a Vec of every RefFunctionLocation for this function.

Convenient for analyses where we need to check every location in a function

source

pub fn address(&self) -> u64

Get the address of this Function.

The address returned will be the address set when this Function was created, which should be the virtual address where this Function was found.

source

pub fn block(&self, index: usize) -> Result<&Block, Error>

Return a Block from this Function’s ControlFlowGraph by index.

source

pub fn block_mut(&mut self, index: usize) -> Result<&mut Block, Error>

Return a mutable reference to a Block in this Function

source

pub fn blocks(&self) -> Vec<&Block>

Return a Vec of all Block in this Function

source

pub fn blocks_mut(&mut self) -> Vec<&mut Block>

Return a Vec of mutable references to all Block in this Function

source

pub fn edge(&self, head: usize, tail: usize) -> Result<&Edge, Error>

Return an Edge from this Function’s ControlFlowGraph by index.

source

pub fn edges(&self) -> Vec<&Edge>

Return a vec of all Edge in this Function

source

pub fn control_flow_graph(&self) -> &ControlFlowGraph

Return the ControlFlowGraph for this Function.

source

pub fn control_flow_graph_mut(&mut self) -> &mut ControlFlowGraph

Return a mutable reference to the ControlFlowGraph for this Function.

source

pub fn name(&self) -> String

Return the name of this Function.

source

pub fn set_name(&mut self, name: Option<String>)

Set this Function’s name.

source

pub fn index(&self) -> Option<usize>

Return the index of this Function. A Function will have an index if it is added to a Program.

source

pub fn set_index(&mut self, index: Option<usize>)

Trait Implementations§

source§

impl Clone for Function

source§

fn clone(&self) -> Function

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for Function

source§

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

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

impl<'de> Deserialize<'de> for Function

source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
source§

impl Hash for Function

source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
source§

impl PartialEq<Function> for Function

source§

fn eq(&self, other: &Function) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl Serialize for Function

source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
source§

impl Eq for Function

source§

impl StructuralEq for Function

source§

impl StructuralPartialEq for Function

Auto Trait Implementations§

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,

const: unstable · source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

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

const: unstable · source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

const: unstable · source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

const: unstable · 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> ToOwned for Twhere T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
const: unstable · 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.
const: unstable · source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<T> DeserializeOwned for Twhere T: for<'de> Deserialize<'de>,