calyx_opt/passes_experimental/
mod.rs

1mod discover_external;
2mod external_to_ref;
3mod fsm_annotator;
4mod fsm_builder;
5mod hole_inliner;
6mod metadata_table_gen;
7mod par_to_seq;
8mod register_unsharing;
9mod simplify_if_comb;
10mod sync;
11
12pub use discover_external::DiscoverExternal;
13pub use external_to_ref::ExternalToRef;
14pub use fsm_annotator::FSMAnnotator;
15pub use fsm_builder::FSMBuilder;
16pub use hole_inliner::HoleInliner;
17pub use metadata_table_gen::Metadata;
18pub use par_to_seq::ParToSeq;
19pub use register_unsharing::RegisterUnsharing;
20pub use simplify_if_comb::SimplifyIfComb;
21pub use sync::CompileSync;
22pub use sync::CompileSyncWithoutSyncReg;