-
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
Changes from 1 commit
d40a162
e33721a
356cd64
139151f
30f1c08
4d68677
365c257
58ffe6f
ce38002
3c2df63
c01ff14
6882bac
dbe6a35
8464376
db3e15f
60d762b
e614b86
5e03173
4808834
63db096
600377b
3e58d0c
827ca24
e3e9195
8638a5f
71ebf9e
62e4e8b
82bcd8b
5e8c70b
4a172c3
215aaad
4915b6a
86f6125
a96e460
5119c2a
708b85c
0b4d552
3a11584
2ad023b
1f86420
d612302
16beb4c
c52e2c4
fc83a3d
dd21bcc
e079fc1
1cd1b50
8e0ce70
1d141fd
f52d281
fb4da92
9a86197
38868a3
f4ca4a5
b6d77fe
f002fd5
b0ef5e6
f4eefe1
ed4451d
027daf7
42af0b5
40a1e62
87b1ebe
23d2c51
cba6ffb
2283f2b
c034d3f
1a71eb1
5d10a20
485d02f
69ca8d1
be001e2
b154fae
e13c7ea
15994a3
01cb58f
751aace
355325d
db0ab75
ed06edd
46b82ec
3e150fe
57e115d
6eae46e
f432320
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
|
@@ -22,14 +22,15 @@ | |||||
*/ | ||||||
|
||||||
/* @test | ||||||
* @bug 4162796 4162796 | ||||||
* @bug 4162796 4162796 8320448 | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. As I said above: I never add old bug numbers to new tests. But here it is even duplicated ;) There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The file I used as baseline for this |
||||||
* @summary Test indexOf and lastIndexOf | ||||||
* @run main/othervm -Xbatch -XX:-TieredCompilation -XX:CompileCommand=dontinline,ECoreIndexOf.indexOfKernel ECoreIndexOf | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I would also add a line without There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Done. |
||||||
* @run main/othervm -Xbatch -XX:CompileCommand=dontinline,ECoreIndexOf.indexOfKernel ECoreIndexOf | ||||||
* @key randomness | ||||||
*/ | ||||||
|
||||||
/* @test | ||||||
* @bug 4162796 4162796 | ||||||
* @bug 4162796 4162796 8320448 | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Fixed. |
||||||
* @summary Test indexOf and lastIndexOf | ||||||
* @requires vm.cpu.features ~= ".*avx2.*" | ||||||
* @requires vm.compiler2.enabled | ||||||
|
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.
You should add the
@bug 8320448
for all runs.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.
Done.