cranelift_interpreter/
lib.rs

1//! Cranelift IR interpreter.
2//!
3//! This module is a project for interpreting Cranelift IR.
4
5pub mod address;
6pub mod environment;
7pub mod frame;
8pub mod instruction;
9pub mod interpreter;
10pub mod state;
11pub mod step;
12pub mod value;