Uploaded image for project: 'JDK'
  1. JDK
  2. JDK-8233887

Archived class pre-resolution and pre-initialization

XMLWordPrintable

    • Icon: Enhancement Enhancement
    • Resolution: Won't Fix
    • Icon: P4 P4
    • tbd
    • 14
    • hotspot

      During the execution of a Java application, the used Java classes must be loaded, linked (JVMS [1] §5.4), resolved (optionally, JVMS [1] §5.4.3) and initialized (JVMS [1] §5.5). These operations are relatively expensive, and are repeated for the same set of classes within different JVM processes when running the same Java application. Some of the JDK classes may be commonly used for all Java applications. The loading/linking/resolution/initialization work are repeated for those classes in every JVM process.

      Class Data Sharing supports archiving (caching) loaded class metadata and some of the selected Java heap objects in an archive image (.jsa). When that is being used, it avoids repeated classloading work for Java applications and improves performance. Good performance improvements have been observed when enabling archive in some use cases. However, the resolution, initialization and some of the linking work is still repeated during application runtime. The total runtime cost for those operations can be as high as class loading and verification. The cost can be substantially higher for large Java applications.

      This umbrella RFE seeks to extend the archiving mechanism for pre-resolving and pre-initializing classes, and preserving the processed data as part of the archive to achieve additional savings. The pre-resolving and pre-initializing work may be applied to selected targets only, rather than applying to all constant pool entries and static fields.

      This RFE is served as a place holder for investigation and work in this area. There are still open-ended questions related to this area.

      References
      [1] https://docs.oracle.com/javase/specs/jvms/se8/jvms8.pdf
      [2] https://cr.openjdk.org/~jiangli/Leyden/Java%20Class%20Pre-resolution%20and%20Pre-initialization%20(OpenJDK).pdf

            jiangli Jiangli Zhou
            jiangli Jiangli Zhou
            Votes:
            0 Vote for this issue
            Watchers:
            9 Start watching this issue

              Created:
              Updated:
              Resolved: