@@ -2072,63 +2072,41 @@ JRT_LEAF(void, SharedRuntime::reguard_yellow_pages())
2072
2072
(void ) JavaThread::current()->reguard_stack();
2073
2073
JRT_END
2074
2074
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) {
2078
2076
if (!SafepointSynchronize::is_synchronizing ()) {
2079
2077
// Only try quick_enter() if we're not trying to reach a safepoint
2080
2078
// 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 ;
2082
2080
}
2083
2081
// NO_ASYNC required because an async exception on the state transition destructor
2084
2082
// would leave you with the lock held and it would never be released.
2085
2083
// The normal monitorenter NullPointerException is thrown without acquiring a lock
2086
2084
// and the model is that an exception implies the method failed.
2087
2085
JRT_BLOCK_NO_ASYNC
2088
- oop obj (_obj);
2089
2086
if (PrintBiasedLockingStatistics) {
2090
2087
Atomic::inc (BiasedLocking::slow_path_entry_count_addr ());
2091
2088
}
2092
2089
Handle h_obj (THREAD, obj);
2093
2090
ObjectSynchronizer::enter (h_obj, lock, CHECK);
2094
2091
assert (!HAS_PENDING_EXCEPTION, " Should have no exception here" );
2095
2092
JRT_BLOCK_END
2096
- JRT_END
2093
+ }
2097
2094
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
2120
2099
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
+ }
2126
2106
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);
2132
2110
JRT_END
2133
2111
2134
2112
#ifndef PRODUCT
0 commit comments