Files
haskell-wasm/README.md
T
Stanislav Panferov 853334765f Update README.md
2018-02-25 16:40:26 -08:00

833 B

Haskell WebAssembly Toolkit

Goals

  • Provide a WebAssembly code generation tool for Haskell
  • Create an infrastructure for Cmm to WebAssembly code generator
  • Have Fun :)

Status

  • Lexer: supports nested block comments and all lexemes from the WebAssembly Spec
  • Parser: parses all examples from WebAssembly Core TestsSuit (including folded instructions parsing)
  • Renaming Phase: substitute identifiers with correct indexes, expand all implicit type declarations)
  • Binary format parser/serializer

Todo

  • Improve error messages for text representation parsing
  • Verification Phase: execute a verification procedure from the Spec
  • Text Representation pretty-printer
  • Execution Phase: implement a simple interpreter for running WebAssembly Core TestsSuit assertions