Software:HotSpot (virtual machine)

From HandWiki
Short description: Java virtual machine


Java HotSpot Virtual Machine
Original author(s)Sun Microsystems
Developer(s)Oracle Corporation
Initial releaseApril 27, 1999; 24 years ago (1999-04-27)[1]
Stable release
23.25-b01 / January 1, 2016; 8 years ago (2016-01-01)
Repositorygithub.com/openjdk/jdk/tree/master/src/hotspot
Written inC++, Assembly
Operating systemCross-platform
TypeJava virtual machine
LicenseProprietary (early versions), GNU General Public License (current)
Websiteopenjdk.org/groups/hotspot/

HotSpot, released as Java HotSpot Performance Engine,[1] is a Java virtual machine for desktop and server computers, developed by Sun Microsystems and now maintained and distributed by Oracle Corporation. It features improved performance via methods such as just-in-time compilation and adaptive optimization. It is the de facto Java Virtual Machine, serving as the reference implementation of the Java programming language.

History

The Java HotSpot Performance Engine was released on April 27, 1999,[1] built on technologies from an implementation of the programming language Smalltalk named Strongtalk, originally developed by Longview Technologies, which traded as Animorphic. The Longview virtual machine was based on the Self virtual machine, with an interpreter replacing the fast-and-dumb first compiler. When Sun cancelled the Self project, two key people, Urs Hölzle and Lars Bak left Sun to start Longview. In 1997, Sun Microsystems purchased Animorphic.[2]

Shortly after acquiring Animorphic, Sun decided to write a new just-in-time (JIT) compiler for the Java virtual machine.[3] This new compiler would give rise to the name HotSpot, derived from the software's behavior: as it runs Java bytecode, as with the Self VM, HotSpot continually analyzes the program's performance for hot spots which are executed often or repeatedly. These are then targeted for optimizing, leading to high-performance execution with a minimum of overhead for less performance-critical code. In one report, the JVM beat some C++ or C code in some benchmarks.[4]

Initially available as an add-on for Java 1.2,[5] HotSpot became the default Sun JVM in Java 1.3.[6]

Features

JRE (originally from Sun, now from Oracle) features two virtual machines, one called Client and the other Server. The Client version is tuned for quick loading. It makes use of interpretation. The Server version loads more slowly, putting more effort into producing highly optimized JIT compilations to yield higher performance. Both VMs compile only often-run methods, using a configurable invocation-count threshold to decide which methods to compile.

Tiered compiling, an option introduced in Java 7, uses both the client and server compilers in tandem to provide faster startup time than the server compiler, but similar or better peak performance.[7] Starting in Java 8, tiered compilation is the default for the server VM.[8]

HotSpot is written in C++ and Assembly. In 2007, Sun estimated it comprised approximately 250,000 lines of source code.[9] Hotspot provides:

JVM flags

HotSpot supports many command-line arguments for options of the virtual machine execution. Some are standard and must be found in any conforming Java virtual machine; others are specific to HotSpot and may not be found in other JVMs (options that begin with -X or -XX are non-standard).[12][13][14][15]

License

On 13 November 2006, the HotSpot JVM and the Java Development Kit (JDK) were licensed under the GNU General Public License (GPL) version 2.[16] This is the code that became part of Java 7.[17]

Supported platforms

Maintained by Oracle

As with the entire Java Development Kit (JDK), HotSpot is supported by Oracle Corporation on Windows, Linux, and macOS. Supported instruction set architectures (ISAs) are x86-64 and AArch64.[18] Since JDK 15, Solaris and SPARC are no longer supported.[19]

Ports by third parties

Ports are also available by third parties for various other Unix operating systems. Several different hardware architectures are supported, including x86, PowerPC, and SPARC (Solaris only).

Porting HotSpot is difficult, as much of it is almost extensively written in assembly language,[20] though several sections of it are also written in purely standards conformant ISO C++. To remedy this, the IcedTea project has developed a generic port of the HotSpot interpreter called zero-assembler Hotspot (or zero), with almost no assembly code. This port is intended for easy adaptation of the interpreter component of HotSpot to any Linux processor architecture. The code of zero-assembler Hotspot is used for all the non-x86 architecture ports of HotSpot (PowerPC, Itanium (IA-64), S390 and ARM) since version 1.6.[21][22][23]

See also

