Why
Our differential/perf comparisons currently use wasmtime (a server-grade JIT — the "unverified TCB" foil of #283). But kiln's true peers are the safety-critical Rust interpreters, and those are the engines we should compare against and outcompete:
- NASA
spacewasm — https://github.com/nasa/spacewasm — "A flight-compliant WebAssembly interpreter." Ground-up Rust interpreter meant to run Wasm on-board spacecraft; design levied from flight-software standards; deterministic dynamic-memory model, streaming to minimise peak memory, CoreMark benchmarks, libfuzzer. Draws on wasmi, wasm3, and DLR-FT.
DLR-FT/wasm-interpreter — https://github.com/DLR-FT/wasm-interpreter — minimal in-place Rust interpreter from DLR Institute of Flight Systems for avionics (ED-12C/DO-178C, ED-217/DO-332). Passes the full WebAssembly testsuite (minus unfinished proposals); fuel halt/refill/resume (mirrors kiln's resumable-fuel model); live instance migration. Paper: "On the Design of a WebAssembly Interpreter for Aviation" (DASC 2025). NASA's spacewasm requirements are levied from this work.
Same niche as kiln — no_std-friendly, Rust, fuel-bounded, deterministic, cert-oriented.
Two workstreams
1. Differential correctness (extends #401 / SR-35).
Use spacewasm + DLR-FT as additional differential oracles alongside wasmtime. Both are Rust and embeddable (far cheaper to wire than WasmRef-Isabelle), and being peer safety-critical engines, agreement/disagreement is high-signal. Cross-check the WAST suite + fuzz-generated modules across {kiln, wasmtime, spacewasm, DLR-FT}; a kiln-only disagreement is a bug, an all-interpreters-disagree-with-wasmtime is a JIT/spec-interpretation delta worth a note.
2. Competitive matrix (extends #283 positioning + REQ_ASYNC_BENCH methodology).
Measure kiln vs the field on:
- Conformance — WAST pass rate (kiln's mechanical oracle already; publish the head-to-head).
- Performance — CoreMark-style + the per-poll/micro methodology from the executor-comparison bench.
- Memory — peak + determinism (bounded/no-alloc footprint).
- Resumability/fuel — determinism + migration.
- Verification evidence (kiln's intended lead) — Verus + Lean/Aeneas proofs, witness MC/DC on the real Wasm, sigil attestation, rivet end-to-end traceability. spacewasm/DLR are cert-designed but not proof-carrying / MC/DC-attested to this stack level.
"Outcompete" = lead decisively on the verification-evidence axis while matching or beating on conformance + determinism.
Tracking
Landed in rivet as a roadmap requirement, linked to SR-35 (#401), #283, and REQ_ASYNC_BENCH. Research/benchmark-infrastructure direction, not a defect.
Why
Our differential/perf comparisons currently use wasmtime (a server-grade JIT — the "unverified TCB" foil of #283). But kiln's true peers are the safety-critical Rust interpreters, and those are the engines we should compare against and outcompete:
spacewasm— https://github.com/nasa/spacewasm — "A flight-compliant WebAssembly interpreter." Ground-up Rust interpreter meant to run Wasm on-board spacecraft; design levied from flight-software standards; deterministic dynamic-memory model, streaming to minimise peak memory, CoreMark benchmarks, libfuzzer. Draws on wasmi, wasm3, and DLR-FT.DLR-FT/wasm-interpreter— https://github.com/DLR-FT/wasm-interpreter — minimal in-place Rust interpreter from DLR Institute of Flight Systems for avionics (ED-12C/DO-178C, ED-217/DO-332). Passes the full WebAssembly testsuite (minus unfinished proposals); fuel halt/refill/resume (mirrors kiln's resumable-fuel model); live instance migration. Paper: "On the Design of a WebAssembly Interpreter for Aviation" (DASC 2025). NASA's spacewasm requirements are levied from this work.Same niche as kiln — no_std-friendly, Rust, fuel-bounded, deterministic, cert-oriented.
Two workstreams
1. Differential correctness (extends #401 / SR-35).
Use spacewasm + DLR-FT as additional differential oracles alongside wasmtime. Both are Rust and embeddable (far cheaper to wire than WasmRef-Isabelle), and being peer safety-critical engines, agreement/disagreement is high-signal. Cross-check the WAST suite + fuzz-generated modules across {kiln, wasmtime, spacewasm, DLR-FT}; a kiln-only disagreement is a bug, an all-interpreters-disagree-with-wasmtime is a JIT/spec-interpretation delta worth a note.
2. Competitive matrix (extends #283 positioning + REQ_ASYNC_BENCH methodology).
Measure kiln vs the field on:
"Outcompete" = lead decisively on the verification-evidence axis while matching or beating on conformance + determinism.
Tracking
Landed in rivet as a roadmap requirement, linked to SR-35 (#401), #283, and REQ_ASYNC_BENCH. Research/benchmark-infrastructure direction, not a defect.