up vote 11 down vote favorite
3
share [g+] share [fb]

I am not aware of any self-improving compiler, but then again I am not much of a compiler-guy.

Is there ANY self-improving compiler out there?

Please note that I am talking about a compiler that improves itself - not a compiler that improves the code it compiles.

Any pointers appreciated!

Side-note: in case you're wondering why I am asking have a look at this post. Even if I agree with most of the arguments I am not too sure about the following:

We have programs that can improve their code without human input now — they’re called compilers.

... hence my question.

link|improve this question
2  
Self-improving in what aspect? How would the compiler be improving itself? Is it adding a new language on it's own, so gcc decides it wants to compile Ruby, and so learns how? Are improve how it compiles C by adding a new optimization level? – James Black Oct 18 '09 at 15:22
1  
What about a compiler that compiles itself? – ChrisInEdmonton Oct 18 '09 at 15:23
@JamesBlack self-improving in ANY Aspect :) - I am just trying to understand if there's such a thing – JohnIdol Oct 18 '09 at 15:25
Until you can say specifically what you mean this is "Not a Real Question". I mean, do you think that the compiler can comprehend it's own performance and decide what to do about it? – dmckee Oct 18 '09 at 23:21
I mean ANY self-improving aspect, including the one you mention, which sounds like a question to me. It's not about what I think, I am just reaching out to understand if there's any current research on the topic at ANY level. – JohnIdol Oct 19 '09 at 9:02
show 8 more comments
feedback

8 Answers

up vote 9 down vote accepted

While it is true that compilers can improve code without human interference, however, the claim that "compilers are self-improving" is rather dubious. These "improvements" that compilers make are merely based on a set of rules that are written by humans (cyborgs anyone?). So the answer to your question is : No.

On a side note, if there was anything like a self improving compiler, we'd know... first the thing would improve the language, then its own code and finally, it would modify its code to become a virus and make all developers use it... and then finally we'd have one of those classic computer-versus-humans-last-hope-for-humanity kind of things... so ... No.

link|improve this answer
3  
Ah -- the irony ... your post is even tagged "singularity" – Aviral Dasgupta Oct 18 '09 at 15:07
With due respect: bullshit. See my answer. – MaD70 Nov 7 '09 at 22:49
4  
"then it would become a virus to make all devs use it"... so Java, then? – jrockway Nov 7 '09 at 22:50
1  
Ah! Thanks jrockway for the chuckle. – MaD70 Nov 7 '09 at 22:53
1  
I don't know about you, but my compilers attend night classes to learn underwater basket-weaving! – Donal Fellows Jun 13 '10 at 19:43
feedback

MilepostGCC is a MachineLearning compiler, which improve itself with time in the sense that it is able to change itself in order to become "better" with time. A simpler iterative compilation approach is able to improve pretty much any compiler.

link|improve this answer
feedback

25 years of programming and I have never heard of such a thing (unless you're talking about compilers that auto download software updates!).

link|improve this answer
feedback

A self improving compiler would, by definition, have to have self modifying code. If you look around, you can find examples of people doing this (self modifying code). However, it's very uncommon to see - especially on projects as large and complex as a compiler. And it's uncommon for the very good reason that it's ridiculously hard (ie, close to impossible) to guarantee correct functionality. A lot of coders who think they're smart (especially Assembly coders) play around with this at one point or another. The ones who actually are smart mostly move out of this phase. ;)

link|improve this answer
feedback

Not yet practically implemented, to my knowledge, but yes, the theory is there:

  • Goedel machines: self-referential universal problem solvers making provably optimal self- improvements.
