#编译器 #工具 #wasm-binary

弃用 wasmlite-utils

此存储库包含 wasmlite 项目的工具

1 个不稳定版本

0.0.1 2019 年 2 月 14 日

#58#wasm-binary

Download history • Rust 包仓库 15/week @ 2024-02-18 • Rust 包仓库 26/week @ 2024-02-25 • Rust 包仓库 13/week @ 2024-03-03 • Rust 包仓库 11/week @ 2024-03-10 • Rust 包仓库 9/week @ 2024-03-17 • Rust 包仓库

59 每月下载
用于 4 个存储库(3 个直接)

Apache-2.0

2KB

WASMLITE (WASM TO LLVM)

此项目旨在提供编译 wasm 二进制到 LLVM IR 所必需的工具,这可以进一步编译成特定机器的代码。

此项目旨在使编译到 wasm 的语言能够利用 LLVM 基础设施变得容易。

它还允许移除昂贵的 wasm 运行时元素,在不需要完整 wasm 规范的情况下。

最后,它是一个学习 WebAssembly、LLVM 以及它们如何协同工作的平台。

可能的 API(非最终)

编译管道
// Create compiler flags.
let compiler_flags = Some(CompilerOptions {
    optimization_level: 3,
    exclude_passes: vec![
        LLVMPass::InstCombine,
    ],
    runtime_ignores: vec![
        RuntimeProperty::SignatureChecks,
        RuntimeProperty::MemoryBoundsChecks,
    ],
    strategy: CompilationStrategy::Normal,
});

// Create wasm instance options.
let instance_options = Some(InstanceOptions {
    compiler_flags,
    abi: vec![ABI::LLVMMusl],
});

// JIT compile module in current process.
let (module, instance) = Runtime::instantiate(wasm_binary, imports, instance_options);

// Get the exported main function from instance.
let main = instance.get_func("main");

// Store array of items in wasm memory 0
let wasm_array = instance.set_array(&arguments);

// Call the function.
main.call(5, wasm_array);
编译类型 AOT 编译
// Create compiler flags.
let compiler_flags = Some(CompilerOptions {
    strategy: CompilationStrategy::AheadOfTime,
    ..
});

// Create wasm instance options.
let instance_options = Some(InstanceOptions { compiler_flags, .. });

// instance holds an in-memory object code of the entire wasm program.
// Possibly generates a dylib for known imports as well.
let (module, instantiate) = Runtime::instantiate(wasm_binary, imports, instance_options);

// Create executables.
let (imports_dylib, wasm_exe) = module.create_executables();
懒惰编译
// Create compiler flags.
let compiler_flags = Some(CompilerOptions {
    strategy: CompilationStrategy::LazyCompilation,
    ..
});

// Create wasm instance options.
let instance_options = Some(InstanceOptions { compiler_flags, .. });

// Functions are not compiled until their first call.
let (module, instance) = Runtime::instantiate(wasm_binary, imports, instance_options);
REPL 类型懒惰编译
// Create compiler flags.
let compiler_flags = Some(CompilerOptions {
    strategy: CompilationStrategy::REPL,
    ..
});

// Create wasm instance options.
let instance_options = Some(InstanceOptions { compiler_flags, .. });

// Lazily compiles the entire wasm instance.
let (module, instance) = Runtime::instantiate(wasm_binary, imports, instance_options);

// ???
let func = module.add_function(wasm_function_binary, instance);
let expression = module.add_expression(wasm_expression_binary, instance);

非目标

  • 具有多个后端

策略

  • 单遍解析、验证和从 wasm 二进制到 LLVM IR 的代码生成

当前支持

  • 解析器

    • 前缀
    • 类型
    • 导入
    • 内部内存、表
    • 元素、数据、全局变量
    • 函数体
    • 导出
  • 代码生成

  • 运行时

  • 编译策略

  • 编译标志

  • 一个 ABIs

  • 其他功能

待办事项

无运行时依赖

功能