Files
wasmtime/cranelift/interpreter/src/lib.rs
Andrew Brown 8b18fc5937 Add a CLIF interpreter
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.
2020-05-07 16:51:09 -07:00

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;