@@ -430,7 +430,7 @@ static void gen_c2i_adapter(MacroAssembler *masm,
430430
431431 // Two VMREgs|OptoRegs can be T_OBJECT, T_ADDRESS, T_DOUBLE, T_LONG
432432 // T_DOUBLE and T_LONG use two slots in the interpreter
433- if ( sig_bt[i] == T_LONG || sig_bt[i] == T_DOUBLE) {
433+ if (sig_bt[i] == T_LONG || sig_bt[i] == T_DOUBLE) {
434434 // ld_off == LSW, ld_off+wordSize == MSW
435435 // st_off == MSW, next_off == LSW
436436 __ sd (t0, Address (sp, next_off), /* temp register*/ esp);
@@ -886,7 +886,7 @@ static OopMap* continuation_enter_setup(MacroAssembler* masm, int& stack_slots)
886886// c_rarg3 -- isVirtualThread
887887static void fill_continuation_entry (MacroAssembler* masm) {
888888#ifdef ASSERT
889- __ mvw (t0, ContinuationEntry::cookie_value ());
889+ __ mv (t0, ContinuationEntry::cookie_value ());
890890 __ sw (t0, Address (sp, ContinuationEntry::cookie_offset ()));
891891#endif
892892
@@ -2099,7 +2099,7 @@ void SharedRuntime::generate_deopt_blob() {
20992099 map = reg_saver.save_live_registers (masm, 0 , &frame_size_in_words);
21002100
21012101 // Normal deoptimization. Save exec mode for unpack_frames.
2102- __ mvw (xcpool, Deoptimization::Unpack_deopt); // callee-saved
2102+ __ mv (xcpool, Deoptimization::Unpack_deopt); // callee-saved
21032103 __ j (cont);
21042104
21052105 int reexecute_offset = __ pc () - start;
@@ -2116,7 +2116,7 @@ void SharedRuntime::generate_deopt_blob() {
21162116 // No need to update map as each call to save_live_registers will produce identical oopmap
21172117 (void ) reg_saver.save_live_registers (masm, 0 , &frame_size_in_words);
21182118
2119- __ mvw (xcpool, Deoptimization::Unpack_reexecute); // callee-saved
2119+ __ mv (xcpool, Deoptimization::Unpack_reexecute); // callee-saved
21202120 __ j (cont);
21212121
21222122#if INCLUDE_JVMCI
@@ -2139,10 +2139,10 @@ void SharedRuntime::generate_deopt_blob() {
21392139 __ set_last_Java_frame (sp, noreg, retaddr, t0);
21402140
21412141 __ lw (c_rarg1, Address (xthread, in_bytes (JavaThread::pending_deoptimization_offset ())));
2142- __ mvw (t0, -1 );
2142+ __ mv (t0, -1 );
21432143 __ sw (t0, Address (xthread, in_bytes (JavaThread::pending_deoptimization_offset ())));
21442144
2145- __ mvw (xcpool, (int32_t )Deoptimization::Unpack_reexecute);
2145+ __ mv (xcpool, (int32_t )Deoptimization::Unpack_reexecute);
21462146 __ mv (c_rarg0, xthread);
21472147 __ orrw (c_rarg2, zr, xcpool); // exec mode
21482148 RuntimeAddress target (CAST_FROM_FN_PTR (address, Deoptimization::uncommon_trap));
@@ -2483,7 +2483,7 @@ void SharedRuntime::generate_uncommon_trap_blob() {
24832483 // n.b. 3 gp args, 0 fp args, integral return type
24842484
24852485 __ mv (c_rarg0, xthread);
2486- __ mvw (c_rarg2, (unsigned )Deoptimization::Unpack_uncommon_trap);
2486+ __ mv (c_rarg2, (unsigned )Deoptimization::Unpack_uncommon_trap);
24872487 RuntimeAddress target (CAST_FROM_FN_PTR (address, Deoptimization::uncommon_trap));
24882488 __ relocate (target.rspec (), [&] {
24892489 int32_t offset;
@@ -2509,7 +2509,7 @@ void SharedRuntime::generate_uncommon_trap_blob() {
25092509#ifdef ASSERT
25102510 { Label L;
25112511 __ lwu (t0, Address (x14, Deoptimization::UnrollBlock::unpack_kind_offset_in_bytes ()));
2512- __ mvw (t1, Deoptimization::Unpack_uncommon_trap);
2512+ __ mv (t1, Deoptimization::Unpack_uncommon_trap);
25132513 __ beq (t0, t1, L);
25142514 __ stop (" SharedRuntime::generate_uncommon_trap_blob: expected Unpack_uncommon_trap" );
25152515 __ bind (L);
@@ -2610,7 +2610,7 @@ void SharedRuntime::generate_uncommon_trap_blob() {
26102610
26112611 // sp should already be aligned
26122612 __ mv (c_rarg0, xthread);
2613- __ mvw (c_rarg1, (unsigned )Deoptimization::Unpack_uncommon_trap);
2613+ __ mv (c_rarg1, (unsigned )Deoptimization::Unpack_uncommon_trap);
26142614 target = RuntimeAddress (CAST_FROM_FN_PTR (address, Deoptimization::unpack_frames));
26152615 __ relocate (target.rspec (), [&] {
26162616 int32_t offset;
0 commit comments