Lines Matching refs:most_recent
1671 BasicObjectLock* most_recent = (BasicObjectLock*) istate->stack_base();
1673 while (most_recent != limit ) {
1674 if (most_recent->obj() == NULL) entry = most_recent;
1675 else if (most_recent->obj() == lockee) break;
1676 most_recent++;
1703 BasicObjectLock* most_recent = (BasicObjectLock*) istate->stack_base();
1704 while (most_recent != limit ) {
1705 if ((most_recent)->obj() == lockee) {
1706 BasicLock* lock = most_recent->lock();
1708 most_recent->set_obj(NULL);
1713 most_recent->set_obj(lockee);
1714 CALL_VM(InterpreterRuntime::monitorexit(THREAD, most_recent), handle_exception);
1719 most_recent++;