Skip to content

Commit 894648d

Browse files
committedApr 21, 2022
Merge
2 parents fec3ce5 + 2e72645 commit 894648d

6 files changed

+36
-50
lines changed
 

‎src/hotspot/share/runtime/continuationEntry.hpp

+1
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,7 @@ class ContinuationEntry {
7878
static size_t size() { return align_up((int)sizeof(ContinuationEntry), 2*wordSize); }
7979

8080
ContinuationEntry* parent() const { return _parent; }
81+
int parent_held_monitor_count() const { return _parent_held_monitor_count; }
8182

8283
static address entry_pc() { return return_pc; }
8384
intptr_t* entry_sp() const { return (intptr_t*)this; }

‎src/hotspot/share/runtime/continuationFreezeThaw.cpp

+22-50
Original file line numberDiff line numberDiff line change
@@ -753,16 +753,9 @@ NOINLINE freeze_result FreezeBase::freeze(frame& f, frame& caller, int callee_ar
753753
// special native frame
754754
return freeze_pinned_native;
755755
}
756-
if (UNLIKELY(ContinuationHelper::CompiledFrame::is_owning_locks(_cont.thread(), SmallRegisterMap::instance, f))) {
757-
return freeze_pinned_monitor;
758-
}
759-
760756
return recurse_freeze_compiled_frame(f, caller, callee_argsize, callee_interpreted);
761757
} else if (f.is_interpreted_frame()) {
762758
assert((_preempt && top) || !f.interpreter_frame_method()->is_native(), "");
763-
if (ContinuationHelper::InterpretedFrame::is_owning_locks(f)) {
764-
return freeze_pinned_monitor;
765-
}
766759
if (_preempt && top && f.interpreter_frame_method()->is_native()) {
767760
// int native entry
768761
return freeze_pinned_native;
@@ -1110,9 +1103,6 @@ NOINLINE freeze_result FreezeBase::recurse_freeze_stub_frame(frame& f, frame& ca
11101103
// native frame
11111104
return freeze_pinned_native;
11121105
}
1113-
if (UNLIKELY(ContinuationHelper::CompiledFrame::is_owning_locks(_cont.thread(), &map, senderf))) {
1114-
return freeze_pinned_monitor;
1115-
}
11161106

11171107
freeze_result result = recurse_freeze_compiled_frame(senderf, caller, 0, 0); // This might be deoptimized
11181108
if (UNLIKELY(result > freeze_ok_bottom)) {
@@ -1287,31 +1277,14 @@ static void jvmti_yield_cleanup(JavaThread* thread, ContinuationWrapper& cont) {
12871277
}
12881278
#endif // INCLUDE_JVMTI
12891279

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-
13081280
#ifdef ASSERT
13091281
static bool monitors_on_stack(JavaThread* thread) {
13101282
ContinuationEntry* ce = thread->last_continuation();
13111283
RegisterMap map(thread, true, false, false);
13121284
map.set_include_argument_oops(false);
13131285
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))) {
13151288
return true;
13161289
}
13171290
}
@@ -1331,19 +1304,6 @@ static bool interpreted_native_or_deoptimized_on_stack(JavaThread* thread) {
13311304
}
13321305
#endif // ASSERT
13331306

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-
13471307
static inline int freeze_epilog(JavaThread* thread, ContinuationWrapper& cont) {
13481308
verify_continuation(cont.continuation());
13491309
assert(!cont.is_empty(), "");
@@ -1387,16 +1347,24 @@ static inline int freeze_internal(JavaThread* current, intptr_t* const sp) {
13871347

13881348
assert(entry->is_virtual_thread() == (entry->scope() == java_lang_VirtualThread::vthread_scope()), "");
13891349

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");
13921354
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;
13951358
}
13961359

13971360
Freeze<ConfigT> fr(current, cont, false);
13981361

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();
14001368
if (fast && fr.is_chunk_available_for_fast_freeze(sp)) {
14011369
freeze_result res = fr.template try_freeze_fast<true>(sp);
14021370
assert(res == freeze_ok, "");
@@ -1430,6 +1398,8 @@ static freeze_result is_pinned0(JavaThread* thread, oop cont_scope, bool safepoi
14301398
}
14311399
if (entry->is_pinned()) {
14321400
return freeze_pinned_cs;
1401+
} else if (thread->held_monitor_count() > 0) {
1402+
return freeze_pinned_monitor;
14331403
}
14341404

14351405
RegisterMap map(thread, true, false, false);
@@ -1452,9 +1422,8 @@ static freeze_result is_pinned0(JavaThread* thread, oop cont_scope, bool safepoi
14521422
}
14531423

14541424
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;
14581427
}
14591428

14601429
f = f.sender(&map);
@@ -1463,12 +1432,15 @@ static freeze_result is_pinned0(JavaThread* thread, oop cont_scope, bool safepoi
14631432
if (scope == cont_scope) {
14641433
break;
14651434
}
1435+
int monitor_count = entry->parent_held_monitor_count();
14661436
entry = entry->parent();
14671437
if (entry == nullptr) {
14681438
break;
14691439
}
14701440
if (entry->is_pinned()) {
14711441
return freeze_pinned_cs;
1442+
} else if (monitor_count > 0) {
1443+
return freeze_pinned_monitor;
14721444
}
14731445
}
14741446
}

