@@ -302,7 +302,7 @@ class Assembler : public AbstractAssembler {
302
302
lui (Rd, upper);
303
303
offset = lower;
304
304
} else {
305
- movptr_with_offset (Rd, (address)(uintptr_t )adr.offset (), offset);
305
+ movptr (Rd, (address)(uintptr_t )adr.offset (), offset);
306
306
}
307
307
add (Rd, Rd, adr.base ());
308
308
}
@@ -321,7 +321,7 @@ class Assembler : public AbstractAssembler {
321
321
void li32 (Register Rd, int32_t imm);
322
322
void li64 (Register Rd, int64_t imm);
323
323
void movptr (Register Rd, address addr);
324
- void movptr_with_offset (Register Rd, address addr, int32_t &offset);
324
+ void movptr (Register Rd, address addr, int32_t &offset);
325
325
void movptr (Register Rd, uintptr_t imm64);
326
326
void j (const address &dest, Register temp = t0);
327
327
void j (const Address &adr, Register temp = t0);
@@ -523,7 +523,7 @@ class Assembler : public AbstractAssembler {
523
523
NAME (Rd, Rd, ((int32_t )distance << 20 ) >> 20 ); \
524
524
} else { \
525
525
int32_t offset = 0 ; \
526
- movptr_with_offset (Rd, dest, offset); \
526
+ movptr (Rd, dest, offset); \
527
527
NAME (Rd, Rd, offset); \
528
528
} \
529
529
} \
@@ -597,7 +597,7 @@ class Assembler : public AbstractAssembler {
597
597
NAME (Rd, temp, ((int32_t )distance << 20 ) >> 20 ); \
598
598
} else { \
599
599
int32_t offset = 0 ; \
600
- movptr_with_offset (temp, dest, offset); \
600
+ movptr (temp, dest, offset); \
601
601
NAME (Rd, temp, offset); \
602
602
} \
603
603
} \
@@ -742,7 +742,7 @@ class Assembler : public AbstractAssembler {
742
742
NAME (Rs, temp, ((int32_t )distance << 20 ) >> 20 ); \
743
743
} else { \
744
744
int32_t offset = 0 ; \
745
- movptr_with_offset (temp, dest, offset); \
745
+ movptr (temp, dest, offset); \
746
746
NAME (Rs, temp, offset); \
747
747
} \
748
748
} \
@@ -786,7 +786,7 @@ class Assembler : public AbstractAssembler {
786
786
NAME (Rs, temp, ((int32_t )distance << 20 ) >> 20 ); \
787
787
} else { \
788
788
int32_t offset = 0 ; \
789
- movptr_with_offset (temp, dest, offset); \
789
+ movptr (temp, dest, offset); \
790
790
NAME (Rs, temp, offset); \
791
791
} \
792
792
} \
@@ -881,7 +881,7 @@ class Assembler : public AbstractAssembler {
881
881
} else { \
882
882
assert_different_registers (Rd, temp); \
883
883
int32_t off = 0 ; \
884
- movptr_with_offset (temp, dest, off); \
884
+ movptr (temp, dest, off); \
885
885
jalr (Rd, temp, off); \
886
886
} \
887
887
} \
1 commit comments
openjdk-notifier[bot] commentedon Sep 28, 2022
Review
Issues