RFR: 8350488: [leyden] Experimental AOT-only mode
Aleksey Shipilev
shade at openjdk.org
Fri Feb 21 11:12:07 UTC 2025
On Fri, 21 Feb 2025 10:36:19 GMT, Aleksey Shipilev <shade at openjdk.org> wrote:
> There are interesting use cases where we want the AOT-only mode. We can emulate this in current Leyden prototype by relying on preload code, and stopping any profiling, which would naturally lead to no JIT compilations. This would also make interpreter code a bit faster in case we need to fall back there. This mode looks also helpful for studying the compiler dynamics.
>
> Additional testing:
> - [x] Eyeballing compilation logs with `-XX:+PreloadOnly`
> - [ ] Linux x86_64 server fastdebug, `runtime/cds`
> - [ ] Linux x86_64 server fastdebug, `runtime/cds` with `-XX:+PreloadOnly`
Plus, preload code needs to be a bit more resilient to invalidations, which would improve the perf gap here: https://github.com/openjdk/leyden/pull/38. With that POC patch applied, the peak performance gap shortens considerably:
# === 32 cores
# Default
Time (mean ± σ): 404.0 ms ± 17.0 ms [User: 1070.5 ms, System: 168.6 ms]
Range (min … max): 381.0 ms … 464.8 ms 30 runs
# -XX:+PreloadOnly
Time (mean ± σ): 415.1 ms ± 5.8 ms [User: 525.3 ms, System: 82.5 ms]
Range (min … max): 403.8 ms … 428.4 ms 30 runs
# === 2 cores
# Default
Time (mean ± σ): 533.0 ms ± 29.3 ms [User: 867.6 ms, System: 114.9 ms]
Range (min … max): 463.6 ms … 587.6 ms 30 runs
# -XX:+PreloadOnly
Time (mean ± σ): 404.5 ms ± 4.1 ms [User: 508.8 ms, System: 78.4 ms]
Range (min … max): 399.6 ms … 419.4 ms 30 runs
-------------
PR Comment: https://git.openjdk.org/leyden/pull/44#issuecomment-2674265650
More information about the leyden-dev
mailing list