Post Made Community Wiki by Community
show/hide this revision's text 2

If you're looking to use powerful, higher level tools rather than building everything yourself, going through the projects and readings for this coursepage is a pretty good option. It's a languages course by the author of the Java parser engine ANTLRthat I took last Spring. You can get the book for the course as a PDF from the Pragmatic Programmers.

The focus is more on course goes over the standard compiler compiler stuff that you'd see elsewhere: parsing, types and language designtype checking, but by the end of the course for polymorphism, symbol tables, and code generation. Pretty much the only thing that isn't covered is optimizations. The final project we wrote is a program that compiled compiles a moderate subset of C. Because we used you use tools like ANTLR and LLVM, it was it's feasible to write the entire compiler in a single day (I have an existence proof of this, though I do mean ~24 hours). It's heavy on practical engineering using modern tools, a bit lighter on theory.

LLVM, by the way, is simply fantastic. Many situations where you might normally compile down to assembly, you'd be much better off compiling to LLVM's Intermediate Representation instead. It's higher level, cross platform, and LLVM is quite good at generating optimized assembly from it.

show/hide this revision's text 1

If you're looking to use powerful, higher level tools rather than building everything yourself, this course page is a pretty good option. It's a languages course by the author of the Java parser engine ANTLR that I took last Spring. You can get the book for the course as a PDF from the Pragmatic Programmers.

The focus is more on parsing and language design, but by the end of the course for the final project we wrote a program that compiled a moderate subset of C. Because we used tools like ANTLR and LLVM, it was feasible to write the entire compiler in a single day.

LLVM, by the way, is simply fantastic. Many situations where you might normally compile down to assembly, you'd be much better off compiling to LLVM's Intermediate Representation instead. It's higher level, cross platform, and LLVM is quite good at generating optimized assembly from it.