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

8321637: Simplify if statement in ArraysSupport::hugeLength #17043

Closed
wants to merge 1 commit into from

Conversation

johnshajiang
Copy link
Member

@johnshajiang johnshajiang commented Dec 9, 2023

It looks the else-if and else clauses in method ArraysSupport::hugeLength could be simplified by Math::max.


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-8321637: Simplify if statement in ArraysSupport::hugeLength (Enhancement - P4) ⚠️ Issue is not open.

Reviewing

Using git

Checkout this PR locally:
$ git fetch https://git.openjdk.org/jdk.git pull/17043/head:pull/17043
$ git checkout pull/17043

Update a local copy of the PR:
$ git checkout pull/17043
$ git pull https://git.openjdk.org/jdk.git pull/17043/head

Using Skara CLI tools

Checkout this PR locally:
$ git pr checkout 17043

View PR using the GUI difftool:
$ git pr show -t 17043

Using diff file

Download this PR as a diff file:
https://git.openjdk.org/jdk/pull/17043.diff

Webrev

Link to Webrev Comment

Sorry, something went wrong.

@bridgekeeper
Copy link

bridgekeeper bot commented Dec 9, 2023

👋 Welcome back jjiang! 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 openjdk bot added the rfr Pull request is ready for review label Dec 9, 2023
@openjdk
Copy link

openjdk bot commented Dec 9, 2023

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

  • core-libs

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 core-libs core-libs-dev@openjdk.org label Dec 9, 2023
@mlbridge
Copy link

mlbridge bot commented Dec 9, 2023

Webrevs

@DamonFool
Copy link
Member

The JBS should be an enhancement, not a bug, right?

@johnshajiang
Copy link
Member Author

@DamonFool

The JBS should be an enhancement, not a bug, right?

Yes, it should be an enhancement rather than a bug.

Thanks @AlanBateman for changing this JBS type.

@johnshajiang
Copy link
Member Author

Could this simple PR be reviewed?

@stuart-marks
Copy link
Member

This change would make the code shorter, but in my opinion, it obscures what's going on. This code tries to be very careful about avoiding problems caused by integer overflow/wraparound, and in order to do that, it needs to make sure that the full range of int values is handled properly. With the explicit if/else code, this is clear. Using Math.max() instead tends to make this obscure.

This came up previously; see

#1617 (comment)

@johnshajiang
Copy link
Member Author

@stuart-marks
Thanks for your clarification!

Just closed this PR and JBS.

@johnshajiang johnshajiang deleted the 8321637 branch December 19, 2023 03:55
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
core-libs core-libs-dev@openjdk.org rfr Pull request is ready for review
Development

Successfully merging this pull request may close these issues.

None yet

3 participants