Skip to content

Commit 5aaf10b

Browse files
committedMar 20, 2022
Guard stub generation and held_monitor_count in the interpreter with Continuations::enabled()
1 parent 28a2ff9 commit 5aaf10b

File tree

4 files changed

+63
-32
lines changed

4 files changed

+63
-32
lines changed
 

‎src/hotspot/cpu/aarch64/macroAssembler_aarch64.cpp

+4
Original file line numberDiff line numberDiff line change
@@ -314,6 +314,7 @@ void MacroAssembler::safepoint_poll(Label& slow_path, bool at_return, bool acqui
314314
}
315315

316316
void MacroAssembler::push_cont_fastpath(Register java_thread) {
317+
if (!Continuations::enabled()) return;
317318
Label done;
318319
ldr(rscratch1, Address(java_thread, JavaThread::cont_fastpath_offset()));
319320
cmp(sp, rscratch1);
@@ -324,6 +325,7 @@ void MacroAssembler::push_cont_fastpath(Register java_thread) {
324325
}
325326

326327
void MacroAssembler::pop_cont_fastpath(Register java_thread) {
328+
if (!Continuations::enabled()) return;
327329
Label done;
328330
ldr(rscratch1, Address(java_thread, JavaThread::cont_fastpath_offset()));
329331
cmp(sp, rscratch1);
@@ -333,10 +335,12 @@ void MacroAssembler::pop_cont_fastpath(Register java_thread) {
333335
}
334336

335337
void MacroAssembler::inc_held_monitor_count(Register java_thread) {
338+
if (!Continuations::enabled()) return;
336339
incrementw(Address(java_thread, JavaThread::held_monitor_count_offset()));
337340
}
338341

339342
void MacroAssembler::dec_held_monitor_count(Register java_thread) {
343+
if (!Continuations::enabled()) return;
340344
decrementw(Address(java_thread, JavaThread::held_monitor_count_offset()));
341345
}
342346

‎src/hotspot/cpu/aarch64/stubGenerator_aarch64.cpp

+29-17
Original file line numberDiff line numberDiff line change
@@ -6518,7 +6518,9 @@ class StubGenerator: public StubCodeGenerator {
65186518
}
65196519
#endif // LINUX
65206520

6521-
RuntimeStub* generate_cont_doYield() {
6521+
RuntimeStub* generate_cont_doYield() {
6522+
if (!Continuations::enabled()) return nullptr;
6523+
65226524
const char *name = "cont_doYield";
65236525

65246526
enum layout {
@@ -6580,6 +6582,8 @@ RuntimeStub* generate_cont_doYield() {
65806582
}
65816583

65826584
address generate_cont_jump_from_safepoint() {
6585+
if (!Continuations::enabled()) return nullptr;
6586+
65836587
__ align(CodeEntryAlignment);
65846588
StubCodeMark mark(this, "StubRoutines","Continuation jump from safepoint");
65856589

@@ -6694,13 +6698,17 @@ RuntimeStub* generate_cont_doYield() {
66946698
}
66956699

66966700
address generate_cont_thaw() {
6701+
if (!Continuations::enabled()) return nullptr;
6702+
66976703
StubCodeMark mark(this, "StubRoutines", "Cont thaw");
66986704
address start = __ pc();
66996705
generate_cont_thaw(false, false);
67006706
return start;
67016707
}
67026708

67036709
address generate_cont_returnBarrier() {
6710+
if (!Continuations::enabled()) return nullptr;
6711+
67046712
// TODO: will probably need multiple return barriers depending on return type
67056713
StubCodeMark mark(this, "StubRoutines", "cont return barrier");
67066714
address start = __ pc();
@@ -6711,6 +6719,8 @@ RuntimeStub* generate_cont_doYield() {
67116719
}
67126720

67136721
address generate_cont_returnBarrier_exception() {
6722+
if (!Continuations::enabled()) return nullptr;
6723+
67146724
StubCodeMark mark(this, "StubRoutines", "cont return barrier exception handler");
67156725
address start = __ pc();
67166726

@@ -6720,28 +6730,30 @@ RuntimeStub* generate_cont_doYield() {
67206730
}
67216731

67226732
address generate_cont_interpreter_forced_preempt_return() {
6723-
StubCodeMark mark(this, "StubRoutines", "cont interpreter forced preempt return");
6724-
address start = __ pc();
6733+
if (!Continuations::enabled()) return nullptr;
67256734

6726-
// This is necessary for forced yields, as the return addres (in rbx) is captured in a call_VM, and skips the restoration of rbcp and locals
6735+
StubCodeMark mark(this, "StubRoutines", "cont interpreter forced preempt return");
6736+
address start = __ pc();
67276737

6728-
assert_asm(_masm, __ cmp(sp, rfp), Assembler::EQ, "sp != fp"); // __ mov(rfp, sp);
6729-
__ leave(); // we're now on the last thawed frame
6738+
// This is necessary for forced yields, as the return addres (in rbx) is captured in a call_VM, and skips the restoration of rbcp and locals
67306739

6731-
__ ldr(rbcp, Address(rfp, frame::interpreter_frame_bcp_offset * wordSize)); // InterpreterMacroAssembler::restore_bcp()
6732-
__ ldr(rlocals, Address(rfp, frame::interpreter_frame_locals_offset * wordSize)); // InterpreterMacroAssembler::restore_locals()
6733-
__ ldr(rcpool, Address(rfp, frame::interpreter_frame_cache_offset * wordSize)); // InterpreterMacroAssembler::restore_constant_pool_cache()
6734-
__ ldr(rmethod, Address(rfp, frame::interpreter_frame_method_offset * wordSize)); // InterpreterMacroAssembler::get_method(rmethod) -- might not be necessary
6735-
// __ reinit_heapbase();
6740+
assert_asm(_masm, __ cmp(sp, rfp), Assembler::EQ, "sp != fp"); // __ mov(rfp, sp);
6741+
__ leave(); // we're now on the last thawed frame
67366742

6737-
// Restore stack bottom in case i2c adjusted stack and NULL it as marker that esp is now tos until next java call
6738-
__ ldr(esp, Address(rfp, frame::interpreter_frame_last_sp_offset * wordSize));
6739-
__ str(zr, Address(rfp, frame::interpreter_frame_last_sp_offset * wordSize));
6743+
__ ldr(rbcp, Address(rfp, frame::interpreter_frame_bcp_offset * wordSize)); // InterpreterMacroAssembler::restore_bcp()
6744+
__ ldr(rlocals, Address(rfp, frame::interpreter_frame_locals_offset * wordSize)); // InterpreterMacroAssembler::restore_locals()
6745+
__ ldr(rcpool, Address(rfp, frame::interpreter_frame_cache_offset * wordSize)); // InterpreterMacroAssembler::restore_constant_pool_cache()
6746+
__ ldr(rmethod, Address(rfp, frame::interpreter_frame_method_offset * wordSize)); // InterpreterMacroAssembler::get_method(rmethod) -- might not be necessary
6747+
// __ reinit_heapbase();
67406748

6741-
__ ret(lr);
6749+
// Restore stack bottom in case i2c adjusted stack and NULL it as marker that esp is now tos until next java call
6750+
__ ldr(esp, Address(rfp, frame::interpreter_frame_last_sp_offset * wordSize));
6751+
__ str(zr, Address(rfp, frame::interpreter_frame_last_sp_offset * wordSize));
67426752

6743-
return start;
6744-
}
6753+
__ ret(lr);
6754+
6755+
return start;
6756+
}
67456757

67466758
#if INCLUDE_JFR
67476759

‎src/hotspot/cpu/x86/macroAssembler_x86.cpp

+4
Original file line numberDiff line numberDiff line change
@@ -2899,6 +2899,7 @@ void MacroAssembler::push_IU_state() {
28992899
}
29002900

29012901
void MacroAssembler::push_cont_fastpath(Register java_thread) {
2902+
if (!Continuations::enabled()) return;
29022903
Label done;
29032904
cmpptr(rsp, Address(java_thread, JavaThread::cont_fastpath_offset()));
29042905
jccb(Assembler::belowEqual, done);
@@ -2907,6 +2908,7 @@ void MacroAssembler::push_cont_fastpath(Register java_thread) {
29072908
}
29082909

29092910
void MacroAssembler::pop_cont_fastpath(Register java_thread) {
2911+
if (!Continuations::enabled()) return;
29102912
Label done;
29112913
cmpptr(rsp, Address(java_thread, JavaThread::cont_fastpath_offset()));
29122914
jccb(Assembler::below, done);
@@ -2915,10 +2917,12 @@ void MacroAssembler::pop_cont_fastpath(Register java_thread) {
29152917
}
29162918

29172919
void MacroAssembler::inc_held_monitor_count(Register java_thread) {
2920+
if (!Continuations::enabled()) return;
29182921
incrementl(Address(java_thread, JavaThread::held_monitor_count_offset()));
29192922
}
29202923

29212924
void MacroAssembler::dec_held_monitor_count(Register java_thread) {
2925+
if (!Continuations::enabled()) return;
29222926
decrementl(Address(java_thread, JavaThread::held_monitor_count_offset()));
29232927
}
29242928

‎src/hotspot/cpu/x86/stubGenerator_x86_64.cpp

+26-15
Original file line numberDiff line numberDiff line change
@@ -7465,7 +7465,9 @@ address generate_avx_ghash_processBlocks() {
74657465

74667466
}
74677467

7468-
RuntimeStub* generate_cont_doYield() {
7468+
RuntimeStub* generate_cont_doYield() {
7469+
if (!Continuations::enabled()) return nullptr;
7470+
74697471
const char *name = "cont_doYield";
74707472

74717473
enum layout {
@@ -7529,6 +7531,8 @@ RuntimeStub* generate_cont_doYield() {
75297531
}
75307532

75317533
address generate_cont_jump_from_safepoint() {
7534+
if (!Continuations::enabled()) return nullptr;
7535+
75327536
StubCodeMark mark(this, "StubRoutines","Continuation jump from safepoint");
75337537

75347538
address start = __ pc();
@@ -7621,13 +7625,17 @@ RuntimeStub* generate_cont_doYield() {
76217625
}
76227626

76237627
address generate_cont_thaw() {
7628+
if (!Continuations::enabled()) return nullptr;
7629+
76247630
StubCodeMark mark(this, "StubRoutines", "Cont thaw");
76257631
address start = __ pc();
76267632
generate_cont_thaw(false, false);
76277633
return start;
76287634
}
76297635

76307636
address generate_cont_returnBarrier() {
7637+
if (!Continuations::enabled()) return nullptr;
7638+
76317639
// TODO: will probably need multiple return barriers depending on return type
76327640
StubCodeMark mark(this, "StubRoutines", "cont return barrier");
76337641
address start = __ pc();
@@ -7638,6 +7646,8 @@ RuntimeStub* generate_cont_doYield() {
76387646
}
76397647

76407648
address generate_cont_returnBarrier_exception() {
7649+
if (!Continuations::enabled()) return nullptr;
7650+
76417651
StubCodeMark mark(this, "StubRoutines", "cont return barrier exception handler");
76427652
address start = __ pc();
76437653

@@ -7647,25 +7657,26 @@ RuntimeStub* generate_cont_doYield() {
76477657
}
76487658

76497659
address generate_cont_interpreter_forced_preempt_return() {
7650-
StubCodeMark mark(this, "StubRoutines", "cont interpreter forced preempt return");
7651-
address start = __ pc();
7660+
if (!Continuations::enabled()) return nullptr;
7661+
StubCodeMark mark(this, "StubRoutines", "cont interpreter forced preempt return");
7662+
address start = __ pc();
76527663

7653-
// This is necessary for forced yields, as the return addres (in rbx) is captured in a call_VM, and skips the restoration of rbcp and locals
7654-
// see InterpreterMacroAssembler::restore_bcp/restore_locals
7655-
// TODO: use InterpreterMacroAssembler
7656-
static const Register _locals_register = r14;
7657-
static const Register _bcp_register = r13;
7664+
// This is necessary for forced yields, as the return addres (in rbx) is captured in a call_VM, and skips the restoration of rbcp and locals
7665+
// see InterpreterMacroAssembler::restore_bcp/restore_locals
7666+
// TODO: use InterpreterMacroAssembler
7667+
static const Register _locals_register = r14;
7668+
static const Register _bcp_register = r13;
76587669

7659-
__ pop(rbp);
7670+
__ pop(rbp);
76607671

7661-
__ movptr(_bcp_register, Address(rbp, frame::interpreter_frame_bcp_offset * wordSize));
7662-
__ movptr(_locals_register, Address(rbp, frame::interpreter_frame_locals_offset * wordSize));
7663-
// __ reinit_heapbase();
7672+
__ movptr(_bcp_register, Address(rbp, frame::interpreter_frame_bcp_offset * wordSize));
7673+
__ movptr(_locals_register, Address(rbp, frame::interpreter_frame_locals_offset * wordSize));
7674+
// __ reinit_heapbase();
76647675

7665-
__ ret(0);
7676+
__ ret(0);
76667677

7667-
return start;
7668-
}
7678+
return start;
7679+
}
76697680

76707681
#if INCLUDE_JFR
76717682

0 commit comments

Comments
 (0)
Please sign in to comment.