Skip to content

Commit a216960

Browse files
zhengxiaolinXRealFYang
authored andcommittedSep 22, 2022
8294087: RISC-V: RVC: Fix a potential alignment issue and add more alignment assertions for the patchable calls/nops
Reviewed-by: shade, fjiang, fyang
1 parent 3fa6778 commit a216960

9 files changed

+30
-5
lines changed
 

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -1349,7 +1349,7 @@ void LIR_Assembler::align_call(LIR_Code code) {
13491349
// With RVC a call instruction may get 2-byte aligned.
13501350
// The address of the call instruction needs to be 4-byte aligned to
13511351
// ensure that it does not span a cache line so that it can be patched.
1352-
__ align(4);
1352+
__ align(NativeInstruction::instruction_size);
13531353
}
13541354

13551355
void LIR_Assembler::call(LIR_OpJavaCall* op, relocInfo::relocType rtype) {
@@ -1372,7 +1372,7 @@ void LIR_Assembler::ic_call(LIR_OpJavaCall* op) {
13721372

13731373
void LIR_Assembler::emit_static_call_stub() {
13741374
address call_pc = __ pc();
1375-
assert((__ offset() % 4) == 0, "bad alignment");
1375+
MacroAssembler::assert_alignment(call_pc);
13761376
address stub = __ start_a_stub(call_stub_size());
13771377
if (stub == NULL) {
13781378
bailout("static call stub overflow");

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -323,7 +323,7 @@ void C1_MacroAssembler::verified_entry(bool breakAtEntry) {
323323
// first instruction with a jump. For this action to be legal we
324324
// must ensure that this first instruction is a J, JAL or NOP.
325325
// Make it a NOP.
326-
326+
assert_alignment(pc());
327327
nop();
328328
}
329329

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -255,7 +255,7 @@ void C2_MacroAssembler::emit_entry_barrier_stub(C2EntryBarrierStub* stub) {
255255

256256
bind(stub->guard());
257257
relocate(entry_guard_Relocation::spec());
258-
assert(offset() % 4 == 0, "bad alignment");
258+
assert_alignment(pc());
259259
emit_int32(0); // nmethod guard value
260260
// make sure the stub with a fixed code size
261261
if (alignment_bytes == 2) {

‎src/hotspot/cpu/riscv/gc/shared/barrierSetAssembler_riscv.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -262,7 +262,7 @@ void BarrierSetAssembler::nmethod_entry_barrier(MacroAssembler* masm, Label* slo
262262

263263
__ bind(local_guard);
264264

265-
assert(__ offset() % 4 == 0, "bad alignment");
265+
MacroAssembler::assert_alignment(__ pc());
266266
__ emit_int32(0); // nmethod guard value. Skipped over in common case.
267267
__ bind(skip_barrier);
268268
} else {

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

+5
Original file line numberDiff line numberDiff line change
@@ -2828,6 +2828,11 @@ address MacroAssembler::trampoline_call(Address entry) {
28282828
}
28292829

28302830
address call_pc = pc();
2831+
#ifdef ASSERT
2832+
if (entry.rspec().type() != relocInfo::runtime_call_type) {
2833+
assert_alignment(call_pc);
2834+
}
2835+
#endif
28312836
relocate(entry.rspec());
28322837
if (!far_branches()) {
28332838
jal(entry.target());

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

+4
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@
3030
#include "asm/assembler.hpp"
3131
#include "code/vmreg.hpp"
3232
#include "metaprogramming/enableIf.hpp"
33+
#include "nativeInst_riscv.hpp"
3334
#include "oops/compressedOops.hpp"
3435
#include "utilities/powerOfTwo.hpp"
3536

@@ -49,6 +50,9 @@ class MacroAssembler: public Assembler {
4950

5051
// Alignment
5152
int align(int modulus, int extra_offset = 0);
53+
static inline void assert_alignment(address pc, int alignment = NativeInstruction::instruction_size) {
54+
assert(is_aligned(pc, alignment), "bad alignment");
55+
}
5256

5357
// Stack frame creation/removal
5458
// Note that SP must be updated to the right place before saving/restoring RA and FP

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

+9
Original file line numberDiff line numberDiff line change
@@ -265,6 +265,13 @@ void NativeJump::verify() { }
265265

266266

267267
void NativeJump::check_verified_entry_alignment(address entry, address verified_entry) {
268+
// Patching to not_entrant can happen while activations of the method are
269+
// in use. The patching in that instance must happen only when certain
270+
// alignment restrictions are true. These guarantees check those
271+
// conditions.
272+
273+
// Must be 4 bytes aligned
274+
MacroAssembler::assert_alignment(verified_entry);
268275
}
269276

270277

@@ -355,6 +362,8 @@ void NativeJump::patch_verified_entry(address entry, address verified_entry, add
355362
nativeInstruction_at(verified_entry)->is_sigill_not_entrant(),
356363
"riscv cannot replace non-jump with jump");
357364

365+
check_verified_entry_alignment(entry, verified_entry);
366+
358367
// Patch this nmethod atomically.
359368
if (Assembler::reachable_from_branch_at(verified_entry, dest)) {
360369
ptrdiff_t offset = dest - verified_entry;

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

+5
Original file line numberDiff line numberDiff line change
@@ -1318,6 +1318,7 @@ void MachPrologNode::emit(CodeBuffer &cbuf, PhaseRegAlloc *ra_) const {
13181318

13191319
// insert a nop at the start of the prolog so we can patch in a
13201320
// branch if we need to invalidate the method later
1321+
MacroAssembler::assert_alignment(__ pc());
13211322
__ nop();
13221323

13231324
assert_cond(C != NULL);
@@ -1735,6 +1736,10 @@ void MachUEPNode::emit(CodeBuffer& cbuf, PhaseRegAlloc* ra_) const
17351736
__ cmp_klass(j_rarg0, t1, t0, skip);
17361737
__ far_jump(RuntimeAddress(SharedRuntime::get_ic_miss_stub()));
17371738
__ bind(skip);
1739+
1740+
// These NOPs are critical so that verified entry point is properly
1741+
// 4 bytes aligned for patching by NativeJump::patch_verified_entry()
1742+
__ align(NativeInstruction::instruction_size);
17381743
}
17391744

17401745
uint MachUEPNode::size(PhaseRegAlloc* ra_) const

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

+2
Original file line numberDiff line numberDiff line change
@@ -938,6 +938,7 @@ nmethod* SharedRuntime::generate_native_wrapper(MacroAssembler* masm,
938938
int vep_offset = ((intptr_t)__ pc()) - start;
939939

940940
// First instruction must be a nop as it may need to be patched on deoptimisation
941+
MacroAssembler::assert_alignment(__ pc());
941942
__ nop();
942943
gen_special_dispatch(masm,
943944
method,
@@ -1089,6 +1090,7 @@ nmethod* SharedRuntime::generate_native_wrapper(MacroAssembler* masm,
10891090

10901091
// If we have to make this method not-entrant we'll overwrite its
10911092
// first instruction with a jump.
1093+
MacroAssembler::assert_alignment(__ pc());
10921094
__ nop();
10931095

10941096
if (VM_Version::supports_fast_class_init_checks() && method->needs_clinit_barrier()) {

0 commit comments

Comments
 (0)
Please sign in to comment.