@@ -240,7 +240,6 @@ void MacroAssembler::set_last_Java_frame(Register last_java_sp,
240
240
if (L.is_bound ()) {
241
241
set_last_Java_frame (last_java_sp, last_java_fp, target (L), tmp);
242
242
} else {
243
- InstructionMark im (this );
244
243
L.add_patch_at (code (), locator ());
245
244
set_last_Java_frame (last_java_sp, last_java_fp, pc () /* Patched later */ , tmp);
246
245
}
@@ -731,8 +730,7 @@ void MacroAssembler::la(Register Rd, const address &dest) {
731
730
}
732
731
733
732
void MacroAssembler::la (Register Rd, const Address &adr) {
734
- InstructionMark im (this );
735
- code_section ()->relocate (inst_mark (), adr.rspec ());
733
+ code_section ()->relocate (pc (), adr.rspec ());
736
734
relocInfo::relocType rtype = adr.rspec ().reloc ()->type ();
737
735
738
736
switch (adr.getMode ()) {
@@ -2702,8 +2700,7 @@ void MacroAssembler::la_patchable(Register reg1, const Address &dest, int32_t &o
2702
2700
assert (is_valid_riscv64_address (dest.target ()), " bad address" );
2703
2701
assert (dest.getMode () == Address::literal, " la_patchable must be applied to a literal address" );
2704
2702
2705
- InstructionMark im (this );
2706
- code_section ()->relocate (inst_mark (), dest.rspec ());
2703
+ code_section ()->relocate (pc (), dest.rspec ());
2707
2704
// RISC-V doesn't compute a page-aligned address, in order to partially
2708
2705
// compensate for the use of *signed* offsets in its base+disp12
2709
2706
// addressing mode (RISC-V's PC-relative reach remains asymmetric
@@ -2766,15 +2763,9 @@ void MacroAssembler::get_polling_page(Register dest, relocInfo::relocType rtype)
2766
2763
2767
2764
// Read the polling page. The address of the polling page must
2768
2765
// already be in r.
2769
- address MacroAssembler::read_polling_page (Register r, int32_t offset, relocInfo::relocType rtype) {
2770
- address mark;
2771
- {
2772
- InstructionMark im (this );
2773
- code_section ()->relocate (inst_mark (), rtype);
2774
- lwu (zr, Address (r, offset));
2775
- mark = inst_mark ();
2776
- }
2777
- return mark;
2766
+ void MacroAssembler::read_polling_page (Register r, int32_t offset, relocInfo::relocType rtype) {
2767
+ code_section ()->relocate (pc (), rtype);
2768
+ lwu (zr, Address (r, offset));
2778
2769
}
2779
2770
2780
2771
void MacroAssembler::set_narrow_oop (Register dst, jobject obj) {
@@ -2788,9 +2779,8 @@ void MacroAssembler::set_narrow_oop(Register dst, jobject obj) {
2788
2779
}
2789
2780
#endif
2790
2781
int oop_index = oop_recorder ()->find_index (obj);
2791
- InstructionMark im (this );
2792
2782
RelocationHolder rspec = oop_Relocation::spec (oop_index);
2793
- code_section ()->relocate (inst_mark (), rspec);
2783
+ code_section ()->relocate (pc (), rspec);
2794
2784
li32 (dst, 0xDEADBEEF );
2795
2785
zero_extend (dst, dst, 32 );
2796
2786
}
@@ -2801,9 +2791,8 @@ void MacroAssembler::set_narrow_klass(Register dst, Klass* k) {
2801
2791
int index = oop_recorder ()->find_index (k);
2802
2792
assert (!Universe::heap ()->is_in (k), " should not be an oop" );
2803
2793
2804
- InstructionMark im (this );
2805
2794
RelocationHolder rspec = metadata_Relocation::spec (index );
2806
- code_section ()->relocate (inst_mark (), rspec);
2795
+ code_section ()->relocate (pc (), rspec);
2807
2796
narrowKlass nk = CompressedKlassPointers::encode (k);
2808
2797
li32 (dst, nk);
2809
2798
zero_extend (dst, dst, 32 );
0 commit comments