|
You are here |
www.codecentric.de | ||
| | | | |
thume.ca
|
|
| | | | | [AI summary] This blog post by Tristan Hume details his experience writing a compiler for a course project using Rust. He discusses various aspects of the project including the use of Rust's powerful enums and pattern matching, handling variable and type resolution, reference counting with Rc, code generation for x86 assembly, and the use of usercorn to run Linux binaries on macOS. The post also reflects on the challenges and benefits of using Rust for such a project, comparing it with other languages and design decisions. | |
| | | | |
lambdaland.org
|
|
| | | | | Theres a neat paper Type Systems as Macros by Chang, Knauth, and Greenman [1] that describes how to implement a typed language using an untyped host language and macro expansion. The paper is neat, but I found the code hard to followthe paper uses a compact notation thats convenient for print, but not so much for reproducing on ones own. This post is my attempt to implement and explain in more accessible terms whats presented in the paper. | |
| | | | |
typesanitizer.com
|
|
| | | | | A discussion of different developer tools which (can) build on top of a compiler, and how those affect compiler design. | |
| | | | |
manishearth.github.io
|
|
| | | The Rust community lately has been focusing a lot on "async I/O" through the tokio project. This is pretty great! But for many in the community who ... | ||