#instructions #interpreter #risc-v #cross-platform #set #flat-rv #rv32ima

app flatrv-interp

A cross-platform RISC-V interpreter that implements the RV32IM instruction set. (CLI)

1 unstable release

0.1.0 Jan 11, 2020

#184 in #risc-v

MIT license

45KB
1K SLoC

FlatRv

A cross-platform RISC-V interpreter that implements the RV32IMA instruction set.

Inspired by wasm3, FlatRv depends on compiler optimizations to convert tail calls into one single indirect branch, therefore preserving Rust's safety guarantee without giving up performance. FlatRv as an interpreter is very efficient. It takes ~3.5 seconds on an Intel i9-9900K CPU to calculate fib(40) with on-the-fly instruction decoding, compared to ~0.8 seconds on QEMU (RV32, TCG JIT) and ~2 seconds on wasm3 (WebAssembly, interpreter with a transforming pass).

Supports no_std.

Dependencies

~1.5MB
~37K SLoC