RFR: JDK-8320061: [nmt] Multiple issues with peak accounting [v2]

Thomas Stuefe stuefe at openjdk.org
Fri Nov 24 16:48:22 UTC 2023


> There are multiple issues with peak printing.
> 
> 1) Peak values are not considered when deciding whether allocations fall above the scale threshold:
> 
> NMT omits printing information if the values, expressed with the current NMT scale, don't rise above 0. For example, `jcmd myprog VM.native_memory scale=g` only shows allocations above 1GB. However, we should also show information that had *historically* large values, even if their current value is small or even 0.
> 
> A typical example is compiler memory usage, which can reach large peaks during VM initialization and may fall to insignificant numbers afterward. We still want to see those peaks.
> 
> 2) We decided to make peak printing a release-build feature with [JDK-8317772](https://bugs.openjdk.org/browse/JDK-8317772), but peak printing for virtual memory is still debug-only
> 
> 3) There is a bug in that VirtualMemory::peak that causes the peak value to be wrong; it gets not updated from the actual peak but from the commit increase, so the value shown is too low if we committed in multiple steps. That can be simply observed by "largest_committed" being smaller than "committed", e.g.: `(mmap: reserved=1048576KB, committed=12928KB, largest_committed=64KB)`
> 
> 4) Finally, we really should have better regression tests for peak accounting.
> 
> ----
> 
> This patch fixes points (1)..(3). It also adds regression tests for peak printing to all affected existing NMT tests. I found that we have a lot of duplicated coding in the tests and reduced that with some common utility classes.
> 
> Tests: 
> - locally tested runtime/NMT and the full gtest suite on x64 release, fastdebug and x86 fastdebug.
> - GHA

Thomas Stuefe has updated the pull request with a new target base due to a merge or a rebase. The incremental webrev excludes the unrelated changes brought in by the merge/rebase. The pull request contains three additional commits since the last revision:

 - feedback johan
 - Merge branch 'master' into JDK-8320061-NMT-do-not-omit-information-if-historic-peak-raises-above-scale-threshold
 - JDK-8320061-NMT-do-not-omit-information-if-historic-peak-raises-above-scale-threshold

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

Changes:
  - all: https://git.openjdk.org/jdk/pull/16675/files
  - new: https://git.openjdk.org/jdk/pull/16675/files/7841f63b..53d3428e

Webrevs:
 - full: https://webrevs.openjdk.org/?repo=jdk&pr=16675&range=01
 - incr: https://webrevs.openjdk.org/?repo=jdk&pr=16675&range=00-01

  Stats: 31871 lines in 963 files changed: 18504 ins; 7937 del; 5430 mod
  Patch: https://git.openjdk.org/jdk/pull/16675.diff
  Fetch: git fetch https://git.openjdk.org/jdk.git pull/16675/head:pull/16675

PR: https://git.openjdk.org/jdk/pull/16675


More information about the hotspot-runtime-dev mailing list