#wasm-module #compiler #wasm-bytecode

no-std unc-vm-compiler

Base compiler abstraction for Wasmer WebAssembly runtime

10 unstable releases (3 breaking)

new 0.7.3 Apr 12, 2024
0.7.2 Apr 9, 2024
0.7.0 Mar 29, 2024
0.6.2 Mar 22, 2024
0.1.0 Mar 5, 2024

#1211 in WebAssembly

Download history 116/week @ 2024-02-29 308/week @ 2024-03-07 77/week @ 2024-03-14 453/week @ 2024-03-21 175/week @ 2024-03-28 410/week @ 2024-04-04

1,162 downloads per month
Used in 3 crates

MIT OR Apache-2.0 WITH LLVM-exception and GPL-2.0-or-later

500KB
10K SLoC

unc-vm-compiler

This crate is a fork of wasmer-compiler. A significant number of things changed, but the documentation is not up-to-date yet.

This crate is the base for Compiler implementations.

It performs the translation from a Wasm module into a basic ModuleInfo, but leaves the Wasm function bytecode translation to the compiler implementor.

Here are some of the Compilers provided by Wasmer:

How to create a compiler

To create a compiler, one needs to implement two traits:

  1. CompilerConfig, that configures and creates a new compiler,
  2. Compiler, the compiler itself that will compile a module.
/// The compiler configuration options.
pub trait CompilerConfig {
    /// Gets the custom compiler config
    fn compiler(&self) -> Box<dyn Compiler>;
}

/// An implementation of a compiler from parsed WebAssembly module to compiled native code.
pub trait Compiler {
    /// Compiles a parsed module.
    ///
    /// It returns the [`Compilation`] or a [`CompileError`].
    fn compile_module<'data, 'module>(
        &self,
        target: &Target,
        compile_info: &'module CompileModuleInfo,
        // The list of function bodies
        function_body_inputs: PrimaryMap<LocalFunctionIndex, FunctionBodyData<'data>>,
        instrumentation: &finite_wasm::Module,
    ) -> Result<Compilation, CompileError>;
}

Acknowledgments

This project borrowed some of the code strucutre from the cranelift-wasm crate, however it's been adapted to not depend on any specific IR and be abstract of any compiler.

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

Dependencies

~10–22MB
~337K SLoC