Lines Matching defs:thread

78     vf->thread()->add_monitor_chunk(_monitors);
165 JavaThread* thread = (JavaThread*) Thread::current();
202 assert(thread->deopt_nmethod() != NULL, "nmethod should be known");
203 guarantee(!(thread->deopt_nmethod()->is_compiled_by_c2() &&
211 JvmtiThreadState *state = thread->jvmti_thread_state();
213 (thread->has_pending_popframe() || thread->popframe_forcing_deopt_reexecution())) {
214 if (thread->has_pending_popframe()) {
228 popframe_preserved_args_size_in_bytes = in_bytes(thread->popframe_preserved_args_size());
231 popframe_preserved_args_size_in_words = in_words(thread->popframe_preserved_args_size_in_words());
248 pc = SharedRuntime::raw_exception_handler_for_return_address(thread, pc);
288 _frame.patch_pc(thread, pc);
359 if (is_top_frame && JvmtiExport::can_pop_frame() && thread->popframe_forcing_deopt_reexecution()) {
362 // were preserved in thread-local storage by the
368 void* saved_args = thread->popframe_preserved_args();
385 thread->popframe_free_preserved_args();
394 RegisterMap map(thread);
395 vframe* f = vframe::new_vframe(iframe(), &map, thread);
445 vframeArray* vframeArray::allocate(JavaThread* thread, int frame_size, GrowableArray<compiledVFrame*>* chunk,
453 result->_owner_thread = thread;
458 result->fill_in(thread, frame_size, chunk, reg_map);
462 void vframeArray::fill_in(JavaThread* thread,
573 bool vframeArray::structural_compare(JavaThread* thread, GrowableArray<compiledVFrame*>* chunk) {
574 if (owner_thread() != thread) return false;
604 st->print(" - thread: ");