< prev index next >

src/hotspot/share/runtime/thread.cpp

Print this page
rev 50307 : [mq]: cont


1490   set_callee_target(NULL);
1491   set_vm_result(NULL);
1492   set_vm_result_2(NULL);
1493   set_vframe_array_head(NULL);
1494   set_vframe_array_last(NULL);
1495   set_deferred_locals(NULL);
1496   set_deopt_mark(NULL);
1497   set_deopt_compiled_method(NULL);
1498   clear_must_deopt_id();
1499   set_monitor_chunks(NULL);
1500   set_next(NULL);
1501   _on_thread_list = false;
1502   set_thread_state(_thread_new);
1503   _terminated = _not_terminated;
1504   _privileged_stack_top = NULL;
1505   _array_for_gc = NULL;
1506   _suspend_equivalent = false;
1507   _in_deopt_handler = 0;
1508   _doing_unsafe_access = false;
1509   _stack_guard_state = stack_guard_unused;

1510 #if INCLUDE_JVMCI
1511   _pending_monitorenter = false;
1512   _pending_deoptimization = -1;
1513   _pending_failed_speculation = NULL;
1514   _pending_transfer_to_interpreter = false;
1515   _adjusting_comp_level = false;
1516   _jvmci._alternate_call_target = NULL;
1517   assert(_jvmci._implicit_exception_pc == NULL, "must be");
1518   if (JVMCICounterSize > 0) {
1519     _jvmci_counters = NEW_C_HEAP_ARRAY(jlong, JVMCICounterSize, mtInternal);
1520     memset(_jvmci_counters, 0, sizeof(jlong) * JVMCICounterSize);
1521   } else {
1522     _jvmci_counters = NULL;
1523   }
1524 #endif // INCLUDE_JVMCI
1525   _reserved_stack_activation = NULL;  // stack base not known yet
1526   (void)const_cast<oop&>(_exception_oop = oop(NULL));
1527   _exception_pc  = 0;
1528   _exception_handler_pc = 0;
1529   _is_method_handle_return = 0;




1490   set_callee_target(NULL);
1491   set_vm_result(NULL);
1492   set_vm_result_2(NULL);
1493   set_vframe_array_head(NULL);
1494   set_vframe_array_last(NULL);
1495   set_deferred_locals(NULL);
1496   set_deopt_mark(NULL);
1497   set_deopt_compiled_method(NULL);
1498   clear_must_deopt_id();
1499   set_monitor_chunks(NULL);
1500   set_next(NULL);
1501   _on_thread_list = false;
1502   set_thread_state(_thread_new);
1503   _terminated = _not_terminated;
1504   _privileged_stack_top = NULL;
1505   _array_for_gc = NULL;
1506   _suspend_equivalent = false;
1507   _in_deopt_handler = 0;
1508   _doing_unsafe_access = false;
1509   _stack_guard_state = stack_guard_unused;
1510   DEBUG_ONLY(_continuation = NULL;)
1511 #if INCLUDE_JVMCI
1512   _pending_monitorenter = false;
1513   _pending_deoptimization = -1;
1514   _pending_failed_speculation = NULL;
1515   _pending_transfer_to_interpreter = false;
1516   _adjusting_comp_level = false;
1517   _jvmci._alternate_call_target = NULL;
1518   assert(_jvmci._implicit_exception_pc == NULL, "must be");
1519   if (JVMCICounterSize > 0) {
1520     _jvmci_counters = NEW_C_HEAP_ARRAY(jlong, JVMCICounterSize, mtInternal);
1521     memset(_jvmci_counters, 0, sizeof(jlong) * JVMCICounterSize);
1522   } else {
1523     _jvmci_counters = NULL;
1524   }
1525 #endif // INCLUDE_JVMCI
1526   _reserved_stack_activation = NULL;  // stack base not known yet
1527   (void)const_cast<oop&>(_exception_oop = oop(NULL));
1528   _exception_pc  = 0;
1529   _exception_handler_pc = 0;
1530   _is_method_handle_return = 0;


< prev index next >