Crates.io | hc-wasmer-compiler-singlepass |
lib.rs | hc-wasmer-compiler-singlepass |
version | 4.3.6-hc.1 |
source | src |
created_at | 2024-08-27 21:53:01.818768 |
updated_at | 2024-08-28 17:31:01.843006 |
description | Singlepass compiler for Wasmer WebAssembly runtime |
homepage | https://wasmer.io/ |
repository | https://github.com/wasmerio/wasmer |
max_upload_size | |
id | 1353862 |
size | 1,285,256 |
wasmer-compiler-singlepass
This crate contains a compiler implementation based on the Singlepass linear compiler.
use wasmer::{Store, 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.
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.