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
每月 162 次下载
在 3 crates 中使用
500KB
10K SLoC
unc-vm-compiler
这个 crate 是 wasmer-compiler
的分支。许多内容已更改,但文档尚未更新。
这是编译器实现的基础。
它将 Wasm 模块转换为基本的 ModuleInfo
,但将 Wasm 函数字节码转换留给编译器实现者。
以下是 Wasmer 提供的一些编译器:
- 单遍,
如何创建编译器
要创建编译器,需要实现两个 traits
CompilerConfig
,配置和创建新的编译器,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