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

Thomas Stuefe stuefe at openjdk.org
Fri Nov 24 12:19:04 UTC 2023


On Wed, 15 Nov 2023 10:06:48 GMT, Thomas Stuefe <stuefe at openjdk.org> wrote:

> 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

Ping  @jdksjolen and @gerardziemski ? Would be nice to have this fixed in 22.

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

PR Comment: https://git.openjdk.org/jdk/pull/16675#issuecomment-1825593620


More information about the hotspot-runtime-dev mailing list