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.
This commit is contained in:
Andrew Brown
2020-04-21 11:57:08 -07:00
parent b4238229c2
commit 8b18fc5937
7 changed files with 831 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
//! Cranelift IR interpreter.
//!
//! This module is a project for interpreting Cranelift IR.
pub mod environment;
pub mod frame;
pub mod interpreter;