Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is the Dragon book a good introductory textbook for a compiler class? It seems to be famous, and our professor likes it, but it's not one of the textbooks that we use.

share|improve this question

closed as not constructive by 0A0D, Kev Sep 17 '11 at 22:25

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

5 Answers

The Dragon book is the "War & Peace" of compilers. You can live without it, and you'll even have lots of spare time, but you'll always live wondering what you've missed.

share|improve this answer

When I myself searched for information on how to build a compiler, the Dragon book was indeed always cited as THE reference.

There is a free book by Niklaus Wirth, named "Compiler Construction".

EDIT: I found out after I answered but you should definitely refer to the Learning to write a compiler question for a list of resources.

And there is The Catalog Of Compiler Construction Tools.

share|improve this answer
1  
"Compiler Construction" by Wirth is one of the textbooks we use for our class. – neuromancer Dec 7 '09 at 9:59

It is a good book, and a classic, and I would thoroughly recommend it. However, this assumes that by "compiler class" you mean "how to write a compiler" and were concentraing on theory. This requires intelligent and motivated students as it isn't the easiest subject in the world.

An "introduction to functional programming" book might also work well. If you had students who liked a more applied/practical example, a book about something like ANTLR might work well, eg:

http://pragprog.com/titles/tpantlr/the-definitive-antlr-reference

share|improve this answer
Very well-said, Nick! – Chip Uni Dec 7 '09 at 9:55

Personally I would say no, though I haven't read the latest edition. I would prefer abook that concentrates on recursive descent compiling as the basis for an introductory course.

share|improve this answer
can you explain that? – Nathan Feger Dec 8 '09 at 12:55

The dragon book, imo, would be very useful if you've got knowledge about automata theory but otherwise if would be more beneficial to understand compiler theory from the aspects of recursive descent compiling as what Neil Butterworth pointed out earlier.

share|improve this answer

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