-
Notifications
You must be signed in to change notification settings - Fork 6.1k
JDK-8326974: ODR violation in macroAssembler_aarch64.cpp #18056
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
Conversation
👋 Welcome back aph! A progress list of the required criteria for merging this PR into |
@theRealAph The following label will be automatically applied to this pull request:
When this pull request is ready to be reviewed, an "RFR" email will be sent to the corresponding mailing list. If you would like to change these labels, use the /label pull request command. |
Webrevs
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good.
@theRealAph 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:
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 11 new commits pushed to the
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 |
Looks like this is causing Actions failures |
I think the patch suggested in bug was better, and in line with Hotspot Style Guide, which says: "Global names must be unique, to avoid One Definition Rule (ODR) violations. A common prefixing scheme for related global names is often used. (This is instead of using namespaces, which are mostly avoided in HotSpot.)" |
See also the section "Namespaces", and in particular the specific admonition against using anonymous namespaces. |
Egad! the action failure messages on Windows include this: Linking jvm.dll So, clearly something in the guts of the (Windows) build does not like anonymous name spaces. |
Mmm, that's a shame. It seems to me that an anonymous namespace is best here, given that the classes should not be visible outside this translation unit, but implementation bugs in debuggers and linkers are a show stopper. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks fine.
@@ -148,6 +148,7 @@ extern "C" void disnm(intptr_t p); | |||
// strictly should be 64 bit movz #imm16<<0 | |||
// 110___10100 (i.e. requires insn[31:21] == 11010010100) | |||
// | |||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is this newline addition necessary?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Also looks good. If the actions fail with this version then surely it has to be a case of "Houston we have a problem . . . with the actions".
How about making Decoder into a nested class of MacroAssembler? You just need a forward declaration in macroAssembler_aarch64.hpp. |
I completely agree :( My experience on a different project was that anonymous namespaces had some significant I haven't looked at how well "modern" debugger versions cope with anonymous namespaces. It seems like problems |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM.
It seemed to me that macOS ARM64 also experienced failures earlier, not just Windows, unless the test failure is unrelated? (I'm not very familiar with the JDK's testing framework) I could help look into it, since I primarily develop on Windows, but I'd probably need time since I'm a little busy at the moment |
That would have been an excellent thing to do, and I didn't think about it, but please let this patch stand. We've spent enough time on it already, I think. |
/integrate |
Going to push as commit b972997.
Your commit was automatically rebased without conflicts. |
@theRealAph Pushed as commit b972997. 💡 You may see a message that your pull request was closed with unmerged commits. This can be safely ignored. |
FWIW, the make files strip these symbols on Windows (for some reason). I've hit a similar problem when we started to use lambdas in hotspot: |
This is a slightly different patch from the one suggested by the bug reporter. It doesn't make any sense to export those classes globally, so I've given them internal linkage.
Progress
Issue
Reviewers
Reviewing
Using
git
Checkout this PR locally:
$ git fetch https://git.openjdk.org/jdk.git pull/18056/head:pull/18056
$ git checkout pull/18056
Update a local copy of the PR:
$ git checkout pull/18056
$ git pull https://git.openjdk.org/jdk.git pull/18056/head
Using Skara CLI tools
Checkout this PR locally:
$ git pr checkout 18056
View PR using the GUI difftool:
$ git pr show -t 18056
Using diff file
Download this PR as a diff file:
https://git.openjdk.org/jdk/pull/18056.diff
Webrev
Link to Webrev Comment