1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
mod builder;
mod common;
mod component;
mod context;
mod control;
mod flat_guard;
mod guard;
mod printer;
mod reserved_names;
mod structure;
pub mod rewriter;
pub use builder::Builder;
pub use calyx_utils::{GetName, Id};
pub use common::{rrc, RRC, WRC};
pub use component::{Component, IdList};
pub use context::{BackendConf, Context};
pub use control::{
Cloner, Control, Empty, Enable, GenericControl, If, Invoke, Par, Repeat,
Seq, StaticControl, StaticEnable, StaticIf, StaticInvoke, StaticPar,
StaticRepeat, StaticSeq, While,
};
pub use flat_guard::{FlatGuard, GuardPool, GuardRef};
pub use guard::{Guard, Nothing, PortComp, StaticTiming};
pub use printer::Printer;
pub use reserved_names::RESERVED_NAMES;
pub use rewriter::Rewriter;
pub use structure::{
Assignment, Binding, Canonical, Cell, CellType, CombGroup, Group, Port,
PortIterator, PortParent, StaticGroup,
};
pub use calyx_frontend::{
Attribute, Attributes, BoolAttr, Direction, GetAttributes, InternalAttr,
LibrarySignatures, NumAttr, PortDef, Primitive, PrimitiveInfo, Width,
DEPRECATED_ATTRIBUTES,
};
pub mod from_ast;
mod macros;
pub mod serializers;
pub mod utils;