Integrated: Save/load i2c2i adapters
Ashutosh Mehra
asmehra at openjdk.org
Wed Feb 5 18:45:44 UTC 2025
On Wed, 23 Oct 2024 15:33:59 GMT, Ashutosh Mehra <asmehra at openjdk.org> wrote:
> This is an attempt to save and load i2c2i adapters along with the adapter handler table.
> There are mainly two parts to this change:
> 1. Storing of adapter code in the SCCache or AOT code cache.
> 2. Storing of adapter handler table in the AOT cache.
>
> Adapter handler table is a map from AdapterFingerPrint to AdapterHnadlerEntry. To store them in AOT cache, AdapterFingerPrint and AdapterHandlerEntry are updated to MetaspaceObj. Both these entities are discovered and added to the cache while processing the Method. When storing the adapter handler table, only the entries that have already been archived are considered. This allows pruning of AdapterHnadlerEntry that may be only reachable through a Method that is not eligible to be archived.
>
> An AdapterHandlerEntry has pointer to the adapter code. Because the AdapterHandlerEntry and the adapter code are stored in separate archives, this link between the AdapterHandlerEntry and the adapter code needs to be removed (see AdapterHandlerEntry::remove_unshareable_info()).
> During the production run, as the methods in the AOT cache are adopted, the AdapterHandlerEntry is linked back to the adapter code (see AdapterHandlerEntry::restore_unshareable_info).
>
> All this code is guarded by -XX:[+-]ArchiveAdapters option which defaults to false, but is set to true in CDSConfig during the assembly phase.
>
> Other changes worth mentioning:
> 1. Changes to the SCCache infrastructure to make it possible to store and load adapter code. (Thanks to @adinn)
> 2. Updating AdapterFingerPrint hashing algorithm to avoid collisions. If there is any collision, then it will prevent finding the adapter code in the SCCache. (Again courtesy of @adinn)
>
> Thanks to @adinn for providing many of these changes.
>
> Performance:
> -Xlog:init shows time taken for linking of Methods and making adapters. An example output is:
>
> ClassLoader:
> clinit: 150us / 4612 events
> link methods: 28980us / 176893 events
> method adapters: 15378us / 697 events
>
> Save/load of adapters seem to have improved these stats.
>
> | Quarkus | -ArchiveAdapters | +ArchiveAdapters |
> |---|---|---|
> | link methods | 12214us / 58913 events | 2700us / 58913 events |
> | method adapters | 7793us / 607 events | 4402us / 38 events |
>
> | Spring-petclinic | -ArchiveAdapters | +ArchiveAdapters |
> |---|---|---|
> | link methods | 28980us / 176893 events | 7485us / 176893 events |
> | method adapters | 15378us / 697 events | 7050us / 13 events |
>
> Howeve...
This pull request has now been integrated.
Changeset: 7a61e391
Author: Ashutosh Mehra <asmehra at openjdk.org>
URL: https://git.openjdk.org/leyden/commit/7a61e39199d8c119f66f5088b067fc57a62d1e55
Stats: 1362 lines in 26 files changed: 885 ins; 247 del; 230 mod
Save/load i2c2i adapters
Co-authored-by: Andrew Dinn <adinn at openjdk.org>
Reviewed-by: kvn, iklam
-------------
PR: https://git.openjdk.org/leyden/pull/25
More information about the leyden-dev
mailing list