General Purpose Language to build a compiler for - Stack Overflow most recent 30 from stackoverflow.com 2009-12-15T22:12:08Z http://stackoverflow.com/feeds/question/461099 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/461099/general-purpose-language-to-build-a-compiler-for 4 General Purpose Language to build a compiler for Brownie 2009-01-20T12:29:03Z 2009-11-26T15:05:03Z <p>Inspired by Eric Sink's interview on the stackoverflow podcast I would like to build a full compiler in my spare time for the learning experience. My initial thought was to build a C compiler but I'm not sure whether it would take too much time.</p> <p>I am wondering if there is a smaller general purpose language that would be more appropriate to implement as a first compiler effort? Or is a C implementation doable on a reasonable timescale (200 hrs)?</p> <p>It is my intention to target the CLR. </p> http://stackoverflow.com/questions/461099/general-purpose-language-to-build-a-compiler-for/461113#461113 6 Answer by squadette for General Purpose Language to build a compiler for squadette 2009-01-20T12:34:12Z 2009-01-20T12:34:12Z <p>Write a Scheme compiler. </p> <p>See: <a href="http://scheme2006.cs.uchicago.edu/#anincrementalapproachtocompilerconstruction" rel="nofollow">An incremental approach to compiler construction</a></p> http://stackoverflow.com/questions/461099/general-purpose-language-to-build-a-compiler-for/461122#461122 4 Answer by Cody Brocious for General Purpose Language to build a compiler for Cody Brocious 2009-01-20T12:37:17Z 2009-01-20T12:37:17Z <p>My suggestion is to pick your favorite language. The knowledge you have going into it will outweigh the difficulty of writing a compiler for it, typically.</p> http://stackoverflow.com/questions/461099/general-purpose-language-to-build-a-compiler-for/461133#461133 1 Answer by Tom Grove for General Purpose Language to build a compiler for Tom Grove 2009-01-20T12:42:30Z 2009-01-20T12:42:30Z <p>Whichever language you choose, you could consider compiling to intermediate language ( IL ) to target the Common Language Runtime ( CLR ). I presume targetting the Java Virtual Machine ( JVM ) would be similar for non-Windows, or prehaps the CLR implementation of in Mono? This would probably greatly simiplify the job and would let you have something that performed well from the off. You later re-target a specific architecture if you wanted to go further.</p> http://stackoverflow.com/questions/461099/general-purpose-language-to-build-a-compiler-for/461148#461148 6 Answer by S.Lott for General Purpose Language to build a compiler for S.Lott 2009-01-20T12:45:52Z 2009-01-21T00:49:40Z <p>You'll be happiest writing compilers for older, smaller languages. <a href="http://www.lrz-muenchen.de/~bernhard/Pascal-EBNF.html" rel="nofollow">Pascal</a> (and Modula-2), for example, were designed as learning tools. The Pascal language is small and elegant; the compiler can be written fairly simply. Modula-2 is only slightly more complex than Pascal.</p> <p>Edit: meant Modula-2, the Wirth original, not Modula-3 the DEC derivative.</p> http://stackoverflow.com/questions/461099/general-purpose-language-to-build-a-compiler-for/461156#461156 0 Answer by Shane MacLaughlin for General Purpose Language to build a compiler for Shane MacLaughlin 2009-01-20T12:47:57Z 2009-01-20T12:47:57Z <p>In terms of simplicity, <a href="http://en.wikipedia.org/wiki/Forth_(programming_language)" rel="nofollow">FORTH</a> is going to be one of the easier languages to develop. It's threaded interpretive rather than truly compiled, but you'll still be dealing with parsing, variable storage, etc..</p> <p>For a compiler, I'd go with C or Pascal, both of which are quite compact and have source for compilers available.</p> http://stackoverflow.com/questions/461099/general-purpose-language-to-build-a-compiler-for/461158#461158 1 Answer by Adam Hawes for General Purpose Language to build a compiler for Adam Hawes 2009-01-20T12:48:23Z 2009-01-20T12:48:23Z <p>I can't think of any one language that is simple enough to use as a first compiler-writing exercise. I don't think I'd try C for a first cut. Why not invent your own language? Maybe it'll be a real hit.</p> http://stackoverflow.com/questions/461099/general-purpose-language-to-build-a-compiler-for/461166#461166 4 Answer by bendin for General Purpose Language to build a compiler for bendin 2009-01-20T12:50:03Z 2009-01-20T14:03:29Z <p>If you want a <em>compact</em> tutorial, why not consider Wirth's <a href="http://www.cs.inf.ethz.ch/~wirth/books/CompilerConstruction/" rel="nofollow">Compiler Construction (pdf</a>). The source language (Oberon-0) is simple enough to keep the compiler comprehensible. The implementation language (Oberon) should be readable to anyone who has done some programming.</p> <p>As to which language to use to <em>implement</em> the compiler. Use something you are familiar with. When in doubt, choose a language that will not unnecessarily complicate the attempt: Something with garbage collection. Something that makes it easy to print or otherwise dump internal data structures for inspection. <a href="http://www.python.org/" rel="nofollow">Python</a>, <a href="http://www.plt-scheme.org/" rel="nofollow">Scheme</a> and <a href="http://www.lua.org/" rel="nofollow">Lua</a> all come to mind.</p> <p>The final consideration is what to <em>target</em> with your compiler. The virtual machines JVM and CLR have been metioned, I'm sure. You could go that route. It might be easier, for a first attempt to use a simulator for a stripped-down RISC processor as your target. (Wirth's compiler book does this.) </p> <p>I wouldn't recommend targeting x86 for your first compiler as it's hideous beyond words. I also wouldn't target a high(er) level language like C because you'll miss out on a lot of the interesting details, like how to implement short-circuit semantics for boolean operators and such like.</p> http://stackoverflow.com/questions/461099/general-purpose-language-to-build-a-compiler-for/461170#461170 0 Answer by Cheery for General Purpose Language to build a compiler for Cheery 2009-01-20T12:51:32Z 2009-01-20T12:51:32Z <p>Write a brainfuck or forth compiler. BASIC is perhaps also such language not too rich in features. I think C would be moderately hard. Do not envy about the target arch. Use whatever you have.</p> <p>If you don't want to implement an assembler then put your compiler output assembly code and push it to gas or nasm.</p> http://stackoverflow.com/questions/461099/general-purpose-language-to-build-a-compiler-for/461341#461341 2 Answer by Bill the Lizard for General Purpose Language to build a compiler for Bill the Lizard 2009-01-20T13:51:11Z 2009-11-26T15:05:03Z <p>Whatever language you choose, remember you can define your own set of supported features to customize it to fit your learning goals. If you want to learn about compilers (which it sounds like you do), then you could write a C compiler but just drop support for some random feature, like pointers for example, or only implement a subset of the keywords, just to make it more manageable.</p> <p>Of course, if your goal is to get really intimate with a particular language, you'll want to fully implement a compiler for that language.</p> http://stackoverflow.com/questions/461099/general-purpose-language-to-build-a-compiler-for/461360#461360 0 Answer by joel.neely for General Purpose Language to build a compiler for joel.neely 2009-01-20T13:55:16Z 2009-01-20T13:55:16Z <p>Pascal has already been mentioned, but I'd like to add that Niklaus Wirth's book <a href="http://rads.stackoverflow.com/amzn/click/0130224189" rel="nofollow"><em>Algorithms + Data Structures = Programs</em></a> contains a complete implementation of a small Pascal-like language using recursive descent. If you're looking for a theory-intensive discussion of parsing, look elsewhere; but if you want straightforward code that lets you learn by doing, then I'd recommend A + DP = P.</p> http://stackoverflow.com/questions/461099/general-purpose-language-to-build-a-compiler-for/463823#463823 1 Answer by Darius Bacon for General Purpose Language to build a compiler for Darius Bacon 2009-01-21T01:25:29Z 2009-01-21T01:25:29Z <p>Another point in favor of Scheme: it's practical for a beginner to write a <em>self-hosting</em> compiler for it, like Kragen Sitaker's <a href="http://www.canonical.org/~kragen/sw/urscheme/" rel="nofollow">Ur-Scheme</a>, his first compiler. There are few other 'tutorial' compilers powerful enough to compile themselves (though there are some pointers at the link). This brings more realism and interest to the problem.</p>