-
Couldn't load subscription status.
- Fork 6.1k
8255562: delete UseRDPCForConstantTableBase #949
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 xliu! A progress list of the required criteria for merging this PR into |
Webrevs
|
|
/csr needed |
|
@vidmik has indicated that a compatibility and specification (CSR) request is needed for this pull request. |
mark UseRDPCForConstantTableBase is obsoletd in jdk16 and will expire in jdk17.
|
I made the hotspot cmdline flag The reason I modified |
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.
Hi Xin,
you also have to remove the option from c2_globals.hpp. Also, please add the line
{ "UseRDPCForConstantTableBase", JDK_Version::undefined(), JDK_Version::jdk(16), JDK_Version::jdk(17) },
unconditionally (e.g. after the line for the Debugging option). You've added it to the #ifndef COMPILER2 section. I suppose that's the reason why you haven't seen the deprecation warning.
I think if you add the option unconditionally to special_jvm_flags you shouldn't need any changes to Arguments::handle_aliases_and_deprecation.
You can have a look at 8252889: Obsolete -XX:+InsertMemBarAfterArraycopy for an example.
revert the change of Arguments::handle_aliases_and_deprecation. Arguments::process_argument can handle obsoleted arguments.
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.
Thnaks Xin. Looks good to me now.
|
@simonis Thanks! |
|
@navyxliu This PR has not yet been marked as ready for integration. |
|
@navyxliu , you can't push this before the CSR has not been approved. |
|
@navyxliu 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 32 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. As you do not have Committer status in this project an existing Committer must agree to sponsor your change. Possible candidates are the reviewers of this PR (@TobiHartmann, @simonis) but any other Committer may sponsor as well. ➡️ To flag this PR as ready for integration with the above commit message, type |
|
/sponsor |
|
@phohensee The change author (@navyxliu) must issue an |
|
/integrate |
|
/sponsor |
|
@phohensee @navyxliu Since your change was applied there have been 32 commits pushed to the
Your commit was automatically rebased without conflicts. Pushed as commit 6a183fb. 💡 You may see a message that your pull request was closed with unmerged commits. This can be safely ignored. |
UseRDPCForConstantTableBase was a SPARC-exclusive flag. Sparc has been removed
from hotspot, so remove this flag.
Progress
Testing
Issue
Reviewers
Download
$ git fetch https://git.openjdk.java.net/jdk pull/949/head:pull/949$ git checkout pull/949