Bootstrapping a language - Stack Overflow most recent 30 from stackoverflow.com2009-12-17T21:59:24Zhttp://stackoverflow.com/feeds/question/13537http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/13537/bootstrapping-a-language10Bootstrapping a languagepbh1012008-08-17T06:46:11Z2009-05-20T09:29:29Z
<p>I've heard of the idea of bootstrapping a language, that is, writing a compiler/interpreter for the language in itself. I was wondering how this could be accomplished and looked around a bit, and saw someone say that it could only be done by either</p>
<ul>
<li>writing an initial compiler in a different language.</li>
<li>handcoding an initial compiler in Assembly, which seems like a special case of the first</li>
</ul>
<p>To me, neither of these seem to actually be <em>bootstrapping</em> a language in the sense that they both require outside support. Is there a way to actually write a compiler in it's own language?</p>
http://stackoverflow.com/questions/13537/bootstrapping-a-language/13543#135430Answer by jdd for Bootstrapping a languagejdd2008-08-17T06:57:05Z2008-08-17T06:57:05Z<p>I'm not very experienced with such things, but I would assume that the <em>initial</em> compiler would have to be written in another language. I'm fairly certain that "bootstrapping", in reference to compilers, simply refers to writing <em>a</em> compiler for a language in the language it's meant to compile, not writing <em>the first</em> compiler for the language in the language it's meant to compile.</p>
http://stackoverflow.com/questions/13537/bootstrapping-a-language/13544#135443Answer by EHaskins for Bootstrapping a languageEHaskins2008-08-17T07:00:23Z2008-08-17T07:00:23Z<p>The way I've heard of is to write an extremely limited compiler in another language, then use that to compile a more complicated version, written in the new language. This second version can then be used to compile itself, and the next version. Each time it is compiled the last version is used.</p>
<p>This is the definition of <a href="http://en.wikipedia.org/wiki/Bootstrapping_(computing)" rel="nofollow">bootstrapping:</a></p>
<blockquote>
<p>the process of a simple system activating a more complicated system that serves the same purpose.</p>
</blockquote>
<p>EDIT: The <a href="http://en.wikipedia.org/wiki/Bootstrapping_(compilers)" rel="nofollow">Wikipedia article on compiler bootstrapping</a> covers the concept better than me.</p>
http://stackoverflow.com/questions/13537/bootstrapping-a-language/13546#135464Answer by Mark Harrison for Bootstrapping a languageMark Harrison2008-08-17T07:00:39Z2008-08-17T07:00:39Z<p>The explanation you've read is correct. There's a discussion of this in the Dragon Book:</p>
<ul>
<li>write a compiler C1 for language X in language Y</li>
<li>use the compiler C1 to write compiler C2 for language X in language X</li>
<li>Now C2 is a fully self hosting environment.</li>
</ul>
http://stackoverflow.com/questions/13537/bootstrapping-a-language/13547#135470Answer by Adam Lassek for Bootstrapping a languageAdam Lassek2008-08-17T07:01:08Z2008-08-17T07:01:08Z<p>Every example of bootstrapping a language I can think of (C, PyPy) was done after there was a working compiler. You have to start somewhere, and reimplementing a language in itself requires writing a compiler in another language first.</p>
<p>How else would it work? I don't think it's even conceptually possible to do otherwise.</p>
http://stackoverflow.com/questions/13537/bootstrapping-a-language/13548#135480Answer by Wing for Bootstrapping a languageWing2008-08-17T07:06:30Z2008-08-17T07:06:30Z<p>It's the Comp-Sci version of the chicken-and-egg paradox. I can't think of a way not to write the initial compiler in assembler or some other language. If it could have been done, I should Lisp could have done it. </p>
<p>Actually, I think Lisp almost qualifies. Check out the <a href="http://en.wikipedia.org/wiki/Lisp_(programming_language)" rel="nofollow">Wikipedia</a> entry on it: <a href="http://en.wikipedia.org/wiki/Lisp_(programming_language)" rel="nofollow"><a href="http://en.wikipedia.org/wiki/Lisp_" rel="nofollow">http://en.wikipedia.org/wiki/Lisp_</a>(programming_language)</a> </p>
<p>According to the article, the Lisp eval function could be implemented on an <a href="http://en.wikipedia.org/wiki/IBM_704" rel="nofollow">IBM 704</a> in machine code, with a complete compiler (written in Lisp itself) coming into being in 1962 at <a href="http://www.mit.edu/" rel="nofollow">MIT</a>.</p>
http://stackoverflow.com/questions/13537/bootstrapping-a-language/13549#135491Answer by Mark Harrison for Bootstrapping a languageMark Harrison2008-08-17T07:07:05Z2008-08-17T08:11:53Z<p>A super interesting discussion of this in unix co-creator Ken Thompson's Turing Award lecture.</p>
<p>He starts off with</p>
<blockquote>
<p>What I am about to describe is one of many "chicken and egg" problems that arise when compilers are written in their own language. In this ease, I will use a specific example from the C compiler.</p>
</blockquote>
<p>and proceeds to show how he wrote a version of the unix C compiler that would always allow him to log in without a password, because the C compiler would recognize the login program and add in special code.</p>
<blockquote>
<p>The second pattern is aimed at the C compiler. The replacement code is a Stage I self-reproducing program that inserts both Trojan horses into the compiler. This requires a learning phase as in the Stage II example. First we compile the modified source with the normal C compiler to produce a bugged binary. We install this binary as the official C. We can now remove the bugs from the source of the compiler and the new binary will reinsert the bugs whenever it is compiled. Of course, the login command will remain bugged with no trace in source anywhere. </p>
</blockquote>
<p><a href="http://cm.bell-labs.com/who/ken/trust.html" rel="nofollow">http://cm.bell-labs.com/who/ken/trust.html</a></p>
http://stackoverflow.com/questions/13537/bootstrapping-a-language/13552#1355221Answer by Derek Park for Bootstrapping a languageDerek Park2008-08-17T07:20:55Z2008-08-17T07:31:25Z<blockquote>
<p>Is there a way to actually write a compiler in it's own language?</p>
</blockquote>
<p>You <em>have</em> to have some existing language to write your new compiler in. If you were writing a new, say, C++ compiler, you would just write it in C++ and compile it with an existing compiler first. On the other hand, if you were creating a compiler for a new language, let's call it Yazzleof, you would need to write the new compiler in another language first. Generally, this would be another programming language, but it doesn't have to be. It can be assembly, or if necessary, machine code.</p>
<p>If you <em>were</em> going to bootstrap a compiler for Yazzleof, you generally wouldn't write a compiler for the full language initially. Instead you would write a compiler for Yazzle-lite, the smallest possible subset of the Yazzleof (well, a <em>pretty small</em> subset at least). Then in Yazzle-lite, you would write a compiler for the full language. (Obviously this can occur iteratively instead of in one jump.) Because Yazzle-lite is a proper subset of Yazzleof, you now have a compiler which can compile itself.</p>
<p>There is a <em>really</em> good writeup about bootstrapping a compiler from the lowest possible level (which on a modern machine is basically a hex editor), titled <em>Bootstrapping a simple compiler from nothing</em>. It used to be hosted at <a href="http://www.rano.org/bcompiler.html" rel="nofollow">http://www.rano.org/bcompiler.html</a>, but that link is dead now. If you run across it, it's a great read. (And if anyone knows where I could get a working copy, I'd really appreciate a link.)</p>
http://stackoverflow.com/questions/13537/bootstrapping-a-language/13559#135597Answer by John Richardson for Bootstrapping a languageJohn Richardson2008-08-17T07:59:04Z2008-08-17T07:59:04Z<blockquote>
<p>There is a really good writeup about bootstrapping a compiler from the lowest possible level (which on a modern machine is basically a hex editor), titled Bootstrapping a simple compiler from nothing. It used to be hosted at <a href="http://www.rano.org/bcompiler.html" rel="nofollow">http://www.rano.org/bcompiler.html</a>, but that link is dead now. If you run across it, it's a great read. (And if anyone knows where I could get a working copy, I'd really appreciate a link.)</p>
</blockquote>
<p>Derek, I don't know if or where this is still available online but I've copied it up onto <a href="http://www.shorttext.com/g14day9" rel="nofollow">shorttext.com</a>. </p>
http://stackoverflow.com/questions/13537/bootstrapping-a-language/13576#135761Answer by Michał Piaskowski for Bootstrapping a languageMichał Piaskowski2008-08-17T10:16:16Z2008-08-17T10:16:16Z<p>This might be a little OT, but it's also possible that you are writing a compiler of existing language for a new CPU. In this case you are in a very comfortable situation as you can first compile for and existing architecture and then use your compiler to cross-compile itself for the new architecture.</p>
http://stackoverflow.com/questions/13537/bootstrapping-a-language/13622#136221Answer by Pete Kirkham for Bootstrapping a languagePete Kirkham2008-08-17T13:21:16Z2008-08-17T13:21:16Z<p>Another alternative is to create a bytecode machine for your language (or use an existing one if it's features aren't very unusual) and write a compiler to bytecode, either in the bytecode, or in your desired language using another intermediate - such as a parser toolkit which outputs the AST as XML, then compile the XML to bytecode using XSLT (or another pattern matching language and tree-based representation). It doesn't remove the dependency on another language, but could mean that more of the bootstrapping work ends up in the final system. </p>
http://stackoverflow.com/questions/13537/bootstrapping-a-language/13843#138430Answer by Derek Park for Bootstrapping a languageDerek Park2008-08-17T18:57:49Z2008-08-17T18:57:49Z<p>@John</p>
<blockquote>
<p>Derek, I don't know if or where this is still available online but I've copied it up onto shorttext.com. </p>
</blockquote>
<p>Thanks! I really appreciate it. Bookmarked <em>and</em> saved this time. Thanks again.</p>
http://stackoverflow.com/questions/13537/bootstrapping-a-language/13966#139661Answer by pbh101 for Bootstrapping a languagepbh1012008-08-17T22:06:01Z2008-08-17T22:06:01Z<p>Thanks for the info, everyone. When explained with the idea of initially writing a limited compiler, then building up on top of that, then the idea of bootstrapping makes more sense.</p>
<p>I'm taking a Compilers class this semester, a decision largely influenced by <a href="http://steve-yegge.blogspot.com/2007/06/rich-programmer-food.html" rel="nofollow" title="Cherry G80-11900">Steve Yegge's post on how important a class in Compilers</a> is, and I just bought a copy of the Dragon book from the Amazon link that got so downmodded on SO earlier.</p>
<p>Thanks again everyone!</p>
http://stackoverflow.com/questions/13537/bootstrapping-a-language/887037#8870370Answer by none for Bootstrapping a languagenone2009-05-20T09:29:29Z2009-05-20T09:29:29Z<p>Some of you may want to check out <a href="http://www.se-radio.net/podcast/2007-07/episode-61-internals-gcc" rel="nofollow">this podcast</a> which discusses gcc compiler internals, as well as the gcc bootstrapping process.</p>