-
Notifications
You must be signed in to change notification settings - Fork 6.2k
8347794: RISC-V: Add Zfhmin - Float cleanup #23130
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 rehn! A progress list of the required criteria for merging this PR into |
|
@robehn 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 1 new commit pushed to the
Please see this link for an up-to-date comparison between the source branch of this pull request and the ➡️ To integrate this PR with the above commit message to the |
Webrevs
|
RealFYang
left a comment
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 for making this cleanup! I only have one minor comment.
Thanks! |
RealFYang
left a comment
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 to me.
Thank you! |
RealFYang
left a comment
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 for the update. One minor question remain.
Hamlin-Li
left a comment
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.
Thank you! |
|
Thanks guys! /integrate |
|
Going to push as commit fb43849.
Your commit was automatically rebased without conflicts. |
Hey, please consider.
I'm looking making RVA23 support complete and I was looking into adding Zfhmin.
I notice Zfh instructions didn't have any asserts checking if this extensions was enabled.
I then notice that we had the inferior instruction description using a funct7 instead of FMT + funct5.
We also had this same format repeated many times.
This patch takes all instructions format duplicates and replaces them with 'fp_base'.
fadd_s is thus described in code as:
fp_base<S_32_sp, 0b00000>(Rd, Rs1, Rs2, rm);Instead of:
INSN(fadd_s, 0b1010011, 0b0000000);It then moves zfh/zfhmin to a sepererate section and assert checks them.
Also as a bonus RoundingMode uses camel case while fclass_mask C, style.
So I changed fclass_mask to FClassBit, now thinking about it not sure if it should be bit or mask.
As in the context of the instruction fclass it is a bit, but when using the helpers e.g. zero it's a mask.
Tested:
jdk/java/lang/Math
jdk/java/util/Formatter/
jdk/java/lang/Float/
jdk/java/lang/Double/
hotspot/jtreg/compiler/floatingpoint/
hotspot/jtreg/compiler/c2/FloatingPointFoldingTest.java
hotspot/jtreg/compiler/eliminateAutobox/
hotspot/jtreg/vmTestbase/jit/
And tier1 twice, no FP issues. (Using UseZfh/min)
Thanks, Robbin
Progress
Issue
Reviewers
Reviewing
Using
gitCheckout this PR locally:
$ git fetch https://git.openjdk.org/jdk.git pull/23130/head:pull/23130$ git checkout pull/23130Update a local copy of the PR:
$ git checkout pull/23130$ git pull https://git.openjdk.org/jdk.git pull/23130/headUsing Skara CLI tools
Checkout this PR locally:
$ git pr checkout 23130View PR using the GUI difftool:
$ git pr show -t 23130Using diff file
Download this PR as a diff file:
https://git.openjdk.org/jdk/pull/23130.diff
Using Webrev
Link to Webrev Comment