calyx_opt/passes_experimental/
mod.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
mod discover_external;
mod external_to_ref;
mod hole_inliner;
mod metadata_table_gen;
mod par_to_seq;
mod register_unsharing;
mod sync;

pub use discover_external::DiscoverExternal;
pub use external_to_ref::ExternalToRef;
pub use hole_inliner::HoleInliner;
pub use metadata_table_gen::Metadata;
pub use par_to_seq::ParToSeq;
pub use register_unsharing::RegisterUnsharing;
pub use sync::CompileSync;
pub use sync::CompileSyncWithoutSyncReg;