#singlepass #compiler

unc-vm-compiler-singlepass

Singlepass compiler for Wasmer WebAssembly runtime

11 releases (4 breaking)

0.10.1 Mar 12, 2024
0.7.3 Apr 12, 2024
0.7.0 Mar 29, 2024
0.6.2 Mar 22, 2024
0.1.0 Mar 6, 2024

#1139 in WebAssembly

Download history 95/week @ 2024-02-29 253/week @ 2024-03-07 75/week @ 2024-03-14 291/week @ 2024-03-21 125/week @ 2024-03-28 324/week @ 2024-04-04

862 downloads per month
Used in unc-vm-runner

MIT and GPL-2.0-or-later

1MB
19K SLoC

unc-vm-compiler-singlepass

This crate is a fork of wasmer-compiler-singlepass. A significant number of things changed, but the documentation is not up-to-date yet.

This crate contains a compiler implementation based on the Singlepass linear compiler.

Usage

use unc_vm_test_api::{Store, Universal};
use unc_vm_compiler_singlepass::Singlepass;

let compiler = Singlepass::new();
// Put it into an engine and add it to the store
let store = Store::new(&Universal::new(compiler).engine());

Note: you can find a full working example using Singlepass compiler here.

When to use Singlepass

Singlepass is designed to emit compiled code at linear time, as such is not prone to JIT bombs and also offers great compilation performance, however with a bit slower runtime speed.

The fact that singlepass is not prone to JIT bombs and offers a very predictable compilation speed makes it ideal for blockchains and other systems where fast and consistent compilation times are very critical.

Dependencies

~11–23MB
~357K SLoC