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

Thomas Stuefe stuefe at openjdk.org
Tue Nov 28 15:46:29 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).
> 
> The majority of changes affect test cases, though, because many tests expect NMT to print nothing for allocations that are close to or at zero. But since we now print historical peaks even if current values are low (which is the point of this patch) these tests break.
> 
> 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 five additional commits since the last revision:

 - Merge branch 'master' into JDK-8320061-NMT-do-not-omit-information-if-historic-peak-raises-above-scale-threshold
 - Fix Copyrights
 - 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/53d3428e..bb3edcd1

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

  Stats: 5085 lines in 159 files changed: 3647 ins; 714 del; 724 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