#wasm-module #run-time #loader #microcontrollers #running #esp32 #suitable

nightly no-std uwasm

Runtime for WebAssembly modules, suitable for use as a loader for user apps in firmwares running on microcontrollers like ESP32

3 unstable releases

0.2.0 May 28, 2024
0.1.1 Mar 2, 2024
0.1.0 Mar 2, 2024

#141 in No standard library

24 downloads per month

MIT license

82KB
2K SLoC

uWasm

This project is a runtime for WebAssembly modules, suitable for use as a loader for user apps in firmwares running on microcontrollers like ESP32.

Motivation

It is being developed within this daily coding challenge. For me, this project serves as an opportunity to learn more about WebAssembly, delve deeper into low level programming, and... use more Rust :)

Hopefully, something useful will come out of this project.

Project scope

  • parser of WebAssembly binary representation;
    • basic subset of Wasm (support for SIMD, threads and other more advanced features is not planned)
  • bytecode interpreter;
  • native API to call from inside the virtual machine;
  • optional: JIT/AOT compilation using copy-and-patch method^1.

Project goals

  • low memory footprint;
  • reasonable performance.

Additional ideas

  • introduce continuous integration (via Github Actions) on real hardware to ensure proper performance on target platforms;
  • experiment with process scheduling.

Contributing

When writing commit messages please follow semantic commit messages guidelines.

Useful tools and resources

Compile and run simple test program on VM

rustup add wasm32-unknown-unknown
rustc --target=wasm32-unknown-unknown tests/call_print.rs -C panic=abort -O
cargo run --bin uwasm-perf -- call_print.wasm 1

No runtime deps