-
Notifications
You must be signed in to change notification settings - Fork 5.6k
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
8324304: RISC-V: add hw probe flags #17519
Conversation
👋 Welcome back mli! A progress list of the required criteria for merging this PR into |
@Hamlin-Li 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.
LGTM. Any test performed?
BTW: Seems that probe for option UseZvkn
could also be added which consists of Zvkned
, Zvknhb
, Zvkb
and Zvkt
. I see these are also there in https://github.com/torvalds/linux/blob/master/arch/riscv/include/uapi/asm/hwprobe.h.
@Hamlin-Li 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 60 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 |
PS: I just realized that this will auto-enable experimental RV-specific JVM options like |
I just tested on
output is as below:
|
Yes, I tested |
Say, when you are running some latest kernel with the hwprobe capability on some new RISC-V hardwares with those extensions. |
It makes sense, removed UPDATE_DEFAULT for these extensions. |
Thanks for the update. Would you mind one more tweak? I think we should also remove the auto-enablement of |
I'm not sure, as these vm options (UseZic64b, UseZicbom, UseZicbop and UseZihintpause) are not So, I think it's good to keep auto-enablement of Zicboz/Ztso/Zacas in vm_version_riscv.hpp, and remove the enable code of these options in RiscvHwprobe::add_features_from_query_result() in this patch? |
Sorry, I missed that before. I think you are right.
Yeah, that will be more consistent. |
Updated, please take a look again. |
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.
Thanks.
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.
Seems alright, thanks!
Thanks @RealFYang @robehn for your reviewing. /integrate |
Going to push as commit b39b876.
Your commit was automatically rebased without conflicts. |
@Hamlin-Li Pushed as commit b39b876. 💡 You may see a message that your pull request was closed with unmerged commits. This can be safely ignored. |
Hi,
Can you help to review this simple patch to add hw probe flags?
Thanks!
Per https://github.com/torvalds/linux/blob/master/arch/riscv/include/uapi/asm/hwprobe.h, several extensions were already added in kernel code, we have several intrinsics or funtionalities depends on these extension, it's ready to add these hw probe flags already used in jdk into jdk code.
Progress
Issue
Reviewers
Reviewing
Using
git
Checkout this PR locally:
$ git fetch https://git.openjdk.org/jdk.git pull/17519/head:pull/17519
$ git checkout pull/17519
Update a local copy of the PR:
$ git checkout pull/17519
$ git pull https://git.openjdk.org/jdk.git pull/17519/head
Using Skara CLI tools
Checkout this PR locally:
$ git pr checkout 17519
View PR using the GUI difftool:
$ git pr show -t 17519
Using diff file
Download this PR as a diff file:
https://git.openjdk.org/jdk/pull/17519.diff
Webrev
Link to Webrev Comment