@@ -753,16 +753,9 @@ NOINLINE freeze_result FreezeBase::freeze(frame& f, frame& caller, int callee_ar
753
753
// special native frame
754
754
return freeze_pinned_native;
755
755
}
756
- if (UNLIKELY (ContinuationHelper::CompiledFrame::is_owning_locks (_cont.thread (), SmallRegisterMap::instance, f))) {
757
- return freeze_pinned_monitor;
758
- }
759
-
760
756
return recurse_freeze_compiled_frame (f, caller, callee_argsize, callee_interpreted);
761
757
} else if (f.is_interpreted_frame ()) {
762
758
assert ((_preempt && top) || !f.interpreter_frame_method ()->is_native (), " " );
763
- if (ContinuationHelper::InterpretedFrame::is_owning_locks (f)) {
764
- return freeze_pinned_monitor;
765
- }
766
759
if (_preempt && top && f.interpreter_frame_method ()->is_native ()) {
767
760
// int native entry
768
761
return freeze_pinned_native;
@@ -1110,9 +1103,6 @@ NOINLINE freeze_result FreezeBase::recurse_freeze_stub_frame(frame& f, frame& ca
1110
1103
// native frame
1111
1104
return freeze_pinned_native;
1112
1105
}
1113
- if (UNLIKELY (ContinuationHelper::CompiledFrame::is_owning_locks (_cont.thread (), &map, senderf))) {
1114
- return freeze_pinned_monitor;
1115
- }
1116
1106
1117
1107
freeze_result result = recurse_freeze_compiled_frame (senderf, caller, 0 , 0 ); // This might be deoptimized
1118
1108
if (UNLIKELY (result > freeze_ok_bottom)) {
@@ -1287,31 +1277,14 @@ static void jvmti_yield_cleanup(JavaThread* thread, ContinuationWrapper& cont) {
1287
1277
}
1288
1278
#endif // INCLUDE_JVMTI
1289
1279
1290
- static freeze_result is_pinned (const frame& f, RegisterMap* map) {
1291
- if (f.is_interpreted_frame ()) {
1292
- if (ContinuationHelper::InterpretedFrame::is_owning_locks (f)) {
1293
- return freeze_pinned_monitor;
1294
- }
1295
- if (f.interpreter_frame_method ()->is_native ()) {
1296
- return freeze_pinned_native; // interpreter native entry
1297
- }
1298
- } else if (f.is_compiled_frame ()) {
1299
- if (ContinuationHelper::CompiledFrame::is_owning_locks (map->thread (), map, f)) {
1300
- return freeze_pinned_monitor;
1301
- }
1302
- } else {
1303
- return freeze_pinned_native;
1304
- }
1305
- return freeze_ok;
1306
- }
1307
-
1308
1280
#ifdef ASSERT
1309
1281
static bool monitors_on_stack (JavaThread* thread) {
1310
1282
ContinuationEntry* ce = thread->last_continuation ();
1311
1283
RegisterMap map (thread, true , false , false );
1312
1284
map.set_include_argument_oops (false );
1313
1285
for (frame f = thread->last_frame (); Continuation::is_frame_in_continuation (ce, f); f = f.sender (&map)) {
1314
- if (is_pinned (f, &map) == freeze_pinned_monitor) {
1286
+ if ((f.is_interpreted_frame () && ContinuationHelper::InterpretedFrame::is_owning_locks (f)) ||
1287
+ (f.is_compiled_frame () && ContinuationHelper::CompiledFrame::is_owning_locks (map.thread (), &map, f))) {
1315
1288
return true ;
1316
1289
}
1317
1290
}
@@ -1331,19 +1304,6 @@ static bool interpreted_native_or_deoptimized_on_stack(JavaThread* thread) {
1331
1304
}
1332
1305
#endif // ASSERT
1333
1306
1334
- static inline bool can_freeze_fast (JavaThread* thread) {
1335
- // There are no interpreted frames if we're not called from the interpreter and we haven't ancountered an i2c adapter or called Deoptimization::unpack_frames
1336
- // Calls from native frames also go through the interpreter (see JavaCalls::call_helper)
1337
- assert (!thread->cont_fastpath ()
1338
- || (thread->cont_fastpath_thread_state () && !interpreted_native_or_deoptimized_on_stack (thread)), " " );
1339
-
1340
- // We also clear thread->cont_fastpath on deoptimization (notify_deopt) and when we thaw interpreted frames
1341
- bool fast = thread->cont_fastpath () && UseContinuationFastPath;
1342
- assert (!fast || monitors_on_stack (thread) == (thread->held_monitor_count () > 0 ), " " );
1343
- fast = fast && thread->held_monitor_count () == 0 ;
1344
- return fast;
1345
- }
1346
-
1347
1307
static inline int freeze_epilog (JavaThread* thread, ContinuationWrapper& cont) {
1348
1308
verify_continuation (cont.continuation ());
1349
1309
assert (!cont.is_empty (), " " );
@@ -1387,16 +1347,24 @@ static inline int freeze_internal(JavaThread* current, intptr_t* const sp) {
1387
1347
1388
1348
assert (entry->is_virtual_thread () == (entry->scope () == java_lang_VirtualThread::vthread_scope ()), " " );
1389
1349
1390
- if (entry->is_pinned ()) {
1391
- log_develop_debug (continuations)(" PINNED due to critical section" );
1350
+ assert (monitors_on_stack (current) == (current->held_monitor_count () > 0 ), " " );
1351
+
1352
+ if (entry->is_pinned () || current->held_monitor_count () > 0 ) {
1353
+ log_develop_debug (continuations)(" PINNED due to critical section/hold monitor" );
1392
1354
verify_continuation (cont.continuation ());
1393
- log_develop_trace (continuations)(" === end of freeze (fail %d)" , freeze_pinned_cs);
1394
- return freeze_pinned_cs;
1355
+ freeze_result res = entry->is_pinned () ? freeze_pinned_cs : freeze_pinned_monitor;
1356
+ log_develop_trace (continuations)(" === end of freeze (fail %d)" , res);
1357
+ return res;
1395
1358
}
1396
1359
1397
1360
Freeze<ConfigT> fr (current, cont, false );
1398
1361
1399
- bool fast = can_freeze_fast (current);
1362
+ // There are no interpreted frames if we're not called from the interpreter and we haven't ancountered an i2c
1363
+ // adapter or called Deoptimization::unpack_frames. Calls from native frames also go through the interpreter
1364
+ // (see JavaCalls::call_helper).
1365
+ assert (!current->cont_fastpath ()
1366
+ || (current->cont_fastpath_thread_state () && !interpreted_native_or_deoptimized_on_stack (current)), " " );
1367
+ bool fast = UseContinuationFastPath && current->cont_fastpath ();
1400
1368
if (fast && fr.is_chunk_available_for_fast_freeze (sp)) {
1401
1369
freeze_result res = fr.template try_freeze_fast <true >(sp);
1402
1370
assert (res == freeze_ok, " " );
@@ -1430,6 +1398,8 @@ static freeze_result is_pinned0(JavaThread* thread, oop cont_scope, bool safepoi
1430
1398
}
1431
1399
if (entry->is_pinned ()) {
1432
1400
return freeze_pinned_cs;
1401
+ } else if (thread->held_monitor_count () > 0 ) {
1402
+ return freeze_pinned_monitor;
1433
1403
}
1434
1404
1435
1405
RegisterMap map (thread, true , false , false );
@@ -1452,9 +1422,8 @@ static freeze_result is_pinned0(JavaThread* thread, oop cont_scope, bool safepoi
1452
1422
}
1453
1423
1454
1424
while (true ) {
1455
- freeze_result res = is_pinned (f, &map);
1456
- if (res != freeze_ok) {
1457
- return res;
1425
+ if ((f.is_interpreted_frame () && f.interpreter_frame_method ()->is_native ()) || f.is_native_frame ()) {
1426
+ return freeze_pinned_native;
1458
1427
}
1459
1428
1460
1429
f = f.sender (&map);
@@ -1463,12 +1432,15 @@ static freeze_result is_pinned0(JavaThread* thread, oop cont_scope, bool safepoi
1463
1432
if (scope == cont_scope) {
1464
1433
break ;
1465
1434
}
1435
+ int monitor_count = entry->parent_held_monitor_count ();
1466
1436
entry = entry->parent ();
1467
1437
if (entry == nullptr ) {
1468
1438
break ;
1469
1439
}
1470
1440
if (entry->is_pinned ()) {
1471
1441
return freeze_pinned_cs;
1442
+ } else if (monitor_count > 0 ) {
1443
+ return freeze_pinned_monitor;
1472
1444
}
1473
1445
}
1474
1446
}
0 commit comments