Skip to content

Commit 1375130

Browse files
feilongjiangRealFYang
authored andcommittedApr 11, 2023
8305728: RISC-V: Use bexti instruction to do single-bit testing
Reviewed-by: fyang, yzhu
1 parent 4485737 commit 1375130

15 files changed

+86
-74
lines changed
 

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

+3-3
Original file line numberDiff line numberDiff line change
@@ -1633,7 +1633,7 @@ void LIR_Assembler::check_conflict(ciKlass* exact_klass, intptr_t current_klass,
16331633
__ beqz(t0, next);
16341634

16351635
// already unknown. Nothing to do anymore.
1636-
__ andi(t0, tmp, TypeEntries::type_unknown);
1636+
__ test_bit(t0, tmp, exact_log2(TypeEntries::type_unknown));
16371637
__ bnez(t0, next);
16381638

16391639
if (TypeEntries::is_type_none(current_klass)) {
@@ -1655,7 +1655,7 @@ void LIR_Assembler::check_conflict(ciKlass* exact_klass, intptr_t current_klass,
16551655

16561656
__ ld(tmp, mdo_addr);
16571657
// already unknown. Nothing to do anymore.
1658-
__ andi(t0, tmp, TypeEntries::type_unknown);
1658+
__ test_bit(t0, tmp, exact_log2(TypeEntries::type_unknown));
16591659
__ bnez(t0, next);
16601660
}
16611661

@@ -1710,7 +1710,7 @@ void LIR_Assembler::check_no_conflict(ciKlass* exact_klass, intptr_t current_kla
17101710

17111711
__ ld(tmp, mdo_addr);
17121712
// already unknown. Nothing to do anymore.
1713-
__ andi(t0, tmp, TypeEntries::type_unknown);
1713+
__ test_bit(t0, tmp, exact_log2(TypeEntries::type_unknown));
17141714
__ bnez(t0, next);
17151715

17161716
__ ori(tmp, tmp, TypeEntries::type_unknown);

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ int C1_MacroAssembler::lock_object(Register hdr, Register obj, Register disp_hdr
6666
if (DiagnoseSyncOnValueBasedClasses != 0) {
6767
load_klass(hdr, obj);
6868
lwu(hdr, Address(hdr, Klass::access_flags_offset()));
69-
andi(t0, hdr, JVM_ACC_IS_VALUE_BASED_CLASS);
69+
test_bit(t0, hdr, exact_log2(JVM_ACC_IS_VALUE_BASED_CLASS));
7070
bnez(t0, slow_case, true /* is_far */);
7171
}
7272

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -803,7 +803,7 @@ OopMapSet* Runtime1::generate_code_for(StubID id, StubAssembler* sasm) {
803803
Register t = x15;
804804
__ load_klass(t, x10);
805805
__ lwu(t, Address(t, Klass::access_flags_offset()));
806-
__ andi(t0, t, JVM_ACC_HAS_FINALIZER);
806+
__ test_bit(t0, t, exact_log2(JVM_ACC_HAS_FINALIZER));
807807
__ bnez(t0, register_finalizer);
808808
__ ret();
809809

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

+3-3
Original file line numberDiff line numberDiff line change
@@ -1159,7 +1159,7 @@ void C2_MacroAssembler::string_equals(Register a1, Register a2,
11591159
Label TAIL03, TAIL01;
11601160

11611161
// 0-7 bytes left.
1162-
andi(t0, cnt1, 4);
1162+
test_bit(t0, cnt1, 2);
11631163
beqz(t0, TAIL03);
11641164
{
11651165
lwu(tmp1, Address(a1, 0));
@@ -1171,7 +1171,7 @@ void C2_MacroAssembler::string_equals(Register a1, Register a2,
11711171

11721172
bind(TAIL03);
11731173
// 0-3 bytes left.
1174-
andi(t0, cnt1, 2);
1174+
test_bit(t0, cnt1, 1);
11751175
beqz(t0, TAIL01);
11761176
{
11771177
lhu(tmp1, Address(a1, 0));
@@ -1184,7 +1184,7 @@ void C2_MacroAssembler::string_equals(Register a1, Register a2,
11841184
bind(TAIL01);
11851185
if (elem_size == 1) { // Only needed when comparing 1-byte elements
11861186
// 0-1 bytes left.
1187-
andi(t0, cnt1, 1);
1187+
test_bit(t0, cnt1, 0);
11881188
beqz(t0, SAME);
11891189
{
11901190
lbu(tmp1, Address(a1, 0));

‎src/hotspot/cpu/riscv/gc/shenandoah/shenandoahBarrierSetAssembler_riscv.cpp

+7-7
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ void ShenandoahBarrierSetAssembler::arraycopy_prologue(MacroAssembler* masm, Dec
6161

6262
__ lbu(t0, gc_state);
6363
if (ShenandoahSATBBarrier && dest_uninitialized) {
64-
__ andi(t0, t0, ShenandoahHeap::HAS_FORWARDED);
64+
__ test_bit(t0, t0, ShenandoahHeap::HAS_FORWARDED_BITPOS);
6565
__ beqz(t0, done);
6666
} else {
6767
__ andi(t0, t0, ShenandoahHeap::HAS_FORWARDED | ShenandoahHeap::MARKING);
@@ -247,13 +247,13 @@ void ShenandoahBarrierSetAssembler::load_reference_barrier(MacroAssembler* masm,
247247

248248
// Check for heap stability
249249
if (is_strong) {
250-
__ andi(t1, t1, ShenandoahHeap::HAS_FORWARDED);
250+
__ test_bit(t1, t1, ShenandoahHeap::HAS_FORWARDED_BITPOS);
251251
__ beqz(t1, heap_stable);
252252
} else {
253253
Label lrb;
254-
__ andi(t0, t1, ShenandoahHeap::WEAK_ROOTS);
254+
__ test_bit(t0, t1, ShenandoahHeap::WEAK_ROOTS_BITPOS);
255255
__ bnez(t0, lrb);
256-
__ andi(t0, t1, ShenandoahHeap::HAS_FORWARDED);
256+
__ test_bit(t0, t1, ShenandoahHeap::HAS_FORWARDED_BITPOS);
257257
__ beqz(t0, heap_stable);
258258
__ bind(lrb);
259259
}
@@ -277,7 +277,7 @@ void ShenandoahBarrierSetAssembler::load_reference_barrier(MacroAssembler* masm,
277277
__ srli(t0, x10, ShenandoahHeapRegion::region_size_bytes_shift_jint());
278278
__ add(t1, t1, t0);
279279
__ lbu(t1, Address(t1));
280-
__ andi(t0, t1, 1);
280+
__ test_bit(t0, t1, 0);
281281
__ beqz(t0, not_cset);
282282
}
283283

@@ -449,7 +449,7 @@ void ShenandoahBarrierSetAssembler::try_resolve_jobject_in_native(MacroAssembler
449449
__ lbu(t1, gc_state);
450450

451451
// Check for heap in evacuation phase
452-
__ andi(t0, t1, ShenandoahHeap::EVACUATION);
452+
__ test_bit(t0, t1, ShenandoahHeap::EVACUATION_BITPOS);
453453
__ bnez(t0, slowpath);
454454

455455
__ bind(done);
@@ -642,7 +642,7 @@ void ShenandoahBarrierSetAssembler::generate_c1_pre_barrier_runtime_stub(StubAss
642642
// Is marking still active?
643643
Address gc_state(thread, in_bytes(ShenandoahThreadLocalData::gc_state_offset()));
644644
__ lb(tmp, gc_state);
645-
__ andi(tmp, tmp, ShenandoahHeap::MARKING);
645+
__ test_bit(tmp, tmp, ShenandoahHeap::MARKING_BITPOS);
646646
__ beqz(tmp, done);
647647

648648
// Can we store original value in the thread's buffer?

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

+8-8
Original file line numberDiff line numberDiff line change
@@ -99,9 +99,9 @@ void InterpreterMacroAssembler::check_and_handle_popframe(Register java_thread)
9999
// This method is only called just after the call into the vm in
100100
// call_VM_base, so the arg registers are available.
101101
lwu(t1, Address(xthread, JavaThread::popframe_condition_offset()));
102-
andi(t0, t1, JavaThread::popframe_pending_bit);
102+
test_bit(t0, t1, exact_log2(JavaThread::popframe_pending_bit));
103103
beqz(t0, L);
104-
andi(t0, t1, JavaThread::popframe_processing_bit);
104+
test_bit(t0, t1, exact_log2(JavaThread::popframe_processing_bit));
105105
bnez(t0, L);
106106
// Call Interpreter::remove_activation_preserving_args_entry() to get the
107107
// address of the same-named entrypoint in the generated interpreter code.
@@ -523,7 +523,7 @@ void InterpreterMacroAssembler::dispatch_base(TosState state,
523523
if (needs_thread_local_poll) {
524524
NOT_PRODUCT(block_comment("Thread-local Safepoint poll"));
525525
ld(t1, Address(xthread, JavaThread::polling_word_offset()));
526-
andi(t1, t1, SafepointMechanism::poll_bit());
526+
test_bit(t1, t1, exact_log2(SafepointMechanism::poll_bit()));
527527
bnez(t1, safepoint);
528528
}
529529
if (table == Interpreter::dispatch_table(state)) {
@@ -620,7 +620,7 @@ void InterpreterMacroAssembler::remove_activation(
620620
// get method access flags
621621
ld(x11, Address(fp, frame::interpreter_frame_method_offset * wordSize));
622622
ld(x12, Address(x11, Method::access_flags_offset()));
623-
andi(t0, x12, JVM_ACC_SYNCHRONIZED);
623+
test_bit(t0, x12, exact_log2(JVM_ACC_SYNCHRONIZED));
624624
beqz(t0, unlocked);
625625

626626
// Don't unlock anything if the _do_not_unlock_if_synchronized flag
@@ -805,7 +805,7 @@ void InterpreterMacroAssembler::lock_object(Register lock_reg)
805805
if (DiagnoseSyncOnValueBasedClasses != 0) {
806806
load_klass(tmp, obj_reg);
807807
lwu(tmp, Address(tmp, Klass::access_flags_offset()));
808-
andi(tmp, tmp, JVM_ACC_IS_VALUE_BASED_CLASS);
808+
test_bit(tmp, tmp, exact_log2(JVM_ACC_IS_VALUE_BASED_CLASS));
809809
bnez(tmp, slow_case);
810810
}
811811

@@ -1673,7 +1673,7 @@ void InterpreterMacroAssembler::profile_obj_type(Register obj, const Address& md
16731673
// do. The unknown bit may have been
16741674
// set already but no need to check.
16751675

1676-
andi(t0, obj, TypeEntries::type_unknown);
1676+
test_bit(t0, obj, exact_log2(TypeEntries::type_unknown));
16771677
bnez(t0, next);
16781678
// already unknown. Nothing to do anymore.
16791679

@@ -1941,10 +1941,10 @@ void InterpreterMacroAssembler::get_method_counters(Register method,
19411941
}
19421942

19431943
#ifdef ASSERT
1944-
void InterpreterMacroAssembler::verify_access_flags(Register access_flags, uint32_t flag_bits,
1944+
void InterpreterMacroAssembler::verify_access_flags(Register access_flags, uint32_t flag,
19451945
const char* msg, bool stop_by_hit) {
19461946
Label L;
1947-
andi(t0, access_flags, flag_bits);
1947+
test_bit(t0, access_flags, exact_log2(flag));
19481948
if (stop_by_hit) {
19491949
beqz(t0, L);
19501950
} else {

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -302,7 +302,7 @@ class InterpreterMacroAssembler: public MacroAssembler {
302302
void load_resolved_indy_entry(Register cache, Register index);
303303

304304
#ifdef ASSERT
305-
void verify_access_flags(Register access_flags, uint32_t flag_bits,
305+
void verify_access_flags(Register access_flags, uint32_t flag,
306306
const char* msg, bool stop_by_hit = true);
307307
void verify_frame_setup();
308308
#endif

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ address JNI_FastGetField::generate_fast_get_int_field0(BasicType type) {
8484
Address safepoint_counter_addr(rcounter_addr, 0);
8585
__ lwu(rcounter, safepoint_counter_addr);
8686
// An even value means there are no ongoing safepoint operations
87-
__ andi(t0, rcounter, 1);
87+
__ test_bit(t0, rcounter, 0);
8888
__ bnez(t0, slow);
8989

9090
if (JvmtiExport::can_post_field_access()) {

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

+15-6
Original file line numberDiff line numberDiff line change
@@ -572,7 +572,7 @@ void MacroAssembler::resolve_jobject(Register value, Register tmp1, Register tmp
572572

573573
bind(tagged);
574574
// Test for jweak tag.
575-
andi(t0, value, JNIHandles::TypeTag::weak_global);
575+
test_bit(t0, value, exact_log2(JNIHandles::TypeTag::weak_global));
576576
bnez(t0, weak_tagged);
577577

578578
// Resolve global handle
@@ -598,7 +598,7 @@ void MacroAssembler::resolve_global_jobject(Register value, Register tmp1, Regis
598598
#ifdef ASSERT
599599
{
600600
Label valid_global_tag;
601-
andi(t0, value, JNIHandles::TypeTag::global); // Test for global tag.
601+
test_bit(t0, value, exact_log2(JNIHandles::TypeTag::global)); // Test for global tag.
602602
bnez(t0, valid_global_tag);
603603
stop("non global jobject using resolve_global_jobject");
604604
bind(valid_global_tag);
@@ -2418,7 +2418,7 @@ void MacroAssembler::safepoint_poll(Label& slow_path, bool at_return, bool acqui
24182418
if (at_return) {
24192419
bgtu(in_nmethod ? sp : fp, t0, slow_path, true /* is_far */);
24202420
} else {
2421-
andi(t0, t0, SafepointMechanism::poll_bit());
2421+
test_bit(t0, t0, exact_log2(SafepointMechanism::poll_bit()));
24222422
bnez(t0, slow_path, true /* is_far */);
24232423
}
24242424
}
@@ -3669,7 +3669,7 @@ void MacroAssembler::multiply_to_len(Register x, Register xlen, Register y, Regi
36693669
if (AvoidUnalignedAccesses) {
36703670
// Check if x and y are both 8-byte aligned.
36713671
orr(t0, xlen, ylen);
3672-
andi(t0, t0, 0x1);
3672+
test_bit(t0, t0, 0);
36733673
beqz(t0, L_multiply_64_x_64_loop);
36743674

36753675
multiply_32_x_32_loop(x, xstart, x_xstart, y, y_idx, z, carry, product, idx, kdx);
@@ -3910,7 +3910,7 @@ address MacroAssembler::zero_words(Register ptr, Register cnt) {
39103910
bind(around);
39113911
for (int i = zero_words_block_size >> 1; i > 1; i >>= 1) {
39123912
Label l;
3913-
andi(t0, cnt, i);
3913+
test_bit(t0, cnt, exact_log2(i));
39143914
beqz(t0, l);
39153915
for (int j = 0; j < i; j++) {
39163916
sd(zr, Address(ptr, j * wordSize));
@@ -3920,7 +3920,7 @@ address MacroAssembler::zero_words(Register ptr, Register cnt) {
39203920
}
39213921
{
39223922
Label l;
3923-
andi(t0, cnt, 1);
3923+
test_bit(t0, cnt, 0);
39243924
beqz(t0, l);
39253925
sd(zr, Address(ptr, 0));
39263926
bind(l);
@@ -4478,3 +4478,12 @@ void MacroAssembler::rt_call(address dest, Register tmp) {
44784478
});
44794479
}
44804480
}
4481+
4482+
void MacroAssembler::test_bit(Register Rd, Register Rs, uint32_t bit_pos, Register tmp) {
4483+
assert(bit_pos < 64, "invalid bit range");
4484+
if (UseZbs) {
4485+
bexti(Rd, Rs, bit_pos);
4486+
return;
4487+
}
4488+
andi(Rd, Rs, 1UL << bit_pos, tmp);
4489+
}

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

+3
Original file line numberDiff line numberDiff line change
@@ -1210,6 +1210,9 @@ class MacroAssembler: public Assembler {
12101210
// shift left by shamt and add
12111211
void shadd(Register Rd, Register Rs1, Register Rs2, Register tmp, int shamt);
12121212

1213+
// test single bit in Rs, result is set to Rd
1214+
void test_bit(Register Rd, Register Rs, uint32_t bit_pos, Register tmp = t0);
1215+
12131216
// Here the float instructions with safe deal with some exceptions.
12141217
// e.g. convert from NaN, +Inf, -Inf to int, float, double
12151218
// will trigger exception, we need to deal with these situations

‎src/hotspot/cpu/riscv/riscv.ad

+3-3
Original file line numberDiff line numberDiff line change
@@ -2406,12 +2406,12 @@ encode %{
24062406
if (DiagnoseSyncOnValueBasedClasses != 0) {
24072407
__ load_klass(flag, oop);
24082408
__ lwu(flag, Address(flag, Klass::access_flags_offset()));
2409-
__ andi(flag, flag, JVM_ACC_IS_VALUE_BASED_CLASS, tmp /* tmp */);
2409+
__ test_bit(flag, flag, exact_log2(JVM_ACC_IS_VALUE_BASED_CLASS), tmp /* tmp */);
24102410
__ bnez(flag, cont, true /* is_far */);
24112411
}
24122412

24132413
// Check for existing monitor
2414-
__ andi(t0, disp_hdr, markWord::monitor_value);
2414+
__ test_bit(t0, disp_hdr, exact_log2(markWord::monitor_value));
24152415
__ bnez(t0, object_has_monitor);
24162416

24172417
if (!UseHeavyMonitors) {
@@ -2510,7 +2510,7 @@ encode %{
25102510

25112511
// Handle existing monitor.
25122512
__ ld(tmp, Address(oop, oopDesc::mark_offset_in_bytes()));
2513-
__ andi(t0, tmp, markWord::monitor_value);
2513+
__ test_bit(t0, tmp, exact_log2(markWord::monitor_value));
25142514
__ bnez(t0, object_has_monitor);
25152515

25162516
if (!UseHeavyMonitors) {

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -665,7 +665,7 @@ AdapterHandlerEntry* SharedRuntime::generate_i2c2i_adapters(MacroAssembler *masm
665665

666666
{ // Bypass the barrier for non-static methods
667667
__ lwu(t0, Address(xmethod, Method::access_flags_offset()));
668-
__ andi(t1, t0, JVM_ACC_STATIC);
668+
__ test_bit(t1, t0, exact_log2(JVM_ACC_STATIC));
669669
__ beqz(t1, L_skip_barrier); // non-static
670670
}
671671

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

+21-21
Original file line numberDiff line numberDiff line change
@@ -807,7 +807,7 @@ class StubGenerator: public StubCodeGenerator {
807807

808808
{
809809
Label L1, L2;
810-
__ andi(t0, count, 4);
810+
__ test_bit(t0, count, 2);
811811
__ beqz(t0, L1);
812812

813813
__ ld(tmp_reg0, Address(s, 1 * unit));
@@ -829,7 +829,7 @@ class StubGenerator: public StubCodeGenerator {
829829
__ addi(d, d, bias);
830830
}
831831

832-
__ andi(t0, count, 2);
832+
__ test_bit(t0, count, 1);
833833
__ beqz(t0, L2);
834834
if (direction == copy_backwards) {
835835
__ addi(s, s, 2 * unit);
@@ -1695,7 +1695,7 @@ class StubGenerator: public StubCodeGenerator {
16951695
__ beqz(t0, L_long_aligned);
16961696
__ andi(t0, t0, BytesPerInt - 1);
16971697
__ beqz(t0, L_int_aligned);
1698-
__ andi(t0, t0, 1);
1698+
__ test_bit(t0, t0, 0);
16991699
__ beqz(t0, L_short_aligned);
17001700
__ j(RuntimeAddress(byte_copy_entry));
17011701

@@ -1776,15 +1776,15 @@ class StubGenerator: public StubCodeGenerator {
17761776

17771777
// if [src_pos < 0] then return -1
17781778
// i.e. sign bit set
1779-
__ andi(t0, src_pos, 1UL << 31);
1779+
__ test_bit(t0, src_pos, 31);
17801780
__ bnez(t0, L_failed);
17811781

17821782
// if [dst == NULL] then return -1
17831783
__ beqz(dst, L_failed);
17841784

17851785
// if [dst_pos < 0] then return -1
17861786
// i.e. sign bit set
1787-
__ andi(t0, dst_pos, 1UL << 31);
1787+
__ test_bit(t0, dst_pos, 31);
17881788
__ bnez(t0, L_failed);
17891789

17901790
// registers used as temp
@@ -1795,7 +1795,7 @@ class StubGenerator: public StubCodeGenerator {
17951795
// if [length < 0] then return -1
17961796
__ addw(scratch_length, length, zr); // length (elements count, 32-bits value)
17971797
// i.e. sign bit set
1798-
__ andi(t0, scratch_length, 1UL << 31);
1798+
__ test_bit(t0, scratch_length, 31);
17991799
__ bnez(t0, L_failed);
18001800

18011801
__ load_klass(scratch_src_klass, src);
@@ -1835,7 +1835,7 @@ class StubGenerator: public StubCodeGenerator {
18351835

18361836
// if [src->is_Array() != NULL] then return -1
18371837
// i.e. (lh >= 0)
1838-
__ andi(t0, lh, 1UL << 31);
1838+
__ test_bit(t0, lh, 31);
18391839
__ beqz(t0, L_failed);
18401840

18411841
// At this point, it is known to be a typeArray (array_tag 0x3).
@@ -1886,9 +1886,9 @@ class StubGenerator: public StubCodeGenerator {
18861886
// The possible values of elsize are 0-3, i.e. exact_log2(element
18871887
// size in bytes). We do a simple bitwise binary search.
18881888
__ BIND(L_copy_bytes);
1889-
__ andi(t0, x22_elsize, 2);
1889+
__ test_bit(t0, x22_elsize, 1);
18901890
__ bnez(t0, L_copy_ints);
1891-
__ andi(t0, x22_elsize, 1);
1891+
__ test_bit(t0, x22_elsize, 0);
18921892
__ bnez(t0, L_copy_shorts);
18931893
__ add(from, src, src_pos); // src_addr
18941894
__ add(to, dst, dst_pos); // dst_addr
@@ -1902,7 +1902,7 @@ class StubGenerator: public StubCodeGenerator {
19021902
__ j(RuntimeAddress(short_copy_entry));
19031903

19041904
__ BIND(L_copy_ints);
1905-
__ andi(t0, x22_elsize, 1);
1905+
__ test_bit(t0, x22_elsize, 0);
19061906
__ bnez(t0, L_copy_longs);
19071907
__ shadd(from, src_pos, src, t0, 2); // src_addr
19081908
__ shadd(to, dst_pos, dst, t0, 2); // dst_addr
@@ -2077,7 +2077,7 @@ class StubGenerator: public StubCodeGenerator {
20772077
switch (t) {
20782078
case T_BYTE:
20792079
// One byte misalignment happens only for byte arrays.
2080-
__ andi(t0, to, 1);
2080+
__ test_bit(t0, to, 0);
20812081
__ beqz(t0, L_skip_align1);
20822082
__ sb(value, Address(to, 0));
20832083
__ addi(to, to, 1);
@@ -2086,7 +2086,7 @@ class StubGenerator: public StubCodeGenerator {
20862086
// Fallthrough
20872087
case T_SHORT:
20882088
// Two bytes misalignment happens only for byte and short (char) arrays.
2089-
__ andi(t0, to, 2);
2089+
__ test_bit(t0, to, 1);
20902090
__ beqz(t0, L_skip_align2);
20912091
__ sh(value, Address(to, 0));
20922092
__ addi(to, to, 2);
@@ -2095,7 +2095,7 @@ class StubGenerator: public StubCodeGenerator {
20952095
// Fallthrough
20962096
case T_INT:
20972097
// Align to 8 bytes, we know we are 4 byte aligned to start.
2098-
__ andi(t0, to, 4);
2098+
__ test_bit(t0, to, 2);
20992099
__ beqz(t0, L_skip_align4);
21002100
__ sw(value, Address(to, 0));
21012101
__ addi(to, to, 4);
@@ -2139,27 +2139,27 @@ class StubGenerator: public StubCodeGenerator {
21392139
__ bind(L_fill_elements);
21402140
switch (t) {
21412141
case T_BYTE:
2142-
__ andi(t0, count, 1);
2142+
__ test_bit(t0, count, 0);
21432143
__ beqz(t0, L_fill_2);
21442144
__ sb(value, Address(to, 0));
21452145
__ addi(to, to, 1);
21462146
__ bind(L_fill_2);
2147-
__ andi(t0, count, 2);
2147+
__ test_bit(t0, count, 1);
21482148
__ beqz(t0, L_fill_4);
21492149
__ sh(value, Address(to, 0));
21502150
__ addi(to, to, 2);
21512151
__ bind(L_fill_4);
2152-
__ andi(t0, count, 4);
2152+
__ test_bit(t0, count, 2);
21532153
__ beqz(t0, L_exit2);
21542154
__ sw(value, Address(to, 0));
21552155
break;
21562156
case T_SHORT:
2157-
__ andi(t0, count, 1);
2157+
__ test_bit(t0, count, 0);
21582158
__ beqz(t0, L_fill_4);
21592159
__ sh(value, Address(to, 0));
21602160
__ addi(to, to, 2);
21612161
__ bind(L_fill_4);
2162-
__ andi(t0, count, 2);
2162+
__ test_bit(t0, count, 1);
21632163
__ beqz(t0, L_exit2);
21642164
__ sw(value, Address(to, 0));
21652165
break;
@@ -3091,7 +3091,7 @@ class StubGenerator: public StubCodeGenerator {
30913091
void unroll_2(Register count, T block) {
30923092
Label loop, end, odd;
30933093
beqz(count, end);
3094-
andi(t0, count, 0x1);
3094+
test_bit(t0, count, 0);
30953095
bnez(t0, odd);
30963096
align(16);
30973097
bind(loop);
@@ -3107,7 +3107,7 @@ class StubGenerator: public StubCodeGenerator {
31073107
void unroll_2(Register count, T block, Register d, Register s, Register tmp) {
31083108
Label loop, end, odd;
31093109
beqz(count, end);
3110-
andi(tmp, count, 0x1);
3110+
test_bit(tmp, count, 0);
31113111
bnez(tmp, odd);
31123112
align(16);
31133113
bind(loop);
@@ -3359,7 +3359,7 @@ class StubGenerator: public StubCodeGenerator {
33593359
void last_squaring(Register i) {
33603360
Label dont;
33613361
// if ((i & 1) == 0) {
3362-
andi(t0, i, 0x1);
3362+
test_bit(t0, i, 0);
33633363
bnez(t0, dont); {
33643364
// MACC(Ra, Rb, tmp0, tmp1, tmp2);
33653365
// Ra = *++Pa;

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

+3-3
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ address TemplateInterpreterGenerator::generate_slow_signature_handler() {
115115
const FloatRegister r = g_FPArgReg[i];
116116
Label d, done;
117117

118-
__ andi(t0, c_rarg3, 1UL << i);
118+
__ test_bit(t0, c_rarg3, i);
119119
__ bnez(t0, d);
120120
__ flw(r, Address(sp, (10 + i) * wordSize));
121121
__ j(done);
@@ -1081,7 +1081,7 @@ address TemplateInterpreterGenerator::generate_native_entry(bool synchronized) {
10811081
{
10821082
Label L;
10831083
__ lwu(t, Address(xmethod, Method::access_flags_offset()));
1084-
__ andi(t0, t, JVM_ACC_STATIC);
1084+
__ test_bit(t0, t, exact_log2(JVM_ACC_STATIC));
10851085
__ beqz(t0, L);
10861086
// get mirror
10871087
__ load_mirror(t, xmethod, x28, t1);
@@ -1270,7 +1270,7 @@ address TemplateInterpreterGenerator::generate_native_entry(bool synchronized) {
12701270
{
12711271
Label L;
12721272
__ lwu(t, Address(xmethod, Method::access_flags_offset()));
1273-
__ andi(t0, t, JVM_ACC_SYNCHRONIZED);
1273+
__ test_bit(t0, t, exact_log2(JVM_ACC_SYNCHRONIZED));
12741274
__ beqz(t0, L);
12751275
// the code below should be shared with interpreter macro
12761276
// assembler implementation

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

+15-15
Original file line numberDiff line numberDiff line change
@@ -1104,7 +1104,7 @@ void TemplateTable::bastore() {
11041104
__ load_klass(x12, x13);
11051105
__ lwu(x12, Address(x12, Klass::layout_helper_offset()));
11061106
Label L_skip;
1107-
__ andi(t0, x12, Klass::layout_helper_boolean_diffbit());
1107+
__ test_bit(t0, x12, exact_log2(Klass::layout_helper_boolean_diffbit()));
11081108
__ beqz(t0, L_skip);
11091109
__ andi(x10, x10, 1); // if it is a T_BOOLEAN array, mask the stored value to 0/1
11101110
__ bind(L_skip);
@@ -2086,7 +2086,7 @@ void TemplateTable::_return(TosState state) {
20862086
__ load_klass(x13, c_rarg1);
20872087
__ lwu(x13, Address(x13, Klass::access_flags_offset()));
20882088
Label skip_register_finalizer;
2089-
__ andi(t0, x13, JVM_ACC_HAS_FINALIZER);
2089+
__ test_bit(t0, x13, exact_log2(JVM_ACC_HAS_FINALIZER));
20902090
__ beqz(t0, skip_register_finalizer);
20912091

20922092
__ call_VM(noreg, CAST_FROM_FN_PTR(address, InterpreterRuntime::register_finalizer), c_rarg1);
@@ -2256,7 +2256,7 @@ void TemplateTable::load_invokedynamic_entry(Register method) {
22562256
Label L_no_push;
22572257
// Check if there is an appendix
22582258
__ load_unsigned_byte(index, Address(cache, in_bytes(ResolvedIndyEntry::flags_offset())));
2259-
__ andi(t0, index, 1UL << ResolvedIndyEntry::has_appendix_shift);
2259+
__ test_bit(t0, index, ResolvedIndyEntry::has_appendix_shift);
22602260
__ beqz(t0, L_no_push);
22612261

22622262
// Get appendix
@@ -2519,7 +2519,7 @@ void TemplateTable::getfield_or_static(int byte_no, bool is_static, RewriteContr
25192519
__ bind(Done);
25202520

25212521
Label notVolatile;
2522-
__ andi(t0, raw_flags, 1UL << ConstantPoolCacheEntry::is_volatile_shift);
2522+
__ test_bit(t0, raw_flags, ConstantPoolCacheEntry::is_volatile_shift);
25232523
__ beqz(t0, notVolatile);
25242524
__ membar(MacroAssembler::LoadLoad | MacroAssembler::LoadStore);
25252525
__ bind(notVolatile);
@@ -2618,7 +2618,7 @@ void TemplateTable::putfield_or_static(int byte_no, bool is_static, RewriteContr
26182618

26192619
{
26202620
Label notVolatile;
2621-
__ andi(t0, x15, 1UL << ConstantPoolCacheEntry::is_volatile_shift);
2621+
__ test_bit(t0, x15, ConstantPoolCacheEntry::is_volatile_shift);
26222622
__ beqz(t0, notVolatile);
26232623
__ membar(MacroAssembler::StoreStore | MacroAssembler::LoadStore);
26242624
__ bind(notVolatile);
@@ -2828,7 +2828,7 @@ void TemplateTable::putfield_or_static(int byte_no, bool is_static, RewriteContr
28282828

28292829
{
28302830
Label notVolatile;
2831-
__ andi(t0, x15, 1UL << ConstantPoolCacheEntry::is_volatile_shift);
2831+
__ test_bit(t0, x15, ConstantPoolCacheEntry::is_volatile_shift);
28322832
__ beqz(t0, notVolatile);
28332833
__ membar(MacroAssembler::StoreLoad | MacroAssembler::StoreStore);
28342834
__ bind(notVolatile);
@@ -2929,7 +2929,7 @@ void TemplateTable::fast_storefield(TosState state) {
29292929

29302930
{
29312931
Label notVolatile;
2932-
__ andi(t0, x13, 1UL << ConstantPoolCacheEntry::is_volatile_shift);
2932+
__ test_bit(t0, x13, ConstantPoolCacheEntry::is_volatile_shift);
29332933
__ beqz(t0, notVolatile);
29342934
__ membar(MacroAssembler::StoreStore | MacroAssembler::LoadStore);
29352935
__ bind(notVolatile);
@@ -2977,7 +2977,7 @@ void TemplateTable::fast_storefield(TosState state) {
29772977

29782978
{
29792979
Label notVolatile;
2980-
__ andi(t0, x13, 1UL << ConstantPoolCacheEntry::is_volatile_shift);
2980+
__ test_bit(t0, x13, ConstantPoolCacheEntry::is_volatile_shift);
29812981
__ beqz(t0, notVolatile);
29822982
__ membar(MacroAssembler::StoreLoad | MacroAssembler::StoreStore);
29832983
__ bind(notVolatile);
@@ -3063,7 +3063,7 @@ void TemplateTable::fast_accessfield(TosState state) {
30633063
}
30643064
{
30653065
Label notVolatile;
3066-
__ andi(t0, x13, 1UL << ConstantPoolCacheEntry::is_volatile_shift);
3066+
__ test_bit(t0, x13, ConstantPoolCacheEntry::is_volatile_shift);
30673067
__ beqz(t0, notVolatile);
30683068
__ membar(MacroAssembler::LoadLoad | MacroAssembler::LoadStore);
30693069
__ bind(notVolatile);
@@ -3107,7 +3107,7 @@ void TemplateTable::fast_xaccess(TosState state) {
31073107
Label notVolatile;
31083108
__ lwu(x13, Address(x12, in_bytes(ConstantPoolCache::base_offset() +
31093109
ConstantPoolCacheEntry::flags_offset())));
3110-
__ andi(t0, x13, 1UL << ConstantPoolCacheEntry::is_volatile_shift);
3110+
__ test_bit(t0, x13, ConstantPoolCacheEntry::is_volatile_shift);
31113111
__ beqz(t0, notVolatile);
31123112
__ membar(MacroAssembler::LoadLoad | MacroAssembler::LoadStore);
31133113
__ bind(notVolatile);
@@ -3156,7 +3156,7 @@ void TemplateTable::prepare_invoke(int byte_no,
31563156
// maybe push appendix to arguments (just before return address)
31573157
if (is_invokehandle) {
31583158
Label L_no_push;
3159-
__ andi(t0, flags, 1UL << ConstantPoolCacheEntry::has_appendix_shift);
3159+
__ test_bit(t0, flags, ConstantPoolCacheEntry::has_appendix_shift);
31603160
__ beqz(t0, L_no_push);
31613161
// Push the appendix as a trailing parameter.
31623162
// This must be done before we get the receiver,
@@ -3197,7 +3197,7 @@ void TemplateTable::invokevirtual_helper(Register index,
31973197
assert_different_registers(index, recv, x10, x13);
31983198
// Test for an invoke of a final method
31993199
Label notFinal;
3200-
__ andi(t0, flags, 1UL << ConstantPoolCacheEntry::is_vfinal_shift);
3200+
__ test_bit(t0, flags, ConstantPoolCacheEntry::is_vfinal_shift);
32013201
__ beqz(t0, notFinal);
32023202

32033203
const Register method = index; // method must be xmethod
@@ -3289,7 +3289,7 @@ void TemplateTable::invokeinterface(int byte_no) {
32893289
// Special case of invokeinterface called for virtual method of
32903290
// java.lang.Object. See cpCache.cpp for details
32913291
Label notObjectMethod;
3292-
__ andi(t0, x13, 1UL << ConstantPoolCacheEntry::is_forced_virtual_shift);
3292+
__ test_bit(t0, x13, ConstantPoolCacheEntry::is_forced_virtual_shift);
32933293
__ beqz(t0, notObjectMethod);
32943294

32953295
invokevirtual_helper(xmethod, x12, x13);
@@ -3299,7 +3299,7 @@ void TemplateTable::invokeinterface(int byte_no) {
32993299

33003300
// Check for private method invocation - indicated by vfinal
33013301
Label notVFinal;
3302-
__ andi(t0, x13, 1UL << ConstantPoolCacheEntry::is_vfinal_shift);
3302+
__ test_bit(t0, x13, ConstantPoolCacheEntry::is_vfinal_shift);
33033303
__ beqz(t0, notVFinal);
33043304

33053305
// Check receiver klass into x13
@@ -3468,7 +3468,7 @@ void TemplateTable::_new() {
34683468
// get instance_size in InstanceKlass (scaled to a count of bytes)
34693469
__ lwu(x13, Address(x14, Klass::layout_helper_offset()));
34703470
// test to see if it has a finalizer or is malformed in some way
3471-
__ andi(t0, x13, Klass::_lh_instance_slow_path_bit);
3471+
__ test_bit(t0, x13, exact_log2(Klass::_lh_instance_slow_path_bit));
34723472
__ bnez(t0, slow_case);
34733473

34743474
// Allocate the instance:

0 commit comments

Comments
 (0)
Please sign in to comment.