@@ -6518,7 +6518,9 @@ class StubGenerator: public StubCodeGenerator {
6518
6518
}
6519
6519
#endif // LINUX
6520
6520
6521
- RuntimeStub* generate_cont_doYield() {
6521
+ RuntimeStub* generate_cont_doYield () {
6522
+ if (!Continuations::enabled ()) return nullptr ;
6523
+
6522
6524
const char *name = " cont_doYield" ;
6523
6525
6524
6526
enum layout {
@@ -6580,6 +6582,8 @@ RuntimeStub* generate_cont_doYield() {
6580
6582
}
6581
6583
6582
6584
address generate_cont_jump_from_safepoint () {
6585
+ if (!Continuations::enabled ()) return nullptr ;
6586
+
6583
6587
__ align (CodeEntryAlignment);
6584
6588
StubCodeMark mark (this , " StubRoutines" ," Continuation jump from safepoint" );
6585
6589
@@ -6694,13 +6698,17 @@ RuntimeStub* generate_cont_doYield() {
6694
6698
}
6695
6699
6696
6700
address generate_cont_thaw () {
6701
+ if (!Continuations::enabled ()) return nullptr ;
6702
+
6697
6703
StubCodeMark mark (this , " StubRoutines" , " Cont thaw" );
6698
6704
address start = __ pc ();
6699
6705
generate_cont_thaw (false , false );
6700
6706
return start;
6701
6707
}
6702
6708
6703
6709
address generate_cont_returnBarrier () {
6710
+ if (!Continuations::enabled ()) return nullptr ;
6711
+
6704
6712
// TODO: will probably need multiple return barriers depending on return type
6705
6713
StubCodeMark mark (this , " StubRoutines" , " cont return barrier" );
6706
6714
address start = __ pc ();
@@ -6711,6 +6719,8 @@ RuntimeStub* generate_cont_doYield() {
6711
6719
}
6712
6720
6713
6721
address generate_cont_returnBarrier_exception () {
6722
+ if (!Continuations::enabled ()) return nullptr ;
6723
+
6714
6724
StubCodeMark mark (this , " StubRoutines" , " cont return barrier exception handler" );
6715
6725
address start = __ pc ();
6716
6726
@@ -6720,28 +6730,30 @@ RuntimeStub* generate_cont_doYield() {
6720
6730
}
6721
6731
6722
6732
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 ;
6725
6734
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 ();
6727
6737
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
6730
6739
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
6736
6742
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();
6740
6748
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));
6742
6752
6743
- return start;
6744
- }
6753
+ __ ret (lr);
6754
+
6755
+ return start;
6756
+ }
6745
6757
6746
6758
#if INCLUDE_JFR
6747
6759
0 commit comments