What is the name of JIT compiler used in J2SE platform? How can i find it ?
+1
A:
The JIT compiler is simply part of the Java runtime environment, there is not a "standalone" compiler that you can call from external programs, for example.
I believe it's implemented inside of jvm.dll, for what it's worth.
Dean Harding
2010-06-16 05:48:08
+1
A:
It is sometimes called the HotSpot(tm) compiler. The sourcecode is available for download as part of OpenJDK 6 and 7.
Stephen C
2010-06-16 06:25:02
+1
A:
Depends on the JVM. The Sun JVM contains HotSpot. Other JVMs include IBM, Apache, JRockit.
I dó not believe that others than Sun use codenames externally for their technology
Thorbjørn Ravn Andersen
2010-06-16 06:56:53
A:
The term 'JIT' became obsolete around 1999. The current HotSpot JVM isn't a JIT in the old sense.
EJP
2010-06-16 10:43:50