Skip to content

Commit d5bee4a

Browse files
zhengxiaolinXRealFYang
authored andcommittedSep 22, 2022
8294086: RISC-V: Cleanup InstructionMark usages in the backend
Reviewed-by: fjiang, fyang
1 parent 47f233a commit d5bee4a

File tree

3 files changed

+9
-21
lines changed

3 files changed

+9
-21
lines changed
 

‎src/hotspot/cpu/riscv/assembler_riscv.hpp

+1-2
Original file line numberDiff line numberDiff line change
@@ -486,10 +486,9 @@ class Assembler : public AbstractAssembler {
486486

487487
#define INSN_ENTRY_RELOC(result_type, header) \
488488
result_type header { \
489-
InstructionMark im(this); \
490489
guarantee(rtype == relocInfo::internal_word_type, \
491490
"only internal_word_type relocs make sense here"); \
492-
code_section()->relocate(inst_mark(), InternalAddress(dest).rspec());
491+
code_section()->relocate(pc(), InternalAddress(dest).rspec());
493492

494493
// Load/store register (all modes)
495494
#define INSN(NAME, op, funct3) \

‎src/hotspot/cpu/riscv/macroAssembler_riscv.cpp

+7-18
Original file line numberDiff line numberDiff line change
@@ -240,7 +240,6 @@ void MacroAssembler::set_last_Java_frame(Register last_java_sp,
240240
if (L.is_bound()) {
241241
set_last_Java_frame(last_java_sp, last_java_fp, target(L), tmp);
242242
} else {
243-
InstructionMark im(this);
244243
L.add_patch_at(code(), locator());
245244
set_last_Java_frame(last_java_sp, last_java_fp, pc() /* Patched later */, tmp);
246245
}
@@ -731,8 +730,7 @@ void MacroAssembler::la(Register Rd, const address &dest) {
731730
}
732731

733732
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());
736734
relocInfo::relocType rtype = adr.rspec().reloc()->type();
737735

738736
switch (adr.getMode()) {
@@ -2702,8 +2700,7 @@ void MacroAssembler::la_patchable(Register reg1, const Address &dest, int32_t &o
27022700
assert(is_valid_riscv64_address(dest.target()), "bad address");
27032701
assert(dest.getMode() == Address::literal, "la_patchable must be applied to a literal address");
27042702

2705-
InstructionMark im(this);
2706-
code_section()->relocate(inst_mark(), dest.rspec());
2703+
code_section()->relocate(pc(), dest.rspec());
27072704
// RISC-V doesn't compute a page-aligned address, in order to partially
27082705
// compensate for the use of *signed* offsets in its base+disp12
27092706
// addressing mode (RISC-V's PC-relative reach remains asymmetric
@@ -2766,15 +2763,9 @@ void MacroAssembler::get_polling_page(Register dest, relocInfo::relocType rtype)
27662763

27672764
// Read the polling page. The address of the polling page must
27682765
// 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));
27782769
}
27792770

27802771
void MacroAssembler::set_narrow_oop(Register dst, jobject obj) {
@@ -2788,9 +2779,8 @@ void MacroAssembler::set_narrow_oop(Register dst, jobject obj) {
27882779
}
27892780
#endif
27902781
int oop_index = oop_recorder()->find_index(obj);
2791-
InstructionMark im(this);
27922782
RelocationHolder rspec = oop_Relocation::spec(oop_index);
2793-
code_section()->relocate(inst_mark(), rspec);
2783+
code_section()->relocate(pc(), rspec);
27942784
li32(dst, 0xDEADBEEF);
27952785
zero_extend(dst, dst, 32);
27962786
}
@@ -2801,9 +2791,8 @@ void MacroAssembler::set_narrow_klass(Register dst, Klass* k) {
28012791
int index = oop_recorder()->find_index(k);
28022792
assert(!Universe::heap()->is_in(k), "should not be an oop");
28032793

2804-
InstructionMark im(this);
28052794
RelocationHolder rspec = metadata_Relocation::spec(index);
2806-
code_section()->relocate(inst_mark(), rspec);
2795+
code_section()->relocate(pc(), rspec);
28072796
narrowKlass nk = CompressedKlassPointers::encode(k);
28082797
li32(dst, nk);
28092798
zero_extend(dst, dst, 32);

‎src/hotspot/cpu/riscv/macroAssembler_riscv.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -641,7 +641,7 @@ class MacroAssembler: public Assembler {
641641
void reserved_stack_check();
642642

643643
void get_polling_page(Register dest, relocInfo::relocType rtype);
644-
address read_polling_page(Register r, int32_t offset, relocInfo::relocType rtype);
644+
void read_polling_page(Register r, int32_t offset, relocInfo::relocType rtype);
645645

646646
// RISCV64 OpenJDK uses four different types of calls:
647647
// - direct call: jal pc_relative_offset

0 commit comments

Comments
 (0)
Please sign in to comment.