Skip to content

Commit 5a539e8

Browse files
Yadong WangVladimir Kempik
Yadong Wang
authored and
Vladimir Kempik
committedAug 8, 2022
8291893: riscv: remove fence.i used in user space
Reviewed-by: fyang, vkempik
1 parent b2f0cbd commit 5a539e8

10 files changed

+14
-69
lines changed
 

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

-7
Original file line numberDiff line numberDiff line change
@@ -311,13 +311,6 @@ void Assembler::movptr(Register Rd, address addr) {
311311
addi(Rd, Rd, offset);
312312
}
313313

314-
void Assembler::ifence() {
315-
fence_i();
316-
if (UseConservativeFence) {
317-
fence(ir, ir);
318-
}
319-
}
320-
321314
#define INSN(NAME, NEG_INSN) \
322315
void Assembler::NAME(Register Rs, Register Rt, const address &dest) { \
323316
NEG_INSN(Rt, Rs, dest); \

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

-2
Original file line numberDiff line numberDiff line change
@@ -339,7 +339,6 @@ class Assembler : public AbstractAssembler {
339339
void movptr(Register Rd, address addr);
340340
void movptr_with_offset(Register Rd, address addr, int32_t &offset);
341341
void movptr(Register Rd, uintptr_t imm64);
342-
void ifence();
343342
void j(const address &dest, Register temp = t0);
344343
void j(const Address &adr, Register temp = t0);
345344
void j(Label &l, Register temp = t0);
@@ -961,7 +960,6 @@ class Assembler : public AbstractAssembler {
961960
emit(insn); \
962961
}
963962

964-
INSN(fence_i, 0b0001111, 0b001, 0b000000000000);
965963
INSN(ecall, 0b1110011, 0b000, 0b000000000000);
966964
INSN(_ebreak, 0b1110011, 0b000, 0b000000000001);
967965

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

+5-5
Original file line numberDiff line numberDiff line change
@@ -69,8 +69,8 @@ address CompiledStaticCall::emit_to_interp_stub(CodeBuffer &cbuf, address mark)
6969
#undef __
7070

7171
int CompiledStaticCall::to_interp_stub_size() {
72-
// fence_i + fence* + (lui, addi, slli, addi, slli, addi) + (lui, addi, slli, addi, slli) + jalr
73-
return NativeFenceI::instruction_size() + 12 * NativeInstruction::instruction_size;
72+
// (lui, addi, slli, addi, slli, addi) + (lui, addi, slli, addi, slli) + jalr
73+
return 12 * NativeInstruction::instruction_size;
7474
}
7575

7676
int CompiledStaticCall::to_trampoline_stub_size() {
@@ -98,7 +98,7 @@ void CompiledDirectStaticCall::set_to_interpreted(const methodHandle& callee, ad
9898

9999
// Creation also verifies the object.
100100
NativeMovConstReg* method_holder
101-
= nativeMovConstReg_at(stub + NativeFenceI::instruction_size());
101+
= nativeMovConstReg_at(stub);
102102
#ifdef ASSERT
103103
NativeGeneralJump* jump = nativeGeneralJump_at(method_holder->next_instruction_address());
104104

@@ -119,7 +119,7 @@ void CompiledDirectStaticCall::set_stub_to_clean(static_stub_Relocation* static_
119119
assert(CompiledICLocker::is_safe(stub), "mt unsafe call");
120120
// Creation also verifies the object.
121121
NativeMovConstReg* method_holder
122-
= nativeMovConstReg_at(stub + NativeFenceI::instruction_size());
122+
= nativeMovConstReg_at(stub);
123123
method_holder->set_data(0);
124124
NativeJump* jump = nativeJump_at(method_holder->next_instruction_address());
125125
jump->set_jump_destination((address)-1);
@@ -139,7 +139,7 @@ void CompiledDirectStaticCall::verify() {
139139
assert(stub != NULL, "no stub found for static call");
140140
// Creation also verifies the object.
141141
NativeMovConstReg* method_holder
142-
= nativeMovConstReg_at(stub + NativeFenceI::instruction_size());
142+
= nativeMovConstReg_at(stub);
143143
NativeJump* jump = nativeJump_at(method_holder->next_instruction_address());
144144

145145
// Verify state.

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

+1-2
Original file line numberDiff line numberDiff line change
@@ -88,8 +88,7 @@ define_pd_global(intx, InlineSmallCode, 1000);
8888
product(bool, TraceTraps, false, "Trace all traps the signal handler") \
8989
/* For now we're going to be safe and add the I/O bits to userspace fences. */ \
9090
product(bool, UseConservativeFence, true, \
91-
"Extend i for r and o for w in the pred/succ flags of fence;" \
92-
"Extend fence.i to fence.i + fence.") \
91+
"Extend i for r and o for w in the pred/succ flags of fence") \
9392
product(bool, AvoidUnalignedAccesses, true, \
9493
"Avoid generating unaligned memory accesses") \
9594
product(bool, UseRVV, false, EXPERIMENTAL, "Use RVV instructions") \

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

+8
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,14 @@
3030
#define __ _masm->
3131

3232
static int icache_flush(address addr, int lines, int magic) {
33+
// To make a store to instruction memory visible to all RISC-V harts,
34+
// the writing hart has to execute a data FENCE before requesting that
35+
// all remote RISC-V harts execute a FENCE.I.
36+
//
37+
// No sush assurance is defined at the interface level of the builtin
38+
// method, and so we should make sure it works.
39+
__asm__ volatile("fence rw, rw" : : : "memory");
40+
3341
__builtin___clear_cache(addr, addr + (lines << ICache::log2_line_size));
3442
return magic;
3543
}

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

-30
Original file line numberDiff line numberDiff line change
@@ -555,7 +555,6 @@ void MacroAssembler::emit_static_call_stub() {
555555
// CompiledDirectStaticCall::set_to_interpreted knows the
556556
// exact layout of this stub.
557557

558-
ifence();
559558
mov_metadata(xmethod, (Metadata*)NULL);
560559

561560
// Jump to the entry point of the i2c stub.
@@ -1668,7 +1667,6 @@ void MacroAssembler::movoop(Register dst, jobject obj, bool immediate) {
16681667

16691668
// nmethod entry barrier necessitate using the constant pool. They have to be
16701669
// ordered with respected to oop access.
1671-
// Using immediate literals would necessitate fence.i.
16721670
if (BarrierSet::barrier_set()->barrier_set_nmethod() != NULL || !immediate) {
16731671
address dummy = address(uintptr_t(pc()) & -wordSize); // A nearby aligned address
16741672
ld_constant(dst, Address(dummy, rspec));
@@ -2746,7 +2744,6 @@ void MacroAssembler::build_frame(int framesize) {
27462744
sd(fp, Address(sp, framesize - 2 * wordSize));
27472745
sd(ra, Address(sp, framesize - wordSize));
27482746
if (PreserveFramePointer) { add(fp, sp, framesize); }
2749-
verify_cross_modify_fence_not_required();
27502747
}
27512748

27522749
void MacroAssembler::remove_frame(int framesize) {
@@ -2797,7 +2794,6 @@ address MacroAssembler::read_polling_page(Register r, int32_t offset, relocInfo:
27972794
lwu(zr, Address(r, offset));
27982795
mark = inst_mark();
27992796
}
2800-
verify_cross_modify_fence_not_required();
28012797
return mark;
28022798
}
28032799

@@ -3981,29 +3977,3 @@ void MacroAssembler::cmp_l2i(Register dst, Register src1, Register src2, Registe
39813977
neg(dst, dst);
39823978
bind(done);
39833979
}
3984-
3985-
void MacroAssembler::safepoint_ifence() {
3986-
ifence();
3987-
#ifndef PRODUCT
3988-
if (VerifyCrossModifyFence) {
3989-
// Clear the thread state.
3990-
sb(zr, Address(xthread, in_bytes(JavaThread::requires_cross_modify_fence_offset())));
3991-
}
3992-
#endif
3993-
}
3994-
3995-
#ifndef PRODUCT
3996-
void MacroAssembler::verify_cross_modify_fence_not_required() {
3997-
if (VerifyCrossModifyFence) {
3998-
// Check if thread needs a cross modify fence.
3999-
lbu(t0, Address(xthread, in_bytes(JavaThread::requires_cross_modify_fence_offset())));
4000-
Label fence_not_required;
4001-
beqz(t0, fence_not_required);
4002-
// If it does then fail.
4003-
la(t0, RuntimeAddress(CAST_FROM_FN_PTR(address, JavaThread::verify_cross_modify_fence_failure)));
4004-
mv(c_rarg0, xthread);
4005-
jalr(t0);
4006-
bind(fence_not_required);
4007-
}
4008-
}
4009-
#endif

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

-6
Original file line numberDiff line numberDiff line change
@@ -46,9 +46,6 @@ class MacroAssembler: public Assembler {
4646

4747
void safepoint_poll(Label& slow_path, bool at_return, bool acquire, bool in_nmethod);
4848

49-
// Place a fence.i after code may have been modified due to a safepoint.
50-
void safepoint_ifence();
51-
5249
// Alignment
5350
void align(int modulus, int extra_offset = 0);
5451

@@ -836,9 +833,6 @@ class MacroAssembler: public Assembler {
836833

837834
void load_reserved(Register addr, enum operand_size size, Assembler::Aqrl acquire);
838835
void store_conditional(Register addr, Register new_val, enum operand_size size, Assembler::Aqrl release);
839-
840-
// Check the current thread doesn't need a cross modify fence.
841-
void verify_cross_modify_fence_not_required() PRODUCT_RETURN;
842836
};
843837

844838
#ifdef ASSERT

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

-9
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,6 @@
4242
// - - NativeIllegalInstruction
4343
// - - NativeCallTrampolineStub
4444
// - - NativeMembar
45-
// - - NativeFenceI
4645

4746
// The base class for different kinds of native instruction abstractions.
4847
// Provides the primitive operations to manipulate code relative to this.
@@ -554,14 +553,6 @@ inline NativeMembar *NativeMembar_at(address addr) {
554553
return (NativeMembar*)addr;
555554
}
556555

557-
class NativeFenceI : public NativeInstruction {
558-
public:
559-
static inline int instruction_size() {
560-
// 2 for fence.i + fence
561-
return (UseConservativeFence ? 2 : 1) * NativeInstruction::instruction_size;
562-
}
563-
};
564-
565556
class NativePostCallNop: public NativeInstruction {
566557
public:
567558
bool check() const { return is_nop(); }

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

-4
Original file line numberDiff line numberDiff line change
@@ -354,10 +354,6 @@ static void patch_callers_callsite(MacroAssembler *masm) {
354354
__ la_patchable(t0, RuntimeAddress(CAST_FROM_FN_PTR(address, SharedRuntime::fixup_callers_callsite)), offset);
355355
__ jalr(x1, t0, offset);
356356

357-
// Explicit fence.i required because fixup_callers_callsite may change the code
358-
// stream.
359-
__ safepoint_ifence();
360-
361357
__ pop_CPU_state();
362358
// restore sp
363359
__ leave();

‎src/hotspot/os_cpu/linux_riscv/orderAccess_linux_riscv.hpp

-4
Original file line numberDiff line numberDiff line change
@@ -54,10 +54,6 @@ inline void OrderAccess::fence() {
5454
}
5555

5656
inline void OrderAccess::cross_modify_fence_impl() {
57-
asm volatile("fence.i" : : : "memory");
58-
if (UseConservativeFence) {
59-
asm volatile("fence ir, ir" : : : "memory");
60-
}
6157
}
6258

6359
#endif // OS_CPU_LINUX_RISCV_ORDERACCESS_LINUX_RISCV_HPP

0 commit comments

Comments
 (0)
Please sign in to comment.