vote up 2 vote down star
1

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.

flag
1  
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 at 15:22
1  
What about a compiler that compiles itself? – ChrisInEdmonton Oct 18 at 15:23
@JamesBlack self-improving in ANY Aspect :) - I am just trying to understand if there's such a thing – JohnIdol Oct 18 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 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 at 9:02
show 6 more comments

5 Answers

vote up 6 vote down

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 then it would become a virus to make all devs 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|flag
3  
Ah -- the irony ... your post is even tagged "singularity" – aviraldg Oct 18 at 15:07
With due respect: bullshit. See my answer. – MaD70 Nov 7 at 22:49
2  
"then it would become a virus to make all devs use it"... so Java, then? – jrockway Nov 7 at 22:50
Ah! Thanks jrockway for the chuckle. – MaD70 Nov 7 at 22:53
vote up 3 vote down

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|flag
vote up 0 vote down

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|flag
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. – aviraldg Oct 18 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 at 15:04
vote up 1 vote down

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|flag
vote up 1 vote down

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|flag
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 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 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 at 0:35

Your Answer

Get an OpenID
or

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