vote up 5 vote down star
1

I was just watching the future of C# from PDC2008 and noticed at the end they mentioned that the C# team is rewriting the C# complier in C#. I have also heard that the F# team is doing the same but with F#.

I was wondering how do you write a compiler for a language in that same language? Are there any advantages to doing this? Are the any other languages like this?

Cheers

flag

38% accept rate
@Splattne Thanks for fixing my bad spelling – Nathan W Nov 2 '08 at 9:03
when closing as exact duplicate, please put in the comments where the duplicate is. Makes it easier to scan. – Thorbjørn Ravn Andersen Oct 25 at 16:09

closed as exact duplicate by Konrad Rudolph Nov 3 '08 at 8:05

6 Answers

vote up 9 vote down check

Generally, you need to have a working (if primative) cut of the compiler working first - then you can start thinking about making it self-hosting. This is actually considered an important milestone in some langauges.

From what I remember from "mono", it is likely they will need to add a few things to reflection to get it working: the mono team keep pointing out that some things simply aren't possible with Reflection.Emit; of course, the MS team might prove them wrong.

This has a few real advantages: it is a fairly good unit test, for starters! And you only have one language to worry about (i.e. it is possible a C# expert might not know much C++; but now thy can fix the C# compiler). But I wonder if there isn't an amount of professional pride at work here: they simply want it to be self-hosting.

Not quite a compiler, but I've recently been working on a system that is self hosting; the code generator is used to generate the code generator... so if the schema changes I simply run it on itself : new version. If there is a bug, I just go back to an earlier version and try again. Very convenient, and very easy to maintain.

[update] I've just watched the video of Anders at PDC, and (about an hour in) he does give some much more valid reasons - all about the compiler as a service. Just for the record ;-p

link|flag
Would you give the link to the video? – Thorbjørn Ravn Andersen Oct 25 at 16:10
I would guess: channel9.msdn.com/pdc2008/TL16 – Marc Gravell Oct 25 at 19:42
vote up 3 vote down

Here is a similar question asked.

link|flag
unfortunately, you can't see the "Related" gray sidebar til you ask a question! – Gene T Nov 2 '08 at 13:04
But there's a search box at the top of the page that will give you a list of questions related to keywords such as "compiler" and "language". – aardvark Nov 3 '08 at 20:41
vote up 1 vote down

The Mono project C# compiler has been "self hosted" for a long time now, what it means is that it has been written in C# itself.

What I know is that the compiler was started as pure C code but once the "basic" features of ECMA were implemented they started to rewrite the compiler in C#.

Im not aware of the advantages of writing the compiler in the same language but Im sure it has to do at least with the features that the language itself can offer (C for example does not support object oriented programming)

You can find more information here

link|flag
vote up 1 vote down

Actually, most compilers are written in the language they compile, for the reasons stated above.

The first bootstrap compiler is usually written in C/C++ or Assembly.

link|flag
vote up 0 vote down

You may find this interesting.

link|flag
vote up 0 vote down

This question is an exact duplicate and really should be closed. Original is here. However, just for posterity, here's my answer from the first round:


This is called "bootstrapping". You must first build a compiler (or interpreter) for your language in some other language (usually Java or C). Once that is done, you can write a new version of the compiler in language Foo. You use the first bootstrap compiler to compile the compiler, and then use this compiled compiler to compile everything else (including future versions of itself).

Most languages are indeed created in this fashion, partially because language designers like to use the language they are creating, and also because a non-trivial compiler often serves as a useful benchmark for how "complete" the language may be.

An example of this would be Scala. It's first compiler was created in Pizza, an experimental language by Martin Odersky. As of version 2.0, the compiler was completely re-written in Scala. From that point on, the old Pizza compiler could be completely discarded, due to the fact that the new Scala compiler could be used to compile itself for future iterations.

link|flag

Not the answer you're looking for? Browse other questions tagged or ask your own question.