wasmer-compiler-singlepass

Crates.iowasmer-compiler-singlepass
lib.rswasmer-compiler-singlepass
version5.0.1
sourcesrc
created_at2020-08-15 00:40:50.830971
updated_at2024-11-06 11:17:58.515671
descriptionSinglepass compiler for Wasmer WebAssembly runtime
homepagehttps://wasmer.io/
repositoryhttps://github.com/wasmerio/wasmer
max_upload_size
id276866
size1,285,347
Wasmer Core (github:wasmerio:wasmer-core)

documentation

https://docs.rs/wasmer-compiler-singlepass/

README

wasmer-compiler-singlepass Build Status Join Wasmer Slack MIT License crates.io

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

Usage

use wasmer::{Store, sys::EngineBuilder};
use wasmer_compiler_singlepass::Singlepass;

let compiler = Singlepass::new();
let mut store = Store::new(compiler);

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 orders of magnitude faster than wasmer-compiler-cranelift and wasmer-compiler-llvm, 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.

Commit count: 17039

cargo fmt