A slow and insecure runtime for WebAssembly
Dependencies
Warning: This project is primarily developed with AI assistance and has not been thoroughly audited. Do not use in production or security-sensitive environments.
Note: JIT optimization is actively improving. Performance depends on workload and platform; benchmark your target programs for an accurate comparison.
moon install Milky2018/wasmoon/cmd/wasmoon
moon install Milky2018/wasmoon/cmd/wasmoon-toolsmoon install https://github.com/Milky2018/wasmoon.git cmd/wasmoon
moon install https://github.com/Milky2018/wasmoon.git cmd/wasmoon-toolswasmoon --help
wasmoon-tools --helpgit clone https://github.com/Milky2018/wasmoon.git
cd wasmoon
./install.shmoon add Milky2018/wasmoon# 1) Run with default _start
wasmoon run examples/add.wat
# 2) Invoke an export with arguments
wasmoon run examples/add.wat --invoke add --arg 5 --arg 3
# 3) Interpreter mode
wasmoon run examples/add.wat --invoke add --arg 5 --arg 3 --no-jit
# 4) WASI dirs/env/options
wasmoon run examples/hello_wasi.wat \
--dir . \
--env FOO=bar \
-S inherit-envwasmoon run --help# run
wasmoon run examples/add.wat --invoke add --arg 1 --arg 2
wasmoon run --help
# test
wasmoon test spec/i32.wast
wasmoon test --help
# explore
wasmoon explore examples/add.wat \
--stage milkir machv vcode allocated-vcode code-object mc
wasmoon explore --help
# component
wasmoon component path/to/component.wasm --validate
wasmoon component path/to/component.wasm \
--invoke 'math#increment' \
--arg 41
wasmoon component path/to/command.component.wasm --run \
--dir /srv/data::/data \
--network loopback
wasmoon component path/to/command.component.wasm --run --no-jit
wasmoon component --help
# component-test
wasmoon component-test path/to/component-tests.json
wasmoon component-test path/to/component-tests.json --no-jit
wasmoon component-test --help
# disasm
wasmoon disasm examples/stream.wasm
wasmoon disasm examples/add.wat
wasmoon disasm --helppython3 scripts/smith_diff/run.py run --count 1000wasmoon run examples/core_ed25519.wasm -D --dump-on-trap -Wlldb -- ./wasmoon run examples/core_ed25519.wasm
(lldb) run
(lldb) bt# Validate a core Wasm module (WASM/WAT)
wasmoon-tools validate examples/add.wat
# Convert between WASM and WAT
wasmoon-tools wasm2wat examples/stream.wasm -o examples/stream.wat
wasmoon-tools wat2wasm examples/add.wat -o examples/add.wasm
# Parse WIT and print normalized text / JSON
wasmoon-tools wit path/to/foo.wit
wasmoon-tools wit path/to/foo.wit --json
# Resolve a directory package (with deps/) and emit graph
wasmoon-tools wit path/to/pkgdir
wasmoon-tools wit path/to/pkgdir --out-dir out
# Encode WIT package as component binary / text
wasmoon-tools wit path/to/foo.wit --wasm -o foo.wasm
wasmoon-tools wit path/to/foo.wit --wat > foo.wat
# Importize world flow
wasmoon-tools wit foo.wasm --importize --wat
wasmoon-tools wit path/to/pkgdir --importize-world my-world --wat
moon check --target native
moon test --target native
./install.sh
cargo install wasm-tools --version 1.254.0 --locked
python3 scripts/run_all_wast.py --dir spec --rec
python3 scripts/check_component_snapshot.py
python3 scripts/run_component_wast.py --suite stable-0.2
python3 scripts/run_component_wast.py --suite stable-0.2 --no-jit
python3 scripts/run_component_wast.py --suite async-0.3
python3 scripts/run_component_wast.py --suite async-0.3 --no-jit
python3 scripts/run_component_wast.py --suite future-gated
python3 scripts/run_component_wast.py --suite future-gated --no-jit///|
test "basic add" {
let wat =
#|(module
#| (func (export "add") (param i32 i32) (result i32)
#| local.get 0
#| local.get 1
#| i32.add))
let mod = @wat.parse(wat)
let (store, instance) = @executor.instantiate_module(mod)
let result = @executor.call_exported_func(store, instance, "add", [
I32(5),
I32(3),
])
debug_inspect(result, content="[I32(8)]")
}///|
test "memory" {
let wat =
#|(module
#| (memory (export "mem") 1)
#| (func (export "store") (param i32 i32)
#| local.get 0 local.get 1 i32.store)
#| (func (export "load") (param i32) (result i32)
#| local.get 0 i32.load))
let mod = @wat.parse(wat)
let (store, instance) = @executor.instantiate_module(mod)
@executor.call_exported_func(store, instance, "store", [I32(0), I32(42)])
|> ignore
let result = @executor.call_exported_func(store, instance, "load", [I32(0)])
debug_inspect(result, content="[I32(42)]")
}///|
test "cross-module" {
let linker = @runtime.Linker::Linker()
let mod_a =
#|(module (func (export "add") (param i32 i32) (result i32)
#| local.get 0 local.get 1 i32.add))
let mod_a = @wat.parse(mod_a)
let inst_a = @executor.instantiate_with_linker(linker, "math", mod_a)
linker.register("math", inst_a)
let mod_b =
#|(module
#| (import "math" "add" (func $add (param i32 i32) (result i32)))
#| (func (export "use_add") (param i32 i32) (result i32)
#| local.get 0 local.get 1 call $add))
let mod_b = @wat.parse(mod_b)
let inst_b = @executor.instantiate_with_linker(linker, "main", mod_b)
let result = @executor.call_exported_func(
linker.get_store(),
inst_b,
"use_add",
[I32(3), I32(5)],
)
debug_inspect(result, content="[I32(8)]")
}///|
test "host function" {
let linker = @runtime.Linker::Linker()
// Register a host function that doubles an i32
linker.add_host_func(
"env",
"double",
fn(args) {
guard args[0] is I32(x) else { return [] }
[I32(x * 2)]
},
func_type={ params: [I32], results: [I32] },
)
let wat =
#|(module
#| (import "env" "double" (func $double (param i32) (result i32)))
#| (func (export "quadruple") (param i32) (result i32)
#| local.get 0 call $double call $double))
let mod = @wat.parse(wat)
let instance = @executor.instantiate_with_linker(linker, "main", mod)
let result = @executor.call_exported_func(
linker.get_store(),
instance,
"quadruple",
[I32(5)],
)
debug_inspect(result, content="[I32(20)]")
}pub(all) struct CompilerInfrastructureAssembly {
signature : Signature
machv_function : Function
code_object : JitCodeObject
}fn compiler_infrastructure_assembly() -> CompilerInfrastructureAssembly raise WasmCompilerPipelineErrorfn plan_wasm_function_with_compiler_infra(env : EmbeddingEnvironment, mod_ : Module, func_local_idx : Int, target : NativeTarget, opt_level? : Int) -> JitIntegrationPlan raise WasmCompilerPipelineErrorfn wasm_frontend_embedding_environment(runtime_symbol_prefix? : String, hidden_context_type? : Type?, cancellation_safepoints? : Bool) -> EmbeddingEnvironmentA slow and insecure runtime for WebAssembly
Dependencies