Skip to content

Commit

Permalink
PopCountVI supported by z14 onwards.
Browse files Browse the repository at this point in the history
  • Loading branch information
sid8606 committed Mar 26, 2024
1 parent ad91ab3 commit 042c396
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/hotspot/cpu/s390/s390.ad
Original file line number Diff line number Diff line change
Expand Up @@ -1622,9 +1622,9 @@ bool Matcher::match_rule_supported(int opcode) {
case Op_MulVF:
case Op_DivVF:
case Op_SqrtVF:
return (SuperwordUseVX && UseSFPV);
//PopCountVI supported by z14 onwards.
case Op_PopCountVI:
return (SuperwordUseVX && UsePopCountInstruction);
return (SuperwordUseVX && UseSFPV);
case Op_FmaF:
case Op_FmaD:
return UseFMA;
Expand Down

0 comments on commit 042c396

Please sign in to comment.