RFR: 8319795: Static huge pages are not used for CodeCache [v6]

Evgeny Astigeevich eastigeevich at openjdk.org
Wed Nov 29 17:35:07 UTC 2023


On Tue, 28 Nov 2023 23:24:19 GMT, Evgeny Astigeevich <eastigeevich at openjdk.org> wrote:

>> This is a fix of a regression introduced by [JDK-8261894](https://bugs.openjdk.org/browse/JDK-8261894).
>> After JDK-8261894, `os::can_execute_large_page_memory()` returns `true` only if `UseTransparentHugePages` is true. As CodeCache uses `os::can_execute_large_page_memory()` when it detects a page size, CodeCache cannot use static huge pages (`UseTransparentHugePages` is `false`) anymore after the change.
>> Before JDK-8261894, `os::can_execute_large_page_memory()` returned `true`  when either `UseTransparentHugePages` or `UseHugeTLBFS` was true.
>> 
>> After JDK-8261894, `XX:+UseLargePages XX:-UseTransparentHugePages` means to use static huge pages: aka `UseHugeTLBFS` is `true`. If `UseLargePages` is not set to `true` via the option, it will be set to `true` if `UseTransparentHugePages` is `true`.
>> 
>> `os::can_execute_large_page_memory()` is modified to return `UseLargePages`. A regression gtest  is added.
>> 
>> Tested fastdebug and release builds:
>> - [x] tier1
>> - [x] gtest
>> - [x] test/hotspot/jtreg/gtest/LargePageGtests.java
>
> Evgeny Astigeevich has updated the pull request incrementally with one additional commit since the last revision:
> 
>   Fix code heap initial sizes to be multiple of rs.alignment()

Testing plan:
- Add new tests.
- Run tier1 - tier4:
  - Linux x86_64 and aarch64: normal pages, explicit huge pages and transparent huge pages.
  - Windows x86_64: normal pages and large pages.
  - MacOS x86_64 and aarch64: normal pages

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

PR Comment: https://git.openjdk.org/jdk/pull/16582#issuecomment-1832394709


More information about the hotspot-runtime-dev mailing list