#cranelift #compiler

no-std wasmer-compiler-cranelift

Cranelift compiler for Wasmer WebAssembly runtime

63 releases (31 stable)

new 4.3.0 May 10, 2024
4.3.0-alpha.1 Apr 25, 2024
4.2.6 Mar 4, 2024
4.2.5 Dec 23, 2023
1.0.0-alpha5 Nov 6, 2020

#1124 in WebAssembly

Download history 28012/week @ 2024-01-19 17518/week @ 2024-01-26 25413/week @ 2024-02-02 20317/week @ 2024-02-09 16654/week @ 2024-02-16 16106/week @ 2024-02-23 21890/week @ 2024-03-01 25807/week @ 2024-03-08 21747/week @ 2024-03-15 21271/week @ 2024-03-22 23354/week @ 2024-03-29 21668/week @ 2024-04-05 29896/week @ 2024-04-12 23011/week @ 2024-04-19 19004/week @ 2024-04-26 22276/week @ 2024-05-03

98,350 downloads per month
Used in 42 crates (12 directly)

MIT license

775KB
16K SLoC

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

This crate contains a compiler implementation based on Cranelift.

Usage

use wasmer::{Store, EngineBuilder};
use wasmer_compiler_cranelift::Cranelift;

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

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

When to use Cranelift

We recommend using this compiler crate only for development proposes. For production we recommend using wasmer-compiler-llvm as it offers a much better runtime speed (50% faster on average).

Acknowledgments

This project borrowed some of the function lowering from cranelift-wasm.

Please check Wasmer ATTRIBUTIONS to further see licenses and other attributions of the project.

Dependencies

~22–35MB
~629K SLoC