vote up 8 vote down star

What language is Sun's JVM written in?

flag

4 Answers

vote up 9 vote down check

Sun actually has multiple JVMs. The HotSpot JVM is written largely in C++, because HotSpot is heavily based on the Animorphic Smalltalk VM which is written in C++.

More interesting than HotSpot is IMHO the Maxine Research VM, which is written (almost) completely in Java.

link|flag
"Low-church C++" would be a more accurate way of describing it. – Tom Hawtin - tackline Jan 4 '09 at 13:41
Maxine will be definitely such a great thing, when it'll be ready! – ivan_ivanovich_ivanoff Apr 8 at 17:58
Well, it's a research project. By definition, it'll never be ready. – Jörg W Mittag Apr 8 at 21:07
vote up 5 vote down

You can find out for yourself at: http://www.sun.com/software/opensource/java/.

link|flag
vote up 7 vote down

Strictly speaking, C++ (the JVM code does make use of C++ OO facilities).

link|flag
the most logical answer, 100% agree with you – thehighroller Dec 4 at 0:17
vote up 5 vote down

C.

Sun's not a Java shop; it's a C shop. That's what Solaris is written in.

link|flag
It should be noted that nearly all the Java standard libraries however are written in Java. – cletus Jan 4 '09 at 2:51
Absolutely correct, of course, but the question was about the JVM itself. – duffymo Jan 4 '09 at 2:52
At a guess, the C source includes some ASM - conditionally compiled on certain mainstream architectures. – slim Jan 4 '09 at 2:54
Also: Sun's a big company. Parts of it will be a 'C shop', other parts will be writing in Java, or in shell, or Perl, or whatever. Solaris is written in C largely because when they got SysV from AT&T it was in C. – slim Jan 4 '09 at 3:05
Still, a large part of the JVM is written in C. (Or, was when I last looked at it.) – Jonathan Leffler Jan 4 '09 at 3:13
show 3 more comments

Your Answer

Get an OpenID
or

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