RFR: 8373096: JFR leak profiler: path-to-gc-roots search should be non-recursive
Erik Gahlin
egahlin at openjdk.org
Mon Dec 8 18:08:09 UTC 2025
On Sat, 6 Dec 2025 06:13:44 GMT, Thomas Stuefe <stuefe at openjdk.org> wrote:
> Ping @egahlin
This looks like a good fix and refactoring. I agree, increasing the depth is better done separately. I will need to look at this more and run some tests. We now return when we find a marked object.
102 if (_mark_bits->is_marked(pointee)) {
103 return;
104 }
Previously we just aborted that closure. Need to think about if it matters.
-------------
PR Comment: https://git.openjdk.org/jdk/pull/28659#issuecomment-3628350221
More information about the hotspot-jfr-dev
mailing list