RFR: JDK-8319828: runtime/NMT/VirtualAllocCommitMerge.java may fail if mixing interpreted and compiled native invocations
Stefan Karlsson
stefank at openjdk.org
Thu Nov 9 16:29:59 UTC 2023
On Thu, 9 Nov 2023 16:05:14 GMT, Thomas Stuefe <stuefe at openjdk.org> wrote:
> We saw this problem on s390x, but it was easy to reproduce on x64.
>
> The test creates adjacent commit sections via NMTCommitMemory(), and then expects them to show up as merged sections in the NMT report. That sometimes fails.
>
> The relevant snippet in the NMT report was:
>
>
> [0x000003ff859fc000 - 0x000003ff85dfc000] reserved 4096KB for Test from
> [0x000003ffb4ad2a58] WB_NMTReserveMemory+0xc0
> [0x000003ff9bf43344]
>
> [0x000003ff859fc000 - 0x000003ff85a1c000] committed 128KB from
> [0x000003ffb4ad288c] WB_NMTCommitMemory+0xc4
>
> [0x000003ff85a1c000 - 0x000003ff85a5c000] committed 256KB from
> [0x000003ffb4ad288c] WB_NMTCommitMemory+0xc4
> [0x000003ff9bf43344]
>
>
> Note how it shows two adjacent commit sections, one 128k, one 256k, that the test expected to show up as one merged section of 384k.
>
> The reason for this is that the first invocation of NMTCommitMemory was done interpreted, the second one compiled. Therefore we run with different stacks, one with an interpreter codelet, one with an nmethod. Can be easily reproduced on x64, see annotated stack:
>
>
> [0x00007fceb0147000 - 0x00007fceb0547000] reserved 4096KB for Test from
> [0x00007fcef3beccd5] WB_NMTReserveMemory+0xa5
> [0x00007fcedb92bbce]0x00007fcedb92bbce is at code_begin+1806 in an Interpreter codelet
>
> [0x00007fceb0147000 - 0x00007fceb0167000] committed 128KB from
> [0x00007fcef3bed098] WB_NMTCommitMemory+0xa8
> [0x00007fcedc0901a1]0x00007fcedc0901a1 is at entry_point+225 in (nmethod*)0x00007fcedc08ff10
>
> [0x00007fceb0167000 - 0x00007fceb01a7000] committed 256KB from
> [0x00007fcef3bed098] WB_NMTCommitMemory+0xa8
> [0x00007fcedb92bbce]0x00007fcedb92bbce is at code_begin+1806 in an Interpreter codelet
>
>
>
> Since the stacks differ, NMT does not merge the sections. And that is fine; it shouldn't do that.
>
> ---
>
> The fix is to just run everything interpreted. I don't want to just define compilation for NMTCommitMemory(), since the compiled vs interpreted question may affect other stack frames as well. Best to have stable stack frames for this test.
What happens if someone runs this test -Xcomp? Will that work? If it does then I think this looks good. Maybe add a `@comment` explaining why this test is run with -Xint.
-------------
PR Review: https://git.openjdk.org/jdk/pull/16583#pullrequestreview-1722986512
More information about the hotspot-runtime-dev
mailing list