JDK-8338018 : Rename ClassPrelinker to AOTConstantPoolResolver
  • Type: Enhancement
  • Component: hotspot
  • Sub-Component: runtime
  • Priority: P3
  • Status: Resolved
  • Resolution: Duplicate
  • Submitted: 2024-08-08
  • Updated: 2024-11-15
  • Resolved: 2024-11-15
The Version table provides details related to the release that this issue/RFE will be addressed.

Unresolved : Release in which this issue/RFE will be addressed.
Resolved: Release in which this issue/RFE has been resolved.
Fixed : Release in which this issue/RFE has been fixed. The release containing this fix may be available for download as an Early Access Release or a General Availability Release.

To download the current JDK release, click here.
JDK 24
24Resolved
Related Reports
Duplicate :  
Description
This RFE is a simple renaming of the class ClassPrelinker to AOTConstantPoolResolver, to be compatible with the naming of the other C++ classes in the implementation of JEP 483 (JDK-8315737).

https://github.com/openjdk/jdk/blob/master/src/hotspot/share/cds/classPrelinker.hpp

Note: new classes for JEP 483 will be introduced in the next RFE JDK-8329706:

AOTClassLinker:
    Used in the assembly phase - decides what classes
    in the AOTCache should be loaded and linked at the
    start of a production run

AOTConstantPoolResolver:
    Used in the assembly phase - decides what CP entries 
    in the AOTCache should be resolved during the assembly phase

AOTLinkedClassTable:
    The output written by AOTClassLinker; stored inside
    AOTCache.

AOTLinkedClassBulkLoader:
   Used in the production run -- loads/links classes in the
   AOTLinkedClassTable


Comments
Fixed as part of JDK-8331497: Implement JEP 483: Ahead-of-Time Class Loading & Linking
15-11-2024

A pull request was submitted for review. Branch: pr/20516 URL: https://git.openjdk.org/jdk/pull/20517 Date: 2024-08-09 00:26:27 +0000
29-08-2024