- Notifications
You must be signed in to change notification settings - Fork7
🌙 A really tiny WebAssembly compiler for demonstration and educational purposes. Written in Go and built as one of my quests to conquer the WebAssembly dungeon
License
thomscoder/luna
Folders and files
| Name | Name | Last commit message | Last commit date | |
|---|---|---|---|---|
Repository files navigation
Luna is a reeeaaally tiny, yet expanding, compiler for WebAssembly Text Format, written in Go and built as one of my quest to conquer the WebAssembly dungeon.
(I just wanted to build something like wat2wasm)
It is so tiny that can only make the four operations (addition, subtraction, multiplication and division) withi32 type numbers.
I've built Luna because I wanted to learn how to build a compiler while learning WebAssembly.So Luna was built for DEMONSTRATION and EDUCATIONAL purposes first.
The goal of Luna is not to do fancy stuff to replace (in a long distant future) solid tools likewat2wasm,wasmer or others...
The goal of this project is to become auseful landmark for anyone approaching WebAssembly and/or for anyone that wants to develop a compiled-to-wasm programming language.
I tried to document each section of the code as much as I could (I'm still doing it) with link to resources I've studied while building this, but if you want to improve it, feel free to open issues and pull requests.
Followed the amazing articles about theChasm compiler (a WAT compiler written in Typescript for the Chasm language) and a guide to write aWAT compiler in Rust
- Luna takes a
.watfile (or string if used in the browser) - Splits it into tokens
./compiler/tokenizer.go - Creates a very simple AST of the tokens
./compiler/parser.go - Compiles
./compiler/compiler.go
Luna can also be used in the browsers
Demo:https://luna-demo.vercel.app/
The
make wasm
command will build (or update) with TinyGo the./example/main.wasm file to be imported in the browserIn the./example directory there's a working example of how to do that.
💡 -
make updatewill simply update/replace the existing main.wasm
💡 - Check the console to see the tokenizer and the parser outputs
Luna also implements a really tiny runtime that can run the exported functions.Read more about it in./runtime/README.md
- Go
- Tinygo
- Make
- syscall/js set up (or simply comment out the startLuna function and the syscall/js import)
- Currently Luna supports only the renaming of the exported function and some order scrumbling
- Currently Luna supports only addition
To contribute simply
- create a branch with the feature or the bug fix
- open pull requests
Luna is by no means finished there are a lot of things that can be implemented and A LOT of things that can be improved. Any suggestions, pull requests, issues or feedback is greatly welcomed!!!
Per aspera ad astra!
About
🌙 A really tiny WebAssembly compiler for demonstration and educational purposes. Written in Go and built as one of my quests to conquer the WebAssembly dungeon
Topics
Resources
License
Uh oh!
There was an error while loading.Please reload this page.
Stars
Watchers
Forks
Uh oh!
There was an error while loading.Please reload this page.
Contributors3
Uh oh!
There was an error while loading.Please reload this page.
