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

8297912: HotSpot Style Guide should permit alignas (Second Proposal Attempt) #11446

Closed
wants to merge 3 commits into from

Conversation

TheShermanTanker
Copy link
Contributor

@TheShermanTanker TheShermanTanker commented Dec 1, 2022

8252584 was integrated too early due to a mistake on my part, we should redo it and go through the proper approval process this time

(The changes in this commit are exactly identical to 8252584)


Progress

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

Issue

  • JDK-8297912: HotSpot Style Guide should permit alignas (Second Proposal Attempt)

Reviewers

Reviewing

Using git

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

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

Using Skara CLI tools

Checkout this PR locally:
$ git pr checkout 11446

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

Using diff file

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

@bridgekeeper
Copy link

bridgekeeper bot commented Dec 1, 2022

👋 Welcome back jwaters! 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 changed the title 8297912 8297912: Redo 8252584 with the proper approval Dec 1, 2022
@openjdk openjdk bot added the rfr Pull request is ready for review label Dec 1, 2022
@openjdk
Copy link

openjdk bot commented Dec 1, 2022

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

  • build
  • hotspot

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 openjdk bot added hotspot hotspot-dev@openjdk.org build build-dev@openjdk.org labels Dec 1, 2022
@TheShermanTanker
Copy link
Contributor Author

/label remove build

@openjdk openjdk bot removed the build build-dev@openjdk.org label Dec 1, 2022
@openjdk
Copy link

openjdk bot commented Dec 1, 2022

@TheShermanTanker
The build label was successfully removed.

@mlbridge
Copy link

mlbridge bot commented Dec 1, 2022

Webrevs

@tstuefe
Copy link
Member

tstuefe commented Dec 1, 2022

Hi Julian,

could you give this PR/JBS please a speaking name, e.g. "HotSpot Style Guide should permit alignas
(second attempt)". Nobody remembers all JBS issue numbers :)

Also, @rose00 voiced concerns in the original PR (#11315 (comment)) which should be addressed first. I cautiously share his concerns for the moment.

Cheers, Thomas

@TheShermanTanker TheShermanTanker changed the title 8297912: Redo 8252584 with the proper approval 8297912: Redo 8252584: HotSpot Style Guide should permit alignas with the proper approval Dec 1, 2022
@kimbarrett
Copy link

could you give this PR/JBS please a speaking name, e.g. "HotSpot Style Guide should permit alignas (second attempt)". Nobody remembers all JBS issue numbers :)

+1

Also, @rose00 voiced concerns in the original PR (#11315 (comment)) which should be addressed first. I cautiously share his concerns for the moment.

I had somewhat similar concerns to @rose00 at one point. We have
ATTRIBUTE_ALIGNED for this sort of thing; is alignas actually better? I
think it is, though perhaps weakly. It's a bit shorter and less noisy (which
some might not consider a positive). It is in most respects equivalent to our
macro, and will work for other compilers (I think there are some) without
needing to specialize the macro.

The proposal seems like a lot of words, describing significant restrictions.
The thing is, very nearly all of those words apply to our ATTRIBUTE_ALIGNED
macro too, but aren't written down anywhere.

So I approve of this change, though I won't be heartbroken if it is rejected.
If it's rejected, I'll mine it for documentation comments for our macro.

Copy link

@kimbarrett kimbarrett 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.

@openjdk
Copy link

openjdk bot commented Dec 2, 2022

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

8297912: HotSpot Style Guide should permit alignas (Second Proposal Attempt)

Reviewed-by: kbarrett, stuefe, kvn

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

  • 0ef3539: 8298416: Console should be declared sealed
  • 831b35f: 7093322: (fs spec) Files.newBufferedWriter should be clear when coding errors are detected
  • 0288210: 8298859: ProblemList java/awt/Mouse/EnterExitEvents/DragWindowTest.java on macosx-all
  • b17c524: 8298059: Linked stack watermarks don't support nesting
  • 98fa48c: 8298093: improve cleanup and error handling of awt_parseColorModel in awt_parseImage.c
  • 5f63f7a: 8298726: (fs) Change PollingWatchService to record last modified time as FileTime rather than milliseconds
  • 3ae7187: 8298498: sun/net/www/http/KeepAliveCache/B8291637.java fails with "Server exception terminating: java.net.SocketException: Socket closed"
  • b9074fa: 8298249: Excessive memory allocation in CipherInputStream AEAD decryption
  • 10bc86c: Merge
  • 80cadd4: 8298785: gc/TestFullGCCount.java fails with "invalid boolean value: null' for expression vm.opt.ExplicitGCInvokesConcurrent'"
  • ... and 191 more: https://git.openjdk.org/jdk/compare/a71d91b96f7936dd1b84e4c1e167e2e5fa4ad4b1...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 openjdk bot added the ready Pull request is ready to be integrated label Dec 2, 2022
