Skip to main content

tidepool_codegen/
lib.rs

1//! Cranelift-based JIT compiler for Tidepool Core expressions.
2//!
3//! Compiles `CoreExpr` to native code via Cranelift, with effect machine support
4//! for yielding on algebraic effects and resuming with handler responses.
5
6pub mod alloc;
7pub mod debug;
8pub mod context;
9pub mod datacon_env;
10pub mod effect_machine;
11pub mod emit;
12pub mod gc;
13pub mod heap_bridge;
14pub mod host_fns;
15pub mod jit_machine;
16pub mod nursery;
17pub mod pipeline;
18pub mod stack_map;
19pub mod yield_type;