-
Notifications
You must be signed in to change notification settings - Fork 5.8k
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
8320448: Accelerate IndexOf using AVX2 #16753
Closed
+3,906
−30
Closed
Changes from 1 commit
Commits
Show all changes
85 commits
Select commit
Hold shift + click to select a range
d40a162
sync push
asgibbons e33721a
Adding string assembly - first cut
asgibbons 356cd64
Removed comments; only generate for AVX2
asgibbons 139151f
Infrastructure hookup
asgibbons 30f1c08
Fix single-character; make Windows compile
asgibbons 4d68677
Fix jmp table; optimize length 1
asgibbons 365c257
Protecting against page faults
asgibbons 58ffe6f
Working version
asgibbons ce38002
Merge branch 'master' into indexof
asgibbons 3c2df63
Fix merge problem
asgibbons c01ff14
Windows register preservation fix
asgibbons 6882bac
Stomped on r13 in switch branch calculation
asgibbons dbe6a35
Subtracting 0x10 twice.
asgibbons 8464376
Comments; added exhaustive-ish test
asgibbons db3e15f
Merge branch 'openjdk:master' into indexof
asgibbons 60d762b
Fix whitespace
asgibbons e614b86
Only use optimization when EnableX86ECoreOpts is true
asgibbons 5e03173
Support UU IndexOf
asgibbons 4808834
Fix for JDK-8321599
asgibbons 63db096
Addressing review comments.
asgibbons 600377b
Merge branch 'openjdk:master' into indexof
asgibbons 3e58d0c
Merge branch 'openjdk:master' into indexof
asgibbons 827ca24
Remove gcc lib fn; reduce spacial cases to 10 from 32
asgibbons e3e9195
Move arrays_equals to MacroAssembler_x86.cpp
asgibbons 8638a5f
Move arrays_equals out of LP_64 block
asgibbons 71ebf9e
Change copy to stack to be only if hs size - needle size > 10
asgibbons 62e4e8b
Fix slowdebug compile issues.
asgibbons 82bcd8b
Addressed some review coments; replaced hard-coded registers with des…
asgibbons 5e8c70b
Working code - baseline for optimization
asgibbons 4a172c3
Handle small haystacks a bit better (?)
asgibbons 215aaad
Small now working. Needs further optimization of small n and small k
asgibbons 4915b6a
Add configurations
asgibbons 86f6125
Try to fix increment issue :-(
asgibbons a96e460
Cleanup code.
asgibbons 5119c2a
Temp checkin for Vlad review
asgibbons 708b85c
Add ECore test
asgibbons 0b4d552
Passes tests.
asgibbons 3a11584
Works - needs cleanup
asgibbons 2ad023b
Remove header dependency
asgibbons 1f86420
Most cleanup done.
asgibbons d612302
Merge branch 'openjdk:master' into indexof
asgibbons 16beb4c
Better method for mask creation
asgibbons c52e2c4
Add JMH. Add 16-byte compares to arrays_equals
asgibbons fc83a3d
Pre-cleanup code
asgibbons dd21bcc
Cleaned up, ready for review
asgibbons e079fc1
Merge branch 'openjdk:master' into indexof
asgibbons 1cd1b50
Remove infinite loop (used for debugging)
asgibbons 8e0ce70
Merge branch 'openjdk:master' into indexof
asgibbons 1d141fd
Move arrays_equals back to c2_MacroAssembler
asgibbons f52d281
Merge remote-tracking branch 'origin/master' into indexof
asgibbons fb4da92
Rearrange; add lambdas for clarity
asgibbons 9a86197
Addressing lots of comments. Interim commit.
asgibbons 38868a3
Fixed CI compiles; re-factor UL processing
asgibbons f4ca4a5
Added comments; move n-k<32 code up a level
asgibbons b6d77fe
Adding exhaustive test
asgibbons f002fd5
Added header file
asgibbons b0ef5e6
un-helper-ize preload_needle_helper; try fix for macos build
asgibbons f4eefe1
Merge branch 'openjdk:master' into indexof
asgibbons ed4451d
Revert last change to IndexOf.java
asgibbons 027daf7
Remove DO_EARLY_BAILOUT
asgibbons 42af0b5
Check macos build
asgibbons 40a1e62
Check macos build
asgibbons 87b1ebe
Check macos build
asgibbons 23d2c51
Check macos build
asgibbons cba6ffb
Fix for IndexOf.java on mac
asgibbons 2283f2b
Addressing review comments
asgibbons c034d3f
Review comments - move stubGen*_string.cpp to c2_stubGen*_string.cpp
asgibbons 1a71eb1
Missing comma
asgibbons 5d10a20
mov64 => lea(InternalAddress)
asgibbons 485d02f
Test clarifications
asgibbons 69ca8d1
Split into two subtest jobs
asgibbons be001e2
Review comments.
asgibbons b154fae
Fix test; review comments
asgibbons e13c7ea
Review comments; fix reading past end of haystack when (n-k) < 32
asgibbons 15994a3
Fix tests
asgibbons 01cb58f
Revert changes to IndexOf.java
asgibbons 751aace
Review comments
asgibbons 355325d
Final review comments
asgibbons db0ab75
Move assert to where it's actually important.
asgibbons ed06edd
Remove duplicate vm.compiler2.enabled
asgibbons 46b82ec
Add @test block; fix test indentation
asgibbons 3e150fe
Stupid EOL at end
asgibbons 57e115d
Review comments
asgibbons 6eae46e
Fix bug number in tests
asgibbons f432320
Fix copyright & a couple of comment typos
asgibbons File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I would also add a line without
-XX:-TieredCompilation
, then C1 can be tested with this tooThere was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done.