link|improve this answer
1  
so the answer is: NO - there's no such a thing out there. Time travel is possible in theory but I don't see anyone from the future :) - All jokes aside, thanks for the link. Any other examples you can think of or Goedel machines are the only theorized examples of such a thing? – JohnIdol Nov 7 '09 at 23:26
They are state-of-the-art to my knowledge, previous work was done by Marcus Hutter (hutter1.net), a student of Schmidhuber. But I need to be clear: Goedel machines are not "theorized" in the sense that there are vague statements that they are possible; no, in Schmidhuber's work there is a clear plan to build (program) one. What is left is engineering, which is not necessary easy: in particular it requires an axiomatic model of the hardware performance where it run. With current crappy CPUs is unrealistic a deterministic performance model, I was thinking to let the program... – MaD70 Nov 8 '09 at 0:32
.. monitor itself (via hardware performance counters), learn and perfect incrementally an axiomatic probabilistic performance model. But this is pure speculation. – MaD70 Nov 8 '09 at 0:35
From the linked page - "The searcher systematically and efficiently tests computable proof techniques (programs whose outputs are proofs) until it finds a provably useful, computable self-rewrite. We show that such a self-rewrite is globally optimal - no local maxima! - since the code first had to prove that it is not useful to continue the proof search for alternative self-rewrites." How long does that typically take to run? That sounds alot like it would be a race against the heat death of the universe. Especially since existing compiler theory is pretty advanced already. – Adam Luchjenbroers Dec 1 '09 at 8:02
No: time is equally divided between doing the actual task and searching for better solutions. Imagine a robot executing a plan - if there is a stringent time-limit, at worst it will complete the task executing a less efficient plan. So, if there is a time-limit the actual task will be completed anyway (if both the plan is computable and doable in that time-limit, of course). Also, if one have a good starting point there is nothing that prevent to start from there - possibly a rewrite will discover a better version, not (yet) computable by traditional means. – MaD70 Dec 3 '09 at 18:46
show 6 more comments
feedback

In some situations, a C compiler is run several times without any human input, getting a "better" compiler each time. Fortunately (or unfortunately, from another point of view) this process plateaus after a few steps -- further iterations generate exactly the same compiler executable as the last.

  1. We have all the GCC source code, but the only C compiler on this machine available is not GCC. Alas, parts of GCC use "extensions" that can only be built with GCC. Fortunately, this machine does have a functional "make" executable, and some random proprietary C compiler. The human goes to the directory with the GCC source, and manually types "make".

  2. The make utility finds the MAKEFILE, which directs it to run the (proprietary) C compiler to compile GCC, and use the "-D" option so that all the parts of GCC that use "extensions" are #ifdef'ed out. (Those bits of code may be necessary to compile some programs, but not the next stage of GCC.). This produces a very limited cut-down binary executable, that barely has enough functionality to compile GCC (and the people who write GCC code carefully avoid using functionality that this cut-down binary does not support).

  3. The make utility runs that cut-down binary executable with the appropriate option so that all the parts of GCC are compiled in, resulting in a fully-functional (but relatively slow) binary executable.

  4. The make utility runs the fully-functional binary executable on the GCC source code with all the optimization options turned on, resulting in the actual GCC executable that people will use from now on, and installs it in the appropriate location.

  5. The make utility tests to make sure everything is working OK: it runs the GCC executable from the standard location on the GCC source code with all the optimization options turned on. It then compares the resulting binary executable with the GCC executable in the standard location, and confirms that they are identical (with the possible exception of irrelevant timestamps).

After the human types "make", the whole process runs automatically, each stage generating an improved compiler (until it plateaus and generates an identical compiler). http://gcc.gnu.org/wiki/Top-Level_Bootstrap and http://gcc.gnu.org/install/build.html and Compile GCC with Code Sourcery have a few more details.

I've seen other compilers that have many more stages in this process -- but they all require some human input after each stage or two. Example: "Bootstrapping a simple compiler from nothing" by Edmund Grimley Evans 2001 http://homepage.ntlworld.com/edmund.grimley-evans/bcompiler.html And there is all the historical work done by the programmers who have worked on GCC, who use previous versions of GCC to compile and test their speculative ideas on possibly improved versions of GCC. While I wouldn't say this is without any human input, the trend seems to be that compilers do more and more "work" per human keystroke.

link|improve this answer
feedback

I'm not sure if it qualifies, but the Java HotSpot compiler improves code at runtime using statistics.

But at compile time? How will that compiler know what's deficient and what's not? What's the measure of goodness?

There are plenty of examples of people using genetic techniques to pit algorithms against each other to come up with "better" solutions. But these are usually well-understood problems that have a metric.

So what metrics could we apply at compile time? Minimum size of compiled code, cyclometric complexity, or something else? Which of these is meaningful at runtime?

link|improve this answer
Firstly : that's not self improving is it? Secondly : If someone thinks that that is an application of AI, it is not. What it simply does is checks for performance bottlenecks and tries to improve those by compromising on other things. – Aviral Dasgupta Oct 18 '09 at 15:02
Thanks, I see your point but I am talking about a compiler that improves itself - not the code that it compiles. – JohnIdol Oct 18 '09 at 15:04
feedback

Well, there is JIT (just in time) techniques. One could argue that a compiler with some JIT optimizations might re-adjust itself to be more efficient with the program it is compiling ???

link|improve this answer
I am talking more of improvements to the compiler source-code by the compiler itself – JohnIdol Jun 16 '10 at 10:47
feedback

Your Answer

 
or
required, but never shown

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