Skip to content

Commit 2563a6a

Browse files
Xiaohong GongNingsheng Jian
Xiaohong Gong
authored and
Ningsheng Jian
committedMay 19, 2021
8266962: Add arch supporting check for "Op_VectorLoadConst" before creating the node
Reviewed-by: vlivanov, neliasso
1 parent 4954383 commit 2563a6a

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed
 

‎src/hotspot/share/opto/vectorIntrinsics.cpp

+3
Original file line numberDiff line numberDiff line change
@@ -352,6 +352,9 @@ bool LibraryCallKit::inline_vector_shuffle_iota() {
352352
if (!arch_supports_vector(Op_AndV, num_elem, elem_bt, VecMaskNotUsed)) {
353353
return false;
354354
}
355+
if (!arch_supports_vector(Op_VectorLoadConst, num_elem, elem_bt, VecMaskNotUsed)) {
356+
return false;
357+
}
355358
if (!arch_supports_vector(Op_VectorBlend, num_elem, elem_bt, VecMaskUseLoad)) {
356359
return false;
357360
}

0 commit comments

Comments
 (0)
Please sign in to comment.