< prev index next >

src/hotspot/share/runtime/javaThread.cpp

Print this page

 479   _is_method_handle_return(0),
 480 
 481   _jni_active_critical(0),
 482   _pending_jni_exception_check_fn(nullptr),
 483   _depth_first_number(0),
 484 
 485   // JVMTI PopFrame support
 486   _popframe_condition(popframe_inactive),
 487   _frames_to_pop_failed_realloc(0),
 488 
 489   _cont_entry(nullptr),
 490   _cont_fastpath(nullptr),
 491   _cont_fastpath_thread_state(1),
 492   _held_monitor_count(0),
 493   _jni_monitor_count(0),
 494   _unlocked_inflated_monitor(nullptr),
 495 
 496   _preempt_alternate_return(nullptr),
 497   _preemption_cancelled(false),
 498   _pending_interrupted_exception(false),


 499 
 500   _handshake(this),
 501   _suspend_resume_manager(this, &_handshake._lock),
 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

 479   _is_method_handle_return(0),
 480 
 481   _jni_active_critical(0),
 482   _pending_jni_exception_check_fn(nullptr),
 483   _depth_first_number(0),
 484 
 485   // JVMTI PopFrame support
 486   _popframe_condition(popframe_inactive),
 487   _frames_to_pop_failed_realloc(0),
 488 
 489   _cont_entry(nullptr),
 490   _cont_fastpath(nullptr),
 491   _cont_fastpath_thread_state(1),
 492   _held_monitor_count(0),
 493   _jni_monitor_count(0),
 494   _unlocked_inflated_monitor(nullptr),
 495 
 496   _preempt_alternate_return(nullptr),
 497   _preemption_cancelled(false),
 498   _pending_interrupted_exception(false),
 499   _at_preemptable_init(false),
 500   DEBUG_ONLY(_preempt_init_klass(nullptr) 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
< prev index next >