Struct peepmatic_runtime::optimizations::PeepholeOptimizations[][src]

pub struct PeepholeOptimizations<TOperator> where
    TOperator: 'static + Copy + Debug + Eq + Hash
{ pub integers: IntegerInterner, pub automata: Automaton<MatchResult, MatchOp, Box<[Action<TOperator>]>>, }
Expand description

A compiled set of peephole optimizations.

This is the compilation result of the peepmatic crate, after its taken a bunch of optimizations written in the DSL and lowered and combined them.

Fields

integers: IntegerInterner

Not all integers we’re matching on fit in the u32 that we use as the result of match operations. So we intern them and refer to them by id.

automata: Automaton<MatchResult, MatchOp, Box<[Action<TOperator>]>>

The underlying automata for matching optimizations’ left-hand sides, and building up the corresponding right-hand side.

Implementations

Deserialize a PeepholeOptimizations from bytes.

Create a new peephole optimizer instance from this set of peephole optimizations.

The peephole optimizer instance can be used to apply these peephole optimizations. When checking multiple instructions for whether they can be optimized, it is more performant to reuse a single peephole optimizer instance, rather than create a new one for each instruction. Reusing the peephole optimizer instance allows the reuse of a few internal allocations.

Trait Implementations

Formats the value using the given formatter. Read more

Deserialize this value from the given Serde deserializer. Read more

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.