Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Unconditionally preserve all marks during GC #6

Closed
wants to merge 2 commits into from

Conversation

rkennke
Copy link
Collaborator

@rkennke rkennke commented May 18, 2021

When storing the Klass* in the object header, we need to preserve all marks during GC, because otherwise we'd be loosing the Klass*.

This means that the PreservedMarks structure is repurposed as a full (reverse) forwarding table. Reverse because instead of mapping object->forwardee, and leaving the mark alone, it maps object->mark and stores the forwardee in the header, which might be a better idea because it means we can have a most compact table.

Shenandoah doesn't have this problem, except during full-GC, and ZGC has its own forwarding table.

This change will likely affect performance, but I haven't checked by how much, yet. It's probably more useful to see this in the context of actually reduced header.
Testing:

  • tier1
  • tier2

Progress

  • Change must not contain extraneous whitespace
  • Change must be properly reviewed

Reviewers

Reviewing

Using git

Checkout this PR locally:
$ git fetch https://git.openjdk.java.net/lilliput pull/6/head:pull/6
$ git checkout pull/6

Update a local copy of the PR:
$ git checkout pull/6
$ git pull https://git.openjdk.java.net/lilliput pull/6/head

Using Skara CLI tools

Checkout this PR locally:
$ git pr checkout 6

View PR using the GUI difftool:
$ git pr show -t 6

Using diff file

Download this PR as a diff file:
https://git.openjdk.java.net/lilliput/pull/6.diff

@bridgekeeper
Copy link

bridgekeeper bot commented May 18, 2021

👋 Welcome back rkennke! A progress list of the required criteria for merging this PR into master will be added to the body of your pull request. There are additional pull request commands available for use with this pull request.

@openjdk openjdk bot added the rfr Pull request is ready for review label May 18, 2021
@mlbridge
Copy link

mlbridge bot commented May 18, 2021

Webrevs

@rkennke rkennke requested review from shipilev and stefank May 18, 2021 21:01
Copy link
Member

@shipilev shipilev left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I have questions about the asserts.

Copy link
Member

@shipilev shipilev left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Looks fine to me as experimental code.

@openjdk
Copy link

openjdk bot commented May 19, 2021

@rkennke This change now passes all automated pre-integration checks.

ℹ️ This project also has non-automated pre-integration requirements. Please see the file CONTRIBUTING.md for details.

After integration, the commit message for the final commit will be:

Unconditionally preserve all marks during GC

Reviewed-by: shade

You can use pull request commands such as /summary, /contributor and /issue to adjust it as needed.

At the time when this comment was updated there had been no new commits pushed to the master branch. If another commit should be pushed before you perform the /integrate command, your PR will be automatically rebased. If you prefer to avoid any potential automatic rebasing, please check the documentation for the /integrate command for further details.

➡️ To integrate this PR with the above commit message to the master branch, type /integrate in a new comment.

@openjdk openjdk bot added the ready Pull request is ready to be integrated label May 19, 2021
@rkennke
Copy link
Collaborator Author

rkennke commented May 19, 2021

Looks fine to me as experimental code.

Thanks.
However, I noticed that we (will) have another problem during GC: For sliding compaction, while objects are forwarded, we will also require the Klass* at the same time e.g. for heap traversal. Which means, we cannot simply override the Klass* in the header, not even temporarily. Solutions to this could be avoiding klass-based traversal (e.g. using bitmaps, but serial/parallel GC don't use a bitmap), or an external forwarding table. If we go for the forwarding table, which is what I'm currently leaning to, we don't need the preserved-marks anymore. I need to think this through a little bit.

@rkennke rkennke mentioned this pull request May 21, 2021
4 tasks
@rkennke
Copy link
Collaborator Author

rkennke commented Aug 19, 2021

I am closing this because it is no longer needed.

@rkennke rkennke closed this Aug 19, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
ready Pull request is ready to be integrated rfr Pull request is ready for review
2 participants