@TheShermanTanker TheShermanTanker changed the title 8297912: Redo 8252584: HotSpot Style Guide should permit alignas with the proper approval 8297912: HotSpot Style Guide should permit alignas (Attempt #2) Dec 2, 2022
@TheShermanTanker
Copy link
Contributor Author

Also, @rose00 voiced concerns in the original PR (#11315 (comment)) which should be addressed first. I cautiously share his concerns for the moment.

I actually missed John's concerns, but it seems like @kimbarrett has already beaten me to it in remarking that there's almost no difference (if at all) between alignas and the different syntax ATTRIBUTE_ALIGNED expands to, except for the former being a little stricter in certain cases (but this is not always a bad thing). For what it's worth though, Visual C++ does explicitly mention that both the __declspec and alignas are identical, and strongly encourages using the C++ keyword instead

I feel like this is one of those instances where there isn't much that would make one lean more towards either rejecting or accepting the change, but alignas is somewhat better defined than the compiler extensions, which is (at least to me) a small win

@TheShermanTanker TheShermanTanker changed the title 8297912: HotSpot Style Guide should permit alignas (Attempt #2) 8297912: HotSpot Style Guide should permit alignas (Second Proposal Attempt) Dec 2, 2022
@vnkozlov
Copy link
Contributor

vnkozlov commented Dec 2, 2022

I would vote for using C++ feature which provides similar functionality just to avoid supporting our own implementation.
To have our own implementation was justified before as John R. commented.
That is assuming ALL C++ compilers we use today to compile HotSpot code do exactly the same thing.
So before approving this change we need to make sure we (Oracle and OpenJDK community) test #11431 on all our platforms.

@kimbarrett
Copy link

kimbarrett commented Dec 8, 2022

A benefit of alignas is that the argument can be a type, in which case it's
alignment is used. gcc's __attribute__((aligned(N))) requires N be the
alignment value.

One could obtain that from a type using alignof(T) or
std::alignment_of<T> (though alignof is not yet approved for use in
HotSpot - JDK-8274400).

Also, the alternative of using std::aligned_storage or std::aligned_union has
problems - JDK-8298399.

Another advantage compared to our macro workaround is that this isn't
something that can be optional for a port. Some uses may really require the
alignment request be honored, such as aligning a char[] for use as aligned
storage. If a port doesn't define ATTRIBUTE_ALIGNED (so uses the empty
default) then we can't use it for that purpose in shared code. (Note that
globalDefinitions_xlc.hpp does NOT define this macro. That's potentially a
bug.)

@kimbarrett
Copy link

The MSVC implementation of ATTRIBUTE_ALIGNED using __declspec(align(N)) has the same
limitation of needing the alignment value, and not being usable for types.

I happened to run into both the limitation to alignment values problem and
the lack of an XLC definition for ATTRIBUTE_ALIGNED today.

Copy link
Member

@tstuefe tstuefe left a comment

Choose a reason for hiding this comment

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

Okay, I'm convinced.

@TheShermanTanker
Copy link
Contributor Author

Don't mind me, just making it look a little better

@TheShermanTanker
Copy link
Contributor Author

TheShermanTanker commented Dec 15, 2022

I'll leave integration of this up to someone else from the HotSpot Group, for convenience

@TheShermanTanker
Copy link
Contributor Author

/integrate delegate

@openjdk openjdk bot added the delegated label Dec 15, 2022
@openjdk
Copy link

openjdk bot commented Dec 15, 2022

@TheShermanTanker Integration of this pull request has been delegated and may be completed by any project committer using the /integrate pull request command.

Copy link
Contributor

@vnkozlov vnkozlov left a comment

Choose a reason for hiding this comment

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

Per process I approve these changes.

@vnkozlov
Copy link
Contributor

/integrate

@openjdk
Copy link

openjdk bot commented Dec 15, 2022

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

  • 0ef3539: 8298416: Console should be declared sealed
  • 831b35f: 7093322: (fs spec) Files.newBufferedWriter should be clear when coding errors are detected
  • 0288210: 8298859: ProblemList java/awt/Mouse/EnterExitEvents/DragWindowTest.java on macosx-all
  • b17c524: 8298059: Linked stack watermarks don't support nesting
  • 98fa48c: 8298093: improve cleanup and error handling of awt_parseColorModel in awt_parseImage.c
  • 5f63f7a: 8298726: (fs) Change PollingWatchService to record last modified time as FileTime rather than milliseconds
  • 3ae7187: 8298498: sun/net/www/http/KeepAliveCache/B8291637.java fails with "Server exception terminating: java.net.SocketException: Socket closed"
  • b9074fa: 8298249: Excessive memory allocation in CipherInputStream AEAD decryption
  • 10bc86c: Merge
  • 80cadd4: 8298785: gc/TestFullGCCount.java fails with "invalid boolean value: null' for expression vm.opt.ExplicitGCInvokesConcurrent'"
  • ... and 191 more: https://git.openjdk.org/jdk/compare/a71d91b96f7936dd1b84e4c1e167e2e5fa4ad4b1...master

Your commit was automatically rebased without conflicts.

@openjdk openjdk bot added the integrated Pull request has been integrated label Dec 15, 2022
@openjdk openjdk bot closed this Dec 15, 2022
@openjdk openjdk bot removed ready Pull request is ready to be integrated rfr Pull request is ready for review delegated labels Dec 15, 2022
@openjdk
Copy link

openjdk bot commented Dec 15, 2022

@vnkozlov Pushed as commit ae8988e.

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

@TheShermanTanker
Copy link
Contributor Author

@kimbarrett Now that alignas has officially been approved, is there anything I need to do with 8250269: Replace ATTRIBUTE_ALIGNED with alignas? I'm not sure if there's anything else needed on my part for that issue

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
hotspot hotspot-dev@openjdk.org integrated Pull request has been integrated
Development

Successfully merging this pull request may close these issues.

4 participants