[lilliput-jdk17u:lilliput] Integrated: 8303027: [Lilliput/JDK17] Correctly resolve forwarded objects in G1 heap iteration

Roman Kennke rkennke at openjdk.org
Thu Feb 23 19:22:39 UTC 2023


On Tue, 21 Feb 2023 20:02:08 GMT, Roman Kennke <rkennke at openjdk.org> wrote:

> A user provided a (pretty simple) test case that makes the VM crash with Lilliput, when it should exit (somewhat more) gracefully with an OOME. The reason for the crash is that in G1, object_iterate() (or rather, the block_size() method that it calls) does not correctly resolve possibly forwarded objects, and then crashes because it accesses the Klass*, which is overridden by the forwarding pointer.
> 
> The trouble is that, we don't need (or even can't) resolve forwarded objects during full-GC, because there we are using sliding-forwarding which is designed precisely to preserve the object's Klass* while being forwarded. Outside of full-GC we don't need to preserve the Klass* because the Klass* is preserved in the forwarded copy.
> 
> This bug only exists in Lilliput/JDK17, the code path that leads to object_iterate() (restoring self-forwarded objects at evac failure) doesn't exist anymore in later versions - it uses a better way to iterate over the relevant self-forwarded objects.
> 
> The proposed fix is to do two different loops, one that resolves the forwardees when needed, and the other one that doesn't. The alternative would have to check for the condition in_full_gc() on every object being scanned, which would affect performance. I included the test case as jtreg test.
> 
> Testing:
>  - [x] runtime/oom/TestOOM.java
>  - [x] tier1
>  - [ ] tier2

This pull request has now been integrated.

Changeset: 4e089d13
Author:    Roman Kennke <rkennke at openjdk.org>
URL:       https://git.openjdk.org/lilliput-jdk17u/commit/4e089d13d4027ccd0b4f3fb6af34e39bfd451a39
Stats:     83 lines in 4 files changed: 80 ins; 0 del; 3 mod

8303027: [Lilliput/JDK17] Correctly resolve forwarded objects in G1 heap iteration

Reviewed-by: shade

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

PR: https://git.openjdk.org/lilliput-jdk17u/pull/6


More information about the lilliput-dev mailing list