478 _exception_handler_pc(nullptr),
479
480 _jni_active_critical(0),
481 _pending_jni_exception_check_fn(nullptr),
482 _depth_first_number(0),
483
484 // JVMTI PopFrame support
485 _popframe_condition(popframe_inactive),
486 _frames_to_pop_failed_realloc(0),
487
488 _cont_entry(nullptr),
489 _cont_fastpath(nullptr),
490 _cont_fastpath_thread_state(1),
491 _held_monitor_count(0),
492 _jni_monitor_count(0),
493 _unlocked_inflated_monitor(nullptr),
494
495 _preempt_alternate_return(nullptr),
496 _preemption_cancelled(false),
497 _pending_interrupted_exception(false),
498
499 _handshake(this),
500 _suspend_resume_manager(this, &_handshake._lock),
501
502 _popframe_preserved_args(nullptr),
503 _popframe_preserved_args_size(0),
504
505 _jvmti_thread_state(nullptr),
506 _interp_only_mode(0),
507 _should_post_on_exceptions_flag(JNI_FALSE),
508 _thread_stat(new ThreadStatistics()),
509
510 _parker(),
511
512 _class_to_be_initialized(nullptr),
513 _class_being_initialized(nullptr),
514
515 _SleepEvent(ParkEvent::Allocate(this)),
516
517 #if INCLUDE_JFR
|
478 _exception_handler_pc(nullptr),
479
480 _jni_active_critical(0),
481 _pending_jni_exception_check_fn(nullptr),
482 _depth_first_number(0),
483
484 // JVMTI PopFrame support
485 _popframe_condition(popframe_inactive),
486 _frames_to_pop_failed_realloc(0),
487
488 _cont_entry(nullptr),
489 _cont_fastpath(nullptr),
490 _cont_fastpath_thread_state(1),
491 _held_monitor_count(0),
492 _jni_monitor_count(0),
493 _unlocked_inflated_monitor(nullptr),
494
495 _preempt_alternate_return(nullptr),
496 _preemption_cancelled(false),
497 _pending_interrupted_exception(false),
498 _at_preemptable_init(false),
499 DEBUG_ONLY(_preempt_init_klass(nullptr) COMMA)
500 DEBUG_ONLY(_interp_at_preemptable_vmcall_cnt(0) COMMA)
501
502 _handshake(this),
503 _suspend_resume_manager(this, &_handshake._lock),
504
505 _popframe_preserved_args(nullptr),
506 _popframe_preserved_args_size(0),
507
508 _jvmti_thread_state(nullptr),
509 _interp_only_mode(0),
510 _should_post_on_exceptions_flag(JNI_FALSE),
511 _thread_stat(new ThreadStatistics()),
512
513 _parker(),
514
515 _class_to_be_initialized(nullptr),
516 _class_being_initialized(nullptr),
517
518 _SleepEvent(ParkEvent::Allocate(this)),
519
520 #if INCLUDE_JFR
|