vote up 131 vote down star
201

Preferred Languages : C/C++, Java, and Ruby

I am looking for some helpful books/tutorials on how to write your own compiler simply for educational purposes. I am most familiar with C/C++, Java, and Ruby so I prefer resources that involve one of those three, but any good resource is acceptable.

flag

38 Answers

prev 1 2
vote up 1 vote down

You might be interested in this ONLamp article where Dan Sugalski describes how he built a compiler to add modern features to a 1980s legacy programming language still used by his employer.

link|flag
vote up 1 vote down

FWIW at the bottom of this page there is a link to a "C Like" interpreter written in C/C++ and using lexx and yacc tools. I think the C++ version has been updated to build using Microsoft Visual Studio.

NOTE: This was my first and last attempt at writing an interpreter so don't expect too much.

link|flag
vote up 1 vote down

I have written an online tutorial on compiler design, titled "Let's build a scripting Engine-Compiler, as well as a native code compiler called Bxbasm. The Online doc's are at: http://geocities.com/blunt_axe_basic/tutor/Bxb-Tutor.doc

The docs, support files and compiler, in zip form, are at: http://geocities.com/blunt_axe_basic

Also: http://tech.groups.yahoo.com/group/QDepartment

Steve A.

link|flag
vote up 1 vote down

if you like me, who has no formal computer science education, and interested on build/want to know how a compiler works.

I am recommend "Programming Language Processors in Java: Compilers and Interpreters", an amazing book for self taught computer programmer.

from my points of view, understanding those basic language theory, automate machine, set theory is not a big problem, the problem is how to turn those thing into code, above book tell you how to write a parser, analysis context, and generate code. if you can not understands this book, then i have to say, give up build a compiler. the book is best programming book i have even read.

there is an other book also good, Compiler Design in C, lot of code, tell you every thing about how to build compiler and lex tools.

building a compiler is a fun programming practice, can learn a heaps of programming skills.

do not buy the Dragon book, wast of money and time,not for practitioner

link|flag
vote up 1 vote down

A PDF version of Crenshaw's tutorial (see first post, maybe it can be added there): http://www.stack.nl/~marcov/compiler.pdf

link|flag
vote up 1 vote down

In order to get a deeper understanding of parsing I recommend to read Parsing Techniques - A Practical Guide and a good book on theoretical computer science.

link|flag
show 2 more comments
vote up 1 vote down

Not a book, but a technical paper and an enormously fun learning experience if you want to know more about compilers (and metacompilers)... this website walks you through building a completely self-contained compiler system that can compile itself and other languages:

http://www.bayfronttechnologies.com/mc%5Ftutorial.html

This is all based on an amazing little 10-page technical paper:

Val Schorre META II: A Syntax-Oriented Compiler Writing Language

from honest-to-god 1964. I learned how to build compilers from this back in 1970. There's a mind-blowing moment when you finally grok how the compiler can regenerate itself....

I know the website author from my college days, but have nothing to do with the website.

link|flag
vote up 1 vote down

ANLTR isn't in here? Wow! Don't forget the book.

link|flag
prev 1 2

Your Answer

Get an OpenID
or

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