Skip to content
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

Closed
wants to merge 7 commits into from

Conversation

coleenp
Copy link
Contributor

@coleenp coleenp commented Jul 14, 2023

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

  • Change must be properly reviewed (1 review required, with at least 1 Reviewer)
  • Change must not contain extraneous whitespace
  • Commit message must refer to an issue

Issue

  • JDK-8312121: Fix -Wconversion warnings in tribool.hpp (Enhancement - P4)

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

Sorry, something went wrong.

@bridgekeeper
Copy link

bridgekeeper bot commented Jul 14, 2023

👋 Welcome back coleenp! A progress list of the required criteria for merging this PR into master will be added to the body of your pull request. There are additional pull request commands available for use with this pull request.

@openjdk
Copy link

openjdk bot commented Jul 14, 2023

@coleenp The following label will be automatically applied to this pull request:

  • hotspot

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.

@openjdk openjdk bot added the hotspot hotspot-dev@openjdk.org label Jul 14, 2023
@coleenp coleenp marked this pull request as ready for review July 14, 2023 21:22
@openjdk openjdk bot added the rfr Pull request is ready for review label Jul 14, 2023
@mlbridge
Copy link

mlbridge bot commented Jul 14, 2023

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;
Copy link
Member

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.

Copy link
Member

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 ?

Copy link
Member

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?

Copy link
Contributor Author

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.

Copy link
Contributor Author

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.

@openjdk
Copy link

openjdk bot commented Jul 15, 2023

@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:

8312121: Fix -Wconversion warnings in tribool.hpp

Reviewed-by: dlong, dholmes

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 master branch:

  • c27c877: 8302017: Allocate BadPaddingException only if it will be thrown
  • c55d29f: 8312626: Resolve multiple definition of 'start_timer' when statically linking JDK native libraries with user code
  • 0ca2bfd: 8311104: dangling-gsl warning in libwixhelper.cpp
  • c05ba48: 8313250: Exclude java/foreign/TestByteBuffer.java on AIX
  • 169b6e3: 8313174: Create fewer predictable port clashes in management tests
  • 8650026: 8310033: Clarify return value of Java Time compareTo methods
  • 25058cd: 8312620: WSL Linux build crashes after JDK-8310233
  • 8661b8e: 8312495: assert(0 <= i && i < _len) failed: illegal index after JDK-8287061 on big endian platforms
  • 486c784: 8312433: HttpClient request fails due to connection being considered idle and closed
  • 271417a: 8312579: [JVMCI] JVMCI support for virtual Vector API objects
  • ... and 174 more: https://git.openjdk.org/jdk/compare/fd7fddb6ed24e0ae4b5e18fb27fd80230941dc0b...master

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 master branch, type /integrate in a new comment.

@openjdk openjdk bot added the ready Pull request is ready to be integrated label Jul 15, 2023
Copy link
Member

@dholmes-ora dholmes-ora left a 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

@coleenp
Copy link
Contributor Author

coleenp commented Jul 25, 2023

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. 🤢

Copy link
Member

@dholmes-ora dholmes-ora left a 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.

@dean-long
Copy link
Member

We don't need the & 3 if we do something like:

_value = newval ? 3 : 2;

@dean-long
Copy link
Member

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.

Good question. I got this to work:

_value = ((u1)newval | 2u);

but it requires gcc 11.3.

@dholmes-ora
Copy link
Member

We don't need the & 3 if we do something like:

_value = newval ? 3 : 2;

That seems a lot better/clearer than casts and bit-wise operations.

@dean-long
Copy link
Member

I like this version:
_value = (newval ? 1 : 0) | 2;

@coleenp
Copy link
Contributor Author

coleenp commented Jul 27, 2023

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.

@dean-long
Copy link
Member

V1 looks good and seems to produce identical code.

@coleenp
Copy link
Contributor Author

coleenp commented Jul 27, 2023

Thanks, Dean.

Copy link
Member

@dholmes-ora dholmes-ora left a 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
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why not |= here?

Copy link
Contributor Author

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.

@dean-long
Copy link
Member

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 =.

Comment on lines +43 to +45
TriBool(bool value) : _value(value) {
// set to not-default in separate step to avoid conversion warnings
_value |= 2;
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
TriBool(bool value) : _value(value) {
// set to not-default in separate step to avoid conversion warnings
_value |= 2;
TriBool(bool value) {
*this = value;

Copy link
Contributor Author

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.

Comment on lines +80 to +81
_value = newval;
_value |= 2; // set to not-default
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
_value = newval;
_value |= 2; // set to not-default
TriBool::operator=(newval);

Copy link
Contributor Author

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.

@coleenp
Copy link
Contributor Author

coleenp commented Jul 28, 2023

Thanks for all the work reviewing Dean and David.
/integrate

@openjdk
Copy link

openjdk bot commented Jul 28, 2023

Going to push as commit 47c4b99.
Since your change was applied there have been 188 commits pushed to the master branch:

  • a3d6723: 8311033: [macos] PrinterJob does not take into account Sides attribute
  • 4ae5a3e: 8306446: java/lang/management/ThreadMXBean/Locks.java transient failures
  • cad6114: 8304954: SegmentedCodeCache fails when using large pages
  • ba645da: 8313082: Enable CreateCoredumpOnCrash for testing in makefiles
  • c27c877: 8302017: Allocate BadPaddingException only if it will be thrown
  • c55d29f: 8312626: Resolve multiple definition of 'start_timer' when statically linking JDK native libraries with user code
  • 0ca2bfd: 8311104: dangling-gsl warning in libwixhelper.cpp
  • c05ba48: 8313250: Exclude java/foreign/TestByteBuffer.java on AIX
  • 169b6e3: 8313174: Create fewer predictable port clashes in management tests
  • 8650026: 8310033: Clarify return value of Java Time compareTo methods
  • ... and 178 more: https://git.openjdk.org/jdk/compare/fd7fddb6ed24e0ae4b5e18fb27fd80230941dc0b...master

Your commit was automatically rebased without conflicts.

@openjdk openjdk bot added the integrated Pull request has been integrated label Jul 28, 2023
@openjdk openjdk bot closed this Jul 28, 2023
@openjdk openjdk bot removed ready Pull request is ready to be integrated rfr Pull request is ready for review labels Jul 28, 2023
@openjdk
Copy link

openjdk bot commented Jul 28, 2023

@coleenp Pushed as commit 47c4b99.

💡 You may see a message that your pull request was closed with unmerged commits. This can be safely ignored.

@coleenp coleenp deleted the tribool branch July 28, 2023 12:11
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
hotspot hotspot-dev@openjdk.org integrated Pull request has been integrated
Development

Successfully merging this pull request may close these issues.

None yet

3 participants