In order to continue my dive into reading real code, I'd like to read and understand the source code of an actual in-use compiler. Is there one that you think is particularly well-written, elegant, and perhaps, still relatively small? Any suggestions? Any experiences?

Resolution: I've decided to read the Lua source code. I've been bookmarking (the few) resources available to help reading and understanding the Lua code.

link|improve this question

76% accept rate
feedback

6 Answers

up vote 7 down vote accepted

Lua is compact and has very good performance for a byte-code compiler. The language is simple but powerful, and does many things right: lexical scoping, closures, gc, etc. There is also a jit version once you are ready for more performance.

Though the compiler and runtime source code are not designed as a teaching vehicle, it is quite clean, and the language and its development are well documented.

link|improve this answer
Thanks! That's a great suggestion. Even though I usually find C a little daunting, the code looks terse and clean. – namin Dec 5 '08 at 3:48
I've been trawling the Lua source code but unfortunately my understanding of C doesn't trump my lack of comprehension of their abbreviated coding style. Unfortunately, at least in my experience, it's difficult to follow the compiler code because of the way they've named functions, variables and such. Often they'll be single or double letter identifiers that without context mean nothing to an outside observer. Perhaps those documents will help me out. – Nick Bedford Feb 13 at 5:38
feedback

I most highly recommend A Retargetable C Compiler: Design and Implementation by Chris Fraser and Dave Hanson. It describes lcc, a production-quality C89 compiler that was heavily used from its release in the early 1990s to the release of the c99 standard. These two guys are masters of their craft, and they spent 10 years working on a compiler that they could use as a research and teaching tool.

There are lots of simpler compilers out there but none that is better designed, and none that is as well documented.

It is unfortunate that the compiler itself is written in C. I once asked Hanson, "So you and Chris have spent ten years on this incredibly carefully crafted compiler, and now it is finally published as a book. What did you learn?" His response: "C is a lousy language to write a compiler in."

I couldn't agree more.

link|improve this answer
feedback

You can download the source to the D programming language compiler (front end) at digitalmars

link|improve this answer
feedback

GCC is opensource so by definition you can read its source http://gcc.gnu.org/ and it is highly used.

And it supports: C, C++, Objective-C, Fortran, Java, and Ada

link|improve this answer
The way GCC compiles java might be unnecessarily surprising to someone from a java background. javac source is at openjdk.java.net/groups/compiler, but I've never looked at it so I can't offer enough suggestions or experiences to constitute an actual answer... – Steve Jessop Dec 5 '08 at 3:17
1  
just dive in to gcc code? good luck with that. – shoosh Dec 5 '08 at 3:25
I just came across this thread and wanted to add my two cents. I spent a term studying GCC for a graduate class project, and there's probably more about it that I don't know than I do. GCC is way too complex for someone who is new to compilers or who is looking for a compiler that they can get their head around. – stomcavage Dec 8 '10 at 14:22
feedback

I would highly recommend this book:

http://www.amazon.com/Scripting-Mastery-Premier-Press-Development/dp/1931841578

The code is in C, but if you are a current programmer you should be able to catch on quickly. It not only goes over the complete creation of a procedural compiler, assembler and virtual machine - it will explain the theory involved in all steps. You will get a much better understanding of everything from how compilers compile and Annalise code to how the CPU and memory run it. In fact, you build a VM (virtual memory/virtual processor/excettra) during the book.

I could not give a higher recommendation for you considering your interest into how the computer compiles and runs code.

link|improve this answer
I hated this book. Takes 1200 pages to do what a good author could do in 400, and a great author in 300. – Norman Ramsey Dec 6 '08 at 1:23
There was a lot of theory then that you overlooked – nlaq Dec 6 '08 at 8:26
I don't think Norman would have "overlooked" theory, or discounted it. Check his bio. – Ira Baxter Jun 11 '11 at 15:39
feedback

You might want to consider Ruby as an alternative. You can download the source code from http://www.ruby-lang.org/en/downloads/.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.