-
Notifications
You must be signed in to change notification settings - Fork 5.8k
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
8312121: Fix -Wconversion warnings in tribool.hpp #14892
Conversation
👋 Welcome back coleenp! A progress list of the required criteria for merging this PR into |
Webrevs
|
@@ -40,11 +40,14 @@ class TriBool{ | |||
|
|||
public: | |||
TriBool() : _value(0) {} | |||
TriBool(bool value) : _value(((u1)value) | 2) {} | |||
TriBool(bool value) : _value(value) { | |||
_value = _value | 2; |
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.
You can also do like line 39 and use (u1)(expr) & 3
or ((expr & 3u)
also seems to work.
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.
Or cast the 2
to (u1)2
?
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.
It does seem strange that this code is using a bit-field, but still using & | and shift. Why not represent the high and low bit with two separate bit-fields of width 1?
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.
I tried to change the class to be int value : 1, init: 1; the changes got a bit ugly when fixing the TriBoolArray functions.
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.
expr & 3 is the wrong expression. This wants to set the 'not-default' bit, not and in the 'not-default' bit if it's set in the value. Thankfully, tribool has a gtest.
tribool.hpp:43:43: warning: conversion from 'unsigned int' to 'unsigned char:2' may change value [-Wconversion]
43 | TriBool(bool value) : _value((u1)value | (u1)2) {
| ~~~~~~~~~~~^~~~~~~
Casting 2 to u1 doesn't work because | still promotes to unsigned int.
@coleenp 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 184 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 |
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.
Okay. Beats me why the compiler can't tell that the result of the OR fits in two bits without having to do the & 3
.
Thanks
This doesn't compile on Windows, without a whole lot of other casts. I like my solution better now. Or I'll throw in more u1 casts. 🤢 |
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.
To me the fact we have so much trouble placating the compilers suggests that we are doing something wrong/broken here! :(
Is the & 3
still needed with the extra u1 cast? I'm gonna guess yes as a u1 doesn't fit in a uchar:2 any better than a uint does.
We don't need the & 3 if we do something like:
|
Good question. I got this to work:
but it requires gcc 11.3. |
That seems a lot better/clearer than casts and bit-wise operations. |
I like this version: |
My first version did the explicit | 2 separately and if you don't like all the casts, I think that's the most explicit version. It sets the value, then sets the top bit that says it's not the default value. |
V1 looks good and seems to produce identical code. |
Thanks, Dean. |
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.
Maybe somewhere a comment could be added like:
// Update _value in two steps to avoid awkward casts needed to silence conversion warnings
otherwise someone is bound to rewrite those two lines as one at some point in the future.
Thanks.
@@ -40,11 +40,14 @@ class TriBool{ | |||
|
|||
public: | |||
TriBool() : _value(0) {} | |||
TriBool(bool value) : _value(((u1)value) | 2) {} | |||
TriBool(bool value) : _value(value) { | |||
_value = _value | 2; // set to not-default |
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.
Why not |=
here?
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.
I was trying different versions to see if |= would give a warning.
This version still looks good. If you want to do the |= in only one place, you could do it in TriBool operator = and have the other two places use TriBool operator =. |
TriBool(bool value) : _value(value) { | ||
// set to not-default in separate step to avoid conversion warnings | ||
_value |= 2; |
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.
TriBool(bool value) : _value(value) { | |
// set to not-default in separate step to avoid conversion warnings | |
_value |= 2; | |
TriBool(bool value) { | |
*this = value; |
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 suggestion but this makes me squint to try to figure out what it does and why it's correct.
_value = newval; | ||
_value |= 2; // set to not-default |
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.
_value = newval; | |
_value |= 2; // set to not-default | |
TriBool::operator=(newval); |
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.
I don't think this is more readable. I believe you that it doesn't give -Wconversion warnings though.
Thanks for all the work reviewing Dean and David. |
Going to push as commit 47c4b99.
Your commit was automatically rebased without conflicts. |
Assigning _value first, and then doing _value | 2 doesn't get -Wconversion warnings. Also, reduced include file inclusion a little.
Tested with tier1 on linux-x64-debug, windows-x64-debug, macos-aarch64-debug
Progress
Issue
Reviewers
Reviewing
Using
git
Checkout this PR locally:
$ git fetch https://git.openjdk.org/jdk.git pull/14892/head:pull/14892
$ git checkout pull/14892
Update a local copy of the PR:
$ git checkout pull/14892
$ git pull https://git.openjdk.org/jdk.git pull/14892/head
Using Skara CLI tools
Checkout this PR locally:
$ git pr checkout 14892
View PR using the GUI difftool:
$ git pr show -t 14892
Using diff file
Download this PR as a diff file:
https://git.openjdk.org/jdk/pull/14892.diff
Webrev
Link to Webrev Comment