Skip to content

Commit 591e7e2

Browse files
committedOct 28, 2020
8255378: [Vector API] Remove redundant vector length check after JDK-8254814 and JDK-8255210
Reviewed-by: vlivanov, adinn
1 parent 2c9dfc7 commit 591e7e2

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed
 

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

+2-4
Original file line numberDiff line numberDiff line change
@@ -4425,8 +4425,7 @@ instruct insert8D(vec dst, vec src, regD val, immI idx, rRegL tmp, legVec vtmp)
44254425
// =======================Int Reduction==========================================
44264426

44274427
instruct reductionI(rRegI dst, rRegI src1, legVec src2, legVec vtmp1, legVec vtmp2) %{
4428-
predicate(vector_element_basic_type(n->in(2)) == T_INT &&
4429-
vector_length(n->in(2)) <= 16); // src2
4428+
predicate(vector_element_basic_type(n->in(2)) == T_INT); // src2
44304429
match(Set dst (AddReductionVI src1 src2));
44314430
match(Set dst (MulReductionVI src1 src2));
44324431
match(Set dst (AndReductionV src1 src2));
@@ -4621,8 +4620,7 @@ instruct reduction64B(rRegI dst, rRegI src1, legVec src2, legVec vtmp1, legVec v
46214620
// =======================Short Reduction==========================================
46224621

46234622
instruct reductionS(rRegI dst, rRegI src1, legVec src2, legVec vtmp1, legVec vtmp2) %{
4624-
predicate(vector_element_basic_type(n->in(2)) == T_SHORT &&
4625-
vector_length(n->in(2)) <= 32); // src2
4623+
predicate(vector_element_basic_type(n->in(2)) == T_SHORT); // src2
46264624
match(Set dst (AddReductionVI src1 src2));
46274625
match(Set dst (MulReductionVI src1 src2));
46284626
match(Set dst (AndReductionV src1 src2));

0 commit comments

Comments
 (0)
Please sign in to comment.