This is an incomplete version of a Cranelift IR interpreter: only a small subset of instructions are implemented and (known) missing parts are marked with TODO or FIXME.
8 lines
152 B
Rust
8 lines
152 B
Rust
//! Cranelift IR interpreter.
|
|
//!
|
|
//! This module is a project for interpreting Cranelift IR.
|
|
|
|
pub mod environment;
|
|
pub mod frame;
|
|
pub mod interpreter;
|