up vote 602 down vote favorite
864
share [g+] share [fb]

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.

link|improve this question
show 2 more comments
feedback

protected by Tim Pietzcker Mar 3 '11 at 15:20

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

58 Answers

1 2

There's a lot of good answers here, so i thought I'd just add one more to the list:

I got a book called Project Oberon more than a decade ago, which has some very well written text on the compiler. The book really stands out in the sense that the source and explanations is very hands on and readable. The complete text (the 2005 edition) has been made available in pdf, so you can download right now. The compiler is discussed in chapter 12:

http://www-old.oberon.ethz.ch/WirthPubl/ProjectOberon.pdf

Niklaus Wirth, Jürg Gutknecht

(The treatment is not as extensive as his book on compilers)

I've read several books on compilers, and i can second the dragon book, time spent on this book is very worthwhile.

link|improve this answer
feedback

I remember asking this question about seven years ago when I was rather new to programming. I was very careful when I asked and surprisingly I didn't get as much critisism as you are getting here. They did however point me in the direction of the "Dragon Book" which is in my opinion, a really great book that explains everything you need to know to write a compiler (You will of course have to master a language or two. The more languages you know, the marrier)

And yes many people say reading that book is crazy and you wont learn anything from it, but I disagree completely with that.

Many people also say that writing compilers are stupid and pointless. Well, there are a number of reasons why compiler development are useful: - Because it's fun. - It's educational, when learning how to write compilers you will learn alot about computer science and other techinques that are useful when writing other applications. - If nobody wrote compilers the existing languages wouldn't get any better.

