Compiler Books

I own a bunch of compiler books that I have purchased over the years.

Dragon Books

I have 3 editions of these.

  • Principles of Compiler Design. Aho & Ullman, 1977.

  • Compilers: Principles, Techniques and Tools. Aho, Sethi, Ullman, 1986.

  • Compilers: Principles, Techniques and Tools, 2nd Ed. Aho, Lam, Sethi, Ullman, 2006.

These books are criticised today because of the excessive focus on lexical analysis and parsing techniques. While this is true, they do cover various aspects of a compiler backend such as intermediate representations and optimization techniques including peephole optimization, data flow analysis, register allocation etc. I found the description of the lattice in a data flow analysis quite accessible.

The 2nd edition adopts a more mathematical presentation style, whereas the earlier editions present algorithms using pseudo code. I think the 1986 edition is the best.

For a different take on 2nd edition see Review of the second addition of the “Dragon Book”.

Engineering a Compiler, 2nd Ed. Cooper & Torczon. 2012.

This is a more modern version of the Dragon book. It is less focused on the lexical analysis / parsing phases, and covers the later phases of a compiler in more detail. Exposition is similar to the Dragon book, i.e. mostly describes techniques conceptually, with some high level algorithm descriptions, but like the Dragon book, does not go into detailed descriptions of algorithms.

Both this and the Dragon books describe ahead of time compilers and cover topics that are suited for procedural languages such as C or traditional Pascal or Fortran. They cover both front-end and back-end techniques; however, on the front-end side, interesting topics such as Object Orientation, Closures, Generics, or Semantic analysis of more complex languages such as Java are not covered.

Modern Compiler Implementation in C. Appel. 1998. (Tiger book)

This book takes a hands on tutorial like approach to describing how to implement both the front-end and back-end of a compiler, using a toy language called Tiger as an example. Algorithms are described in pseudo code. If I had to choose between the Dragon book, Engineering a compiler, and this book, I would pick this one.

This book covers functional languages, closures, as well as Object Oriented languages such as Java. Type inference is covered too.

Crafting a Compiler. Fischer, LeBlanc, Cytron. 2010.

The last couple of chapters are the most interesting - these focus on code generation and program optimization.

The 2nd edition of the book (with Cytron as co author) has a description of Static Single assignment that is perhaps the most complete in all the books I cover here. The 1st edition describes data flow analysis in more detail.

Apart from the final two chapters, the rest of the book is about parsing and semantic analysis.

Building an Optimizing Compiler. Bob Morgan. 1998.

I have the kindle edition which is very poor and hard to read. I wish I had a paper copy.

This book is almost completely about the backend of the compiler.

Advanced Compiler Design & Implementation. Muchnick. 1997.

I have the kindle edition, which is very poor and hard to read.

This book is also mostly about the backend of a compiler, focusing on optimization.

My impression is that this book describes many algorithms in detail. But when I tried to implement one of the simpler algorithms (18.1 Unreachable Code Elimination) I found that the description left out a part (No_Path) of the algorithm.

This book describes the idea of multiple levels of intermediate representation, HIR, MIR and LIR. I guess this has influenced many compiler implementations.

Its coverage of SSA is rudimentary - I guess it was written when SSA was still very new.

This book has a reputation of containing many errors, although I assume the latest printings have the errors fixed.

Despite its faults, it is a must have book if you want to learn about compiler construction.

Retargetable C Compiler, A: Design and Implementation. Hanson & Fraser. 1995.

Describes a production C compiler. Detailed dsecription of the actual compiler code.

Weak on theoretical aspects, and limited by features of the compiler being described.

Program Flow Analysis: Theory and Applications. Editors Muchnick, Jones. 1981.

Collection of essays on program analysis, by various authors. This is pre-SSA, hence a bit dated.

Other Book Reviews