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

8311906: Improve robustness of String constructors with mutable array inputs #16425

Closed
Closed
Changes from 1 commit
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
faa5ace
8311906: Improve robustness of String constructors with mutable array…
RogerRiggs Jul 14, 2023
43f937d
Javadoc formatting
RogerRiggs Oct 31, 2023
c665cbd
Update RiscV implementation of intrinsic for java.lang.StringUTF16.co…
RogerRiggs Nov 1, 2023
4662dec
Cleanup javadoc, whitespace, and formatting in the JMH benchmark
RogerRiggs Nov 6, 2023
00a5d06
Misc updates for review comments, javadoc cleanup
RogerRiggs Nov 8, 2023
55ab920
Replaced isLatin1 implementation with `getChar(buf, ndx) <= 0xff`
RogerRiggs Nov 8, 2023
ad73a2a
Refactored extractCodePoints to avoid multiple resizes if the array w…
RogerRiggs Nov 8, 2023
89bd337
Update of string_compress for the s390 port to return the index of th…
RogerRiggs Nov 13, 2023
f608059
code and doc cleanup in StringRacyConstructor test
RogerRiggs Nov 13, 2023
08f365f
Update PPC implementation of string_compress to return the index of t…
RogerRiggs Nov 14, 2023
5136b80
Enable racy constructor tests iff COMPACT_STRINGS is true
RogerRiggs Nov 14, 2023
b84d09d
Cleanup of test with review comment recommendations
RogerRiggs Nov 15, 2023
5dda14c
Additional corrections from review comments, dropped informational ou…
RogerRiggs Nov 16, 2023
f7d8225
Fix crash with jmpb in AVX3 intrinsic
cl4es Nov 16, 2023
626d7bf
Merge pull request #3 from cl4es/8311906_intrinsic_fixes
RogerRiggs Nov 16, 2023
3e3607e
Remove trailing whitespace
RogerRiggs Nov 16, 2023
6419fd5
Speed up getting the coder from a byte array returned from StringUTF1…
RogerRiggs Nov 17, 2023
7924118
Normalize the spec for undefined behavior of String constructors, Str…
RogerRiggs Nov 20, 2023
04d5877
undo noise chars
RogerRiggs Nov 20, 2023
d4bd5c9
Simplified and slightly optimized x86 char_array_compress
cl4es Nov 20, 2023
0256b9e
Merge pull request #4 from cl4es/8311906_x64_intr_opt
RogerRiggs Nov 21, 2023
d201344
Apply StringUTF16.coderFromArrayLen
RogerRiggs Nov 22, 2023
5299c43
Use byte off branches in char_array_compress
RogerRiggs Nov 27, 2023
b2fc385
Correct jcc/jccb branches
RogerRiggs Nov 30, 2023
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
10 changes: 5 additions & 5 deletions src/hotspot/cpu/x86/macroAssembler_x86.cpp
Original file line number Diff line number Diff line change
@@ -8535,7 +8535,7 @@ void MacroAssembler::char_array_compress(Register src, Register dst, Register le
evpbroadcastw(tmp2Reg, tmp5, Assembler::AVX_512bit);

testl(len, -64);
jcc(Assembler::zero, post_alignment);
jccb(Assembler::zero, post_alignment);

movl(tmp5, dst);
andl(tmp5, (32 - 1));
@@ -8556,7 +8556,7 @@ void MacroAssembler::char_array_compress(Register src, Register dst, Register le
evmovdquw(tmp1Reg, mask2, Address(src, 0), /*merge*/ false, Assembler::AVX_512bit);
evpcmpw(mask1, mask2, tmp1Reg, tmp2Reg, Assembler::le, /*signed*/ false, Assembler::AVX_512bit);
ktestd(mask1, mask2);
jcc(Assembler::carryClear, copy_tail);
jccb(Assembler::carryClear, copy_tail);

evpmovwb(Address(dst, 0), mask2, tmp1Reg, Assembler::AVX_512bit);

@@ -8571,7 +8571,7 @@ void MacroAssembler::char_array_compress(Register src, Register dst, Register le
movl(tmp5, len);
andl(tmp5, (32 - 1)); // tail count (in chars)
andl(len, ~(32 - 1)); // vector count (in chars)
jcc(Assembler::zero, copy_loop_tail);
jccb(Assembler::zero, copy_loop_tail);

lea(src, Address(src, len, Address::times_2));
lea(dst, Address(dst, len, Address::times_1));
@@ -8581,13 +8581,13 @@ void MacroAssembler::char_array_compress(Register src, Register dst, Register le
evmovdquw(tmp1Reg, Address(src, len, Address::times_2), Assembler::AVX_512bit);
evpcmpuw(mask1, tmp1Reg, tmp2Reg, Assembler::le, Assembler::AVX_512bit);
kortestdl(mask1, mask1);
jcc(Assembler::carryClear, reset_for_copy_tail);
jccb(Assembler::carryClear, reset_for_copy_tail);

// All elements in current processed chunk are valid candidates for
// compression. Write a truncated byte elements to the memory.
evpmovwb(Address(dst, len, Address::times_1), tmp1Reg, Assembler::AVX_512bit);
addptr(len, 32);
jcc(Assembler::notZero, copy_32_loop);
jccb(Assembler::notZero, copy_32_loop);

bind(copy_loop_tail);
// bail out when there is nothing to be done