@@ -312,7 +312,7 @@ class NonInterpreted : public FrameCommon<Self> {
312
312
static inline int num_oops (const frame& f);
313
313
314
314
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);
316
316
};
317
317
318
318
class NonInterpretedUnknown : public NonInterpreted <NonInterpretedUnknown> {
@@ -1411,7 +1411,7 @@ inline int NonInterpreted<Self>::num_oops(const frame& f) {
1411
1411
1412
1412
template <typename Self>
1413
1413
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) {
1415
1415
// if (!DetectLocksInCompiledFrames) return false;
1416
1416
assert (!f.is_interpreted_frame () && Self::is_instance (f), " " );
1417
1417
@@ -1428,6 +1428,7 @@ bool NonInterpreted<Self>::is_owning_locks(JavaThread* thread, const RegisterMap
1428
1428
if (mons == NULL || mons->is_empty ())
1429
1429
continue ;
1430
1430
1431
+ ContinuationHelper::update_register_map_with_callee (map, f); // the monitor object could be stored in the link register
1431
1432
for (int index = (mons->length ()-1 ); index >= 0 ; index --) { // see compiledVFrame::monitors()
1432
1433
MonitorValue* mon = mons->at (index );
1433
1434
if (mon->eliminated ())
@@ -3402,7 +3403,7 @@ int freeze0(JavaThread* thread, FrameInfo* fi) {
3402
3403
}
3403
3404
}
3404
3405
3405
- static freeze_result is_pinned (const frame& f, const RegisterMap* map) {
3406
+ static freeze_result is_pinned (const frame& f, RegisterMap* map) {
3406
3407
if (f.is_interpreted_frame ()) {
3407
3408
if (Interpreted::is_owning_locks (f)) return freeze_pinned_monitor;
3408
3409
} else if (f.is_compiled_frame ()) {
0 commit comments