I didn't write my own compiler right away, but after asking I knew where to start. And now, after learning many different languages and reading the Dragon Book, writing isn't that much of a problem. ( I'm also studying Computer Engineering atm, but most of what I know about programming is self taught )

In conclusion: - The Dragon Book is a great "tutorial" But spend some time mastering a language or two before attempting to write a compiler. Don't expect to be a compiler guru within the next decade or so though.

Edit: The book is also good if you want to learn how to write parsers/interpreters.

link|improve this answer
feedback

I've created a video tutorial for ANTLR 3.x at

http://javadude.com/articles/antlr3xtut

It'll eventually cover creating the entire compiler; I just finished the recognizer section

Enjoy! -- Scott

link|improve this answer
feedback

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|improve this answer
feedback

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|improve this answer
feedback

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

link|improve this answer
show 1 more comment
feedback

Missing from the list: Garbage Collection: Algorithms for Automatic Dynamic Memory Management, by Jones and Lins.

(Assuming you're writing the compiler and runtime system, and that you're implementing a garbage collected language.

link|improve this answer
feedback

I found the Dragon book much too hard to read with too much focus on language theory that is not really required to write a compiler in practice.

I would add the Oberon book which contains the full source of an amazingly fast and simple oberon compiler Project Oberon

alt text

link|improve this answer
feedback

The Parrot Foundation offers a 9-part tutorial on writing a compiler to target the Parrot Virtual Machine. The tutorial uses a simple Lua-like language, Squaak, but Parrot is flexible enough to handle modern OO languages as well.

link|improve this answer
feedback

Go to the Flipcode article archive and search for Implementing A Scripting Engine by Jan Niestadt, a nine-part series about writing a scripting engine, including a compiler and virtual machine.

link|improve this answer
feedback

As an starting point, it will be good to create a recursive descent parser (RDP) (let's say you want to create your own flavour of BASIC and build a BASIC interpreter) to understand how to write a compiler. I found the best information in Herbert Schild's C Power Users, chapter 7. This chapter refers to another book of H. Schildt "C The complete Reference" where he explains how to create a calculator (a simple expression parser). I found both books on eBay very cheap. You can check the code for the book if you go to www.osborne.com or check in www.HerbSchildt.com I found the same code but for C# in his latest book

link|improve this answer
feedback

If you want to use Ruby, look at Treetop, if you want to use Java, look at Antlr. Both are powerful libraries that make it easier and quicker to build parsers for your language.

link|improve this answer
feedback

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|improve this answer
feedback

The Dragon Book is too complicated. So ignore it as a starting point. It is good and makes you think a lot once you already have a starting point, but for starters, perhaps you should simply try to write an math/logical expression evaluator using RD, LL or LR parsing techniques with everything (lexing/parsing) written by hand in perhaps C/Java. This is interesting in itself and gives you an idea of the problems involved in a compiler. Then you can jump in to your own DSL using some scripting language (since processing text is usually easier in these) and like someone said, generate code in either the scripting language itself or C. You should probably use flex/bison/antlr etc to do the lexing/parsing if you are going to do it in c/java.

link|improve this answer
show 1 more comment
feedback

I asked the same question of a friend of mine, and he pointed me to The Structure and Interpretation of Computer Programs. Any thoughts on this? I'm looking for a nice next step after working through a data structures and algorithms book.

link|improve this answer
2  
This is a useful book to start thinking about how programs are evaluated by compilers, but it doesn't get into things like lexing, parsing, intermediate representations, or code generation. – Jay Conrod Dec 9 '08 at 17:46
feedback
  • Start by making sure you can answer most of the questions tagged c++ here on StackOverflow.
  • After that you should make sure you understand how other compilers work and understand [parts of] their source code.
  • You'll notice you need assembler and will start learning assembler until you can answer many questions with that tag.
  • If you've come this far, you'll find that several years have passed and realize how big such a project is and possibly smile at your own question from back then (if this page still exists at that time) ...
link|improve this answer
2  
Not to be rude but, it sounds like you probably haven't written a simple compiler. – mrduclaw Jul 20 '09 at 23:07
4  
Yes, I am currently working on my second simple language, in fact. I know assembler basics, I have used lex, yacc & bison, I know C++, I know a bit about the compilation of C++ and I messed with the inner workings of the PHP interpreter. I would say I have at least an understanding of how complex compilers/interpreters are. – soulmerge Jul 21 '09 at 7:23
feedback

I'm surprised it hasn't been mentioned, but Donald Knuth's The Art of Computer Programming was originally penned as a sort of tutorial on compiler writing.

Of course, Dr. Knuth's propensity for going in-depth on topics has led to the compiler-writing tutorial being expanded to an estimated 9 volumes, only three of which have actually been published. It's a rather complete exposition on programming topics, and covers everything you would ever need to know about writing a compiler, in minute detail.

link|improve this answer
feedback

Whenever I want to try out a new language idea, I just write a simple parser, and have it generate some language that's easy to get good compilers for, like C.

How do you think C++ was done?

link|improve this answer
feedback

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|improve this answer
show 2 more comments
feedback

I've heard good things about create your own programming lang check it out.

Although I haven't personally read it yet, but have a look if you can get your hands on it.

link|improve this answer
show 1 more comment
feedback

Check out this article: it profiles two papers on writing compilers.

link|improve this answer
feedback

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|improve this answer
feedback

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|improve this answer
feedback

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

link|improve this answer
feedback

Try to check http://code.google.com/p/delphibasic/ - this is an implementation of Basic language on Delphi. That should be enough. You can rewrite semantics to implement syntaxis of any language you want. Now I am writing ports on C++ for Linux, PSP and DOS.

link|improve this answer
feedback

The quickest approach is through two books:

1990 version of An Introduction to Compiling Techniques, a First Course using ANSI C, LeX, and YaCC by JP Bennett - a perfect balance of example code, parsing theory and design- it contains a complete compiler written in C, lex and yacc for a simple grammar

Dragon Book (older version) - mostly a detailed reference for the features not covered in the former book

link|improve this answer
feedback

You can use BCEL by the Apache Software Foundation. With this tool you can generate assembler like code, but it's Java with the BCEL API. You can learn how you can build an Intermediate language code (in this case byte code).

Simple example 1. Create a java class with this function:

public String maxAsString(int a, int b) {
    if (a > b) {
        return Integer.valueOf(a).toString();
    } else if (a < b) {
        return Integer.valueOf(b).toString();
    } else {
        return "equals";
    }
}

Now run BCELifier with this class

BCELifier bcelifier = new BCELifier("MyClass", System.out);
bcelifier.start();

You can see the result on the console for the whole class (how to build byte code MyClass.java) The code for the function is this:

private void createMethod_1() {
  InstructionList il = new InstructionList();
  MethodGen method = new MethodGen(ACC_PUBLIC, Type.STRING, new Type[] { Type.INT, Type.INT }, new String[] { "arg0", "arg1" }, "maxAsString", "MyClass", il, _cp);

  il.append(InstructionFactory.createLoad(Type.INT, 1)); // load 1st param to address 1
  il.append(InstructionFactory.createLoad(Type.INT, 2)); // load 2nd param to adress 2
    BranchInstruction if_icmple_2 = InstructionFactory.createBranchInstruction(Constants.IF_ICMPLE, null); // do if condition (compare a > b)
  il.append(if_icmple_2);
  il.append(InstructionFactory.createLoad(Type.INT, 1)); // load value from addess 1 into stack
  il.append(_factory.createInvoke("java.lang.Integer", "valueOf", new ObjectType("java.lang.Integer"), new Type[] { Type.INT }, Constants.INVOKESTATIC));
  il.append(_factory.createInvoke("java.lang.Integer", "toString", Type.STRING, Type.NO_ARGS, Constants.INVOKEVIRTUAL));
  il.append(InstructionFactory.createReturn(Type.OBJECT));
  InstructionHandle ih_13 = il.append(InstructionFactory.createLoad(Type.INT, 1));
  il.append(InstructionFactory.createLoad(Type.INT, 2));
    BranchInstruction if_icmpge_15 = InstructionFactory.createBranchInstruction(Constants.IF_ICMPGE, null); // do if condition (compare a < b)
  il.append(if_icmpge_15);
  il.append(InstructionFactory.createLoad(Type.INT, 2));
  il.append(_factory.createInvoke("java.lang.Integer", "valueOf", new ObjectType("java.lang.Integer"), new Type[] { Type.INT }, Constants.INVOKESTATIC));
  il.append(_factory.createInvoke("java.lang.Integer", "toString", Type.STRING, Type.NO_ARGS, Constants.INVOKEVIRTUAL));
  il.append(InstructionFactory.createReturn(Type.OBJECT));
  InstructionHandle ih_26 = il.append(new PUSH(_cp, "equals")); // return "equals" string
  il.append(InstructionFactory.createReturn(Type.OBJECT));
  if_icmple_2.setTarget(ih_13);
  if_icmpge_15.setTarget(ih_26);
  method.setMaxStack();
  method.setMaxLocals();
  _cg.addMethod(method.getMethod());
  il.dispose();
}
link|improve this answer
feedback

I read this book and it is good. Writing a pascal compiler in Java

Writing Compilers and Interpreters: A Software Engineering Approach from Ronald Mak

link|improve this answer
feedback
1 2

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