Struct calyx::passes::CollapseControl[][src]

pub struct CollapseControl {}
Expand description

Collapses and de-nests control constructs.

Running this pass removes unnecessary FSM transitions and compilation groups during the lowering phase.

Example

  1. Collapses nested seq:
seq {
    seq { A; B }
    C;
}

into

seq { A; B C; }
  1. Collapses nested par:
par {
    par { A; B }
    C;
}

into

par { A; B C; }

Trait Implementations

Returns the “default value” for a type. Read more

The name of a pass. Is used for identifying passes.

A short description of the pass.

Collapse seq { seq { A }; B } into seq { A; B }.

Collapse par { par { A }; B } into par { A; B }.

Returns true if this pass requires a post-order traversal of the components. In a post-order traversal, if component B uses a component A, then A is guaranteed to be traversed before B. Read more

Define the traversal over a component. Calls Visitor::start, visits each control node, and finally calls Visitor::finish. Read more

Run the visitor on a given program ir::Context. The function mutably borrows the control program in each component and traverses it. Read more

Build a Default implementation of this pass and call Visitor::do_pass using it. Read more

Executed before the traversal begins.

Executed after the traversal ends. This method is always invoked regardless of the Action returned from the children. Read more

Executed before visiting the children of a ir::Seq node.

Executed before visiting the children of a ir::Par node.

Executed before visiting the children of a ir::If node.

Executed after visiting the children of a ir::If node.

Executed before visiting the children of a ir::While node.

Executed after visiting the children of a ir::While node.

Executed at an ir::Enable node.

Executed at an ir::Invoke node.

Executed at an ir::Empty node.

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.