#cranelift #compiler

no-std wasmer-compiler-cranelift

Cranelift compiler for Wasmer WebAssembly runtime

59 releases (29 stable)

4.2.6 Mar 4, 2024
4.2.5 Dec 23, 2023
4.2.3 Oct 27, 2023
4.1.0 Jul 24, 2023
1.0.0-alpha5 Nov 6, 2020

#1093 in WebAssembly

Download history 21240/week @ 2023-12-06 18386/week @ 2023-12-13 14489/week @ 2023-12-20 11609/week @ 2023-12-27 24074/week @ 2024-01-03 21318/week @ 2024-01-10 27259/week @ 2024-01-17 19444/week @ 2024-01-24 22574/week @ 2024-01-31 23179/week @ 2024-02-07 16364/week @ 2024-02-14 16626/week @ 2024-02-21 19889/week @ 2024-02-28 25100/week @ 2024-03-06 23117/week @ 2024-03-13 16458/week @ 2024-03-20

87,133 downloads per month
Used in 41 crates (12 directly)

MIT license

760KB
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

~14–26MB
~396K SLoC