A WebAssembly runtime + JIT compiler project.
Currently only the parser and validator are implemented.
Provide a small, clean foundation for:
- Parsing Wasm binaries
- Validating modules
- (Future) Converting Wasm to LLVM IR
- (Future) Running Wasm modules
- ✔ Parser (section-by-section)
- ✔ Validator
- ❌ LLVM IR generation
- ❌ Runtime
- ❌ Codegen / AOT
zig build
- Add LLVM IR generation
- Add runtime (memory, tables, imports)
- Add codegen