[][src]Struct llhd::pass::tcm::TemporalCodeMotion

pub struct TemporalCodeMotion;

Temporal Code Motion

This pass rearranges temporal instructions. It does the following:

  • Merge multiple identical waits into one (in a new block).
  • Move prb instructions up to the top of the time region.
  • Move drv instructions down to the end of the time region, where possible. Failure to do so hints at conditionally-driven signals, such as storage elements.

Trait Implementations

impl Pass for TemporalCodeMotion[src]

Auto Trait Implementations

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> From<T> for T[src]

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

impl<T> Pointable for T

type Init = T

The type for initializers.

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.