Skip to content

Commit f3f38a1

Browse files
committedDec 17, 2019
Fix crash in is_owning_locks
1 parent 52c5525 commit f3f38a1

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed
 

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

+4-3
Original file line numberDiff line numberDiff line change
@@ -312,7 +312,7 @@ class NonInterpreted : public FrameCommon<Self> {
312312
static inline int num_oops(const frame& f);
313313

314314
template <typename RegisterMapT>
315-
static bool is_owning_locks(JavaThread* thread, const RegisterMapT* map, const frame& f);
315+
static bool is_owning_locks(JavaThread* thread, RegisterMapT* map, const frame& f);
316316
};
317317

318318
class NonInterpretedUnknown : public NonInterpreted<NonInterpretedUnknown> {
@@ -1411,7 +1411,7 @@ inline int NonInterpreted<Self>::num_oops(const frame& f) {
14111411

14121412
template<typename Self>
14131413
template<typename RegisterMapT>
1414-
bool NonInterpreted<Self>::is_owning_locks(JavaThread* thread, const RegisterMapT* map, const frame& f) {
1414+
bool NonInterpreted<Self>::is_owning_locks(JavaThread* thread, RegisterMapT* map, const frame& f) {
14151415
// if (!DetectLocksInCompiledFrames) return false;
14161416
assert (!f.is_interpreted_frame() && Self::is_instance(f), "");
14171417

@@ -1428,6 +1428,7 @@ bool NonInterpreted<Self>::is_owning_locks(JavaThread* thread, const RegisterMap
14281428
if (mons == NULL || mons->is_empty())
14291429
continue;
14301430

1431+
ContinuationHelper::update_register_map_with_callee(map, f); // the monitor object could be stored in the link register
14311432
for (int index = (mons->length()-1); index >= 0; index--) { // see compiledVFrame::monitors()
14321433
MonitorValue* mon = mons->at(index);
14331434
if (mon->eliminated())
@@ -3402,7 +3403,7 @@ int freeze0(JavaThread* thread, FrameInfo* fi) {
34023403
}
34033404
}
34043405

3405-
static freeze_result is_pinned(const frame& f, const RegisterMap* map) {
3406+
static freeze_result is_pinned(const frame& f, RegisterMap* map) {
34063407
if (f.is_interpreted_frame()) {
34073408
if (Interpreted::is_owning_locks(f)) return freeze_pinned_monitor;
34083409
} else if (f.is_compiled_frame()) {

0 commit comments

Comments
 (0)
Please sign in to comment.