jdk icon indicating copy to clipboard operation
jdk copied to clipboard

8292203: AArch64: Represent Registers as values

Open iwanowww opened this issue 3 years ago • 6 comments

(It's a PR dependent on #9815.)

Along with x86 (JDK-8292153), I propose to refactor Register classes on AArch64 and migrate away from pointer-based representation.

The motivation is the same: improve compile-time checks and avoid ambiguities between overloads due to implicit conversions between pointers and integral types.

Proposed change hides pointer representation behind value class.

Pointer-based representation is kept to avoid massive migration of users (from -> to .) and to enable incremental migration on per-platform basis (pointer-based representation is assumed in shared code).

Code quality improves: GCC: https://godbolt.org/z/r6G36facj Clang: https://godbolt.org/z/x5oPdYEPM

(I noticed one downside: slowdebug builds become slower, because operator-> isn't inlined there. If it becomes a problem, migrating performance-sensitive places from -> to . should solve the problem.)

Testing: hs-tier1 - hs-tier5

PS: a number of cleanups are incorporated. In particular, I decided to expand all macros from register.hpp because IMO they add confusion rather than improve readability.


Progress

  • [x] Change must be properly reviewed (1 review required, with at least 1 Reviewer)
  • [x] Change must not contain extraneous whitespace
  • [x] Commit message must refer to an issue

Issue

Reviewers

Reviewing

Using git

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

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

Using Skara CLI tools

Checkout this PR locally:
$ git pr checkout 9826

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

Using diff file

Download this PR as a diff file:
https://git.openjdk.org/jdk/pull/9826.diff

iwanowww avatar Aug 10 '22 21:08 iwanowww

:wave: Welcome back vlivanov! 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.

bridgekeeper[bot] avatar Aug 11 '22 04:08 bridgekeeper[bot]

@iwanowww The following labels will be automatically applied to this pull request:

  • hotspot
  • shenandoah

When this pull request is ready to be reviewed, an "RFR" email will be sent to the corresponding mailing lists. If you would like to change these labels, use the /label pull request command.

openjdk[bot] avatar Aug 11 '22 05:08 openjdk[bot]

Webrevs

mlbridge[bot] avatar Aug 11 '22 05:08 mlbridge[bot]

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

8292203: AArch64: Represent Registers as values

Reviewed-by: kvn, aph

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 16 new commits pushed to the master branch:

  • 5a20bc44b1fb4edb6ab714191cdc6c3f33ac9836: 8292715: Cleanup Problemlist
  • 7b81a9c75d60f6eb2727515bacfffcf7cf15e128: 8289764: gc/lock tests failed with "OutOfMemoryError: Java heap space: failed reallocation of scalar replaced objects"
  • 76ee5495cd00f5546a5748051cc36965a8e936db: 8292329: Enable CDS shared heap for zero builds
  • 14623c6087105a4228ff190e9e27372729b2bc4b: 8292739: Invalid legacy entries may be returned by Provider.getServices() call
  • 568be58e8521e5e87baca1872ba8cc1941607bb7: 8290469: Add new positioning options to PassFailJFrame test framework
  • 69448f9c1a9b123be8ef63bb039111a8976a8da6: 8292679: Simplify thread creation in gtest and port 2 tests to new way
  • 3c2289d65157fca3f303d2fe703b31ef53b2f5bf: 8215916: The failure reason of an optional JAAS LoginModule is not logged
  • 71ab5c95af28497fb31aba8ba9597da71bc4d3d5: 8292816: GPL Classpath exception missing from assemblyprefix.h
  • c0623972cffdbcd7f80e84a1ec344fd382a4a5cc: 8292713: Unsafe.allocateInstance should be intrinsified without UseUnalignedAccesses
  • a45a4b9465d7d01715425000c4fd47c0aa3e76ca: 8292194: G1 nmethod entry barrier disarm value wraps around too early
  • ... and 6 more: https://git.openjdk.org/jdk/compare/fe0544f8a7db5bf0e93313e16b54b31bcdff946a...master

As there are no conflicts, your changes will automatically be rebased on top of these commits when integrating. If you prefer to avoid this 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[bot] avatar Aug 11 '22 19:08 openjdk[bot]

Pointer-based representation is kept to avoid massive migration of users (from -> to .) and to enable incremental migration on per-platform basis (pointer-based representation is assumed in shared code).

I don't really understand this part. Can we overload the -> operator instead? I believe this works:

Register* operator->() {
    return this;
}

merykitty avatar Aug 15 '22 10:08 merykitty

Pointer-based representation is kept to avoid massive migration of users (from -> to .) and to enable incremental migration on per-platform basis (pointer-based representation is assumed in shared code).

I don't really understand this part. Can we overload the -> operator instead? I believe this works:

Register* operator->() {
    return this;
}

I tried something like that before, and got poor code quality.

theRealAph avatar Aug 15 '22 10:08 theRealAph

@iwanowww this pull request can not be integrated into master 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 rwrapper.aarch64
git fetch https://git.openjdk.org/jdk master
git merge FETCH_HEAD
# resolve conflicts and follow the instructions given by git merge
git commit -m "Merge master"
git push

openjdk[bot] avatar Aug 17 '22 18:08 openjdk[bot]

Thanks for the review, Vladimir.

Anybody else planning to review? Otherwise, I'll push it tomorrow.

iwanowww avatar Aug 24 '22 23:08 iwanowww

Thanks for the review, Andrew.

/integrate

iwanowww avatar Aug 25 '22 16:08 iwanowww

Going to push as commit 2fe0ce01485d7b84dc109d3d4f24bdd908c0e7cf. Since your change was applied there have been 22 commits pushed to the master branch:

  • 251bff6beeafcd98824dab60e9831c0175fe0689: 8292877: java/util/concurrent/atomic/Serial.java uses {Double,Long}Accumulator incorrectly
  • f57d34242c9b47936d137589fc75ab794d39a9d1: 8292867: RISC-V: Simplify weak CAS return value handling
  • 88af204027ec51d6e13516fa61e1c217a9445c62: 8292494: Ensure SystemDictionary::set_platform_loader and set_system_loader are called only once
  • 8d3d4397ccbfadab99fe572f0d0a8504d268a0dc: 8292903: enhance round_up_power_of_2 assertion output
  • 054c23f484522881a0879176383d970a8de41201: 8290025: Remove the Sweeper
  • dc7e2562f47edb1489f2fb0c8d6ec847fb7a6dc5: 8290376: G1: Refactor G1MMUTracker::when_sec
  • 5a20bc44b1fb4edb6ab714191cdc6c3f33ac9836: 8292715: Cleanup Problemlist
  • 7b81a9c75d60f6eb2727515bacfffcf7cf15e128: 8289764: gc/lock tests failed with "OutOfMemoryError: Java heap space: failed reallocation of scalar replaced objects"
  • 76ee5495cd00f5546a5748051cc36965a8e936db: 8292329: Enable CDS shared heap for zero builds
  • 14623c6087105a4228ff190e9e27372729b2bc4b: 8292739: Invalid legacy entries may be returned by Provider.getServices() call
  • ... and 12 more: https://git.openjdk.org/jdk/compare/fe0544f8a7db5bf0e93313e16b54b31bcdff946a...master

Your commit was automatically rebased without conflicts.

openjdk[bot] avatar Aug 25 '22 16:08 openjdk[bot]

@iwanowww Pushed as commit 2fe0ce01485d7b84dc109d3d4f24bdd908c0e7cf.

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

openjdk[bot] avatar Aug 25 '22 16:08 openjdk[bot]