HotSpot

This article is about Oracle's Java virtual machine. For other uses, see Hotspot.
Java HotSpot Virtual Machine
Developer(s) Oracle Corporation (previously Sun Microsystems)
Initial release April 27, 1999 (1999-04-27)[1]
Stable release
23.25-b01
Written in C++
Operating system Cross-platform
Type Java Virtual Machine
License Proprietary (early versions), GNU General Public License (current)
Website Sun's OpenJDK Hotspot page

HotSpot, released as the "Java HotSpot Performance Engine"[1] is a Java virtual machine for desktops and servers, maintained and distributed by Oracle Corporation. It features techniques such as just-in-time compilation and adaptive optimization designed to improve performance.

History

The Java Hot-Spot Performance Engine, first released April 27, 1999,[1] built on technologies from the Strongtalk implementation of the Smalltalk programming language originally developed by Longview Technologies, which traded as "Animorphic". A Sun research project, the Self programming language, had earlier successfully used Animorphic's virtual-machine technology. 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", which derives from the fact that, as the software runs Java bytecode, it continually analyzes the program's performance for "hot spots" which are frequently or repeatedly executed. These are then targeted for optimization, 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 certain 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

Sun's JRE 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, that yield higher performance. Both VMs compile only often-run methods, using a configurable invocation-count threshold to decide which methods to compile.

Tiered compilation, 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]

The HotSpot Java virtual machine is written in C++. As stated on the HotSpot web page, the source contains approximately 250,000 lines of 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).[10][11][12][13]

License

On 13 November 2006, the HotSpot JVM and the JDK were licensed[14] under the GPL version 2. This is the code that became part of Java 7.[15]).

Supported platforms

Maintained by Oracle

As for the whole JDK, HotSpot is supported by Oracle Corporation on Microsoft Windows, Linux, Solaris, and Mac OS X. Supported ISAs are IA-32, x86-64, ARMv6, ARMv7, and SPARC (exclusive to Solaris).[16]

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 because the code, while primarily written in C++, contains a lot of assembly language.[17] 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 ports of HotSpot (PPC, IA-64, S390 and ARM) since version 1.6.[18][19][20]

See also

References

  1. 1 2 3 "Sun Announces Availability of the Java HotSpot Performance Engine". Press Release. Sun Microsystems. Retrieved 26 March 2013.
  2. "Sun's Gosling Previews Hotspot Java Virtual Machine". ComputerGram. 1998-02-13. Retrieved 2008-04-20.
  3. "Cliff Click on Azul's Pauseless GC, Zing, JVM Languages". InfoQ. 2011-01-20. Retrieved 2016-05-10. [...] 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++". Retrieved 2007-10-03.
  5. Shankland, Stephen (18 February 1999). "HotSpot finally makes its mark". Cnet.
  6. "Sun Microsystems releases fastest client-side Java platform to date". Sun Microsystems. 2000-05-08. Retrieved 2007-10-03.
  7. http://docs.oracle.com/javase/7/docs/technotes/guides/vm/performance-enhancements-7.html
  8. https://docs.oracle.com/javase/8/docs/technotes/guides/vm/performance-enhancements-7.html
  9. "The HotSpot Group". Sun Microsystems. 2007. Retrieved 2007-10-03. There are nearly 1500 C/C++ header and source files, comprising almost 250,000 lines of code
  10. "Java HotSpot VM Options". Sun Microsystems. Retrieved 2009-02-08.
  11. Mocker, Joseph D. (2007-08-28). "A Collection of JVM Options". Archived from the original on 2011-04-30. Retrieved 2009-02-08.
  12. Maximovich, Dmitri. "The most complete list of -XX options for Java 6 JVM". Archived from the original on 2010-01-30. Retrieved 2009-02-08.
  13. Nutter, Charles (2009-01-29). "My Favorite Hotspot JVM Flags". Retrieved 2009-02-08.
  14. "Sun Opens Java". Sun Microsystems. 2006-11-13. Retrieved 2007-10-03.
  15. JDK7, Sun.
  16. "Supported System Configurations". Oracle Corporation. Retrieved 2012-01-06.
  17. Gary, Benson (2007-11-06). "Gary's guide to porting IcedTea". Retrieved 2008-01-26.
  18. Gary, Benson (2008-02-01). "1st February 2008". Retrieved 2008-02-03.
  19. Andrew, Haley (2008-01-31). "Making zero-assembler the default on ppc". Retrieved 2008-02-03.
  20. Lilian, Angel (2008-02-13). "IcedTea 1.6 Released with Zero-assembler and JNLP support!". Red Hat. Retrieved 2008-02-13.

External links

This article is issued from Wikipedia - version of the 11/14/2016. The text is available under the Creative Commons Attribution/Share Alike but additional terms may apply for the media files.