‎src/hotspot/share/runtime/continuationHelper.hpp

+5
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,10 @@ class ContinuationHelper::InterpretedFrame : public ContinuationHelper::Frame {
100100
static int size(const frame& f, InterpreterOopMap* mask);
101101
static int size(const frame& f);
102102
static inline int expression_stack_size(const frame &f, InterpreterOopMap* mask);
103+
104+
#ifdef ASSERT
103105
static bool is_owning_locks(const frame& f);
106+
#endif
104107

105108
static bool is_instance(const frame& f);
106109

@@ -129,8 +132,10 @@ class ContinuationHelper::CompiledFrame : public ContinuationHelper::NonInterpre
129132

130133
static bool is_instance(const frame& f);
131134

135+
#ifdef ASSERT
132136
template <typename RegisterMapT>
133137
static bool is_owning_locks(JavaThread* thread, RegisterMapT* map, const frame& f);
138+
#endif
134139
};
135140

136141
class ContinuationHelper::StubFrame : public ContinuationHelper::NonInterpretedFrame {

‎src/hotspot/share/runtime/continuationHelper.inline.hpp

+4
Original file line numberDiff line numberDiff line change
@@ -106,6 +106,7 @@ inline int ContinuationHelper::InterpretedFrame::expression_stack_size(const fra
106106
return size;
107107
}
108108

109+
#ifdef ASSERT
109110
inline bool ContinuationHelper::InterpretedFrame::is_owning_locks(const frame& f) {
110111
assert(f.interpreter_frame_monitor_end() <= f.interpreter_frame_monitor_begin(), "must be");
111112
if (f.interpreter_frame_monitor_end() == f.interpreter_frame_monitor_begin()) {
@@ -123,6 +124,7 @@ inline bool ContinuationHelper::InterpretedFrame::is_owning_locks(const frame& f
123124
}
124125
return false;
125126
}
127+
#endif
126128

127129
inline intptr_t* ContinuationHelper::InterpretedFrame::frame_top(const frame& f) { // inclusive; this will be copied with the frame
128130
return f.unextended_sp();
@@ -167,6 +169,7 @@ inline int ContinuationHelper::CompiledFrame::num_oops(const frame& f) {
167169
return f.num_oops() + 1;
168170
}
169171

172+
#ifdef ASSERT
170173
template<typename RegisterMapT>
171174
bool ContinuationHelper::CompiledFrame::is_owning_locks(JavaThread* thread, RegisterMapT* map, const frame& f) {
172175
assert(!f.is_interpreted_frame(), "");
@@ -203,6 +206,7 @@ bool ContinuationHelper::CompiledFrame::is_owning_locks(JavaThread* thread, Regi
203206
}
204207
return false;
205208
}
209+
#endif
206210

207211
inline bool ContinuationHelper::StubFrame::is_instance(const frame& f) {
208212
return !f.is_interpreted_frame() && is_stub(f.cb());

‎test/hotspot/jtreg/ProblemList-svc-vthread.txt

+2
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,8 @@
2424
####
2525
# Bugs
2626

27+
serviceability/jvmti/Heap/IterateHeapWithEscapeAnalysisEnabled.java 8264699 generic-all
28+
2729
####
2830
## Classes not unloaded as expected (TODO, need to check if FJ keep link)
2931

‎test/jdk/ProblemList-svc-vthread.txt

+2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11

2+
com/sun/jdi/EATests.java#id0 8264699 generic-all
3+
24
##########
35
## Tests failing when main() is executed in additional vthread or in vthread instead of thread
46
#

0 commit comments

Comments
 (0)
Please sign in to comment.