54
54
#include " oops/weakHandle.inline.hpp"
55
55
#include " prims/jvmtiDeferredUpdates.hpp"
56
56
#include " prims/jvmtiThreadState.hpp"
57
- #include " runtime/continuation.inline.hpp"
58
57
#include " runtime/deoptimization.hpp"
59
58
#include " runtime/frame.hpp"
60
59
#include " runtime/frame.inline.hpp"
@@ -198,7 +197,7 @@ class ContMirror {
198
197
ContMirror (oop cont);
199
198
ContMirror (const RegisterMap* map);
200
199
201
- DEBUG_ONLY (intptr_t hash () { return Thread::current ()->is_Java_thread () ? _cont->identity_hash () : -1 ; })
200
+ NOT_PRODUCT (intptr_t hash () { return Thread::current ()->is_Java_thread () ? _cont->identity_hash () : -1 ; })
202
201
203
202
inline void read ();
204
203
inline void write ();
@@ -791,7 +790,7 @@ class Freeze {
791
790
792
791
_cont.write ();
793
792
794
- DEBUG_ONLY ( log_develop_trace (jvmcont)(" FREEZE CHUNK #" INTPTR_FORMAT " (young)" , _cont.hash ());)
793
+ log_develop_trace (jvmcont)(" FREEZE CHUNK #" INTPTR_FORMAT " (young)" , _cont.hash ());
795
794
if (log_develop_is_enabled (Trace, jvmcont)) chunk->print_on (true , tty);
796
795
797
796
assert (_cont.chunk_invariant (), " " );
@@ -815,7 +814,7 @@ class Freeze {
815
814
ResourceMark rm;
816
815
#endif
817
816
818
- DEBUG_ONLY ( log_develop_trace (jvmcont)(" freeze_slow #" INTPTR_FORMAT, _cont.hash ());)
817
+ log_develop_trace (jvmcont)(" freeze_slow #" INTPTR_FORMAT, _cont.hash ());
819
818
820
819
assert (_thread->thread_state () == _thread_in_vm || _thread->thread_state () == _thread_blocked, " " );
821
820
@@ -1247,7 +1246,7 @@ class Freeze {
1247
1246
if (UNLIKELY (senderf.oop_map () == nullptr )) return freeze_pinned_native; // native frame
1248
1247
if (UNLIKELY (Compiled::is_owning_locks (_cont.thread (), &map, senderf))) return freeze_pinned_monitor;
1249
1248
1250
- freeze_result result = recurse_freeze_compiled_frame (senderf, caller, 0 , 0 );
1249
+ freeze_result result = recurse_freeze_compiled_frame (senderf, caller, 0 , 0 ); // This might be deoptimized
1251
1250
if (UNLIKELY (result > freeze_ok_bottom)) return result;
1252
1251
assert (result != freeze_ok_bottom, " " );
1253
1252
assert (!caller.is_interpreted_frame (), " " );
@@ -1444,7 +1443,7 @@ static inline int freeze_epilog(JavaThread* thread, ContMirror& cont, bool preem
1444
1443
1445
1444
thread->set_cont_yield (false );
1446
1445
1447
- DEBUG_ONLY ( log_develop_debug (jvmcont)(" === End of freeze cont ### #" INTPTR_FORMAT, cont.hash ());)
1446
+ log_develop_debug (jvmcont)(" === End of freeze cont ### #" INTPTR_FORMAT, cont.hash ());
1448
1447
1449
1448
return 0 ;
1450
1449
}
@@ -1492,7 +1491,7 @@ int freeze0(JavaThread* current, intptr_t* const sp, bool preempt) {
1492
1491
1493
1492
assert (verify_continuation<1 >(oopCont), " " );
1494
1493
ContMirror cont (current, oopCont);
1495
- DEBUG_ONLY ( log_develop_debug (jvmcont)(" FREEZE #" INTPTR_FORMAT " " INTPTR_FORMAT, cont.hash (), p2i ((oopDesc*)oopCont));)
1494
+ log_develop_debug (jvmcont)(" FREEZE #" INTPTR_FORMAT " " INTPTR_FORMAT, cont.hash (), p2i ((oopDesc*)oopCont));
1496
1495
1497
1496
if (jdk_internal_vm_Continuation::critical_section (oopCont) > 0 ) {
1498
1497
log_develop_debug (jvmcont)(" PINNED due to critical section" );
@@ -1816,8 +1815,6 @@ class Thaw {
1816
1815
static inline void derelativize_interpreted_frame_metadata (const frame& hf, const frame& f);
1817
1816
static inline void set_interpreter_frame_bottom (const frame& f, intptr_t * bottom);
1818
1817
1819
- bool should_deoptimize () { return true ; /* _thread->is_interp_only_mode(); */ } // TODO PERF
1820
-
1821
1818
public:
1822
1819
DEBUG_ONLY (int _mode;)
1823
1820
DEBUG_ONLY (bool barriers () { return _barriers; })
@@ -2024,7 +2021,6 @@ class Thaw {
2024
2021
bool last_interpreted = false ;
2025
2022
if (chunk->has_mixed_frames ()) {
2026
2023
last_interpreted = Interpreter::contains (chunk->pc ());
2027
- log_develop_trace (jvmcont)(" thaw: preempt; last_interpreted: %d" , last_interpreted);
2028
2024
}
2029
2025
2030
2026
_stream = StackChunkFrameStream<true >(chunk);
@@ -2167,13 +2163,10 @@ class Thaw {
2167
2163
2168
2164
template <typename FKind, bool bottom>
2169
2165
inline void patch (frame& f, const frame& caller) {
2170
- // assert (_cont.is_empty0() == _cont.is_empty(), "is_empty0: %d is_empty: %d", _cont.is_empty0(), _cont.is_empty());
2171
- if (bottom && !_cont.is_empty ()) {
2172
- log_develop_trace (jvmcont)(" Setting return address to return barrier: " INTPTR_FORMAT, p2i (StubRoutines::cont_returnBarrier ()));
2173
- FKind::patch_pc (caller, StubRoutines::cont_returnBarrier ());
2174
- } else if (bottom || should_deoptimize ()) {
2175
- FKind::patch_pc (caller, caller.raw_pc ()); // this patches the return address to the deopt handler if necessary
2166
+ if (bottom) {
2167
+ FKind::patch_pc (caller, _cont.is_empty () ? caller.raw_pc () : StubRoutines::cont_returnBarrier ());
2176
2168
}
2169
+
2177
2170
patch_pd<FKind, bottom>(f, caller); // TODO R: reevaluate if and when this is necessary -- only bottom and interpreted caller?
2178
2171
2179
2172
if (FKind::interpreted) {
@@ -2282,9 +2275,13 @@ class Thaw {
2282
2275
f.cb ()->as_nmethod ()->run_nmethod_entry_barrier ();
2283
2276
}
2284
2277
2285
- if (f.is_deoptimized_frame ()) { // TODO PERF
2278
+ if (f.is_deoptimized_frame ()) {
2286
2279
maybe_set_fastpath (f.sp ());
2287
- } else if (should_deoptimize () && (f.cb ()->as_compiled_method ()->is_marked_for_deoptimization () || _thread->is_interp_only_mode ())) {
2280
+ } else if (_thread->is_interp_only_mode ()
2281
+ || (_cont.is_preempted () && f.cb ()->as_compiled_method ()->is_marked_for_deoptimization ())) {
2282
+ // The caller of the safepoint stub when the continuation is preempted is not at a call instruction, and so
2283
+ // cannot rely on nmethod patching for deopt.
2284
+
2288
2285
log_develop_trace (jvmcont)(" Deoptimizing thawed frame" );
2289
2286
DEBUG_ONLY (Frame::patch_pc (f, nullptr ));
2290
2287
@@ -2298,8 +2295,8 @@ class Thaw {
2298
2295
}
2299
2296
2300
2297
if (!bottom) {
2301
- log_develop_trace (jvmcont)( " fix thawed caller " );
2302
- InstanceStackChunkKlass::fix_thawed_frame (_cont.tail (), caller, SmallRegisterMap::instance); // can only fix caller once this frame is thawed (due to callee saved regs)
2298
+ // can only fix caller once this frame is thawed (due to callee saved regs)
2299
+ InstanceStackChunkKlass::fix_thawed_frame (_cont.tail (), caller, SmallRegisterMap::instance);
2303
2300
} else if (_cont.tail ()->has_bitmap () && added_argsize > 0 ) {
2304
2301
clear_bitmap_bits (hsp + Compiled::size (hf), added_argsize);
2305
2302
}
@@ -2324,7 +2321,7 @@ class Thaw {
2324
2321
assert (!_stream.is_done (), " " );
2325
2322
}
2326
2323
2327
- recurse_thaw_compiled_frame (_stream.to_frame (), caller, num_frames);
2324
+ recurse_thaw_compiled_frame (_stream.to_frame (), caller, num_frames); // this could be deoptimized
2328
2325
2329
2326
DEBUG_ONLY (before_thaw_java_frame (hf, caller, false , num_frames);)
2330
2327
@@ -2441,7 +2438,7 @@ static inline intptr_t* thaw0(JavaThread* thread, const thaw_kind kind) {
2441
2438
2442
2439
assert (verify_continuation<1 >(oopCont), " " );
2443
2440
ContMirror cont (thread, oopCont);
2444
- DEBUG_ONLY ( log_develop_debug (jvmcont)(" THAW #" INTPTR_FORMAT " " INTPTR_FORMAT, cont.hash (), p2i ((oopDesc*)oopCont));)
2441
+ log_develop_debug (jvmcont)(" THAW #" INTPTR_FORMAT " " INTPTR_FORMAT, cont.hash (), p2i ((oopDesc*)oopCont));
2445
2442
2446
2443
#ifdef ASSERT
2447
2444
ContinuationHelper::set_anchor_to_entry (thread, cont.entry ());
@@ -2481,7 +2478,7 @@ static inline intptr_t* thaw0(JavaThread* thread, const thaw_kind kind) {
2481
2478
2482
2479
// assert (thread->last_continuation()->argsize() == 0 || Continuation::is_return_barrier_entry(*(address*)(thread->last_continuation()->bottom_sender_sp() - SENDER_SP_RET_ADDRESS_OFFSET)), "");
2483
2480
assert (verify_continuation<3 >(cont.mirror ()), " " );
2484
- DEBUG_ONLY ( log_develop_debug (jvmcont)(" === End of thaw #" INTPTR_FORMAT, cont.hash ());)
2481
+ log_develop_debug (jvmcont)(" === End of thaw #" INTPTR_FORMAT, cont.hash ());
2485
2482
2486
2483
return sp;
2487
2484
}
0 commit comments