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

8341402: BigDecimal's square root optimization #21301

Open
wants to merge 36 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
dd77ea4
Change BigDecimal.sqrt() implementation
fabioromano1 Sep 1, 2024
e708a44
Merge branch 'openjdk:master' into patchBigDecimalSqrt
fabioromano1 Oct 2, 2024
129f79f
Removed stripZerosToEvenScale to simplify the code
fabioromano1 Oct 3, 2024
15de892
Demand overflow checks to checkScale()
fabioromano1 Oct 4, 2024
acbe992
Avoid check for null value of this.intVal
fabioromano1 Oct 4, 2024
e7a225b
Merge branch 'openjdk:master' into patchBigDecimalSqrt
fabioromano1 Oct 21, 2024
b8a5fe2
Compute sqrt remainder only if needed to round
fabioromano1 Oct 21, 2024
2731a72
Removed trailing whitespaces
fabioromano1 Oct 21, 2024
82a4357
Ensure the result does not exceed the requested precision
fabioromano1 Oct 21, 2024
57034fe
Removed unused variable
fabioromano1 Oct 21, 2024
571507a
Do round up with ulp in the final result
fabioromano1 Oct 21, 2024
5cd590c
Ensure no increase of precision in 99...9+1 cases
fabioromano1 Oct 21, 2024
d75e6e5
Increment the unscaled sqrt for speed and round the result
fabioromano1 Oct 22, 2024
d421846
adjust to preferred scale in each branch for speed
fabioromano1 Oct 22, 2024
f90cea6
Avoid overflow
fabioromano1 Oct 22, 2024
e9a5a76
Refine documentation
fabioromano1 Oct 22, 2024
cf4a449
Refine documentation
fabioromano1 Oct 22, 2024
a4e8594
Code simplification
fabioromano1 Oct 22, 2024
2ca5eac
Optimize sqrt branch for exact results
fabioromano1 Nov 15, 2024
dbeffc5
Applying suggested changes
fabioromano1 Nov 19, 2024
cd11861
Merge branch 'patchBigDecimalSqrt' of https://github.com/fabioromano1…
fabioromano1 Nov 19, 2024
ae64924
Merge branch 'openjdk:master' into patchBigDecimalSqrt
fabioromano1 Nov 19, 2024
907de35
Optimization for non-zero remainder checking
fabioromano1 Nov 19, 2024
2834b49
Correct remainder checking
fabioromano1 Nov 19, 2024
0fff4c5
Code simplifications
fabioromano1 Nov 20, 2024
43851d1
Code simplification
fabioromano1 Nov 20, 2024
8327b84
Added tests for exact results path
fabioromano1 Nov 25, 2024
2614938
Added test for scale overflow
fabioromano1 Nov 26, 2024
20b56c2
Optimized integer BigDecimals detection
fabioromano1 Nov 28, 2024
1e6edf9
Optimization for integer BigDecimals detection
fabioromano1 Nov 28, 2024
f0bbcce
Make digitLengthLower() static
fabioromano1 Nov 28, 2024
75d8313
An optimization
fabioromano1 Nov 28, 2024
86bbf1e
Speed up computation of bitLength()
fabioromano1 Nov 29, 2024
3fe4347
Refine documentation
fabioromano1 Nov 29, 2024
331f794
An optimization
fabioromano1 Dec 4, 2024
378569c
Merge branch 'openjdk:master' into patchBigDecimalSqrt
fabioromano1 Mar 28, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 10 additions & 2 deletions src/java.base/share/classes/java/math/BigDecimal.java
Original file line number Diff line number Diff line change
@@ -2247,7 +2247,7 @@ public BigDecimal sqrt(MathContext mc) {
|| mc.roundingMode == RoundingMode.HALF_EVEN && sqrt.testBit(0)
// Check if remainder is non-zero
|| !workingInt.equals(workingSqrt.multiply(workingSqrt))
|| working.compareTo(new BigDecimal(workingInt)) != 0) {
|| !working.isInteger()) {
increment = true;
}
}
@@ -2262,7 +2262,7 @@ public BigDecimal sqrt(MathContext mc) {
BigInteger[] sqrtRem = workingInt.sqrtAndRemainder();
sqrt = sqrtRem[0];
// Check if remainder is non-zero
if (sqrtRem[1].signum != 0 || working.compareTo(new BigDecimal(workingInt)) != 0)
if (sqrtRem[1].signum != 0 || !working.isInteger())
sqrt = sqrt.add(1L);
}

@@ -3475,6 +3475,14 @@ private static String getValueString(int signum, String intString, int scale) {
return buf.toString();
}

/**
* @return {@code true} if and only if {@code this == this.toBigInteger()}
*/
boolean isInteger() {
return scale <= 0 || signum() == 0
|| stripZerosToMatchScale(intVal, intCompact, scale, 0L).scale == 0;
}

/**
* Converts this {@code BigDecimal} to a {@code BigInteger}.
* This conversion is analogous to the
4 changes: 2 additions & 2 deletions test/jdk/java/math/BigDecimal/SquareRootTests.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2016, 2022, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@@ -23,7 +23,7 @@

/*
* @test
* @bug 4851777 8233452
* @bug 4851777 8233452 8341402
* @summary Tests of BigDecimal.sqrt().
*/