[][src]Struct raptor::ir::Function

pub struct Function<V: Value> { /* fields omitted */ }

Methods

impl<V: Value> Function<V>[src]

pub fn from_il(function: &Function) -> Result<Function<Constant>>[src]

pub fn address(&self) -> u64[src]

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

pub fn name(&self) -> &str[src]

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

pub fn parameters(&self) -> Option<&[Variable]>[src]

pub fn set_parameters(&mut self, parameters: Option<Vec<Variable>>)[src]

pub fn transient_variables(&self) -> &[Variable][src]

pub fn add_transient_variable(&mut self, variable: Variable)[src]

pub fn control_flow_graph(&self) -> &ControlFlowGraph<V>[src]

pub fn control_flow_graph_mut(&mut self) -> &mut ControlFlowGraph<V>[src]

pub fn block(&self, index: usize) -> Result<&Block<V>>[src]

pub fn block_mut(&mut self, index: usize) -> Result<&mut Block<V>>[src]

pub fn blocks(&self) -> Vec<&Block<V>>[src]

pub fn blocks_mut(&mut self) -> Vec<&mut Block<V>>[src]

pub fn edge(&self, head: usize, tail: usize) -> Result<&Edge<V>>[src]

pub fn edges(&self) -> Vec<&Edge<V>>[src]

pub fn edges_mut(&mut self) -> Vec<&mut Edge<V>>[src]

pub fn locations(&self) -> Vec<RefFunctionLocation<V>>[src]

pub fn program_locations(&self) -> Vec<RefProgramLocation<V>>[src]

Trait Implementations

impl<V: Clone + Value> Clone for Function<V>[src]

impl<V: Debug + Value> Debug for Function<V>[src]

impl<'de, V: Value> Deserialize<'de> for Function<V> where
    V: Deserialize<'de>, 
[src]

impl<V: Eq + Value> Eq for Function<V>[src]

impl<V: Hash + Value> Hash for Function<V>[src]

impl<V: Ord + Value> Ord for Function<V>[src]

impl<V: PartialEq + Value> PartialEq<Function<V>> for Function<V>[src]

impl<V: PartialOrd + Value> PartialOrd<Function<V>> for Function<V>[src]

impl<V: Value> Serialize for Function<V> where
    V: Serialize
[src]

impl<V: Value> StructuralEq for Function<V>[src]

impl<V: Value> StructuralPartialEq for Function<V>[src]

Auto Trait Implementations

impl<V> RefUnwindSafe for Function<V> where
    V: RefUnwindSafe

impl<V> Send for Function<V>

impl<V> Sync for Function<V>

impl<V> Unpin for Function<V>

impl<V> UnwindSafe for Function<V> where
    V: RefUnwindSafe + UnwindSafe

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> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

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

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.