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

8349162: [lworld] VM Flags controlling flattening need an update #1345

Closed
wants to merge 8 commits into from

Conversation

fparain
Copy link
Collaborator

@fparain fparain commented Jan 31, 2025

This patch is mostly about VM flags update and internal renaming.

Renaming a few symbols to make them consistent with previous code cleanup:

  • data_for_oop() -> payload_address()
  • first_field_offset() -> payload_offset()
  • LayoutKind::PAYLOAD -> LayoutKind::BUFFERED (it is only used to describe layout in buffered values, and it makes it an adjective like the other LayoutKind values)

VM flags controlling flattening:

  • size based VM flags are removed: FlatArrayElementMaxSize, InlineFieldMaxFlatSize. For now, FlatArrayElementMaxOops is still present because some compiler tests rely on it, but it will be removed eventually
  • InlineArrayAtomicAccess has been removed, use AlwaysAtomicAccesses instead
  • new VM flags to control the generation of the new layouts: NonAtomicValueFlattening, AtomicValueFlattening, NullableValueFlattening. Note that that those flags control the generation of the layouts, not the way they are used (see flags below)
  • new VM flags to control use of flat layouts: UseFlatField, UseFlatArray

Example:
To enable flattening of nullable fields, the flag combination is -XX:+NullableValueFlattening -XX:+UseFlatField

The new VM flags controlling flattening are flags for testing or troubleshooting (they should probably be turned into DIAGNOSTIC flags before preview). They are not designed for performance tuning.

Feel free to propose new names for those flags if you think they are not explicit enough.

Thank you,

Fred


Progress

  • Change must not contain extraneous whitespace

Issue

  • JDK-8349162: [lworld] VM Flags controlling flattening need an update (Bug - P3)

Reviewers

Reviewing

Using git

Checkout this PR locally:
$ git fetch https://git.openjdk.org/valhalla.git pull/1345/head:pull/1345
$ git checkout pull/1345

Update a local copy of the PR:
$ git checkout pull/1345
$ git pull https://git.openjdk.org/valhalla.git pull/1345/head

Using Skara CLI tools

Checkout this PR locally:
$ git pr checkout 1345

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

Using diff file

Download this PR as a diff file:
https://git.openjdk.org/valhalla/pull/1345.diff

Using Webrev

Link to Webrev Comment

Sorry, something went wrong.

@bridgekeeper
Copy link

bridgekeeper bot commented Jan 31, 2025

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

@openjdk
Copy link

openjdk bot commented Jan 31, 2025

@fparain 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:

8349162: [lworld] VM Flags controlling flattening need an update

Reviewed-by: thartmann

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 lworld 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 lworld branch, type /integrate in a new comment.

@openjdk
Copy link

openjdk bot commented Jan 31, 2025

@fparain this pull request can not be integrated into lworld due to one or more merge conflicts. To resolve these merge conflicts and update this pull request you can run the following commands in the local repository for your personal fork:

git checkout renaming
git fetch https://git.openjdk.org/valhalla.git lworld
git merge FETCH_HEAD
# resolve conflicts and follow the instructions given by git merge
git commit -m "Merge lworld"
git push

@openjdk openjdk bot removed the merge-conflict label Jan 31, 2025
@fparain fparain marked this pull request as ready for review January 31, 2025 21:49
@mlbridge
Copy link

mlbridge bot commented Jan 31, 2025

Webrevs


public class TestLayoutFlags {

static class TestRunner {
Copy link
Member

Choose a reason for hiding this comment

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

Just a quick drive-by comment: Java code should use 4-whitespace indentation. Same for other files.

@openjdk openjdk bot added merge-conflict and removed ready labels Feb 4, 2025
@openjdk openjdk bot added ready and removed merge-conflict labels Feb 4, 2025
@fparain
Copy link
Collaborator Author

fparain commented Feb 4, 2025

After a discussion with Tobias, we agreed on a more consistent scheme for flags names:

  • UseFlatArray -> UseArrayFlattening
  • UseFlatField -> UseFieldFlattening
  • NonAtomicValueFlattening -> UseNonAtomicValueFlattening
  • AtomicValueFlattening -> UseAtomicValueFlattening
  • NullableValueFlattening -> UseNullableValueFlattening

Copy link
Member

@TobiHartmann TobiHartmann left a comment

Choose a reason for hiding this comment

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

Looks good!

@fparain
Copy link
Collaborator Author

fparain commented Feb 7, 2025

Thank you for the reviews.

@fparain
Copy link
Collaborator Author

fparain commented Feb 7, 2025

/integrate

@openjdk
Copy link

openjdk bot commented Feb 7, 2025

Going to push as commit 9786bf3.

@openjdk openjdk bot added the integrated label Feb 7, 2025
@openjdk openjdk bot closed this Feb 7, 2025
@openjdk openjdk bot removed ready rfr labels Feb 7, 2025
@openjdk
Copy link

openjdk bot commented Feb 7, 2025

@fparain Pushed as commit 9786bf3.

💡 You may see a message that your pull request was closed with unmerged commits. This can be safely ignored.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Development

Successfully merging this pull request may close these issues.

None yet

3 participants