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

There are many books which teach compiler design using C or Java (Dragon book). Are there any which teach compilers based on haskell?

EDIT It should be about traditional compiler techniques, and not those used to implment functional languages. I am looking towards something like Dragon-book-but-with-code-in-Haskell. For the time being, if there is good book discussing building interpreters in Haskell, that would be welcome as well. But the language used to build one has to be Haskell.

share|improve this question
+1 and fav'd. I'd love to see one. – delnan Mar 8 '11 at 15:21

closed as not constructive by Smi, Aziz Shaikh, Mr. Alien, Ragunath Jawahar, Mark Nov 16 '12 at 12:44

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.

3 Answers

up vote 4 down vote accepted

I think what you may be looking for is: http://en.wikibooks.org/wiki/Write_Yourself_a_Scheme_in_48_Hours

You may also want to take a look at the EHC project which is a Haskell compiler (written in Haskell) designed for students and experimentation.


Let me just add to Edward Yang's comment. He did answer the question you were asking but the answer was a bit short. SICP, among other things discusses how to write a compiler. The authors of the book invented the notion of using a Meta-circular evaluator to create a LISP interpreter that could decompose a LISP down to primitive machine operations.

So SICP is what you are looking for, an equivalent of the early chapters of the Dragon book. SICP in this sense is an introductory text on how to create a compiler aimed at a student teaching them the basics. A more advanced book is going to assume you know what's in SICP. For example you will see "fix" given a lot of importance in Haskell discussions where fix f = f (fix f).
But without understand what a Y-combinator is and what this has to do with building looping structures from symbolic evaluators the importance of fix won't make sense. Regardless of Haskell or LISP, in general functional compilers do this meta-circular reduction and then binary translation.

Lisp in Small Pieces walks through about a dozen different LISP compilers in detail contrasting various strategies. Anyway this reading list may be of help: http://library.readscheme.org/page8.html I get you are interested in Haskell not LISP but there are about 100 LISP books for every Haskell book.

share|improve this answer
Write yourself a scheme is closest to what I wanted. For general compiler knowledge, I have the dragon book. I was looking for something that would show me how to do it in Haskell. – rpg Mar 9 '11 at 15:21

There are two dimensions to your question: traditional compiler techniques implemented in a functional programming language, and compiler techniques for functional programming languages.

For traditional compilers:

  • Not in Haskell, but Modern Compiler Implementation in ML gives an account of compiler construction using a functional programming language, which does highlight some of the reasons why functional programming languages are quite good at making compilers.

  • Also not in Haskell, but knowing how to write an interpreter for a language is an important first step for writing a compiler, and Abelson and Sussman’s Structure and Interpretation of Computer Programs does a good job at elucidating this (especially chapters 4 and 5; 5.5 in particular is devoted to compilation).

For compilers of functional programming languages:

share|improve this answer
clarified in edit, please see above. – rpg Mar 8 '11 at 16:58

You may also want to have a peek at "Design Concepts In Programming Languages" (http://dcpl.mit.edu/).

share|improve this answer
I'd prefer a book using Haskell. Don't want to switch to another functional language right now. – rpg Mar 8 '11 at 19:10

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