Skip to content

Commit 2def7e9

Browse files
committedDec 14, 2021
8278584: compiler/vectorapi/VectorMaskLoadStoreTest.java failed with "Error: ShouldNotReachHere()"
Reviewed-by: kvn, psandoz
1 parent 98a8d44 commit 2def7e9

File tree

2 files changed

+14
-3
lines changed

2 files changed

+14
-3
lines changed
 

‎src/hotspot/cpu/x86/x86.ad

+2-3
Original file line numberDiff line numberDiff line change
@@ -9549,7 +9549,7 @@ instruct long_to_maskLE8_avx(vec dst, rRegL src, rRegL rtmp1, rRegL rtmp2, vec x
95499549
format %{ "long_to_mask_avx $dst, $src\t! using $rtmp1, $rtmp2, $xtmp as TEMP" %}
95509550
ins_encode %{
95519551
int mask_len = Matcher::vector_length(this);
9552-
int vec_enc = vector_length_encoding(mask_len*8);
9552+
int vec_enc = vector_length_encoding(mask_len);
95539553
__ vector_long_to_maskvec($dst$$XMMRegister, $src$$Register, $rtmp1$$Register,
95549554
$rtmp2$$Register, xnoreg, mask_len, vec_enc);
95559555
%}
@@ -9565,7 +9565,7 @@ instruct long_to_maskGT8_avx(vec dst, rRegL src, rRegL rtmp1, rRegL rtmp2, vec x
95659565
ins_encode %{
95669566
int mask_len = Matcher::vector_length(this);
95679567
assert(mask_len <= 32, "invalid mask length");
9568-
int vec_enc = vector_length_encoding(mask_len*8);
9568+
int vec_enc = vector_length_encoding(mask_len);
95699569
__ vector_long_to_maskvec($dst$$XMMRegister, $src$$Register, $rtmp1$$Register,
95709570
$rtmp2$$Register, $xtmp1$$XMMRegister, mask_len, vec_enc);
95719571
%}
@@ -9577,7 +9577,6 @@ instruct long_to_mask_evex(kReg dst, rRegL src) %{
95779577
match(Set dst (VectorLongToMask src));
95789578
format %{ "long_to_mask_evex $dst, $src\t!" %}
95799579
ins_encode %{
9580-
int mask_len = Matcher::vector_length(this);
95819580
__ kmov($dst$$KRegister, $src$$Register);
95829581
%}
95839582
ins_pipe( pipe_slow );

‎test/hotspot/jtreg/compiler/vectorapi/VectorMaskLoadStoreTest.java

+12
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,18 @@
4949
* @run testng/othervm -XX:-TieredCompilation -XX:CompileThreshold=100 compiler.vectorapi.VectorMaskLoadStoreTest
5050
*/
5151

52+
/**
53+
* @test
54+
* @bug 8278584
55+
* @library /test/lib
56+
* @summary Test the codegen for C2's VectorLongToMaskNode
57+
* "-XX:DisableIntrinsic=_VectorMaskOp" is required to break "VectorMaskToLong (VectorLongToMask l) ==> l" opt.
58+
* This is because when _VectorMaskOp is disabled, VectorMaskToLong won't be generated.
59+
* @modules jdk.incubator.vector
60+
*
61+
* @run testng/othervm -XX:-TieredCompilation -XX:CompileThreshold=100 -XX:+UnlockDiagnosticVMOptions
62+
* -XX:DisableIntrinsic=_VectorMaskOp compiler.vectorapi.VectorMaskLoadStoreTest
63+
*/
5264

5365
public class VectorMaskLoadStoreTest{
5466

0 commit comments

Comments
 (0)
Please sign in to comment.