References

  1. 1.0 1.1 1.2 "Sun Announces Availability of the Java HotSpot Performance Engine". Press Release. Sun Microsystems. http://www.thefreelibrary.com/Sun+Announces+Availability+of+the+Java+HotSpot+Performance+Engine%3B...-a054477747. 
  2. Services, Chronicle Staff and News (1997-02-19). "SUN MICRO BUYS LONGVIEW" (in en-US). https://www.sfgate.com/business/article/SUN-MICRO-BUYS-LONGVIEW-2854052.php. 
  3. "Cliff Click on Azul's Pauseless GC, Zing, JVM Languages". InfoQ. 2011-01-20. http://www.infoq.com/interviews/click-gc-azul. "[...] Anamorphic was acquired by Sun so the original team was at a company called Anamorphic, they came in with a technology that was targeted at Smalltalk and they re-targeted it for Java and they hired me shortly afterwards to do a new JIT for their virtual machine." 
  4. Lewis, J. P. (2004). "Performance of Java versus C++". http://scribblethink.org/Computer/javaCbenchmark.html. 
  5. Shankland, Stephen (18 February 1999). "HotSpot finally makes its mark". Cnet. http://news.cnet.com/HotSpot-finally-makes-its-mark/2100-1001_3-221855.html. 
  6. "Sun Microsystems releases fastest client-side Java platform to date". Sun Microsystems. 2000-05-08. http://www.sun.com/smi/Press/sunflash/2000-05/sunflash.20000508.3.xml. 
  7. "Java ™ HotSpot Virtual Machine Performance Enhancements". http://docs.oracle.com/javase/7/docs/technotes/guides/vm/performance-enhancements-7.html. 
  8. "Java ™ HotSpot Virtual Machine Performance Enhancements". https://docs.oracle.com/javase/8/docs/technotes/guides/vm/performance-enhancements-7.html. 
  9. "The HotSpot Group". Sun Microsystems. 2007. http://openjdk.java.net/groups/hotspot/. "There are nearly 1500 C/C++ header and source files, comprising almost 250,000 lines of code" 
  10. "Main - ZGC". https://wiki.openjdk.java.net/display/zgc/Main. 
  11. "HotSpot Virtual Machine Garbage Collection Tuning Guide (Java 14)" (in en-us). https://docs.oracle.com/en/java/javase/14/gctuning/index.html. 
  12. "Java HotSpot VM Options". Sun Microsystems. http://java.sun.com/javase/technologies/hotspot/vmoptions.jsp. 
  13. Mocker, Joseph D. (2007-08-28). "A Collection of JVM Options". Archived from the original on 2011-04-30. https://web.archive.org/web/20110430195227/http://blogs.sun.com/watt/resource/jvm-options-list.html. 
  14. Maximovich, Dmitri. "The most complete list of -XX options for Java 6 JVM". Archived from the original on 2010-01-30. https://web.archive.org/web/20100130070337/http://www.md.pp.ru/~eu/jdk6options.html. 
  15. Nutter, Charles (2009-01-29). "My Favorite Hotspot JVM Flags". http://blog.headius.com/2009/01/my-favorite-hotspot-jvm-flags.html. 
  16. "Sun Open Sources Java Technology and Releases Source Code Under GPL Version Two License Via NetBeans and Java.net Communities". Sun Microsystems. 2006-11-13. http://www.sun.com/aboutsun/media/presskits/2006-1113/. 
  17. JDK7 , Sun.
  18. "Oracle JDK 17 Certified System Configurations". Oracle Corporation. https://www.oracle.com/java/technologies/javase/products-doc-jdk17certconfig.html. 
  19. "JEP 381: Remove the Solaris and SPARC Ports". https://openjdk.java.net/jeps/381. 
  20. Benson, Gary (2007-11-06). "Gary's guide to porting IcedTea". http://gbenson.livejournal.com/2007/11/16/. 
  21. Benson, Gary (2008-02-01). "1st February 2008". http://gbenson.livejournal.com/2008/02/01/. 
  22. Haley, Andrew (2008-01-31). "Making zero-assembler the default on ppc". https://mail.openjdk.java.net/pipermail/distro-pkg-dev/2008-January/001085.html. 
  23. Angel, Lilian (2008-02-13). "IcedTea 1.6 Released with Zero-assembler and JNLP support!". Red Hat. http://mail.openjdk.java.net/pipermail/distro-pkg-dev/2008-February/001172.html. 

External links