@@ -2745,10 +2745,7 @@ typedef void (MacroAssembler::* mem_vector_insn)(FloatRegister Rt,
2745
2745
}
2746
2746
2747
2747
if (index == -1) {
2748
- /* If we get an out-of-range offset it is a bug in the compiler,
2749
- so we assert here. */
2750
- assert(Address::offset_ok_for_immed(disp, exact_log2(size_in_memory)), "c2 compiler bug");
2751
- /* Fix up any out-of-range offsets. */
2748
+ // Fix up any out-of-range offsets.
2752
2749
assert_different_registers(rscratch1, base);
2753
2750
Address addr = Address(base, disp);
2754
2751
addr = __ legitimize_address(addr, size_in_memory, rscratch1);
@@ -3348,7 +3345,11 @@ encode %{
3348
3345
int scale = $mem$$scale;
3349
3346
int disp = $mem$$disp;
3350
3347
if (index == -1) {
3351
- __ prfm(Address(base, disp), PSTL1KEEP);
3348
+ // Fix up any out-of-range offsets.
3349
+ assert_different_registers(rscratch1, base);
3350
+ Address addr = Address(base, disp);
3351
+ addr = __ legitimize_address(addr, 8, rscratch1);
3352
+ __ prfm(addr, PSTL1KEEP);
3352
3353
} else {
3353
3354
Register index_reg = as_Register(index);
3354
3355
if (disp == 0) {
@@ -4229,9 +4230,9 @@ operand immIOffset16()
4229
4230
interface(CONST_INTER);
4230
4231
%}
4231
4232
4232
- operand immLoffset ()
4233
+ operand immLOffset ()
4233
4234
%{
4234
- predicate(Address::offset_ok_for_immed( n->get_long(), 0) );
4235
+ predicate(n->get_long() >= -256 && n->get_long() <= 65520 );
4235
4236
match(ConL);
4236
4237
4237
4238
op_cost(0);
@@ -5341,6 +5342,34 @@ operand indOffL16(iRegP reg, immLoffset16 off)
5341
5342
%}
5342
5343
%}
5343
5344
5345
+ operand indirectX2P(iRegL reg)
5346
+ %{
5347
+ constraint(ALLOC_IN_RC(ptr_reg));
5348
+ match(CastX2P reg);
5349
+ op_cost(0);
5350
+ format %{ "[$reg]\t# long -> ptr" %}
5351
+ interface(MEMORY_INTER) %{
5352
+ base($reg);
5353
+ index(0xffffffff);
5354
+ scale(0x0);
5355
+ disp(0x0);
5356
+ %}
5357
+ %}
5358
+
5359
+ operand indOffX2P(iRegL reg, immLOffset off)
5360
+ %{
5361
+ constraint(ALLOC_IN_RC(ptr_reg));
5362
+ match(AddP (CastX2P reg) off);
5363
+ op_cost(0);
5364
+ format %{ "[$reg, $off]\t# long -> ptr" %}
5365
+ interface(MEMORY_INTER) %{
5366
+ base($reg);
5367
+ index(0xffffffff);
5368
+ scale(0x0);
5369
+ disp($off);
5370
+ %}
5371
+ %}
5372
+
5344
5373
operand indirectN(iRegN reg)
5345
5374
%{
5346
5375
predicate(CompressedOops::shift() == 0);
@@ -5431,7 +5460,7 @@ operand indOffIN(iRegN reg, immIOffset off)
5431
5460
%}
5432
5461
%}
5433
5462
5434
- operand indOffLN(iRegN reg, immLoffset off)
5463
+ operand indOffLN(iRegN reg, immLOffset off)
5435
5464
%{
5436
5465
predicate(CompressedOops::shift() == 0);
5437
5466
constraint(ALLOC_IN_RC(ptr_reg));
@@ -5664,6 +5693,17 @@ operand iRegL2I(iRegL reg) %{
5664
5693
interface(REG_INTER)
5665
5694
%}
5666
5695
5696
+ operand iRegL2P(iRegL reg) %{
5697
+
5698
+ op_cost(0);
5699
+
5700
+ match(CastX2P reg);
5701
+
5702
+ format %{ "l2p($reg)" %}
5703
+
5704
+ interface(REG_INTER)
5705
+ %}
5706
+
5667
5707
opclass vmem2(indirect, indIndex, indOffI2, indOffL2);
5668
5708
opclass vmem4(indirect, indIndex, indOffI4, indOffL4);
5669
5709
opclass vmem8(indirect, indIndex, indOffI8, indOffL8);
@@ -5680,21 +5720,21 @@ opclass vmem16(indirect, indIndex, indOffI16, indOffL16);
5680
5720
// instruction defs. we can turn a memory op into an Address
5681
5721
5682
5722
opclass memory1(indirect, indIndexScaled, indIndexScaledI2L, indIndexI2L, indIndex, indOffI1, indOffL1,
5683
- indirectN, indIndexScaledN, indIndexScaledI2LN, indIndexI2LN, indIndexN);
5723
+ indirectN, indIndexScaledN, indIndexScaledI2LN, indIndexI2LN, indIndexN, indirectX2P, indOffX2P );
5684
5724
5685
5725
opclass memory2(indirect, indIndexScaled, indIndexScaledI2L, indIndexI2L, indIndex, indOffI2, indOffL2,
5686
- indirectN, indIndexScaledN, indIndexScaledI2LN, indIndexI2LN, indIndexN);
5726
+ indirectN, indIndexScaledN, indIndexScaledI2LN, indIndexI2LN, indIndexN, indirectX2P, indOffX2P );
5687
5727
5688
5728
opclass memory4(indirect, indIndexScaled, indIndexScaledI2L, indIndexI2L, indIndex, indOffI4, indOffL4,
5689
- indirectN, indIndexScaledN, indIndexScaledI2LN, indIndexI2LN, indIndexN, indOffIN, indOffLN);
5729
+ indirectN, indIndexScaledN, indIndexScaledI2LN, indIndexI2LN, indIndexN, indOffIN, indOffLN, indirectX2P, indOffX2P );
5690
5730
5691
5731
opclass memory8(indirect, indIndexScaled, indIndexScaledI2L, indIndexI2L, indIndex, indOffI8, indOffL8,
5692
- indirectN, indIndexScaledN, indIndexScaledI2LN, indIndexI2LN, indIndexN, indOffIN, indOffLN);
5732
+ indirectN, indIndexScaledN, indIndexScaledI2LN, indIndexI2LN, indIndexN, indOffIN, indOffLN, indirectX2P, indOffX2P );
5693
5733
5694
5734
// All of the memory operands. For the pipeline description.
5695
5735
opclass memory(indirect, indIndexScaled, indIndexScaledI2L, indIndexI2L, indIndex,
5696
5736
indOffI1, indOffL1, indOffI2, indOffL2, indOffI4, indOffL4, indOffI8, indOffL8,
5697
- indirectN, indIndexScaledN, indIndexScaledI2LN, indIndexI2LN, indIndexN, indOffIN, indOffLN);
5737
+ indirectN, indIndexScaledN, indIndexScaledI2LN, indIndexI2LN, indIndexN, indOffIN, indOffLN, indirectX2P, indOffX2P );
5698
5738
5699
5739
5700
5740
// iRegIorL2I is used for src inputs in rules for 32 bit int (I)
@@ -5711,6 +5751,7 @@ opclass memory(indirect, indIndexScaled, indIndexScaledI2L, indIndexI2L, indInde
5711
5751
// movw is actually redundant but its not too costly.
5712
5752
5713
5753
opclass iRegIorL2I(iRegI, iRegL2I);
5754
+ opclass iRegPorL2P(iRegP, iRegL2P);
5714
5755
5715
5756
//----------PIPELINE-----------------------------------------------------------
5716
5757
// Rules which define the behavior of the target architectures pipeline.
@@ -9811,7 +9852,7 @@ instruct addI_reg_imm_i2l(iRegINoSp dst, iRegL src1, immIAddSub src2) %{
9811
9852
%}
9812
9853
9813
9854
// Pointer Addition
9814
- instruct addP_reg_reg(iRegPNoSp dst, iRegP src1, iRegL src2) %{
9855
+ instruct addP_reg_reg(iRegPNoSp dst, iRegPorL2P src1, iRegL src2) %{
9815
9856
match(Set dst (AddP src1 src2));
9816
9857
9817
9858
ins_cost(INSN_COST);
@@ -9826,7 +9867,7 @@ instruct addP_reg_reg(iRegPNoSp dst, iRegP src1, iRegL src2) %{
9826
9867
ins_pipe(ialu_reg_reg);
9827
9868
%}
9828
9869
9829
- instruct addP_reg_reg_ext(iRegPNoSp dst, iRegP src1, iRegIorL2I src2) %{
9870
+ instruct addP_reg_reg_ext(iRegPNoSp dst, iRegPorL2P src1, iRegIorL2I src2) %{
9830
9871
match(Set dst (AddP src1 (ConvI2L src2)));
9831
9872
9832
9873
ins_cost(1.9 * INSN_COST);
@@ -9841,7 +9882,7 @@ instruct addP_reg_reg_ext(iRegPNoSp dst, iRegP src1, iRegIorL2I src2) %{
9841
9882
ins_pipe(ialu_reg_reg);
9842
9883
%}
9843
9884
9844
- instruct addP_reg_reg_lsl(iRegPNoSp dst, iRegP src1, iRegL src2, immIScale scale) %{
9885
+ instruct addP_reg_reg_lsl(iRegPNoSp dst, iRegPorL2P src1, iRegL src2, immIScale scale) %{
9845
9886
match(Set dst (AddP src1 (LShiftL src2 scale)));
9846
9887
9847
9888
ins_cost(1.9 * INSN_COST);
@@ -9856,7 +9897,7 @@ instruct addP_reg_reg_lsl(iRegPNoSp dst, iRegP src1, iRegL src2, immIScale scale
9856
9897
ins_pipe(ialu_reg_reg_shift);
9857
9898
%}
9858
9899
9859
- instruct addP_reg_reg_ext_shift(iRegPNoSp dst, iRegP src1, iRegIorL2I src2, immIScale scale) %{
9900
+ instruct addP_reg_reg_ext_shift(iRegPNoSp dst, iRegPorL2P src1, iRegIorL2I src2, immIScale scale) %{
9860
9901
match(Set dst (AddP src1 (LShiftL (ConvI2L src2) scale)));
9861
9902
9862
9903
ins_cost(1.9 * INSN_COST);
@@ -9889,7 +9930,7 @@ instruct lshift_ext(iRegLNoSp dst, iRegIorL2I src, immI scale, rFlagsReg cr) %{
9889
9930
// Pointer Immediate Addition
9890
9931
// n.b. this needs to be more expensive than using an indirect memory
9891
9932
// operand
9892
- instruct addP_reg_imm(iRegPNoSp dst, iRegP src1, immLAddSub src2) %{
9933
+ instruct addP_reg_imm(iRegPNoSp dst, iRegPorL2P src1, immLAddSub src2) %{
9893
9934
match(Set dst (AddP src1 src2));
9894
9935
9895
9936
ins_cost(INSN_COST);
0 commit comments