RFR: Save/load i2c2i adapters [v8]

Ashutosh Mehra asmehra at openjdk.org
Fri Jan 10 19:38:40 UTC 2025


> 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...

Ashutosh Mehra has updated the pull request incrementally with two additional commits since the last revision:

 - Fix bug in looking up AdapterFingerPrint in archived table
   
   Signed-off-by: Ashutosh Mehra <asmehra at redhat.com>
 - Fix bool condition check
   
   Signed-off-by: Ashutosh Mehra <asmehra at redhat.com>

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

Changes:
  - all: https://git.openjdk.org/leyden/pull/25/files
  - new: https://git.openjdk.org/leyden/pull/25/files/28419f46..efc97745

Webrevs:
 - full: https://webrevs.openjdk.org/?repo=leyden&pr=25&range=07
 - incr: https://webrevs.openjdk.org/?repo=leyden&pr=25&range=06-07

  Stats: 24 lines in 2 files changed: 11 ins; 10 del; 3 mod
  Patch: https://git.openjdk.org/leyden/pull/25.diff
  Fetch: git fetch https://git.openjdk.org/leyden.git pull/25/head:pull/25

PR: https://git.openjdk.org/leyden/pull/25


More information about the leyden-dev mailing list