TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Ask HN: What are the best resources to learn about compilers?

8 pointsby neonbatalmost 7 years ago

6 comments

theomegaalmost 7 years ago
I can recommend the book „Compilers: Principles, Techniques and Tools“ [often called „Dragon Book“]. It explains from the basics with all the theory how to write a Leser, parser and much more features. It is one of the few books I bought after university.<p><a href="https:&#x2F;&#x2F;en.m.wikipedia.org&#x2F;wiki&#x2F;Compilers:_Principles,_Techniques,_and_Tools" rel="nofollow">https:&#x2F;&#x2F;en.m.wikipedia.org&#x2F;wiki&#x2F;Compilers:_Principles,_Techn...</a>
评论 #17653117 未加载
Someonealmost 7 years ago
Depends on what you want to learn. Structure and interpretation of computer programs is good for a high-level view of what a compiler does, but it compiles a lisp-like language, so it won’t learn you much about parsing or about generating good error messages when given syntactically or semantically incorrect programs (typically more work than parsing correct programs), and it compiles to some abstract ‘instruction set’, so it won’t be worthwhile if you want to know how to wring maximum performance out of any specific CPU.
SamReidHughesalmost 7 years ago
This book is not completionist but instead it&#x27;s to the point and avoids wasting your time: <a href="https:&#x2F;&#x2F;www.amazon.com&#x2F;gp&#x2F;aw&#x2F;d&#x2F;155558179X&#x2F;" rel="nofollow">https:&#x2F;&#x2F;www.amazon.com&#x2F;gp&#x2F;aw&#x2F;d&#x2F;155558179X&#x2F;</a><p>[Edit: it&#x27;s <i>Building an Optimizing Compiler</i> by Bob Morgan.]<p>That&#x27;s assuming you don&#x27;t want to waste your time reading about parsing, type checking, or serializing an AST into some form of assembly, the parts of a compiler which just aren&#x27;t that interesting.
sloakenalmost 7 years ago
Assuming you want to know this to make your own programming language...<p>Step one is to learn about BNF grammers.<p>When I was in school we used a book called Princples of Compiler Design. I felt this was an excellent bok at the time. It taught me a lot about how toprogram well.
Chyzwaralmost 7 years ago
<a href="https:&#x2F;&#x2F;github.com&#x2F;aalhour&#x2F;awesome-compilers" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;aalhour&#x2F;awesome-compilers</a>
segmondyalmost 7 years ago
a college compiler class
评论 #17653120 未加载