pub struct GlobalOptimizer<'a> {
    pub config: &'a Config,
    pub runtime: &'a Runtime,
    pub functions: FxHashMap<BlockId, Function>,
}
Expand description

Does optimization on the whole program.

This allows (along others) for removing unused commands

Fields§

§config: &'a Config§runtime: &'a Runtime§functions: FxHashMap<BlockId, Function>

Implementations§

source§

impl<'a> GlobalOptimizer<'a>

source

pub fn new( config: &'a Config, runtime: &'a Runtime, functions: FxHashMap<BlockId, Function> ) -> Self

source

pub fn run(self) -> (FxHashMap<BlockId, Function>, CodeStats)

Runs the optimization passes and returns the final function map

source§

impl GlobalOptimizer<'_>

source

fn optimize(&mut self) -> CodeStats

source

pub fn get_function(&self, id: BlockId) -> &Function

source

pub fn get_function_mut(&mut self, id: BlockId) -> &mut Function

source

pub fn iter_functions( &self ) -> impl Iterator<Item = impl Iterator<Item = ((BlockId, usize), &Node)>>

Iterates over all functions

source

pub fn iter_nodes(&self) -> impl Iterator<Item = ((BlockId, usize), &Node)> + '_

Iterates over all nodes.

source

pub fn iter_at( &self, item: &(BlockId, usize) ) -> impl Iterator<Item = ((BlockId, usize), &Node)> + '_

Iterates all subsequent nodes of this function

source

pub fn previous_node( &self, node_id: &(BlockId, usize) ) -> Option<((BlockId, usize), &Node)>

Trait Implementations§

source§

impl<'a> Debug for GlobalOptimizer<'a>

source§

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

Formats the value using the given formatter. Read more

Auto Trait Implementations§

§

impl<'a> !RefUnwindSafe for GlobalOptimizer<'a>

§

impl<'a> !Send for GlobalOptimizer<'a>

§

impl<'a> !Sync for GlobalOptimizer<'a>

§

impl<'a> Unpin for GlobalOptimizer<'a>

§

impl<'a> !UnwindSafe for GlobalOptimizer<'a>

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.