< prev index next >

src/hotspot/share/runtime/deoptimization.cpp

Print this page

        

*** 1262,1272 **** // Reset mark word to unbiased prototype. markWord unbiased_prototype = markWord::prototype().set_age(mark.age()); obj->set_mark(unbiased_prototype); } BasicLock* lock = mon_info->lock(); ! ObjectSynchronizer::slow_enter(obj, lock, thread); assert(mon_info->owner()->is_locked(), "object must be locked now"); } } } } --- 1262,1272 ---- // Reset mark word to unbiased prototype. markWord unbiased_prototype = markWord::prototype().set_age(mark.age()); obj->set_mark(unbiased_prototype); } BasicLock* lock = mon_info->lock(); ! ObjectSynchronizer::enter(obj, lock, thread); assert(mon_info->owner()->is_locked(), "object must be locked now"); } } } }
*** 1372,1382 **** MonitorChunk* monitors = array->element(i)->monitors(); if (monitors != NULL) { for (int j = 0; j < monitors->number_of_monitors(); j++) { BasicObjectLock* src = monitors->at(j); if (src->obj() != NULL) { ! ObjectSynchronizer::fast_exit(src->obj(), src->lock(), thread); } } array->element(i)->free_monitors(thread); #ifdef ASSERT array->element(i)->set_removed_monitors(); --- 1372,1382 ---- MonitorChunk* monitors = array->element(i)->monitors(); if (monitors != NULL) { for (int j = 0; j < monitors->number_of_monitors(); j++) { BasicObjectLock* src = monitors->at(j); if (src->obj() != NULL) { ! ObjectSynchronizer::exit(src->obj(), src->lock(), thread); } } array->element(i)->free_monitors(thread); #ifdef ASSERT array->element(i)->set_removed_monitors();
< prev index next >