HotSpot Group

来源:百度文库 编辑:神马文学网 时间:2024/04/27 16:09:33

The HotSpot Group

The HotSpot group is comprised of developers involved in the design, implementation, and maintanence of the HotSpot virtual machine.

Introduction

Below you will find the the source code for the Java HotSpot virtual machine, the best Java virtual machine on the planet.

The HotSpot code base has been worked on by dozens of people, over the course of 10 years, so far. (That's good and bad.) It's big. There are nearly 1500 C/C++ header and source files, comprising almost 250,000 lines of code. In addition to the expected class loader, bytecode interpreter, and supporting runtime routines, you get two runtime compilers from bytecode to native instructions, 3 (or so) garbage collectors, and a set of high-performance runtime libraries for synchronization, etc.

Here's what you don't get with the source code: the class libraries that in combination with the virtual machine make a Java Runtime Environment (JRE) or Java Developers Kit (JDK). You can download those separately. You also don't get our amazing quality team that keeps the plane flying even while we work on it. You don't get our automated testing environment and labs full of fast machines, slow machines, uniprocessors and big iron, machines with various operating systems and compilers, etc. You don't get our performance team, to keep us from regressing. Or our partners and licensees who help us port and keep our code portable. And you don't get our zillions of happy (and not so happy) users, who keep us focused on what matters. If you want in on all of that you'll have to collaborate with us in the continued development of the platform.

Source code

  • Bundles
    • Download
  • Mercurial respository (read-only)
    • Browsable source
    • Checkout
      hg clone http://hg.openjdk.java.net/jdk7/hotspot/hotspot

Documentation

  • A glossary of terms found in the HotSpot sources and documentation.
  • An overview of the runtime system
  • An overview of the serviceability features
  • An overview of the storage management system

Community

  • Mailing Lists
    • hotspot-dev
    • hotspot-compiler-dev
    • hotspot-gc-dev
    • hotspot-runtime-dev
  • HotSpot bloggers
    • A. Sundararajan
    • Christian Thalinger
    • Dave Dice
    • David Holmes
    • Jon Masamitsu
    • Nikolay Igotti
    • Steve Bohne
    • Steve Goldman

Talks

  • FOSDEM-2007: Peter B. Kessler's brief overview of the HotSpot virtual machine