--- a/hotspot/src/cpu/aarch64/vm/aarch64.ad Mon Jun 19 03:10:46 2017 -0700
+++ b/hotspot/src/cpu/aarch64/vm/aarch64.ad Mon Jun 19 11:23:16 2017 +0000
@@ -5423,6 +5423,16 @@
interface(CONST_INTER);
%}
+operand immI_63()
+%{
+ predicate(n->get_int() == 63);
+ match(ConI);
+
+ op_cost(0);
+ format %{ %}
+ interface(CONST_INTER);
+%}
+
operand immI_64()
%{
predicate(n->get_int() == 64);
@@ -5453,20 +5463,10 @@
interface(CONST_INTER);
%}
-operand immL_63()
-%{
- predicate(n->get_int() == 63);
- match(ConI);
-
- op_cost(0);
- format %{ %}
- interface(CONST_INTER);
-%}
-
operand immL_255()
%{
- predicate(n->get_int() == 255);
- match(ConI);
+ predicate(n->get_long() == 255L);
+ match(ConL);
op_cost(0);
format %{ %}
@@ -11146,7 +11146,7 @@
ins_pipe(ldiv_reg_reg);
%}
-instruct signExtractL(iRegLNoSp dst, iRegL src1, immL_63 div1, immL_63 div2) %{
+instruct signExtractL(iRegLNoSp dst, iRegL src1, immI_63 div1, immI_63 div2) %{
match(Set dst (URShiftL (RShiftL src1 div1) div2));
ins_cost(INSN_COST);
format %{ "lsr $dst, $src1, $div1" %}
@@ -11156,7 +11156,7 @@
ins_pipe(ialu_reg_shift);
%}
-instruct div2RoundL(iRegLNoSp dst, iRegL src, immL_63 div1, immL_63 div2) %{
+instruct div2RoundL(iRegLNoSp dst, iRegL src, immI_63 div1, immI_63 div2) %{
match(Set dst (AddL src (URShiftL (RShiftL src div1) div2)));
ins_cost(INSN_COST);
format %{ "add $dst, $src, $div1" %}