Learning to write a compiler - Stack Overflow most recent 30 from stackoverflow.com2009-01-07T14:28:24Zhttp://stackoverflow.com/feeds/question/1669http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1669/learning-to-write-a-compilerLearning to write a compiler2008-08-04T22:46:36Z2008-12-30T23:01:20Z<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 C/C++, Java, and Ruby so I prefer resources that involve one those three, but any good resource is acceptable.</p>
31http://stackoverflow.com/questions/1671/Answer by for Learning to write a compiler2008-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/1672/Answer by Michael Stum for Learning to write a compilerMichael Stum2008-08-04T22:52:00Z2008-10-22T15:08:28Z<h2>Big List of Resources:</h2>
<ul>
<li><a href="http://en.wikipedia.org/wiki/Compilers:_Principles%2C_Techniques%2C_and_Tools" 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://www.amazon.com/Design-Patterns-Object-Oriented-Addison-Wesley-Professional/dp/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_compiler_construction.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://www.amazon.com/Scripting-Mastery-Premier-Press-Development/dp/1931841578/ref=sr_1_1?ie=UTF8&s=books&qid=1217890983&sr=8-1" 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></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://www.amazon.com/gp/product/0521607647?ie=UTF8&tag=dcooneycom-20&linkCode=as2&camp=1789&creative=9325&creativeASIN=0521607647" rel="nofollow">Modern Compiler Implementation in ML</a> - There is a <a href="http://www.amazon.com/gp/product/052182060X?ie=UTF8&tag=dcooneycom-20&linkCode=as2&camp=1789&creative=9325&creativeASIN=052182060X" rel="nofollow">Java</a> and <a href="http://www.amazon.com/gp/product/0521607655?ie=UTF8&tag=dcooneycom-20&linkCode=as2&camp=1789&creative=9325&creativeASIN=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/1674/Answer by for Learning to write a compiler2008-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/1675/Answer by for Learning to write a compiler2008-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/1678/Answer by for Learning to write a compiler2008-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/1686/Answer by for Learning to write a compiler2008-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://www.amazon.com/Scripting-Mastery-Premier-Press-Development/dp/1931841578/ref=sr_1_1?ie=UTF8&s=books&qid=1217890983&sr=8-1" 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/1693/Answer by rictic for Learning to write a compilerrictic2008-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/2516/Answer by for Learning to write a compiler2008-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/2523/Answer by for Learning to write a compiler2008-08-05T16:16:01Z2008-08-05T16:16:01Z<p><a href="http://www.amazon.com/Compilers-Principles-Techniques-Tools-2nd/dp/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://www.amazon.com/Design-Patterns-Object-Oriented-Addison-Wesley-Professional/dp/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/3005/Answer by for Learning to write a compiler2008-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/7085/Answer by for Learning to write a compiler2008-08-10T07:54:32Z2008-08-10T07:54:32Z<p>I think <a href="http://www.amazon.com/gp/product/0521607647?ie=UTF8&tag=dcooneycom-20&linkCode=as2&camp=1789&creative=9325&creativeASIN=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://www.amazon.com/gp/product/052182060X?ie=UTF8&tag=dcooneycom-20&linkCode=as2&camp=1789&creative=9325&creativeASIN=052182060X" rel="nofollow" title="Modern Compiler Implementation in Java">Java version</a> and a <a href="http://www.amazon.com/gp/product/0521607655?ie=UTF8&tag=dcooneycom-20&linkCode=as2&camp=1789&creative=9325&creativeASIN=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://www.amazon.com/gp/product/0201403536?ie=UTF8&tag=dcooneycom-20&linkCode=as2&camp=1789&creative=9325&creativeASIN=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/8690/Answer 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/12626/Answer 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/15178/Answer 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/17685/Answer 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/17690/Answer 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/17694/Answer 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/17749/Answer 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/17768/Answer by bootload for Learning to write a compilerbootload2008-08-20T11:28:58Z2008-08-20T11:28:58Z<blockquote>
<p>"... Let's Build a Compiler ..."</p>
</blockquote>
<p>I'd second <a href="http://compilers.iecc.com/crenshaw/" rel="nofollow"><a href="http://compilers.iecc.com/crenshaw/" rel="nofollow">http://compilers.iecc.com/crenshaw/</a></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"><a href="http://www.freepascal.org/" rel="nofollow">http://www.freepascal.org/</a></a> and download the Pascal compiler all the examples work straight from the page ~ <a href="http://www.freepascal.org/download.var" rel="nofollow"><a href="http://www.freepascal.org/download.var" rel="nofollow">http://www.freepascal.org/download.var</a></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>"Dragon Book"</em>.</p>
http://stackoverflow.com/questions/21371/Answer 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/22718/Answer 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/33070/Answer 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/63982/Answer 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/74176/Answer 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/79634/Answer 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/98010/Answer 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/156867/Answer 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/159530/Answer by for Learning to write a compiler2008-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/172181/Answer 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/353600/Answer by Morgan Packard for Learning to write a compilerMorgan Packard2008-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/401786/Answer 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>