Learning to write a compiler - Stack Overflow most recent 30 from stackoverflow.com2009-11-21T15:07:21Zhttp://stackoverflow.com/feeds/question/1669http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1669/learning-to-write-a-compiler131Learning to write a compilerAnton2008-08-04T22:46:36Z2009-11-08T06:13:12Z
<p><em>Preferred Languages</em> : <code>C/C++, Java, and Ruby</code></p>
<p>I am looking for some helpful books/tutorials on how to write your own compiler simply for educational purposes. I am most familiar with <code>C/C++, Java, and Ruby</code> so I prefer resources that involve one of those three, but any good resource is acceptable.</p>
http://stackoverflow.com/questions/1669/learning-to-write-a-compiler/1671#16712Answer by Peter Coulton for Learning to write a compilerPeter Coulton2008-08-04T22:50:01Z2008-08-04T22:50:01Z<p>Haven't read it but <a href="http://www.hokstad.com/writing-a-compiler-in-ruby-bottom-up-step-1.html" rel="nofollow">Writing a compiler in Ruby bottom up</a> looks promising for you.</p>http://stackoverflow.com/questions/1669/learning-to-write-a-compiler/1672#1672129Answer by Michael Stum for Learning to write a compilerMichael Stum2008-08-04T22:52:00Z2009-06-03T18:23:08Z<h2>Big List of Resources:</h2>
<ul>
<li><a href="http://en.wikipedia.org/wiki/Compilers:%5FPrinciples%2C%5FTechniques%2C%5Fand%5FTools" rel="nofollow">Dragon Book</a> - Widely considered "the book" for compiler writing. Chris Bunch also suggests to look at the Interpreter pattern in <a href="http://rads.stackoverflow.com/amzn/click/0201633612" rel="nofollow">Design Patterns</a>.</li>
<li><a href="http://www.cs.indiana.edu/~dyb/pubs/nano-jfp.pdf" rel="nofollow">A Nanopass Framework for Compiler Education</a></li>
<li><a href="http://scheme2006.cs.uchicago.edu/11-ghuloum.pdf" rel="nofollow">An Incremental Approach to Compiler Construction</a> </li>
<li><a href="http://www.onlamp.com/pub/a/onlamp/2004/04/15/parrot%5Fcompiler%5Fconstruction.html" rel="nofollow">Building a Parrot Compiler</a></li>
<li><a href="http://www.cs.man.ac.uk/~pjj/farrell/compmain.html" rel="nofollow">Compiler Basics</a></li>
<li><a href="http://www-old.oberon.ethz.ch/WirthPubl/CBEAll.pdf" rel="nofollow">Compiler Construction</a></li>
<li><a href="http://flipcode.com/archives/articles.shtml" rel="nofollow">Flipcode Article Archive</a></li>
<li><a href="http://rads.stackoverflow.com/amzn/click/1931841578" rel="nofollow">Game Scripting Mastery</a></li>
<li><a href="http://research.microsoft.com/~simonpj/papers/pj-lester-book/" rel="nofollow">Implementing Functional Languages</a></li>
<li><a href="http://compilers.iecc.com/crenshaw/" rel="nofollow">Lets Build a Compiler</a> - The <a href="http://www.stack.nl/~marcov/compiler.pdf" rel="nofollow">pdf</a> version</li>
<li><a href="http://tinyurl.com/5txtuk" rel="nofollow">Linkers and Loaders</a></li>
<li><a href="http://llvm.org/docs/tutorial/" rel="nofollow">LLVM Tutorial</a></li>
<li><a href="http://rads.stackoverflow.com/amzn/click/0521607647" rel="nofollow">Modern Compiler Implementation in ML</a> - There is a <a href="http://rads.stackoverflow.com/amzn/click/052182060X" rel="nofollow">Java</a> and <a href="http://rads.stackoverflow.com/amzn/click/0521607655" rel="nofollow">C</a> version as well.</li>
<li><a href="http://www.parrotblog.org/2008/03/targeting-parrot-vm.html" rel="nofollow">Parrot Tutorial</a></li>
<li><a href="http://www.cs.vu.nl/~dick/PTAPG.html" rel="nofollow">Parsing Techniques - A Practical Guide</a></li>
<li><a href="http://www-old.oberon.ethz.ch/WirthPubl/ProjectOberon.pdf" rel="nofollow">Project Oberon</a> - Look at chapter 13</li>
<li><a href="http://cm.bell-labs.com/who/ken/trust.html" rel="nofollow">Reflections on Trusting and Trust</a></li>
<li><a href="http://msdn.microsoft.com/en-us/magazine/cc136756.aspx" rel="nofollow">Roll Your Own Compiler for the .NET framework</a></li>
<li><a href="http://prog21.dadgum.com/30.html" rel="nofollow">Want to Write a Compiler?</a></li>
<li><a href="http://www.hokstad.com/writing-a-compiler-in-ruby-bottom-up-step-1.html" rel="nofollow">Writing a Compiler in Ruby Bottom Up</a></li>
</ul>
http://stackoverflow.com/questions/1669/learning-to-write-a-compiler/1674#16741Answer by John Downey for Learning to write a compilerJohn Downey2008-08-04T22:52:50Z2008-08-04T22:52:50Z<p>A while back I found <a href="http://prog21.dadgum.com/30.html" rel="nofollow">this article</a> on writing compilers which has links to two resources, <a href="http://compilers.iecc.com/crenshaw/" rel="nofollow">Let's Build a Compiler</a> and <a href="http://www.cs.indiana.edu/%7Edyb/pubs/nano-jfp.pdf" rel="nofollow">A Nanopass Framework for Compiler Education</a>.</p>http://stackoverflow.com/questions/1669/learning-to-write-a-compiler/1675#16751Answer by saniul for Learning to write a compilersaniul2008-08-04T22:53:55Z2008-08-04T22:53:55Z<p>Here's an interesting paper: <a href="http://scheme2006.cs.uchicago.edu/11-ghuloum.pdf" rel="nofollow">An Incremental Approach to Compiler Construction</a></p>
<p>Read it like a tutorial. It uses a subset of Scheme as the input language.</p>http://stackoverflow.com/questions/1669/learning-to-write-a-compiler/1678#16786Answer by saniul for Learning to write a compilersaniul2008-08-04T22:56:30Z2008-08-04T22:56:30Z<p>@John Downey:
<a href="http://compilers.iecc.com/crenshaw/" rel="nofollow">"Let's Build a Compiler"</a> is awesome, but it's a bit outdated. (I'm not saying it makes it even a little bit less valid)</p>http://stackoverflow.com/questions/1669/learning-to-write-a-compiler/1686#168615Answer by Daniel F. Hanson for Learning to write a compilerDaniel F. Hanson2008-08-04T23:08:18Z2008-08-04T23:08:18Z<p>I concur with the Dragon Book reference; IMO, it is the definitive guide to compiler construction. Get ready for some hardcore theory, though.</p>
<p>If you want a book that is lighter on theory, <a href="http://rads.stackoverflow.com/amzn/click/1931841578" rel="nofollow">Game Scripting Mastery</a> might be a better book for you. If you are a total newbie at compiler theory, it provides a gentler introduction. It doesn't cover more practical parsing methods (opting for non-predictive recursive descent without discussing LL or LR parsing), and as I recall, it doesn't even discuss any sort of optimization theory. Plus, instead of compiling to machine code, it compiles to a bytecode that is supposed to run on a VM that you also write.</p>
<p>It's still a decent read, particularly if you can pick it up for cheap on Amazon. If you only want an easy introduction into compilers, Game Scripting Mastery is not a bad way to go. If you want to go hardcore up front, then you should settle for nothing less than the Dragon Book.</p>http://stackoverflow.com/questions/1669/learning-to-write-a-compiler/1693#16936Answer by Peter Burns for Learning to write a compilerPeter Burns2008-08-04T23:13:49Z2008-08-04T23:25:02Z<p>If you're looking to use powerful, higher level tools rather than building <em>everything</em> yourself, going through the projects and readings for <a href="http://www.antlr.org/wiki/display/CS652/CS652+Home" rel="nofollow">this course</a> is a pretty good option. It's a languages course by the author of the Java parser engine ANTLR. You can get the book for the course as a PDF from <a href="http://www.pragprog.com/titles/tpantlr/the-definitive-antlr-reference" rel="nofollow">the Pragmatic Programmers</a>.</p>
<p>The course goes over the standard compiler compiler stuff that you'd see elsewhere: parsing, types and type checking, polymorphism, symbol tables, and code generation. Pretty much the only thing that isn't covered is optimizations. The final project is a program that <a href="http://www.antlr.org/wiki/display/CS652/C+subset+compiler" rel="nofollow">compiles a subset of C</a>. Because you use tools like ANTLR and LLVM, it's feasible to write the entire compiler in a single day (I have an existence proof of this, though I do mean ~24 hours). It's heavy on practical engineering using modern tools, a bit lighter on theory.</p>
<p>LLVM, by the way, is simply fantastic. Many situations where you might normally compile down to assembly, you'd be much better off compiling to <a href="http://llvm.org/docs/LangRef.html" rel="nofollow">LLVM's Intermediate Representation</a> instead. It's higher level, cross platform, and LLVM is quite good at generating optimized assembly from it.</p>http://stackoverflow.com/questions/1669/learning-to-write-a-compiler/2516#25162Answer by aardvark for Learning to write a compileraardvark2008-08-05T16:08:34Z2008-08-05T16:08:34Z<P>The Parrot Foundation offers a <A href="http://www.parrotblog.org/2008/03/targeting-parrot-vm.html" rel="nofollow">9-part tutorial</A> 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.</P>http://stackoverflow.com/questions/1669/learning-to-write-a-compiler/2523#25236Answer by Chris Bunch for Learning to write a compilerChris Bunch2008-08-05T16:16:01Z2008-08-05T16:16:01Z<p><a href="http://rads.stackoverflow.com/amzn/click/0321486811" rel="nofollow">The Dragon Book</a> is definitely the "building compilers" book, but if your language isn't quite as complicated as the current generation of languages, you may want to look at the Interpreter pattern from <a href="http://rads.stackoverflow.com/amzn/click/0201633612" rel="nofollow">Design Patterns</a>.</p>
<p>The example in the book designs a regular expression-like language and is well thought through, but as they say in the book, it's good for thinking through the process but is effective really only on small languages. However, it is much faster to write an Interpreter for a small language with this pattern than having to learn about all the different types of parsers, yacc and lex, et cetera...</p>http://stackoverflow.com/questions/1669/learning-to-write-a-compiler/3005#30055Answer by secretGeek for Learning to write a compilersecretGeek2008-08-06T01:43:47Z2008-08-06T01:43:47Z<p>The MSDN article <a href="http://msdn.microsoft.com/en-us/magazine/cc136756.aspx" rel="nofollow">"Roll your own compiler in the .net framework"</a> is a well written, concise and practical starting point. </p>http://stackoverflow.com/questions/1669/learning-to-write-a-compiler/7085#708512Answer by Dominic Cooney for Learning to write a compilerDominic Cooney2008-08-10T07:54:32Z2008-08-10T07:54:32Z<p>I think <a href="http://rads.stackoverflow.com/amzn/click/0521607647" rel="nofollow" title="Modern Compiler Implementation in ML">Modern Compiler Implementation in ML</a> is the best introductory compiler writing text. There's a <a href="http://rads.stackoverflow.com/amzn/click/052182060X" rel="nofollow" title="Modern Compiler Implementation in Java">Java version</a> and a <a href="http://rads.stackoverflow.com/amzn/click/0521607655" rel="nofollow" title="Modern Compiler Implementation in C">C version</a> too, either of which might be more accessible given your languages background. The book packs a lot of useful basic material (scanning and parsing, semantic analysis, activation records, instruction selection, RISC and x86 native code generation) and various "advanced" topics (compiling OO and functional languages, polymorphism, garbage collection, optimization and single static assignment form) into relatively little space (~500 pages).</p>
<p>I prefer Modern Compiler Implementation to the Dragon book because Modern Compiler implementation surveys less of the field--instead it has really solid coverage of all the topics you would need to write a serious, decent compiler. After you work through this book you'll be ready to tackle research papers directly for more depth if you need it.</p>
<p>I must confess I have a serious soft spot for Niklaus Wirth's <a href="http://rads.stackoverflow.com/amzn/click/0201403536" rel="nofollow" title="Compiler Construction">Compiler Construction.</a> It is <a href="http://www-old.oberon.ethz.ch/WirthPubl/CBEAll.pdf" rel="nofollow" title="Compiler Construction (PDF)">available online</a> as a PDF. I find Wirth's programming aesthetic simply beautiful, however some people find his style too minimal (for example Wirth favors recursive descent parsers, but most CS courses focus on parser generator tools; Wirth's language designs are fairly conservative.) Compiler Construction is a very succinct distillation of Wirth's basic ideas, so whether you like his style or not or not, I highly recommend reading this book.</p>
http://stackoverflow.com/questions/1669/learning-to-write-a-compiler/8690#86903Answer by yeruham for Learning to write a compileryeruham2008-08-12T11:25:34Z2008-08-12T11:25:34Z<p>Python comes bundled with a python compiler written in Python. You can see the source code, and it includes all phases, from parsing, abstract syntax tree, emitting code, etc.
Hack it.</p>
http://stackoverflow.com/questions/1669/learning-to-write-a-compiler/12626#126261Answer by conmulligan for Learning to write a compilerconmulligan2008-08-15T19:24:26Z2008-08-15T19:24:26Z<p>Check out <a href="http://prog21.dadgum.com/30.html" rel="nofollow">this article</a>: it profiles two papers on writing compilers.</p>
http://stackoverflow.com/questions/1669/learning-to-write-a-compiler/15178#151783Answer by Ben Combee for Learning to write a compilerBen Combee2008-08-18T20:18:32Z2008-08-18T20:18:32Z<p>One book not yet suggested but very important is <a href="http://books.google.com/books?id=h34d_jr2iikC&dq=%22linkers+and+loaders%22&pg=PP1&ots=IxFkFWJ-8V&sig=GSlclmkezTRL6YYguGJmZsnkM3c&hl=en&sa=X&oi=book_result&resnum=1&ct=result" rel="nofollow">"Linkers and Loaders"</a> by John Levine. If you're not using an external assembler, you'll need a way to output a object file that can be linked into your final program. Even if you're using an external assembler, you'll probably need to understand relocations and how the whole program loading process works to make a working tool. This book collects a lot of the random lore around this process for various systems, including Win32 and Linux.</p>
http://stackoverflow.com/questions/1669/learning-to-write-a-compiler/17685#176851Answer by Peter Stuifzand for Learning to write a compilerPeter Stuifzand2008-08-20T09:50:38Z2008-08-20T09:50:38Z<p>Go to the <a href="http://flipcode.com/archives/articles.shtml" rel="nofollow">Flipcode article archive</a> and search for <strong>Implementing A Scripting Engine</strong> by Jan Niestadt, a nine-part series about writing a scripting engine, including a compiler and virtual machine.</p>
http://stackoverflow.com/questions/1669/learning-to-write-a-compiler/17690#176902Answer by Peter Stuifzand for Learning to write a compilerPeter Stuifzand2008-08-20T09:56:34Z2008-08-20T09:56:34Z<p>An easy way to create a compiler is to use bison and flex (or similar), build a tree (AST) and generate code in C. With generating C code being the most important step. By generating C code, your language will automatically work on all platforms that have a C compiler.</p>
<p>Generating C code is as easy as generating HTML (just use print, or equivalent), which in turn is much easier than writing a C parser or HTML parser.</p>
http://stackoverflow.com/questions/1669/learning-to-write-a-compiler/17694#176946Answer by wvdschel for Learning to write a compilerwvdschel2008-08-20T10:01:17Z2008-08-20T10:01:17Z<p>If you're willing to use LLVM, check this out: <a href="http://llvm.org/docs/tutorial/" rel="nofollow"><a href="http://llvm.org/docs/tutorial/" rel="nofollow">http://llvm.org/docs/tutorial/</a></a>. It teaches you how to write a compiler from scratch using LLVM's framework, and doesn't assume you have any knowledge about the subject.</p>
<p>The tutorial suggest you write your own parser and lexer etc, but I advise you to look into bison and flex once you get the idea. They make life so much easier.</p>
http://stackoverflow.com/questions/1669/learning-to-write-a-compiler/17749#177492Answer by Romjin for Learning to write a compilerRomjin2008-08-20T11:16:20Z2008-08-20T11:16:20Z<p>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 <a href="http://www.HerbSchildt.com" rel="nofollow">www.HerbSchildt.com</a>
I found the same code but for C# in his latest book</p>
http://stackoverflow.com/questions/1669/learning-to-write-a-compiler/17768#177684Answer by bootload for Learning to write a compilerbootload2008-08-20T11:28:58Z2009-03-05T22:21:23Z<blockquote>
<p>"... Let's Build a Compiler ..."</p>
</blockquote>
<p>I'd second <a href="http://compilers.iecc.com/crenshaw/" rel="nofollow">http://compilers.iecc.com/crenshaw/</a> by <a href="http://beta.stackoverflow.com/questions/1669/learning-to-write-a-compiler#1678" rel="nofollow">@sasb</a>. Forget buying more books for the moment.</p>
<p>Why? Tools & language. </p>
<p>The language required is Pascal and if I remember correctly is based on Turbo-Pascal. It just so happens if you go to <a href="http://www.freepascal.org/" rel="nofollow">http://www.freepascal.org/</a> and download the Pascal compiler all the examples work straight from the page ~ <a href="http://www.freepascal.org/download.var" rel="nofollow">http://www.freepascal.org/download.var</a> The beaut thing about Free Pascal is you can use it almost whatever processor or OS you can care for. </p>
<p>Once you have mastered the lessons then try the more advanced <em>"<a href="http://en.wikipedia.org/wiki/Dragon%5Fbook" rel="nofollow">Dragon Book</a>"</em> ~ <a href="http://en.wikipedia.org/wiki/Dragon_book" rel="nofollow">http://en.wikipedia.org/wiki/Dragon_book</a></p>
http://stackoverflow.com/questions/1669/learning-to-write-a-compiler/21371#213712Answer by wvdschel for Learning to write a compilerwvdschel2008-08-21T22:48:11Z2008-08-21T22:48:11Z<p>If you want to use Ruby, look at <a href="http://treetop.rubyforge.org/" rel="nofollow">Treetop</a>, if you want to use Java, look at <a href="http://antlr.org/" rel="nofollow">Antlr</a>. Both are powerful libraries that make it easier and quicker to build parsers for your language.</p>
http://stackoverflow.com/questions/1669/learning-to-write-a-compiler/22718#227182Answer by dmckee for Learning to write a compilerdmckee2008-08-22T15:57:16Z2008-09-02T04:52:41Z<p>I liked the <A HREF="http://compilers.iecc.com/crenshaw/" rel="nofollow">Crenshaw tutorial</A> too, because it makes it absolutely clear that a compiler is just another program that reads some input and writes some out put. </p>
<p>Read it. </p>
<p>Work it if you want, but then look at another reference on how bigger and more complete compilers are really written.</p>
<p>And read <A href="http://cm.bell-labs.com/who/ken/trust.html" rel="nofollow">On Trusting Trust</A>, to get a clue about the unobvious things that can be done in this domain.</p>
http://stackoverflow.com/questions/1669/learning-to-write-a-compiler/33070#330701Answer by aardvark for Learning to write a compileraardvark2008-08-28T18:49:27Z2008-08-28T18:49:27Z<p>You might be interested in <a href="http://www.onlamp.com/pub/a/onlamp/2004/04/15/parrot_compiler_construction.html" rel="nofollow">this ONLamp article</a> where Dan Sugalski describes how he built a compiler to add modern features to a 1980s legacy programming language still used by his employer.</p>
http://stackoverflow.com/questions/1669/learning-to-write-a-compiler/63982#639824Answer by Dan for Learning to write a compilerDan2008-09-15T15:32:15Z2008-09-15T16:38:28Z<p>Another important chunk of knowledge can be found in this free PDF (the newest 2008 edition is non-free)</p>
<p><a href="http://www.cs.vu.nl/~dick/PTAPG.html" rel="nofollow">Parsing Techniques - A Practical Guide</a></p>
<p>[update] Another nice free resource to introduce you to compiler construction</p>
<p><a href="http://www.cs.man.ac.uk/~pjj/farrell/compmain.html" rel="nofollow">Compiler Basics</a></p>
http://stackoverflow.com/questions/1669/learning-to-write-a-compiler/74176#741765Answer by mfx for Learning to write a compilermfx2008-09-16T16:21:23Z2008-09-16T16:21:23Z<p>The LCC compiler (<a href="http://en.wikipedia.org/wiki/Local_C_compiler" rel="nofollow">wikipedia</a>) (<a href="http://www.cs.princeton.edu/software/lcc/" rel="nofollow">project homepage</a>) of Fraser and Hanson is described in their book "A Retargetable C Compiler: Design and Implementation". It is quite readable and explains the whole compiler, down to code generation. </p>
http://stackoverflow.com/questions/1669/learning-to-write-a-compiler/79634#796341Answer by jussij for Learning to write a compilerjussij2008-09-17T03:25:46Z2008-09-17T03:25:46Z<p>FWIW at the bottom of <a href="http://www.zeusedit.com/tools.html" rel="nofollow">this page</a> there is a link to a <em>"C Like"</em> 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.</p>
<p><strong>NOTE:</strong> This was my first and last attempt at writing an interpreter so don't expect too much.</p>
http://stackoverflow.com/questions/1669/learning-to-write-a-compiler/98010#980103Answer by tovare for Learning to write a compilertovare2008-09-18T23:31:14Z2008-09-18T23:36:55Z<p>There's a lot of good answers here, so i thought I'd just add one more to the list:</p>
<p>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:</p>
<p><a href="http://www-old.oberon.ethz.ch/WirthPubl/ProjectOberon.pdf" rel="nofollow">http://www-old.oberon.ethz.ch/WirthPubl/ProjectOberon.pdf</a></p>
<p>Niklaus Wirth, Jürg Gutknecht</p>
<p>(The treatment is not as extensive as his book on compilers)</p>
<p>I've read several books on compilers, and i can second the dragon book, time spent on this book is very worthwhile.</p>
http://stackoverflow.com/questions/1669/learning-to-write-a-compiler/156867#1568672Answer by Mark Reid for Learning to write a compilerMark Reid2008-10-01T09:30:26Z2008-10-01T09:30:26Z<p>If you are interested in writing a compiler for a functional language (rather than a procedural one) Simon Peyton-Jones and David Lester's "<a href="http://research.microsoft.com/~simonpj/papers/pj-lester-book/" rel="nofollow">Implementing functional languages: a tutorial</a>" is an excellent guide. </p>
<p>The conceptual basics of how functional evaluation works is guided by examples in a simple but powerful functional language called "Core". Additionally, each part of the Core language compiler is explained with code examples in Miranda (a pure functional language very similar to Haskell). </p>
<p>Several different types of compilers are described but even if you only follow the so-called template compiler for Core you will have an excellent understanding of what makes functional programming tick. </p>
http://stackoverflow.com/questions/1669/learning-to-write-a-compiler/159530#1595303Answer by sanjayss for Learning to write a compilersanjayss2008-10-01T20:24:42Z2008-10-01T20:24:42Z<p>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.</p>
http://stackoverflow.com/questions/1669/learning-to-write-a-compiler/172181#1721814Answer by Kragen Javier Sitaker for Learning to write a compilerKragen Javier Sitaker2008-10-05T16:00:52Z2008-10-05T16:00:52Z<p>You should check out Darius Bacon's "<a href="http://www.accesscom.com/~darius/hacks/ichbins.tar.gz" rel="nofollow" title="I can hardly believe it's not Scheme">ichbins</a>", which is a compiler for a small Lisp dialect, targeting C, in just over 6 pages of code. The advantage it has over most toy compilers is that the language is complete enough that the compiler is written in it. (The tarball also includes an interpreter to bootstrap the thing.)</p>
<p>There's more stuff about what I found useful in learning to write a compiler on my <a href="http://www.canonical.org/~kragen/sw/urscheme/" rel="nofollow" title="a small self-hosted Scheme to x86 asm compiler">Ur-Scheme</a> web page.</p>
http://stackoverflow.com/questions/1669/learning-to-write-a-compiler/353600#3536002Answer by morgancodes for Learning to write a compilermorgancodes2008-12-09T17:36:40Z2008-12-09T17:36:40Z<p>I asked the same question of a friend of mine, and he pointed me to <a href="http://mitpress.mit.edu/sicp/full-text/book/book.html" rel="nofollow">The Structure and Interpretation of Computer Programs</a>. Any thoughts on this? I'm looking for a nice next step after working through a data structures and algorithms book.</p>
http://stackoverflow.com/questions/1669/learning-to-write-a-compiler/401786#4017862Answer by dbones for Learning to write a compilerdbones2008-12-30T23:01:20Z2008-12-30T23:01:20Z<p>Hi</p>
<p>I am looking into the same concept, and found this promising article by Joel Pobar,</p>
<p><a href="http://msdn.microsoft.com/en-us/magazine/cc136756.aspx" rel="nofollow">Create a Language Compiler for the .NET Framework</a></p>
<p>he discusses a high level concept of a compiler and proceeds to invent his own langauge for the .Net framework. Although its aimed at the .Net Framework, many of the concepts should be able to be reproduced. The Article covers:</p>
<ol>
<li>Langauge definition </li>
<li>Scanner </li>
<li>Parser (the bit im mainly interested in)</li>
<li>Targeting the .Net Framework The</li>
<li>Code Generator</li>
</ol>
<p>there are other topics, but you get the just.</p>
<p>Its aimed to people starting out, written in C# (not quite Java)</p>
<p>HTH</p>
<p>bones</p>
http://stackoverflow.com/questions/1669/learning-to-write-a-compiler/441108#4411081Answer by Steve A for Learning to write a compilerSteve A2009-01-13T22:31:48Z2009-01-13T22:31:48Z<p>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:
<a href="http://geocities.com/blunt_axe_basic/tutor/Bxb-Tutor.doc" rel="nofollow">http://geocities.com/blunt_axe_basic/tutor/Bxb-Tutor.doc</a></p>
<p>The docs, support files and compiler, in zip form, are at:
<a href="http://geocities.com/blunt_axe_basic" rel="nofollow">http://geocities.com/blunt_axe_basic</a></p>
<p>Also:
<a href="http://tech.groups.yahoo.com/group/QDepartment" rel="nofollow">http://tech.groups.yahoo.com/group/QDepartment</a></p>
<p>Steve A.</p>
http://stackoverflow.com/questions/1669/learning-to-write-a-compiler/514362#5143621Answer by Anru for Learning to write a compilerAnru2009-02-05T02:55:28Z2009-02-05T02:55:28Z<p>if you like me, who has no formal computer science education, and interested on
build/want to know how a compiler works. </p>
<p>I am recommend "Programming Language Processors in Java: Compilers and Interpreters",
an amazing book for self taught computer programmer.</p>
<p>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.</p>
<p>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.</p>
<p>building a compiler is a fun programming practice, can learn a heaps of programming skills. </p>
<p>do not buy the Dragon book, wast of money and time,not for practitioner</p>
http://stackoverflow.com/questions/1669/learning-to-write-a-compiler/789357#7893572Answer by eKek0 for Learning to write a compilereKek02009-04-25T17:23:55Z2009-04-25T17:23:55Z<p>Sorry it is in spanish, but this is the bibliography of a course called "Compiladores e Intérpretes" (Compilers and Interpreters) in Argentina. </p>
<p>The course was from formal language theory to compiler construction, and that's are the topics you need to build, at least, a simple compiler.</p>
<blockquote>
<ul>
<li><p>Compilers Design in C. <br /> Allen I. Holub <br /><br />
Prentice-Hall. 1990.</p></li>
<li><p>Compiladores. Teoría y Construcción. <br /> Sanchís
Llorca, F.J. , Galán Pascual, C. Editorial Paraninfo. 1988.</p></li>
<li><p>Compiler Construction. <br /> Niklaus Wirth <br /><br />
Addison-Wesley. 1996.</p></li>
<li><p>Lenguajes, Gramáticas y Autómatas. Un enfoque práctico. <br /> Pedro
Isasi Viñuela, Paloma Martínez
Fernández, Daniel Borrajo Millán. Addison-Wesley Iberoamericana
(España). 1997.</p></li>
<li><p>The art of compiler design. Theory and practice. <br /> Thomas
Pittman, James Peters. <br /><br />
Prentice-Hall. 1992.</p></li>
<li><p>Object-Oriented Compiler Construction. <br /> Jim Holmes.
<br /> Prentice Hall, Englewood
Cliffs, N.J. 1995</p></li>
<li><p>Compiladores. Conceptos Fundamentales. <br /> B. Teufel, S.
Schmidt, T. Teufel. <br /><br />
Addison-Wesley Iberoamericana. 1995.</p></li>
<li><p>Introduction to Automata Theory, Languages, and Computation. <br /><br />
John E. Hopcroft. Jeffref D. Ullman.
<br /> Addison-Wesley. 1979.</p></li>
<li><p>Introduction to formal languages. <br /> György E. Révész. <br /><br />
Mc Graw Hill. 1983.</p></li>
<li><p>Parsing Techniques. A Practical Guide. <br /> Dick Grune, Ceriel
Jacobs. <br /> Impreso por los
autores. 1995<br />
<a href="http://www.cs.vu.nl/~dick/PTAPG.html" rel="nofollow">http://www.cs.vu.nl/~dick/PTAPG.html</a></p></li>
<li><p>Yacc: Yet Another Compiler-Compiler. <br /> Stephen
C. Johnson <br /> Computing Science
Technical Report Nº 32, 1975. Bell
Laboratories. Murray Hill, New<br />
Jersey.</p></li>
<li><p>Lex: A Lexical Analyzer Generator. <br /> M. E. Lesk, E. Schmidt. Computing Science Technical
Report Nº 39, 1975. Bell Laboratories.
Murray Hill, New Jersey.</p></li>
<li><p>lex & yacc. <br /> John R. Levine, Tony Mason, Doug Brown. <br />
O’Reilly & Associates. 1995.</p></li>
<li><p>Elements of the theory of computation. <br /> Harry R. Lewis,
Christos H. Papadimitriou.
Segunda Edición. Prentice Hall. 1998. </p></li>
<li><p>Un Algoritmo Eficiente para la Construcción del Grafo de Dependencia de Control.<br/>
Salvador V. Cavadini.<br />
Trabajo Final de Grado para obtener el Título de Ingeniero en Computación.<br />
Facultad de Matemática Aplicada.
U.C.S.E. 2001.</p></li>
</ul>
</blockquote>
http://stackoverflow.com/questions/1669/learning-to-write-a-compiler/815496#8154961Answer by Marco van de Voort for Learning to write a compilerMarco van de Voort2009-05-02T20:00:18Z2009-05-02T20:00:18Z<p>A PDF version of Crenshaw's tutorial (see first post, maybe it can be added there): <a href="http://www.stack.nl/~marcov/compiler.pdf" rel="nofollow">http://www.stack.nl/~marcov/compiler.pdf</a></p>
http://stackoverflow.com/questions/1669/learning-to-write-a-compiler/1158425#11584251Answer by ott for Learning to write a compilerott2009-07-21T10:41:13Z2009-07-21T10:41:13Z<p>In order to get a deeper understanding of parsing I recommend to read <a href="http://www.cs.vu.nl/~dick/PT2Ed.html" rel="nofollow">Parsing Techniques - A Practical Guide</a> and a good book on theoretical computer science.</p>
http://stackoverflow.com/questions/1669/learning-to-write-a-compiler/1344367#13443671Answer by Ira Baxter for Learning to write a compilerIra Baxter2009-08-28T00:01:07Z2009-09-09T05:34:45Z<p>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:</p>
<p><a href="http://www.bayfronttechnologies.com/mc%5Ftutorial.html" rel="nofollow">http://www.bayfronttechnologies.com/mc%5Ftutorial.html</a></p>
<p>This is all based on an amazing little 10-page technical paper:</p>
<p><i>Val Schorre</i> <b>META II: A Syntax-Oriented Compiler Writing Language</b></p>
<p>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....</p>
<p>I know the website author from my college days, but have nothing to do with the website.</p>
http://stackoverflow.com/questions/1669/learning-to-write-a-compiler/1655646#16556461Answer by Kenny for Learning to write a compilerKenny2009-10-31T21:10:48Z2009-10-31T21:10:48Z<p><a href="http://antlr.org/" rel="nofollow">ANLTR</a> isn't in here? Wow! Don't forget the <a href="http://pragprog.com/titles/tpantlr/the-definitive-antlr-reference" rel="nofollow">book</a>.</p>