2025-08-27 03:16:57 +09:00
|
|
|
//! JIT subsystem: Cranelift-based JIT manager and lowering stubs
|
|
|
|
|
|
2025-08-28 09:26:58 +09:00
|
|
|
pub mod abi;
|
2025-09-17 07:43:07 +09:00
|
|
|
pub mod boundary;
|
2025-08-28 09:26:58 +09:00
|
|
|
pub mod config;
|
2025-09-17 07:43:07 +09:00
|
|
|
pub mod engine;
|
2025-08-28 09:26:58 +09:00
|
|
|
pub mod events;
|
2025-09-17 07:43:07 +09:00
|
|
|
pub mod r#extern;
|
2025-08-28 09:26:58 +09:00
|
|
|
pub mod hostcall_registry;
|
2025-09-17 07:43:07 +09:00
|
|
|
pub mod lower;
|
|
|
|
|
pub mod manager;
|
2025-08-29 21:39:47 +09:00
|
|
|
pub mod observe;
|
|
|
|
|
pub mod policy;
|
2025-09-17 07:43:07 +09:00
|
|
|
pub mod rt;
|
2025-09-01 23:44:34 +09:00
|
|
|
pub mod semantics;
|
2025-09-17 07:43:07 +09:00
|
|
|
pub mod shim_trace;
|