RFR: Save/load i2c2i adapters [v13]
Aleksey Shipilev
shade at openjdk.org
Wed Jan 29 15:54:10 UTC 2025
On Tue, 28 Jan 2025 18:26:44 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 |...
>
> Ashutosh Mehra has updated the pull request incrementally with two additional commits since the last revision:
>
> - Fix compile failure in minimal build
>
> Signed-off-by: Ashutosh Mehra <asmehra at redhat.com>
> - Do not search archived adapter table during assembly phase
>
> Signed-off-by: Ashutosh Mehra <asmehra at redhat.com>
I think there is a problem with queue locking code that gets exposed by compiler/c1/TestConcurrentPatching.java test: https://bugs.openjdk.org/browse/JDK-8348960
-------------
PR Comment: https://git.openjdk.org/leyden/pull/25#issuecomment-2622028586
More information about the leyden-dev
mailing list