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

8334328: Reduce object allocation for FloatToDecimal and DoubleToDecimal #19730

Closed
Closed
Changes from 1 commit
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
4c81015
Reduce object allocation for FloatToDecimal and DoubleToDecimal
wenshao Jun 13, 2024
b7c3586
Update src/java.base/share/classes/jdk/internal/math/DoubleToDecimal.…
wenshao Jun 15, 2024
95097e1
add final modifier & comments
wenshao Jun 15, 2024
761e108
use JLA replace Unsafe
wenshao Jun 15, 2024
d28e83a
remove unused imports
wenshao Jun 15, 2024
8a649c7
add comments
wenshao Jun 15, 2024
9a4cf5a
ToDecimal remove `public` modifier & code format
wenshao Jun 15, 2024
5a432c9
code format
wenshao Jun 15, 2024
6458c6b
Update src/java.base/share/classes/jdk/internal/math/DoubleToDecimal.…
wenshao Jun 16, 2024
fac64f6
Update src/java.base/share/classes/jdk/internal/math/DoubleToDecimal.…
wenshao Jun 16, 2024
ceb7baf
charsToString -> asciiBytesToString
wenshao Jun 16, 2024
d2d20bb
benchmark `delete` -> `setLength`
wenshao Jun 16, 2024
05d5b5c
remove use deprecated method
wenshao Jun 17, 2024
b8e8042
Utf16 case remove `append first utf16 char`
wenshao Jun 17, 2024
3dbed34
Update src/java.base/share/classes/jdk/internal/math/ToDecimal.java
wenshao Jun 25, 2024
e0580b6
Update src/java.base/share/classes/jdk/internal/math/DoubleToDecimal.…
wenshao Jun 25, 2024
3bd2d13
Update src/java.base/share/classes/jdk/internal/math/DoubleToDecimal.…
wenshao Jun 25, 2024
e383038
Update src/java.base/share/classes/jdk/internal/math/DoubleToDecimal.…
wenshao Jun 25, 2024
884757f
Update src/java.base/share/classes/jdk/internal/math/ToDecimal.java
wenshao Jun 25, 2024
47ae33d
refactor from @rgiulietti
wenshao Jun 25, 2024
4176dd1
fix comment from @rgiulietti
wenshao Jun 25, 2024
a18c1a1
fix assert from @rgiulietti
wenshao Jun 25, 2024
5d3405f
from @liach: use s.getBytes for performance
wenshao Jun 25, 2024
a3d216d
1. revert code change.
wenshao Jun 26, 2024
b4f2d87
1. revert code change.
wenshao Jun 26, 2024
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
Original file line number Diff line number Diff line change
@@ -33,6 +33,8 @@
import static java.lang.Math.multiplyHigh;
import static jdk.internal.math.MathUtils.*;

import sun.nio.cs.ISO_8859_1;

/**
* This class exposes a method to render a {@code double} as a string.
*/
@@ -130,7 +132,8 @@ public static String toString(double v) {
int pair = LATIN1.toDecimal(str, 0, v, null);
int type = pair & 0xFF00;
if (type == NON_SPECIAL) {
return asciiBytesToString(str, pair & 0xFF);
int size = pair & 0xFF;
return new String(str, 0, size, ISO_8859_1.INSTANCE);
}
return special(type);
}
Original file line number Diff line number Diff line change
@@ -33,6 +33,8 @@
import static java.lang.Math.multiplyHigh;
import static jdk.internal.math.MathUtils.*;

import sun.nio.cs.ISO_8859_1;

/**
* This class exposes a method to render a {@code float} as a string.
*/
@@ -130,7 +132,8 @@ public static String toString(float v) {
int pair = LATIN1.toDecimal(str, 0, v);
int type = pair & 0xFF00;
if (type == NON_SPECIAL) {
return asciiBytesToString(str, pair & 0xFF);
int size = pair & 0xFF;
return new String(str, 0, size, ISO_8859_1.INSTANCE);
}
return special(type);
}
6 changes: 0 additions & 6 deletions src/java.base/share/classes/jdk/internal/math/ToDecimal.java
Original file line number Diff line number Diff line change
@@ -166,12 +166,6 @@ int length(byte[] str) {
return str.length >> coder;
}

/* Using the deprecated constructor enhances performance */
@SuppressWarnings("deprecation")
static String asciiBytesToString(byte[] str, int index) {
return new String(str, 0, 0, index);
}

static String special(int type) {
return switch (type) {
case PLUS_ZERO -> "0.0";