Skip to content
This repository was archived by the owner on Aug 27, 2022. It is now read-only.
/ lanai Public archive

Commit 46963fc

Browse files
mur47x111Doug Simon
authored and
Doug Simon
committedApr 16, 2020
8241234: Unify monitor enter/exit runtime entries
Reviewed-by: dcubed, coleenp
1 parent 5f03df7 commit 46963fc

File tree

4 files changed

+27
-88
lines changed

4 files changed

+27
-88
lines changed
 

‎src/hotspot/share/c1/c1_Runtime1.cpp

+3-11
Original file line numberDiff line numberDiff line change
@@ -699,30 +699,22 @@ JRT_ENTRY(void, Runtime1::throw_incompatible_class_change_error(JavaThread* thre
699699
JRT_END
700700

701701

702-
JRT_ENTRY_NO_ASYNC(void, Runtime1::monitorenter(JavaThread* thread, oopDesc* obj, BasicObjectLock* lock))
702+
JRT_BLOCK_ENTRY(void, Runtime1::monitorenter(JavaThread* thread, oopDesc* obj, BasicObjectLock* lock))
703703
NOT_PRODUCT(_monitorenter_slowcase_cnt++;)
704-
if (PrintBiasedLockingStatistics) {
705-
Atomic::inc(BiasedLocking::slow_path_entry_count_addr());
706-
}
707-
Handle h_obj(thread, obj);
708704
if (!UseFastLocking) {
709705
lock->set_obj(obj);
710706
}
711707
assert(obj == lock->obj(), "must match");
712-
ObjectSynchronizer::enter(h_obj, lock->lock(), THREAD);
708+
SharedRuntime::monitor_enter_helper(obj, lock->lock(), thread);
713709
JRT_END
714710

715711

716712
JRT_LEAF(void, Runtime1::monitorexit(JavaThread* thread, BasicObjectLock* lock))
717713
NOT_PRODUCT(_monitorexit_slowcase_cnt++;)
718-
assert(thread == JavaThread::current(), "threads must correspond");
719714
assert(thread->last_Java_sp(), "last_Java_sp must be set");
720-
// monitorexit is non-blocking (leaf routine) => no exceptions can be thrown
721-
EXCEPTION_MARK;
722-
723715
oop obj = lock->obj();
724716
assert(oopDesc::is_oop(obj), "must be NULL or an object");
725-
ObjectSynchronizer::exit(obj, lock->lock(), THREAD);
717+
SharedRuntime::monitor_exit_helper(obj, lock->lock(), thread);
726718
JRT_END
727719

728720
// Cf. OptoRuntime::deoptimize_caller_frame

‎src/hotspot/share/jvmci/jvmciRuntime.cpp

+4-38
Original file line numberDiff line numberDiff line change
@@ -382,48 +382,14 @@ address JVMCIRuntime::exception_handler_for_pc(JavaThread* thread) {
382382
return continuation;
383383
}
384384

385-
JRT_ENTRY_NO_ASYNC(void, JVMCIRuntime::monitorenter(JavaThread* thread, oopDesc* obj, BasicLock* lock))
386-
IF_TRACE_jvmci_3 {
387-
char type[O_BUFLEN];
388-
obj->klass()->name()->as_C_string(type, O_BUFLEN);
389-
markWord mark = obj->mark();
390-
TRACE_jvmci_3("%s: entered locking slow case with obj=" INTPTR_FORMAT ", type=%s, mark=" INTPTR_FORMAT ", lock=" INTPTR_FORMAT, thread->name(), p2i(obj), type, mark.value(), p2i(lock));
391-
tty->flush();
392-
}
393-
if (PrintBiasedLockingStatistics) {
394-
Atomic::inc(BiasedLocking::slow_path_entry_count_addr());
395-
}
396-
Handle h_obj(thread, obj);
397-
assert(oopDesc::is_oop(h_obj()), "must be NULL or an object");
398-
ObjectSynchronizer::enter(h_obj, lock, THREAD);
399-
TRACE_jvmci_3("%s: exiting locking slow with obj=" INTPTR_FORMAT, thread->name(), p2i(obj));
385+
JRT_BLOCK_ENTRY(void, JVMCIRuntime::monitorenter(JavaThread* thread, oopDesc* obj, BasicLock* lock))
386+
SharedRuntime::monitor_enter_helper(obj, lock, thread);
400387
JRT_END
401388

402389
JRT_LEAF(void, JVMCIRuntime::monitorexit(JavaThread* thread, oopDesc* obj, BasicLock* lock))
403-
assert(thread == JavaThread::current(), "threads must correspond");
404390
assert(thread->last_Java_sp(), "last_Java_sp must be set");
405-
// monitorexit is non-blocking (leaf routine) => no exceptions can be thrown
406-
EXCEPTION_MARK;
407-
408-
#ifdef ASSERT
409-
if (!oopDesc::is_oop(obj)) {
410-
ResetNoHandleMark rhm;
411-
nmethod* method = thread->last_frame().cb()->as_nmethod_or_null();
412-
if (method != NULL) {
413-
tty->print_cr("ERROR in monitorexit in method %s wrong obj " INTPTR_FORMAT, method->name(), p2i(obj));
414-
}
415-
thread->print_stack_on(tty);
416-
assert(false, "invalid lock object pointer dected");
417-
}
418-
#endif
419-
420-
ObjectSynchronizer::exit(obj, lock, THREAD);
421-
IF_TRACE_jvmci_3 {
422-
char type[O_BUFLEN];
423-
obj->klass()->name()->as_C_string(type, O_BUFLEN);
424-
TRACE_jvmci_3("%s: exited locking slow case with obj=" INTPTR_FORMAT ", type=%s, mark=" INTPTR_FORMAT ", lock=" INTPTR_FORMAT, thread->name(), p2i(obj), type, obj->mark().value(), p2i(lock));
425-
tty->flush();
426-
}
391+
assert(oopDesc::is_oop(obj), "invalid lock object pointer dected");
392+
SharedRuntime::monitor_exit_helper(obj, lock, thread);
427393
JRT_END
428394

429395
// Object.notify() fast path, caller does slow path

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

+16-38
Original file line numberDiff line numberDiff line change
@@ -2072,63 +2072,41 @@ JRT_LEAF(void, SharedRuntime::reguard_yellow_pages())
20722072
(void) JavaThread::current()->reguard_stack();
20732073
JRT_END
20742074

2075-
2076-
// Handles the uncommon case in locking, i.e., contention or an inflated lock.
2077-
JRT_BLOCK_ENTRY(void, SharedRuntime::complete_monitor_locking_C(oopDesc* _obj, BasicLock* lock, JavaThread* thread))
2075+
void SharedRuntime::monitor_enter_helper(oopDesc* obj, BasicLock* lock, JavaThread* thread) {
20782076
if (!SafepointSynchronize::is_synchronizing()) {
20792077
// Only try quick_enter() if we're not trying to reach a safepoint
20802078
// so that the calling thread reaches the safepoint more quickly.
2081-
if (ObjectSynchronizer::quick_enter(_obj, thread, lock)) return;
2079+
if (ObjectSynchronizer::quick_enter(obj, thread, lock)) return;
20822080
}
20832081
// NO_ASYNC required because an async exception on the state transition destructor
20842082
// would leave you with the lock held and it would never be released.
20852083
// The normal monitorenter NullPointerException is thrown without acquiring a lock
20862084
// and the model is that an exception implies the method failed.
20872085
JRT_BLOCK_NO_ASYNC
2088-
oop obj(_obj);
20892086
if (PrintBiasedLockingStatistics) {
20902087
Atomic::inc(BiasedLocking::slow_path_entry_count_addr());
20912088
}
20922089
Handle h_obj(THREAD, obj);
20932090
ObjectSynchronizer::enter(h_obj, lock, CHECK);
20942091
assert(!HAS_PENDING_EXCEPTION, "Should have no exception here");
20952092
JRT_BLOCK_END
2096-
JRT_END
2093+
}
20972094

2098-
// Handles the uncommon cases of monitor unlocking in compiled code
2099-
JRT_LEAF(void, SharedRuntime::complete_monitor_unlocking_C(oopDesc* _obj, BasicLock* lock, JavaThread * THREAD))
2100-
oop obj(_obj);
2101-
assert(JavaThread::current() == THREAD, "invariant");
2102-
// I'm not convinced we need the code contained by MIGHT_HAVE_PENDING anymore
2103-
// testing was unable to ever fire the assert that guarded it so I have removed it.
2104-
assert(!HAS_PENDING_EXCEPTION, "Do we need code below anymore?");
2105-
#undef MIGHT_HAVE_PENDING
2106-
#ifdef MIGHT_HAVE_PENDING
2107-
// Save and restore any pending_exception around the exception mark.
2108-
// While the slow_exit must not throw an exception, we could come into
2109-
// this routine with one set.
2110-
oop pending_excep = NULL;
2111-
const char* pending_file;
2112-
int pending_line;
2113-
if (HAS_PENDING_EXCEPTION) {
2114-
pending_excep = PENDING_EXCEPTION;
2115-
pending_file = THREAD->exception_file();
2116-
pending_line = THREAD->exception_line();
2117-
CLEAR_PENDING_EXCEPTION;
2118-
}
2119-
#endif /* MIGHT_HAVE_PENDING */
2095+
// Handles the uncommon case in locking, i.e., contention or an inflated lock.
2096+
JRT_BLOCK_ENTRY(void, SharedRuntime::complete_monitor_locking_C(oopDesc* obj, BasicLock* lock, JavaThread* thread))
2097+
SharedRuntime::monitor_enter_helper(obj, lock, thread);
2098+
JRT_END
21202099

2121-
{
2122-
// Exit must be non-blocking, and therefore no exceptions can be thrown.
2123-
EXCEPTION_MARK;
2124-
ObjectSynchronizer::exit(obj, lock, THREAD);
2125-
}
2100+
void SharedRuntime::monitor_exit_helper(oopDesc* obj, BasicLock* lock, JavaThread* thread) {
2101+
assert(JavaThread::current() == thread, "invariant");
2102+
// Exit must be non-blocking, and therefore no exceptions can be thrown.
2103+
EXCEPTION_MARK;
2104+
ObjectSynchronizer::exit(obj, lock, THREAD);
2105+
}
21262106

2127-
#ifdef MIGHT_HAVE_PENDING
2128-
if (pending_excep != NULL) {
2129-
THREAD->set_pending_exception(pending_excep, pending_file, pending_line);
2130-
}
2131-
#endif /* MIGHT_HAVE_PENDING */
2107+
// Handles the uncommon cases of monitor unlocking in compiled code
2108+
JRT_LEAF(void, SharedRuntime::complete_monitor_unlocking_C(oopDesc* obj, BasicLock* lock, JavaThread* thread))
2109+
SharedRuntime::monitor_exit_helper(obj, lock, thread);
21322110
JRT_END
21332111

21342112
#ifndef PRODUCT

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

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 1997, 2019, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 1997, 2020, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -341,6 +341,9 @@ class SharedRuntime: AllStatic {
341341
// Find the method that called us.
342342
static methodHandle find_callee_method(JavaThread* thread, TRAPS);
343343

344+
static void monitor_enter_helper(oopDesc* obj, BasicLock* lock, JavaThread* thread);
345+
346+
static void monitor_exit_helper(oopDesc* obj, BasicLock* lock, JavaThread* thread);
344347

345348
private:
346349
static Handle find_callee_info(JavaThread* thread,

0 commit comments

Comments
 (0)
This repository has been archived.