Quo is a toy language with C-style syntax that compiles to WebAssembly. It is bootstrapped with a minimal version of the compiler implemented in hand-written WebAssembly. Each subsequent iteration of the compiler is written in the subset of the language supported by the previous iteration, and provides additional language features for the next iteration.
Because it's a fun challenge! I've always been interested in compilers and wanted to learn more about WebAssembly. There's just something very cool about bootstrapping a self-hosted compiler.
- Stage 0 (quo0.wat): Written in WebAssembly text format, compiles a minimal version of Quo - Quo0.
- Features:
- Single pass, no AST / IR
- Minimal Turing complete syntax
- Only data type is i32
- Uses linear memory with no memory management
- Artifacts:
quo0.wasm: stage 0 compiler, assembled directly bywat2wasm
- Features:
- Stage 1 (quo1.quo): Written in Quo0, compiles Quo0. Effectively a translation of the stage 0 compiler into Quo0 itself, with no additional language features added.
- Features:
- Memory management with malloc / free
- Data structures including dynamic strings, arrays and maps
- Artifacts:
quo1a.wasm: stage 1 compiler compiled by stage 0 compilerquo1b.wasm: stage 1 compiler compiled byquo1a.wasmquo1c.wasm: stage 1 compiler compiled byquo1b.wasm, i.e. a fully self-hosted compiler!
- Features:
- (WIP) Stage 2 (quo2.quo): Written in Quo0, compiles a more advanced version of Quo - Quo1.
- Fetaures:
- Structs
- Artifacts:
quo2a.wasm: stage 2 compiler compiled by stage 1 compilerquo1c.wasm
- Fetaures: