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