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

8282664: Unroll by hand StringUTF16, StringLatin1, and Arrays polynomial hash loops #7700

Closed
Closed
Changes from 1 commit
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
f7dda1d
8282664: Unroll by hand StringUTF16 and StringLatin1 polynomial hash …
luhenry Mar 4, 2022
8e2e59b
Add UTF-16 benchmarks
luhenry Mar 4, 2022
5febe14
Add first pass at vectorized intrinsic for StringLatin1.hashCode
luhenry Apr 4, 2022
79e0a82
Leave Java method unchanged
luhenry Apr 4, 2022
ed9904b
Reduce overhead of method handle
luhenry Apr 4, 2022
95f56b1
Improve performance of short strings
luhenry Apr 4, 2022
6c1f574
Reduce code duplication
luhenry Apr 5, 2022
026e971
Use intrinsic for StringUTF16
luhenry Apr 5, 2022
e1a5942
{wip} Generalize string hashcode to Arrays.hashCode
luhenry Apr 6, 2022
ff8eb33
Some small refactoring: store power_of_31_backwards in the code direc…
luhenry Apr 6, 2022
8a78584
Merge branch 'master' of https://github.com/openjdk/jdk into vectoriz…
luhenry Apr 6, 2022
1935cf3
Disable Arrays.hashCode intrinsic by default for CI
luhenry Apr 6, 2022
a6f75c2
Fix some merge conflicts
luhenry Apr 7, 2022
2b631dd
Add missing check for AryHashCode node
luhenry May 10, 2022
af7b445
Fix h when vectorized for Arrays.hashCode
luhenry May 10, 2022
721899e
Merge branch 'master' of https://github.com/openjdk/jdk into vectoriz…
luhenry May 10, 2022
7232036
Actually fix h when hashcode is vectorized
luhenry May 10, 2022
29dab16
Fix overlapping registers
luhenry May 10, 2022
c362466
Merge branch 'master' of https://github.com/openjdk/jdk into vectoriz…
luhenry May 11, 2022
34b90e8
Ensure a proper register is used + Slight performance optimizations
luhenry May 12, 2022
5d86266
Reenable SpecialArraysHashCode by default
luhenry May 12, 2022
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
1 change: 1 addition & 0 deletions src/hotspot/share/adlc/formssel.cpp
Original file line number Diff line number Diff line change
@@ -898,6 +898,7 @@ uint InstructForm::oper_input_base(FormDict &globals) {

if( _matrule->_rChild &&
( strcmp(_matrule->_rChild->_opType,"AryEq" )==0 ||
strcmp(_matrule->_rChild->_opType,"AryHashCode")==0 ||
strcmp(_matrule->_rChild->_opType,"StrComp" )==0 ||
strcmp(_matrule->_rChild->_opType,"StrEquals" )==0 ||
strcmp(_matrule->_rChild->_opType,"StrHashCode")==0 ||
1 change: 1 addition & 0 deletions src/hotspot/share/opto/loopnode.cpp
Original file line number Diff line number Diff line change
@@ -5785,6 +5785,7 @@ void PhaseIdealLoop::build_loop_late_post_work(Node *n, bool pinned) {
case Op_StrIndexOf:
case Op_StrIndexOfChar:
case Op_AryEq:
case Op_AryHashCode:
case Op_CountPositives:
pinned = false;
}