|
|
|
|
|
by _f5ah
1958 days ago
|
|
You might find [CS 6120: Advanced Compilers: The Self-Guided Online Course][1] interesting. I'm slowly working through it, but basically its focus is intermediate representations, optimizations, etc. A link to the course was on the first page of HN some time ago. If you want to know more about LLVM IR specifically, check this [talk from 2019 EuroLLVM Developers’ Meeting][2] Also -- and you knew it was coming -- I've written [a toy-compiler of a Scala subset][3] myself :) I'm new to F# and writing compilers, so I'm sure the code is full of rookie mistakes. Still, it works and does generate assembly and executables for Linux and Windows. [1]: https://www.cs.cornell.edu/courses/cs6120/2020fa/self-guided... [2]: https://www.youtube.com/watch?v=m8G_S5LwlTo [3]: https://github.com/mykolav/coollang-2020-fs |
|