#cranelift #compiler

no-std wasmer-compiler-cranelift

Cranelift compiler for Wasmer WebAssembly runtime

68 releases (36 stable)

4.3.5 Jul 16, 2024
4.3.2 Jun 11, 2024
4.2.6 Mar 4, 2024
4.2.5 Dec 23, 2023
1.0.0-alpha5 Nov 6, 2020

#1200 in WebAssembly

Download history 21668/week @ 2024-04-05 29896/week @ 2024-04-12 23011/week @ 2024-04-19 19004/week @ 2024-04-26 22435/week @ 2024-05-03 21404/week @ 2024-05-10 19743/week @ 2024-05-17 18398/week @ 2024-05-24 19629/week @ 2024-05-31 19100/week @ 2024-06-07 27150/week @ 2024-06-14 19183/week @ 2024-06-21 20731/week @ 2024-06-28 31255/week @ 2024-07-05 37316/week @ 2024-07-12 26490/week @ 2024-07-19

117,692 downloads per month
Used in 44 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

~20–32MB
~594K SLoC