Skip to content

Commit 92067e2

Browse files
committedJul 18, 2022
8290137: riscv: small refactoring for add_memory_int32/64
Reviewed-by: yadongwang, fjiang, shade
1 parent 87340fd commit 92067e2

8 files changed

+89
-49
lines changed
 

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

+26-26
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ void Assembler::add(Register Rd, Register Rn, int64_t increment, Register temp)
5050
}
5151
}
5252

53-
void Assembler::addw(Register Rd, Register Rn, int64_t increment, Register temp) {
53+
void Assembler::addw(Register Rd, Register Rn, int32_t increment, Register temp) {
5454
if (is_imm_in_range(increment, 12, 0)) {
5555
addiw(Rd, Rn, increment);
5656
} else {
@@ -70,7 +70,7 @@ void Assembler::sub(Register Rd, Register Rn, int64_t decrement, Register temp)
7070
}
7171
}
7272

73-
void Assembler::subw(Register Rd, Register Rn, int64_t decrement, Register temp) {
73+
void Assembler::subw(Register Rd, Register Rn, int32_t decrement, Register temp) {
7474
if (is_imm_in_range(-decrement, 12, 0)) {
7575
addiw(Rd, Rn, -decrement);
7676
} else {
@@ -117,30 +117,30 @@ void Assembler::_li(Register Rd, int64_t imm) {
117117
}
118118

119119
void Assembler::li64(Register Rd, int64_t imm) {
120-
// Load upper 32 bits. upper = imm[63:32], but if imm[31] == 1 or
121-
// (imm[31:20] == 0x7ff && imm[19] == 1), upper = imm[63:32] + 1.
122-
int64_t lower = imm & 0xffffffff;
123-
lower -= ((lower << 44) >> 44);
124-
int64_t tmp_imm = ((uint64_t)(imm & 0xffffffff00000000)) + (uint64_t)lower;
125-
int32_t upper = (tmp_imm - (int32_t)lower) >> 32;
126-
127-
// Load upper 32 bits
128-
int64_t up = upper, lo = upper;
129-
lo = (lo << 52) >> 52;
130-
up -= lo;
131-
up = (int32_t)up;
132-
lui(Rd, up);
133-
addi(Rd, Rd, lo);
134-
135-
// Load the rest 32 bits.
136-
slli(Rd, Rd, 12);
137-
addi(Rd, Rd, (int32_t)lower >> 20);
138-
slli(Rd, Rd, 12);
139-
lower = ((int32_t)imm << 12) >> 20;
140-
addi(Rd, Rd, lower);
141-
slli(Rd, Rd, 8);
142-
lower = imm & 0xff;
143-
addi(Rd, Rd, lower);
120+
// Load upper 32 bits. upper = imm[63:32], but if imm[31] == 1 or
121+
// (imm[31:20] == 0x7ff && imm[19] == 1), upper = imm[63:32] + 1.
122+
int64_t lower = imm & 0xffffffff;
123+
lower -= ((lower << 44) >> 44);
124+
int64_t tmp_imm = ((uint64_t)(imm & 0xffffffff00000000)) + (uint64_t)lower;
125+
int32_t upper = (tmp_imm - (int32_t)lower) >> 32;
126+
127+
// Load upper 32 bits
128+
int64_t up = upper, lo = upper;
129+
lo = (lo << 52) >> 52;
130+
up -= lo;
131+
up = (int32_t)up;
132+
lui(Rd, up);
133+
addi(Rd, Rd, lo);
134+
135+
// Load the rest 32 bits.
136+
slli(Rd, Rd, 12);
137+
addi(Rd, Rd, (int32_t)lower >> 20);
138+
slli(Rd, Rd, 12);
139+
lower = ((int32_t)imm << 12) >> 20;
140+
addi(Rd, Rd, lower);
141+
slli(Rd, Rd, 8);
142+
lower = imm & 0xff;
143+
addi(Rd, Rd, lower);
144144
}
145145

146146
void Assembler::li32(Register Rd, int32_t imm) {

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

+4-3
Original file line numberDiff line numberDiff line change
@@ -3066,11 +3066,12 @@ enum Nf {
30663066
void wrap_label(Register r, Label &L, Register t, load_insn_by_temp insn);
30673067
void wrap_label(Register r, Label &L, jal_jalr_insn insn);
30683068

3069-
// calculate pseudoinstruction
3069+
// Computational pseudo instructions
30703070
void add(Register Rd, Register Rn, int64_t increment, Register temp = t0);
3071-
void addw(Register Rd, Register Rn, int64_t increment, Register temp = t0);
3071+
void addw(Register Rd, Register Rn, int32_t increment, Register temp = t0);
3072+
30723073
void sub(Register Rd, Register Rn, int64_t decrement, Register temp = t0);
3073-
void subw(Register Rd, Register Rn, int64_t decrement, Register temp = t0);
3074+
void subw(Register Rd, Register Rn, int32_t decrement, Register temp = t0);
30743075

30753076
// RVB pseudo instructions
30763077
// zero extend word

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -343,7 +343,7 @@ void ArrayCopyStub::emit_code(LIR_Assembler* ce) {
343343
#ifndef PRODUCT
344344
if (PrintC1Statistics) {
345345
__ la(t1, ExternalAddress((address)&Runtime1::_arraycopy_slowcase_cnt));
346-
__ add_memory_int32(Address(t1), 1);
346+
__ incrementw(Address(t1));
347347
}
348348
#endif
349349

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

+4-4
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ void LIR_Assembler::generic_arraycopy(Register src, Register src_pos, Register l
5757
__ mv(c_rarg4, j_rarg4);
5858
#ifndef PRODUCT
5959
if (PrintC1Statistics) {
60-
__ add_memory_int32(ExternalAddress((address)&Runtime1::_generic_arraycopystub_cnt), 1);
60+
__ incrementw(ExternalAddress((address)&Runtime1::_generic_arraycopystub_cnt));
6161
}
6262
#endif
6363
__ far_call(RuntimeAddress(copyfunc_addr));
@@ -164,7 +164,7 @@ void LIR_Assembler::arraycopy_checkcast(Register src, Register src_pos, Register
164164
if (PrintC1Statistics) {
165165
Label failed;
166166
__ bnez(x10, failed);
167-
__ add_memory_int32(ExternalAddress((address)&Runtime1::_arraycopy_checkcast_cnt), 1);
167+
__ incrementw(ExternalAddress((address)&Runtime1::_arraycopy_checkcast_cnt));
168168
__ bind(failed);
169169
}
170170
#endif
@@ -173,7 +173,7 @@ void LIR_Assembler::arraycopy_checkcast(Register src, Register src_pos, Register
173173

174174
#ifndef PRODUCT
175175
if (PrintC1Statistics) {
176-
__ add_memory_int32(ExternalAddress((address)&Runtime1::_arraycopy_checkcast_attempt_cnt), 1);
176+
__ incrementw(ExternalAddress((address)&Runtime1::_arraycopy_checkcast_attempt_cnt));
177177
}
178178
#endif
179179
assert_different_registers(dst, dst_pos, length, src_pos, src, x10, t0);
@@ -324,7 +324,7 @@ void LIR_Assembler::emit_arraycopy(LIR_OpArrayCopy* op) {
324324

325325
#ifndef PRODUCT
326326
if (PrintC1Statistics) {
327-
__ add_memory_int32(ExternalAddress(Runtime1::arraycopy_count_address(basic_type)), 1);
327+
__ incrementw(ExternalAddress(Runtime1::arraycopy_count_address(basic_type)));
328328
}
329329
#endif
330330
arraycopy_prepare_params(src, src_pos, length, dst, dst_pos, basic_type);

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

+5-5
Original file line numberDiff line numberDiff line change
@@ -1057,7 +1057,7 @@ void LIR_Assembler::type_profile_helper(Register mdo, ciMethodData *md, ciProfil
10571057
__ ld(t1, Address(mdo, md->byte_offset_of_slot(data, ReceiverTypeData::receiver_offset(i))));
10581058
__ bne(recv, t1, next_test);
10591059
Address data_addr(mdo, md->byte_offset_of_slot(data, ReceiverTypeData::receiver_count_offset(i)));
1060-
__ add_memory_int64(data_addr, DataLayout::counter_increment);
1060+
__ increment(data_addr, DataLayout::counter_increment);
10611061
__ j(*update_done);
10621062
__ bind(next_test);
10631063
}
@@ -1567,7 +1567,7 @@ void LIR_Assembler::emit_profile_call(LIR_OpProfileCall* op) {
15671567
ciKlass* receiver = vc_data->receiver(i);
15681568
if (known_klass->equals(receiver)) {
15691569
Address data_addr(mdo, md->byte_offset_of_slot(data, VirtualCallData::receiver_count_offset(i)));
1570-
__ add_memory_int64(data_addr, DataLayout::counter_increment);
1570+
__ increment(data_addr, DataLayout::counter_increment);
15711571
return;
15721572
}
15731573
}
@@ -1583,7 +1583,7 @@ void LIR_Assembler::emit_profile_call(LIR_OpProfileCall* op) {
15831583
__ mov_metadata(t1, known_klass->constant_encoding());
15841584
__ sd(t1, recv_addr);
15851585
Address data_addr(mdo, md->byte_offset_of_slot(data, VirtualCallData::receiver_count_offset(i)));
1586-
__ add_memory_int64(data_addr, DataLayout::counter_increment);
1586+
__ increment(data_addr, DataLayout::counter_increment);
15871587
return;
15881588
}
15891589
}
@@ -1593,13 +1593,13 @@ void LIR_Assembler::emit_profile_call(LIR_OpProfileCall* op) {
15931593
type_profile_helper(mdo, md, data, recv, &update_done);
15941594
// Receiver did not match any saved receiver and there is no empty row for it.
15951595
// Increment total counter to indicate polymorphic case.
1596-
__ add_memory_int64(counter_addr, DataLayout::counter_increment);
1596+
__ increment(counter_addr, DataLayout::counter_increment);
15971597

15981598
__ bind(update_done);
15991599
}
16001600
} else {
16011601
// Static call
1602-
__ add_memory_int64(counter_addr, DataLayout::counter_increment);
1602+
__ increment(counter_addr, DataLayout::counter_increment);
16031603
}
16041604
}
16051605

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

+34-6
Original file line numberDiff line numberDiff line change
@@ -2955,19 +2955,47 @@ Address MacroAssembler::add_memory_helper(const Address dst) {
29552955
}
29562956
}
29572957

2958-
void MacroAssembler::add_memory_int64(const Address dst, int64_t imm) {
2958+
void MacroAssembler::increment(const Address dst, int64_t value) {
2959+
assert(((dst.getMode() == Address::base_plus_offset &&
2960+
is_offset_in_range(dst.offset(), 12)) || is_imm_in_range(value, 12, 0)),
2961+
"invalid value and address mode combination");
29592962
Address adr = add_memory_helper(dst);
2960-
assert_different_registers(adr.base(), t0);
2963+
assert(!adr.uses(t0), "invalid dst for address increment");
29612964
ld(t0, adr);
2962-
addi(t0, t0, imm);
2965+
add(t0, t0, value, t1);
29632966
sd(t0, adr);
29642967
}
29652968

2966-
void MacroAssembler::add_memory_int32(const Address dst, int32_t imm) {
2969+
void MacroAssembler::incrementw(const Address dst, int32_t value) {
2970+
assert(((dst.getMode() == Address::base_plus_offset &&
2971+
is_offset_in_range(dst.offset(), 12)) || is_imm_in_range(value, 12, 0)),
2972+
"invalid value and address mode combination");
29672973
Address adr = add_memory_helper(dst);
2968-
assert_different_registers(adr.base(), t0);
2974+
assert(!adr.uses(t0), "invalid dst for address increment");
29692975
lwu(t0, adr);
2970-
addiw(t0, t0, imm);
2976+
addw(t0, t0, value, t1);
2977+
sw(t0, adr);
2978+
}
2979+
2980+
void MacroAssembler::decrement(const Address dst, int64_t value) {
2981+
assert(((dst.getMode() == Address::base_plus_offset &&
2982+
is_offset_in_range(dst.offset(), 12)) || is_imm_in_range(value, 12, 0)),
2983+
"invalid value and address mode combination");
2984+
Address adr = add_memory_helper(dst);
2985+
assert(!adr.uses(t0), "invalid dst for address decrement");
2986+
ld(t0, adr);
2987+
sub(t0, t0, value, t1);
2988+
sd(t0, adr);
2989+
}
2990+
2991+
void MacroAssembler::decrementw(const Address dst, int32_t value) {
2992+
assert(((dst.getMode() == Address::base_plus_offset &&
2993+
is_offset_in_range(dst.offset(), 12)) || is_imm_in_range(value, 12, 0)),
2994+
"invalid value and address mode combination");
2995+
Address adr = add_memory_helper(dst);
2996+
assert(!adr.uses(t0), "invalid dst for address decrement");
2997+
lwu(t0, adr);
2998+
subw(t0, t0, value, t1);
29712999
sw(t0, adr);
29723000
}
29733001

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

+13-2
Original file line numberDiff line numberDiff line change
@@ -642,8 +642,19 @@ class MacroAssembler: public Assembler {
642642
address trampoline_call(Address entry, CodeBuffer* cbuf = NULL);
643643
address ic_call(address entry, jint method_index = 0);
644644

645-
void add_memory_int64(const Address dst, int64_t imm);
646-
void add_memory_int32(const Address dst, int32_t imm);
645+
// Support for memory inc/dec
646+
// n.b. increment/decrement calls with an Address destination will
647+
// need to use a scratch register to load the value to be
648+
// incremented. increment/decrement calls which add or subtract a
649+
// constant value other than sign-extended 12-bit immediate will need
650+
// to use a 2nd scratch register to hold the constant. so, an address
651+
// increment/decrement may trash both t0 and t1.
652+
653+
void increment(const Address dst, int64_t value = 1);
654+
void incrementw(const Address dst, int32_t value = 1);
655+
656+
void decrement(const Address dst, int64_t value = 1);
657+
void decrementw(const Address dst, int32_t value = 1);
647658

648659
void cmpptr(Register src1, Address src2, Label& equal);
649660

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ VtableStub* VtableStubs::create_vtable_stub(int vtable_index) {
7272
#if (!defined(PRODUCT) && defined(COMPILER2))
7373
if (CountCompiledCalls) {
7474
__ la(t2, ExternalAddress((address) SharedRuntime::nof_megamorphic_calls_addr()));
75-
__ add_memory_int64(Address(t2), 1);
75+
__ increment(Address(t2));
7676
}
7777
#endif
7878

@@ -163,7 +163,7 @@ VtableStub* VtableStubs::create_itable_stub(int itable_index) {
163163
#if (!defined(PRODUCT) && defined(COMPILER2))
164164
if (CountCompiledCalls) {
165165
__ la(x18, ExternalAddress((address) SharedRuntime::nof_megamorphic_calls_addr()));
166-
__ add_memory_int64(Address(x18), 1);
166+
__ increment(Address(x18));
167167
}
168168
#endif
169169

0 commit comments

Comments
 (0)
Please sign in to comment.