#wasm-module #compiler #wasm-bytecode

无需 std unc-vm-compiler

Wasmer WebAssembly 运行时的基础编译器抽象

13 个版本 (5 个重大更新)

0.12.2 2024 年 5 月 30 日
0.10.2 2024 年 5 月 15 日
0.7.3 2024 年 4 月 12 日
0.7.0 2024 年 3 月 29 日
0.1.0 2024 年 3 月 5 日

#8 in #wasm-bytecode

Download history • Rust 包仓库 87/week @ 2024-04-14 • Rust 包仓库 11/week @ 2024-04-21 • Rust 包仓库 8/week @ 2024-04-28 • Rust 包仓库 168/week @ 2024-05-05 • Rust 包仓库 201/week @ 2024-05-12 • Rust 包仓库 181/week @ 2024-05-19 • Rust 包仓库 428/week @ 2024-05-26 • Rust 包仓库 165/week @ 2024-06-02 • Rust 包仓库 88/week @ 2024-06-09 • Rust 包仓库 69/week @ 2024-06-16 • Rust 包仓库 39/week @ 2024-06-23 • Rust 包仓库 38/week @ 2024-06-30 • Rust 包仓库 17/week @ 2024-07-07 • Rust 包仓库 62/week @ 2024-07-14 • Rust 包仓库 39/week @ 2024-07-21 • Rust 包仓库 44/week @ 2024-07-28 • Rust 包仓库

每月 162 次下载
3 crates 中使用

GPL-2.0-or-later WITH LLVM-exception

500KB
10K SLoC

unc-vm-compiler

这个 crate 是 wasmer-compiler 的分支。许多内容已更改,但文档尚未更新。

这是编译器实现的基础。

它将 Wasm 模块转换为基本的 ModuleInfo,但将 Wasm 函数字节码转换留给编译器实现者。

以下是 Wasmer 提供的一些编译器:

如何创建编译器

要创建编译器,需要实现两个 traits

  1. CompilerConfig,配置和创建新的编译器,
  2. Compiler,编译器本身,用于编译模块。
/// 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>;
}

致谢

本项目从 cranelift-wasm crate 中借鉴了一些代码结构,但已适应,不依赖于任何特定的 IR,并抽象于任何编译器。

请参阅 Wasmer ATTRIBUTIONS 以进一步查看项目的许可证和其他归属。

依赖关系

~9–19MB
~300K SLoC