6个稳定版本
2.4.1 | 2024年4月8日 |
---|---|
2.4.0 | 2024年4月7日 |
2.3.5 | 2024年4月7日 |
#294 in WebAssembly
25 每月下载量
用于 3 crates
505KB
10K SLoC
wasmer-compiler
此crate是编译器实现的基础。
它将Wasm模块转换为基本的ModuleInfo
,但将Wasm函数字节码转换留给编译器实现者。
以下是Wasmer提供的一些编译器
如何创建编译器
要创建编译器,需要实现两个特型
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,
module_translation: &ModuleTranslationState,
// The list of function bodies
function_body_inputs: PrimaryMap<LocalFunctionIndex, FunctionBodyData<'data>>,
) -> Result<Compilation, CompileError>;
}
致谢
该项目从cranelift-wasm
crate借用了部分代码结构,但它已被修改为不依赖于任何特定的IR,并对任何编译器进行了抽象。
请参阅Wasmer ATTRIBUTIONS
以进一步了解项目的许可证和其他归属。
依赖项
~6–15MB
~202K SLoC