Integrated: 8309753: Include array classes in the output of -XX:+PrintSharedArchiveAndExit

Calvin Cheung ccheung at openjdk.org
Tue Jun 13 15:57:59 UTC 2023


On Fri, 9 Jun 2023 22:04:11 GMT, Calvin Cheung <ccheung at openjdk.org> wrote:

> Please review this simple enhancement for including the array classes names in the output of -XX:+PrintArchiveAndExit.
> 
> Before fix (portion of the output):
> 
>  657: java.lang.Object boot_loader
>  658: java.lang.Character$CharacterCache boot_loader
>  659: sun.nio.fs.LinuxFileSystem boot_loader
>  660: java.lang.ThreadLocal boot_loader
>  661: java.util.TreeSet boot_loader
>  662: java.lang.invoke.LambdaForm$Kind boot_loader
> 
> 
> After fix:
> 
>  657: java.lang.Object boot_loader
>       - array: [Ljava.lang.Object;
>       - array: [[Ljava.lang.Object;
>  658: java.lang.Character$CharacterCache boot_loader
>  659: sun.nio.fs.LinuxFileSystem boot_loader
>  660: java.lang.ThreadLocal boot_loader
>  661: java.util.TreeSet boot_loader
>  662: java.lang.invoke.LambdaForm$Kind boot_loader
>       - array: [Ljava.lang.invoke.LambdaForm$Kind;
> 
> 
> Passed tier1 testing.

This pull request has now been integrated.

Changeset: 14010876
Author:    Calvin Cheung <ccheung at openjdk.org>
URL:       https://git.openjdk.org/jdk/commit/14010876dc7ed0e2ce05225198ded35e0d1ab0ba
Stats:     20 lines in 4 files changed: 17 ins; 0 del; 3 mod

8309753: Include array classes in the output of -XX:+PrintSharedArchiveAndExit

Reviewed-by: iklam, matsaave

-------------

PR: https://git.openjdk.org/jdk/pull/14403


More information about the hotspot-runtime-dev mailing list