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

8339290: Optimize ClassFile Utf8EntryImpl#writeTo #20772

Closed
Closed
Changes from 1 commit
Commits
Show all changes
41 commits
Select commit Hold shift + click to select a range
dcbc6aa
optimize Utf8EntryImpl#writeTo
wenshao Aug 29, 2024
5a7b334
bug fix
wenshao Aug 29, 2024
28bd454
add comments
wenshao Aug 30, 2024
3ca9fb5
Suggestions from @cl4es, rename hasNegativeOrZeros to isLatin1Greater…
wenshao Aug 30, 2024
34aab42
optimize Utf8EntryImpl#writeTo(UTF)
wenshao Aug 30, 2024
e02004d
add benchmark
wenshao Aug 30, 2024
cbc867b
bug fix
wenshao Aug 31, 2024
ee04806
remove use JLA
wenshao Aug 31, 2024
9bec6bd
code style
wenshao Aug 31, 2024
3c76b4b
code style
wenshao Aug 31, 2024
72a7512
Merge remote-tracking branch 'upstream/master' into optim_class_file_…
wenshao Aug 31, 2024
f055f3f
code style
wenshao Aug 31, 2024
5dcf056
fix utf_len error
wenshao Aug 31, 2024
a773005
use JLA if length < 256
wenshao Aug 31, 2024
e19a782
copyright
wenshao Aug 31, 2024
88a7772
vectorized countGreaterThanZero
wenshao Sep 1, 2024
0f5a7ae
Revert "vectorized countGreaterThanZero"
wenshao Sep 1, 2024
3868cf3
optimization for none-ascii latin1
wenshao Sep 1, 2024
3b96cbe
add comments
wenshao Sep 1, 2024
4fa495c
vectorized countGreaterThanZero
wenshao Sep 1, 2024
2a36b44
Update src/java.base/share/classes/java/lang/StringCoding.java
wenshao Sep 1, 2024
656b0f6
suggestion from @liach
wenshao Sep 2, 2024
89bd200
suggestion from @liach
wenshao Sep 2, 2024
99143fd
typo
wenshao Sep 2, 2024
aca1c24
bug fix countGreaterThanZero
wenshao Sep 2, 2024
8cfcb85
remove unsafe
wenshao Sep 2, 2024
10cc153
code style
wenshao Sep 3, 2024
2b39476
stringCoder -> isLatin1
wenshao Sep 3, 2024
ce6c71e
optimize writeUTF
wenshao Sep 3, 2024
b3772a2
remove 256
wenshao Sep 3, 2024
77df66f
improve benchmark, from @liach & @cl4es
wenshao Sep 3, 2024
c37dea6
fix testcase
wenshao Sep 3, 2024
72b99bd
Update src/java.base/share/classes/java/lang/System.java
wenshao Sep 3, 2024
431f55b
countGreaterThanZero -> CountNonNegatives
wenshao Sep 3, 2024
74b3e54
Revert "countGreaterThanZero -> CountNonNegatives"
wenshao Sep 3, 2024
c0e425c
suggestion from @cl4es
wenshao Sep 3, 2024
059bece
optimize for utf16
wenshao Sep 3, 2024
a6e05cd
Update src/java.base/share/classes/jdk/internal/access/JavaLangAccess…
wenshao Sep 4, 2024
7d1b263
Unused local variable
wenshao Sep 4, 2024
c257cf3
from @cl4es 's suggestion
wenshao Sep 4, 2024
962d144
suggestion from @liach
wenshao Sep 5, 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
14 changes: 10 additions & 4 deletions src/java.base/share/classes/java/lang/StringCoding.java
Original file line number Diff line number Diff line change
@@ -34,13 +34,19 @@ class StringCoding {

private StringCoding() { }

public static boolean hasNegativeOrZeros(byte[] ba) {
for (int i = 0, len = ba.length; i < len; i++) {
public static boolean isLatin1GreaterThanZero(String s) {
byte[] value;
return s.coder() == String.LATIN1 && countGreaterThanZero(value = s.value(), 0, value.length) == value.length;
}

public static int countGreaterThanZero(byte[] ba, int off, int len) {
int limit = off + len;
for (int i = off; i < limit; i++) {
if (ba[i] <= 0) {
return true;
return i - off;
}
}
return false;
return len;
}

public static boolean hasNegatives(byte[] ba, int off, int len) {
4 changes: 2 additions & 2 deletions src/java.base/share/classes/java/lang/System.java
Original file line number Diff line number Diff line change
@@ -2594,8 +2594,8 @@ public void inflateBytesToChars(byte[] src, int srcOff, char[] dst, int dstOff,
StringLatin1.inflate(src, srcOff, dst, dstOff, len);
}

public boolean hasNegativeOrZeros(String s) {
return s.coder() == String.UTF16 || StringCoding.hasNegativeOrZeros(s.value());
public boolean isLatin1GreaterThanZero(String s) {
return StringCoding.isLatin1GreaterThanZero(s);
}

public int decodeASCII(byte[] src, int srcOff, char[] dst, int dstOff, int len) {
Original file line number Diff line number Diff line change
@@ -392,10 +392,9 @@ public interface JavaLangAccess {
void inflateBytesToChars(byte[] src, int srcOff, char[] dst, int dstOff, int len);

/**
* Calculates whether the string value is 0 or a negative number when the coder is LATIN1.
* If the coder is UTF16, it always returns true.
* Determine if the coder is Latin1 and the elements of the value array are greater than 0
*/
boolean hasNegativeOrZeros(String s);
boolean isLatin1GreaterThanZero(String s);

/**
* Decodes ASCII from the source byte array into the destination
Original file line number Diff line number Diff line change
@@ -421,7 +421,7 @@ void writeTo(BufWriterImpl pool) {
}
pool.writeU1(tag);
pool.writeU2(charLen);
if (!JLA.hasNegativeOrZeros(stringValue)) {
if (JLA.isLatin1GreaterThanZero(stringValue)) {
pool.writeBytesDirect(stringValue);
} else {
writeToSlow(pool);