(no title)
rui314 | 3 years ago
So the chibicc book is not available yet. I'm busy working on the other project (the mold linker) and don't have time to work on it. That being said, I believe the repo is still very valuable for those who want to learn how easy it is to implement a simple C compiler. chibicc's each commit was carefully written so that you can read one commit at a time. I'd recommend starting from the initial commit and observe how each feature (`if`, `for`, local variables, global variables, etc.) is implemented by following each commit.
samatman|3 years ago
What I want to see is a program like this, with very simple assembly/object code, and very fast compilation, and uses DynASM to build the executable in-memory.
Then use a tracing JIT to make it fast.
Having good, tiny, reference C compilers is a prerequisite for that, so I'm always happy to see work in that field.
samsquire|3 years ago
I suspect combining garbage collection, exceptions, closures, tail call optimisation, parallelism, JIT compilation and coroutines is difficult to do orthogonally.
On eatonphil's discord someone recently shared this link: This is a framework for building high performance language runtimes
https://github.com/eclipse/omr
I am currently implementing a programming language and compiler and interpreter in my multiversion-concurrency-control repository.
https://github.com/samsquire/multiversion-concurrency-contro...
I am doing codegen that is interpreted by my imaginary interpreter. My assembly has primitives for thread safe multithreading.
foonathan|3 years ago
stefanos82|3 years ago
We could ask for advice from other project developers that have succeeded on their own journey.
Rochus|3 years ago
Why not release mold linker under a dual license (open source and commercial) and sell them a commercial license?
rui314|3 years ago
carapace|3 years ago
- - - -
Fantastic work, congrats and thank you!
svnpenn|3 years ago
I am using this one:
https://polyformproject.org/licenses/noncommercial/1.0.0
stefantalpalaru|3 years ago
[deleted]