1 /* 2 * Copyright (c) 1997, 2024, Oracle and/or its affiliates. All rights reserved. 3 * Copyright (c) 2021, Azul Systems, Inc. All rights reserved. 4 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 5 * 6 * This code is free software; you can redistribute it and/or modify it 7 * under the terms of the GNU General Public License version 2 only, as 8 * published by the Free Software Foundation. 9 * 10 * This code is distributed in the hope that it will be useful, but WITHOUT 11 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 12 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License 13 * version 2 for more details (a copy is included in the LICENSE file that 14 * accompanied this code). 15 * 16 * You should have received a copy of the GNU General Public License version 17 * 2 along with this work; if not, write to the Free Software Foundation, 18 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. 19 * 20 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA 21 * or visit www.oracle.com if you need additional information or have any 22 * questions. 23 * 24 */ 25 26 #ifndef SHARE_RUNTIME_JAVATHREAD_HPP 27 #define SHARE_RUNTIME_JAVATHREAD_HPP 28 29 #include "jni.h" 30 #include "memory/allocation.hpp" 31 #include "oops/oop.hpp" 32 #include "oops/oopHandle.hpp" 33 #include "runtime/continuationEntry.hpp" 34 #include "runtime/frame.hpp" 35 #include "runtime/globals.hpp" 36 #include "runtime/handshake.hpp" 37 #include "runtime/javaFrameAnchor.hpp" 38 #include "runtime/lockStack.hpp" 39 #include "runtime/park.hpp" 40 #include "runtime/safepointMechanism.hpp" 41 #include "runtime/stackWatermarkSet.hpp" 42 #include "runtime/stackOverflow.hpp" 43 #include "runtime/thread.hpp" 44 #include "runtime/threadHeapSampler.hpp" 45 #include "runtime/threadIdentifier.hpp" 46 #include "runtime/threadStatisticalInfo.hpp" 47 #include "utilities/exceptions.hpp" 48 #include "utilities/globalDefinitions.hpp" 49 #include "utilities/macros.hpp" 50 #if INCLUDE_JFR 51 #include "jfr/support/jfrThreadExtension.hpp" 52 #include "utilities/ticks.hpp" 53 #endif 54 55 class AsyncExceptionHandshake; 56 class DeoptResourceMark; 57 class InternalOOMEMark; 58 class JNIHandleBlock; 59 class JVMCIRuntime; 60 61 class JvmtiDeferredUpdates; 62 class JvmtiSampledObjectAllocEventCollector; 63 class JvmtiThreadState; 64 65 class Metadata; 66 class ObjectMonitor; 67 class OopHandleList; 68 class OopStorage; 69 class OSThread; 70 71 class ThreadsList; 72 class ThreadSafepointState; 73 class ThreadStatistics; 74 75 class vframeArray; 76 class vframe; 77 class javaVFrame; 78 79 class JavaThread; 80 typedef void (*ThreadFunction)(JavaThread*, TRAPS); 81 82 class EventVirtualThreadPinned; 83 84 class JavaThread: public Thread { 85 friend class VMStructs; 86 friend class JVMCIVMStructs; 87 friend class WhiteBox; 88 friend class ThreadsSMRSupport; // to access _threadObj for exiting_threads_oops_do 89 friend class HandshakeState; 90 friend class Continuation; 91 friend class Threads; 92 friend class ServiceThread; // for deferred OopHandle release access 93 private: 94 bool _on_thread_list; // Is set when this JavaThread is added to the Threads list 95 96 // All references to Java objects managed via OopHandles. These 97 // have to be released by the ServiceThread after the JavaThread has 98 // terminated - see add_oop_handles_for_release(). 99 OopHandle _threadObj; // The Java level thread object 100 OopHandle _vthread; // the value returned by Thread.currentThread(): the virtual thread, if mounted, otherwise _threadObj 101 OopHandle _jvmti_vthread; 102 OopHandle _scopedValueCache; 103 104 static OopStorage* _thread_oop_storage; 105 106 #ifdef ASSERT 107 private: 108 int _java_call_counter; 109 110 public: 111 int java_call_counter() { return _java_call_counter; } 112 void inc_java_call_counter() { _java_call_counter++; } 113 void dec_java_call_counter() { 114 assert(_java_call_counter > 0, "Invalid nesting of JavaCallWrapper"); 115 _java_call_counter--; 116 } 117 private: // restore original namespace restriction 118 #endif // ifdef ASSERT 119 120 JavaFrameAnchor _anchor; // Encapsulation of current java frame and it state 121 122 ThreadFunction _entry_point; 123 124 JNIEnv _jni_environment; 125 126 // Deopt support 127 DeoptResourceMark* _deopt_mark; // Holds special ResourceMark for deoptimization 128 129 nmethod* _deopt_nmethod; // nmethod that is currently being deoptimized 130 vframeArray* _vframe_array_head; // Holds the heap of the active vframeArrays 131 vframeArray* _vframe_array_last; // Holds last vFrameArray we popped 132 // Holds updates by JVMTI agents for compiled frames that cannot be performed immediately. They 133 // will be carried out as soon as possible which, in most cases, is just before deoptimization of 134 // the frame, when control returns to it. 135 JvmtiDeferredUpdates* _jvmti_deferred_updates; 136 137 // Handshake value for fixing 6243940. We need a place for the i2c 138 // adapter to store the callee Method*. This value is NEVER live 139 // across a gc point so it does NOT have to be gc'd 140 // The handshake is open ended since we can't be certain that it will 141 // be nulled. This is because we rarely ever see the race and end up 142 // in handle_wrong_method which is the backend of the handshake. See 143 // code in i2c adapters and handle_wrong_method. 144 145 Method* _callee_target; 146 147 // Used to pass back results to the interpreter or generated code running Java code. 148 oop _vm_result; // oop result is GC-preserved 149 Metadata* _vm_result_2; // non-oop result 150 151 // See ReduceInitialCardMarks: this holds the precise space interval of 152 // the most recent slow path allocation for which compiled code has 153 // elided card-marks for performance along the fast-path. 154 MemRegion _deferred_card_mark; 155 156 ObjectMonitor* volatile _current_pending_monitor; // ObjectMonitor this thread is waiting to lock 157 bool _current_pending_monitor_is_from_java; // locking is from Java code 158 ObjectMonitor* volatile _current_waiting_monitor; // ObjectMonitor on which this thread called Object.wait() 159 160 // Active_handles points to a block of handles 161 JNIHandleBlock* _active_handles; 162 163 // One-element thread local free list 164 JNIHandleBlock* _free_handle_block; 165 166 // ID used as owner for inflated monitors. Same as the j.l.Thread.tid of the 167 // current _vthread object, except during creation of the primordial and JNI 168 // attached thread cases where this field can have a temporary value. 169 int64_t _monitor_owner_id; 170 171 public: 172 void set_monitor_owner_id(int64_t id) { 173 ThreadIdentifier::verify_id(id); 174 _monitor_owner_id = id; 175 } 176 int64_t monitor_owner_id() const { 177 int64_t id = _monitor_owner_id; 178 ThreadIdentifier::verify_id(id); 179 return id; 180 } 181 182 // For tracking the heavyweight monitor the thread is pending on. 183 ObjectMonitor* current_pending_monitor() { 184 // Use Atomic::load() to prevent data race between concurrent modification and 185 // concurrent readers, e.g. ThreadService::get_current_contended_monitor(). 186 // Especially, reloading pointer from thread after null check must be prevented. 187 return Atomic::load(&_current_pending_monitor); 188 } 189 void set_current_pending_monitor(ObjectMonitor* monitor) { 190 Atomic::store(&_current_pending_monitor, monitor); 191 } 192 void set_current_pending_monitor_is_from_java(bool from_java) { 193 _current_pending_monitor_is_from_java = from_java; 194 } 195 bool current_pending_monitor_is_from_java() { 196 return _current_pending_monitor_is_from_java; 197 } 198 ObjectMonitor* current_waiting_monitor() { 199 // See the comment in current_pending_monitor() above. 200 return Atomic::load(&_current_waiting_monitor); 201 } 202 void set_current_waiting_monitor(ObjectMonitor* monitor) { 203 Atomic::store(&_current_waiting_monitor, monitor); 204 } 205 206 // JNI handle support 207 JNIHandleBlock* active_handles() const { return _active_handles; } 208 void set_active_handles(JNIHandleBlock* block) { _active_handles = block; } 209 JNIHandleBlock* free_handle_block() const { return _free_handle_block; } 210 void set_free_handle_block(JNIHandleBlock* block) { _free_handle_block = block; } 211 212 void push_jni_handle_block(); 213 void pop_jni_handle_block(); 214 215 private: 216 enum SuspendFlags { 217 // NOTE: avoid using the sign-bit as cc generates different test code 218 // when the sign-bit is used, and sometimes incorrectly - see CR 6398077 219 _trace_flag = 0x00000004U, // call tracing backend 220 _obj_deopt = 0x00000008U // suspend for object reallocation and relocking for JVMTI agent 221 }; 222 223 // various suspension related flags - atomically updated 224 volatile uint32_t _suspend_flags; 225 226 inline void set_suspend_flag(SuspendFlags f); 227 inline void clear_suspend_flag(SuspendFlags f); 228 229 public: 230 inline void set_trace_flag(); 231 inline void clear_trace_flag(); 232 inline void set_obj_deopt_flag(); 233 inline void clear_obj_deopt_flag(); 234 bool is_trace_suspend() { return (_suspend_flags & _trace_flag) != 0; } 235 bool is_obj_deopt_suspend() { return (_suspend_flags & _obj_deopt) != 0; } 236 237 // Asynchronous exception support 238 private: 239 friend class InstallAsyncExceptionHandshake; 240 friend class AsyncExceptionHandshake; 241 friend class HandshakeState; 242 243 void handle_async_exception(oop java_throwable); 244 public: 245 void install_async_exception(AsyncExceptionHandshake* aec = nullptr); 246 bool has_async_exception_condition(); 247 inline void set_pending_unsafe_access_error(); 248 static void send_async_exception(JavaThread* jt, oop java_throwable); 249 250 class NoAsyncExceptionDeliveryMark : public StackObj { 251 friend JavaThread; 252 JavaThread *_target; 253 inline NoAsyncExceptionDeliveryMark(JavaThread *t); 254 inline ~NoAsyncExceptionDeliveryMark(); 255 }; 256 257 // Safepoint support 258 public: // Expose _thread_state for SafeFetchInt() 259 volatile JavaThreadState _thread_state; 260 ThreadSafepointState* _safepoint_state; // Holds information about a thread during a safepoint 261 address _saved_exception_pc; // Saved pc of instruction where last implicit exception happened 262 NOT_PRODUCT(bool _requires_cross_modify_fence;) // State used by VerifyCrossModifyFence 263 #ifdef ASSERT 264 // Debug support for checking if code allows safepoints or not. 265 // Safepoints in the VM can happen because of allocation, invoking a VM operation, or blocking on 266 // mutex, or blocking on an object synchronizer (Java locking). 267 // If _no_safepoint_count is non-zero, then an assertion failure will happen in any of 268 // the above cases. The class NoSafepointVerifier is used to set this counter. 269 int _no_safepoint_count; // If 0, thread allow a safepoint to happen 270 271 public: 272 void inc_no_safepoint_count() { _no_safepoint_count++; } 273 void dec_no_safepoint_count() { _no_safepoint_count--; } 274 bool is_in_no_safepoint_scope() { return _no_safepoint_count > 0; } 275 #endif // ASSERT 276 public: 277 // These functions check conditions before possibly going to a safepoint. 278 // including NoSafepointVerifier. 279 void check_for_valid_safepoint_state() NOT_DEBUG_RETURN; 280 void check_possible_safepoint() NOT_DEBUG_RETURN; 281 282 #ifdef ASSERT 283 private: 284 volatile uint64_t _visited_for_critical_count; 285 286 public: 287 void set_visited_for_critical_count(uint64_t safepoint_id) { 288 assert(_visited_for_critical_count == 0, "Must be reset before set"); 289 assert((safepoint_id & 0x1) == 1, "Must be odd"); 290 _visited_for_critical_count = safepoint_id; 291 } 292 void reset_visited_for_critical_count(uint64_t safepoint_id) { 293 assert(_visited_for_critical_count == safepoint_id, "Was not visited"); 294 _visited_for_critical_count = 0; 295 } 296 bool was_visited_for_critical_count(uint64_t safepoint_id) const { 297 return _visited_for_critical_count == safepoint_id; 298 } 299 #endif // ASSERT 300 301 // JavaThread termination support 302 public: 303 enum TerminatedTypes { 304 _not_terminated = 0xDEAD - 3, 305 _thread_exiting, // JavaThread::exit() has been called for this thread 306 _thread_gc_barrier_detached, // thread's GC barrier has been detached 307 _thread_terminated, // JavaThread is removed from thread list 308 _vm_exited // JavaThread is still executing native code, but VM is terminated 309 // only VM_Exit can set _vm_exited 310 }; 311 312 private: 313 // In general a JavaThread's _terminated field transitions as follows: 314 // 315 // _not_terminated => _thread_exiting => _thread_gc_barrier_detached => _thread_terminated 316 // 317 // _vm_exited is a special value to cover the case of a JavaThread 318 // executing native code after the VM itself is terminated. 319 // 320 // A JavaThread that fails to JNI attach has these _terminated field transitions: 321 // _not_terminated => _thread_terminated 322 // 323 volatile TerminatedTypes _terminated; 324 325 jint _in_deopt_handler; // count of deoptimization 326 // handlers thread is in 327 volatile bool _doing_unsafe_access; // Thread may fault due to unsafe access 328 bool _do_not_unlock_if_synchronized; // Do not unlock the receiver of a synchronized method (since it was 329 // never locked) when throwing an exception. Used by interpreter only. 330 #if INCLUDE_JVMTI 331 volatile bool _carrier_thread_suspended; // Carrier thread is externally suspended 332 bool _is_in_VTMS_transition; // thread is in virtual thread mount state transition 333 bool _is_disable_suspend; // JVMTI suspend is temporarily disabled; used on current thread only 334 bool _VTMS_transition_mark; // used for sync between VTMS transitions and disablers 335 bool _on_monitor_waited_event; // Avoid callee arg processing for enterSpecial when posting waited event 336 ObjectMonitor* _contended_entered_monitor; // Monitor for pending monitor_contended_entered callback 337 #ifdef ASSERT 338 bool _is_VTMS_transition_disabler; // thread currently disabled VTMS transitions 339 #endif 340 #endif 341 342 // JNI attach states: 343 enum JNIAttachStates { 344 _not_attaching_via_jni = 1, // thread is not attaching via JNI 345 _attaching_via_jni, // thread is attaching via JNI 346 _attached_via_jni // thread has attached via JNI 347 }; 348 349 // A regular JavaThread's _jni_attach_state is _not_attaching_via_jni. 350 // A native thread that is attaching via JNI starts with a value 351 // of _attaching_via_jni and transitions to _attached_via_jni. 352 volatile JNIAttachStates _jni_attach_state; 353 354 // In scope of an InternalOOMEMark? 355 bool _is_in_internal_oome_mark; 356 357 #if INCLUDE_JVMCI 358 // The _pending_* fields below are used to communicate extra information 359 // from an uncommon trap in JVMCI compiled code to the uncommon trap handler. 360 361 // Communicates the DeoptReason and DeoptAction of the uncommon trap 362 int _pending_deoptimization; 363 364 // Specifies whether the uncommon trap is to bci 0 of a synchronized method 365 // before the monitor has been acquired. 366 bool _pending_monitorenter; 367 368 // Specifies if the DeoptReason for the last uncommon trap was Reason_transfer_to_interpreter 369 bool _pending_transfer_to_interpreter; 370 371 // An id of a speculation that JVMCI compiled code can use to further describe and 372 // uniquely identify the speculative optimization guarded by an uncommon trap. 373 // See JVMCINMethodData::SPECULATION_LENGTH_BITS for further details. 374 jlong _pending_failed_speculation; 375 376 // These fields are mutually exclusive in terms of live ranges. 377 union { 378 // Communicates the pc at which the most recent implicit exception occurred 379 // from the signal handler to a deoptimization stub. 380 address _implicit_exception_pc; 381 382 // Communicates an alternative call target to an i2c stub from a JavaCall . 383 address _alternate_call_target; 384 } _jvmci; 385 386 // The JVMCIRuntime in a JVMCI shared library 387 JVMCIRuntime* _libjvmci_runtime; 388 389 // Support for high precision, thread sensitive counters in JVMCI compiled code. 390 jlong* _jvmci_counters; 391 392 // Fast thread locals for use by JVMCI 393 jlong _jvmci_reserved0; 394 jlong _jvmci_reserved1; 395 oop _jvmci_reserved_oop0; 396 397 // This field is used to keep an nmethod visible to the GC so that it and its contained oops can 398 // be kept alive 399 nmethod* _live_nmethod; 400 401 public: 402 static jlong* _jvmci_old_thread_counters; 403 static void collect_counters(jlong* array, int length); 404 405 bool resize_counters(int current_size, int new_size); 406 407 static bool resize_all_jvmci_counters(int new_size); 408 409 void set_jvmci_reserved_oop0(oop value) { 410 _jvmci_reserved_oop0 = value; 411 } 412 413 oop get_jvmci_reserved_oop0() { 414 return _jvmci_reserved_oop0; 415 } 416 417 void set_jvmci_reserved0(jlong value) { 418 _jvmci_reserved0 = value; 419 } 420 421 jlong get_jvmci_reserved0() { 422 return _jvmci_reserved0; 423 } 424 425 void set_jvmci_reserved1(jlong value) { 426 _jvmci_reserved1 = value; 427 } 428 429 jlong get_jvmci_reserved1() { 430 return _jvmci_reserved1; 431 } 432 433 void set_live_nmethod(nmethod* nm) { 434 assert(_live_nmethod == nullptr, "only one"); 435 _live_nmethod = nm; 436 } 437 438 void clear_live_nmethod() { 439 _live_nmethod = nullptr; 440 } 441 442 private: 443 #endif // INCLUDE_JVMCI 444 445 StackOverflow _stack_overflow_state; 446 447 void pretouch_stack(); 448 449 // Compiler exception handling (NOTE: The _exception_oop is *NOT* the same as _pending_exception. It is 450 // used to temp. parsing values into and out of the runtime system during exception handling for compiled 451 // code) 452 volatile oop _exception_oop; // Exception thrown in compiled code 453 volatile address _exception_pc; // PC where exception happened 454 volatile address _exception_handler_pc; // PC for handler of exception 455 volatile int _is_method_handle_return; // true (== 1) if the current exception PC is a MethodHandle call site. 456 457 private: 458 // support for JNI critical regions 459 jint _jni_active_critical; // count of entries into JNI critical region 460 461 // Checked JNI: function name requires exception check 462 char* _pending_jni_exception_check_fn; 463 464 // For deadlock detection. 465 int _depth_first_number; 466 467 // JVMTI PopFrame support 468 // This is set to popframe_pending to signal that top Java frame should be popped immediately 469 int _popframe_condition; 470 471 // If reallocation of scalar replaced objects fails, we throw OOM 472 // and during exception propagation, pop the top 473 // _frames_to_pop_failed_realloc frames, the ones that reference 474 // failed reallocations. 475 int _frames_to_pop_failed_realloc; 476 477 ContinuationEntry* _cont_entry; 478 intptr_t* _cont_fastpath; // the sp of the oldest known interpreted/call_stub/upcall_stub/native_wrapper 479 // frame inside the continuation that we know about 480 int _cont_fastpath_thread_state; // whether global thread state allows continuation fastpath (JVMTI) 481 482 // It's signed for error detection. 483 intx _held_monitor_count; // used by continuations for fast lock detection 484 intx _jni_monitor_count; 485 ObjectMonitor* _unlocked_inflated_monitor; 486 487 // This is the field we poke in the interpreter and native 488 // wrapper (Object.wait) to check for preemption. 489 address _preempt_alternate_return; 490 // When preempting on monitorenter we could have acquired the 491 // monitor after freezing all vthread frames. In that case we 492 // set this field so that in the preempt stub we call thaw again 493 // instead of unmounting. 494 bool _preemption_cancelled; 495 // For Object.wait() we set this field to know if we need to 496 // throw IE at the end of thawing before returning to Java. 497 bool _pending_interrupted_exception; 498 499 public: 500 bool preemption_cancelled() { return _preemption_cancelled; } 501 void set_preemption_cancelled(bool b) { _preemption_cancelled = b; } 502 503 bool pending_interrupted_exception() { return _pending_interrupted_exception; } 504 void set_pending_interrupted_exception(bool b) { _pending_interrupted_exception = b; } 505 506 bool preempting() { return _preempt_alternate_return != nullptr; } 507 void set_preempt_alternate_return(address val) { _preempt_alternate_return = val; } 508 509 private: 510 511 friend class VMThread; 512 friend class ThreadWaitTransition; 513 friend class VM_Exit; 514 515 // Stack watermark barriers. 516 StackWatermarks _stack_watermarks; 517 518 public: 519 inline StackWatermarks* stack_watermarks() { return &_stack_watermarks; } 520 521 public: 522 // Constructor 523 JavaThread(MemTag mem_tag = mtThread); // delegating constructor 524 JavaThread(ThreadFunction entry_point, size_t stack_size = 0, MemTag mem_tag = mtThread); 525 ~JavaThread(); 526 527 // Factory method to create a new JavaThread whose attach state is "is attaching" 528 static JavaThread* create_attaching_thread(); 529 530 #ifdef ASSERT 531 // verify this JavaThread hasn't be published in the Threads::list yet 532 void verify_not_published(); 533 #endif // ASSERT 534 535 StackOverflow* stack_overflow_state() { return &_stack_overflow_state; } 536 537 //JNI functiontable getter/setter for JVMTI jni function table interception API. 538 void set_jni_functions(struct JNINativeInterface_* functionTable) { 539 _jni_environment.functions = functionTable; 540 } 541 struct JNINativeInterface_* get_jni_functions() { 542 return (struct JNINativeInterface_ *)_jni_environment.functions; 543 } 544 545 // This function is called at thread creation to allow 546 // platform specific thread variables to be initialized. 547 void cache_global_variables(); 548 549 // Executes Shutdown.shutdown() 550 void invoke_shutdown_hooks(); 551 552 // Cleanup on thread exit 553 enum ExitType { 554 normal_exit, 555 jni_detach 556 }; 557 void exit(bool destroy_vm, ExitType exit_type = normal_exit); 558 559 void cleanup_failed_attach_current_thread(bool is_daemon); 560 561 // Testers 562 virtual bool is_Java_thread() const { return true; } 563 virtual bool can_call_java() const { return true; } 564 565 virtual bool is_active_Java_thread() const; 566 567 // Thread oop. threadObj() can be null for initial JavaThread 568 // (or for threads attached via JNI) 569 oop threadObj() const; 570 void set_threadOopHandles(oop p); 571 oop vthread() const; 572 void set_vthread(oop p); 573 oop scopedValueCache() const; 574 void set_scopedValueCache(oop p); 575 void clear_scopedValueBindings(); 576 oop jvmti_vthread() const; 577 void set_jvmti_vthread(oop p); 578 oop vthread_or_thread() const; 579 580 // Prepare thread and add to priority queue. If a priority is 581 // not specified, use the priority of the thread object. Threads_lock 582 // must be held while this function is called. 583 void prepare(jobject jni_thread, ThreadPriority prio=NoPriority); 584 585 void set_saved_exception_pc(address pc) { _saved_exception_pc = pc; } 586 address saved_exception_pc() { return _saved_exception_pc; } 587 588 ThreadFunction entry_point() const { return _entry_point; } 589 590 // Allocates a new Java level thread object for this thread. thread_name may be null. 591 void allocate_threadObj(Handle thread_group, const char* thread_name, bool daemon, TRAPS); 592 593 // Last frame anchor routines 594 595 JavaFrameAnchor* frame_anchor(void) { return &_anchor; } 596 597 // last_Java_sp 598 bool has_last_Java_frame() const { return _anchor.has_last_Java_frame(); } 599 intptr_t* last_Java_sp() const { return _anchor.last_Java_sp(); } 600 601 // last_Java_pc 602 603 address last_Java_pc(void) { return _anchor.last_Java_pc(); } 604 605 // Safepoint support 606 inline JavaThreadState thread_state() const; 607 inline void set_thread_state(JavaThreadState s); 608 inline void set_thread_state_fence(JavaThreadState s); // fence after setting thread state 609 inline ThreadSafepointState* safepoint_state() const; 610 inline void set_safepoint_state(ThreadSafepointState* state); 611 inline bool is_at_poll_safepoint(); 612 613 // JavaThread termination and lifecycle support: 614 void smr_delete(); 615 bool on_thread_list() const { return _on_thread_list; } 616 void set_on_thread_list() { _on_thread_list = true; } 617 618 // thread has called JavaThread::exit(), thread's GC barrier is detached 619 // or thread is terminated 620 bool is_exiting() const; 621 // thread's GC barrier is NOT detached and thread is NOT terminated 622 bool is_oop_safe() const; 623 // thread is terminated (no longer on the threads list); the thread must 624 // be protected by a ThreadsListHandle to avoid potential crashes. 625 bool check_is_terminated(TerminatedTypes l_terminated) const { 626 return l_terminated == _thread_terminated || l_terminated == _vm_exited; 627 } 628 bool is_terminated() const; 629 void set_terminated(TerminatedTypes t); 630 631 void block_if_vm_exited(); 632 633 bool doing_unsafe_access() { return _doing_unsafe_access; } 634 void set_doing_unsafe_access(bool val) { _doing_unsafe_access = val; } 635 636 bool do_not_unlock_if_synchronized() { return _do_not_unlock_if_synchronized; } 637 void set_do_not_unlock_if_synchronized(bool val) { _do_not_unlock_if_synchronized = val; } 638 639 SafepointMechanism::ThreadData* poll_data() { return &_poll_data; } 640 641 static ByteSize polling_word_offset() { 642 ByteSize offset = byte_offset_of(Thread, _poll_data) + 643 byte_offset_of(SafepointMechanism::ThreadData, _polling_word); 644 // At least on x86_64, safepoint polls encode the offset as disp8 imm. 645 assert(in_bytes(offset) < 128, "Offset >= 128"); 646 return offset; 647 } 648 649 static ByteSize polling_page_offset() { 650 ByteSize offset = byte_offset_of(Thread, _poll_data) + 651 byte_offset_of(SafepointMechanism::ThreadData, _polling_page); 652 // At least on x86_64, safepoint polls encode the offset as disp8 imm. 653 assert(in_bytes(offset) < 128, "Offset >= 128"); 654 return offset; 655 } 656 657 void set_requires_cross_modify_fence(bool val) PRODUCT_RETURN NOT_PRODUCT({ _requires_cross_modify_fence = val; }) 658 659 // Continuation support 660 ContinuationEntry* last_continuation() const { return _cont_entry; } 661 void set_cont_fastpath(intptr_t* x) { _cont_fastpath = x; } 662 void push_cont_fastpath(intptr_t* sp) { if (sp > _cont_fastpath) _cont_fastpath = sp; } 663 void set_cont_fastpath_thread_state(bool x) { _cont_fastpath_thread_state = (int)x; } 664 intptr_t* raw_cont_fastpath() const { return _cont_fastpath; } 665 bool cont_fastpath() const { return _cont_fastpath == nullptr && _cont_fastpath_thread_state != 0; } 666 bool cont_fastpath_thread_state() const { return _cont_fastpath_thread_state != 0; } 667 668 void inc_held_monitor_count(intx i = 1, bool jni = false); 669 void dec_held_monitor_count(intx i = 1, bool jni = false); 670 671 intx held_monitor_count() { return _held_monitor_count; } 672 intx jni_monitor_count() { return _jni_monitor_count; } 673 void clear_jni_monitor_count() { _jni_monitor_count = 0; } 674 675 // Support for SharedRuntime::monitor_exit_helper() 676 ObjectMonitor* unlocked_inflated_monitor() const { return _unlocked_inflated_monitor; } 677 void clear_unlocked_inflated_monitor() { 678 _unlocked_inflated_monitor = nullptr; 679 } 680 681 inline bool is_vthread_mounted() const; 682 inline const ContinuationEntry* vthread_continuation() const; 683 684 private: 685 DEBUG_ONLY(void verify_frame_info();) 686 687 // Support for thread handshake operations 688 HandshakeState _handshake; 689 public: 690 HandshakeState* handshake_state() { return &_handshake; } 691 692 // A JavaThread can always safely operate on it self and other threads 693 // can do it safely if they are the active handshaker. 694 bool is_handshake_safe_for(Thread* th) const { 695 return _handshake.active_handshaker() == th || this == th; 696 } 697 698 // Suspend/resume support for JavaThread 699 // higher-level suspension/resume logic called by the public APIs 700 bool java_suspend(); 701 bool java_resume(); 702 bool is_suspended() { return _handshake.is_suspended(); } 703 704 // Check for async exception in addition to safepoint. 705 static void check_special_condition_for_native_trans(JavaThread *thread); 706 707 // Synchronize with another thread that is deoptimizing objects of the 708 // current thread, i.e. reverts optimizations based on escape analysis. 709 void wait_for_object_deoptimization(); 710 711 #if INCLUDE_JVMTI 712 inline void set_carrier_thread_suspended(); 713 inline void clear_carrier_thread_suspended(); 714 715 bool is_carrier_thread_suspended() const { 716 return _carrier_thread_suspended; 717 } 718 719 bool is_in_VTMS_transition() const { return _is_in_VTMS_transition; } 720 void set_is_in_VTMS_transition(bool val); 721 722 bool is_disable_suspend() const { return _is_disable_suspend; } 723 void toggle_is_disable_suspend() { _is_disable_suspend = !_is_disable_suspend; }; 724 725 bool VTMS_transition_mark() const { return Atomic::load(&_VTMS_transition_mark); } 726 void set_VTMS_transition_mark(bool val) { Atomic::store(&_VTMS_transition_mark, val); } 727 728 // Temporarily skip posting JVMTI events for safety reasons when executions is in a critical section: 729 // - is in a VTMS transition (_is_in_VTMS_transition) 730 // - is in an interruptLock or similar critical section (_is_disable_suspend) 731 bool should_hide_jvmti_events() const { return _is_in_VTMS_transition || _is_disable_suspend; } 732 733 bool on_monitor_waited_event() { return _on_monitor_waited_event; } 734 void set_on_monitor_waited_event(bool val) { _on_monitor_waited_event = val; } 735 736 bool pending_contended_entered_event() { return _contended_entered_monitor != nullptr; } 737 ObjectMonitor* contended_entered_monitor() { return _contended_entered_monitor; } 738 #ifdef ASSERT 739 bool is_VTMS_transition_disabler() const { return _is_VTMS_transition_disabler; } 740 void set_is_VTMS_transition_disabler(bool val); 741 #endif 742 #endif 743 744 void set_contended_entered_monitor(ObjectMonitor* val) NOT_JVMTI_RETURN JVMTI_ONLY({ _contended_entered_monitor = val; }) 745 746 // Support for object deoptimization and JFR suspension 747 void handle_special_runtime_exit_condition(); 748 bool has_special_runtime_exit_condition() { 749 return (_suspend_flags & (_obj_deopt JFR_ONLY(| _trace_flag))) != 0; 750 } 751 752 // Stack-locking support (not for LM_LIGHTWEIGHT) 753 bool is_lock_owned(address adr) const; 754 755 // Accessors for vframe array top 756 // The linked list of vframe arrays are sorted on sp. This means when we 757 // unpack the head must contain the vframe array to unpack. 758 void set_vframe_array_head(vframeArray* value) { _vframe_array_head = value; } 759 vframeArray* vframe_array_head() const { return _vframe_array_head; } 760 761 // Side structure for deferring update of java frame locals until deopt occurs 762 JvmtiDeferredUpdates* deferred_updates() const { return _jvmti_deferred_updates; } 763 void set_deferred_updates(JvmtiDeferredUpdates* du) { _jvmti_deferred_updates = du; } 764 765 // These only really exist to make debugging deopt problems simpler 766 767 void set_vframe_array_last(vframeArray* value) { _vframe_array_last = value; } 768 vframeArray* vframe_array_last() const { return _vframe_array_last; } 769 770 // The special resourceMark used during deoptimization 771 772 void set_deopt_mark(DeoptResourceMark* value) { _deopt_mark = value; } 773 DeoptResourceMark* deopt_mark(void) { return _deopt_mark; } 774 775 void set_deopt_compiled_method(nmethod* nm) { _deopt_nmethod = nm; } 776 nmethod* deopt_compiled_method() { return _deopt_nmethod; } 777 778 Method* callee_target() const { return _callee_target; } 779 void set_callee_target (Method* x) { _callee_target = x; } 780 781 // Oop results of vm runtime calls 782 oop vm_result() const { return _vm_result; } 783 void set_vm_result (oop x) { _vm_result = x; } 784 785 void set_vm_result_2 (Metadata* x) { _vm_result_2 = x; } 786 787 MemRegion deferred_card_mark() const { return _deferred_card_mark; } 788 void set_deferred_card_mark(MemRegion mr) { _deferred_card_mark = mr; } 789 790 // Is thread in scope of an InternalOOMEMark? 791 bool is_in_internal_oome_mark() const { return _is_in_internal_oome_mark; } 792 void set_is_in_internal_oome_mark(bool b) { _is_in_internal_oome_mark = b; } 793 794 #if INCLUDE_JVMCI 795 jlong pending_failed_speculation() const { return _pending_failed_speculation; } 796 void set_pending_monitorenter(bool b) { _pending_monitorenter = b; } 797 void set_pending_deoptimization(int reason) { _pending_deoptimization = reason; } 798 void set_pending_failed_speculation(jlong failed_speculation) { _pending_failed_speculation = failed_speculation; } 799 void set_pending_transfer_to_interpreter(bool b) { _pending_transfer_to_interpreter = b; } 800 void set_jvmci_alternate_call_target(address a) { assert(_jvmci._alternate_call_target == nullptr, "must be"); _jvmci._alternate_call_target = a; } 801 void set_jvmci_implicit_exception_pc(address a) { assert(_jvmci._implicit_exception_pc == nullptr, "must be"); _jvmci._implicit_exception_pc = a; } 802 803 JVMCIRuntime* libjvmci_runtime() const { return _libjvmci_runtime; } 804 void set_libjvmci_runtime(JVMCIRuntime* rt) { 805 assert((_libjvmci_runtime == nullptr && rt != nullptr) || (_libjvmci_runtime != nullptr && rt == nullptr), "must be"); 806 _libjvmci_runtime = rt; 807 } 808 #endif // INCLUDE_JVMCI 809 810 // Exception handling for compiled methods 811 oop exception_oop() const; 812 address exception_pc() const { return _exception_pc; } 813 814 void set_exception_oop(oop o); 815 void set_exception_pc(address a) { _exception_pc = a; } 816 void set_exception_handler_pc(address a) { _exception_handler_pc = a; } 817 void set_is_method_handle_return(bool value) { _is_method_handle_return = value ? 1 : 0; } 818 819 void clear_exception_oop_and_pc() { 820 set_exception_oop(nullptr); 821 set_exception_pc(nullptr); 822 } 823 824 // Check if address is in the usable part of the stack (excludes protected 825 // guard pages). Can be applied to any thread and is an approximation for 826 // using is_in_live_stack when the query has to happen from another thread. 827 bool is_in_usable_stack(address adr) const { 828 return is_in_stack_range_incl(adr, _stack_overflow_state.stack_reserved_zone_base()); 829 } 830 831 // Misc. accessors/mutators 832 static ByteSize scopedValueCache_offset() { return byte_offset_of(JavaThread, _scopedValueCache); } 833 834 // For assembly stub generation 835 static ByteSize threadObj_offset() { return byte_offset_of(JavaThread, _threadObj); } 836 static ByteSize vthread_offset() { return byte_offset_of(JavaThread, _vthread); } 837 static ByteSize jni_environment_offset() { return byte_offset_of(JavaThread, _jni_environment); } 838 static ByteSize pending_jni_exception_check_fn_offset() { 839 return byte_offset_of(JavaThread, _pending_jni_exception_check_fn); 840 } 841 static ByteSize last_Java_sp_offset() { 842 return byte_offset_of(JavaThread, _anchor) + JavaFrameAnchor::last_Java_sp_offset(); 843 } 844 static ByteSize last_Java_pc_offset() { 845 return byte_offset_of(JavaThread, _anchor) + JavaFrameAnchor::last_Java_pc_offset(); 846 } 847 static ByteSize frame_anchor_offset() { 848 return byte_offset_of(JavaThread, _anchor); 849 } 850 static ByteSize callee_target_offset() { return byte_offset_of(JavaThread, _callee_target); } 851 static ByteSize vm_result_offset() { return byte_offset_of(JavaThread, _vm_result); } 852 static ByteSize vm_result_2_offset() { return byte_offset_of(JavaThread, _vm_result_2); } 853 static ByteSize thread_state_offset() { return byte_offset_of(JavaThread, _thread_state); } 854 static ByteSize saved_exception_pc_offset() { return byte_offset_of(JavaThread, _saved_exception_pc); } 855 static ByteSize osthread_offset() { return byte_offset_of(JavaThread, _osthread); } 856 #if INCLUDE_JVMCI 857 static ByteSize pending_deoptimization_offset() { return byte_offset_of(JavaThread, _pending_deoptimization); } 858 static ByteSize pending_monitorenter_offset() { return byte_offset_of(JavaThread, _pending_monitorenter); } 859 static ByteSize jvmci_alternate_call_target_offset() { return byte_offset_of(JavaThread, _jvmci._alternate_call_target); } 860 static ByteSize jvmci_implicit_exception_pc_offset() { return byte_offset_of(JavaThread, _jvmci._implicit_exception_pc); } 861 static ByteSize jvmci_counters_offset() { return byte_offset_of(JavaThread, _jvmci_counters); } 862 #endif // INCLUDE_JVMCI 863 static ByteSize exception_oop_offset() { return byte_offset_of(JavaThread, _exception_oop); } 864 static ByteSize exception_pc_offset() { return byte_offset_of(JavaThread, _exception_pc); } 865 static ByteSize exception_handler_pc_offset() { return byte_offset_of(JavaThread, _exception_handler_pc); } 866 static ByteSize is_method_handle_return_offset() { return byte_offset_of(JavaThread, _is_method_handle_return); } 867 868 static ByteSize active_handles_offset() { return byte_offset_of(JavaThread, _active_handles); } 869 870 // StackOverflow offsets 871 static ByteSize stack_overflow_limit_offset() { 872 return byte_offset_of(JavaThread, _stack_overflow_state._stack_overflow_limit); 873 } 874 static ByteSize stack_guard_state_offset() { 875 return byte_offset_of(JavaThread, _stack_overflow_state._stack_guard_state); 876 } 877 static ByteSize reserved_stack_activation_offset() { 878 return byte_offset_of(JavaThread, _stack_overflow_state._reserved_stack_activation); 879 } 880 static ByteSize shadow_zone_safe_limit() { 881 return byte_offset_of(JavaThread, _stack_overflow_state._shadow_zone_safe_limit); 882 } 883 static ByteSize shadow_zone_growth_watermark() { 884 return byte_offset_of(JavaThread, _stack_overflow_state._shadow_zone_growth_watermark); 885 } 886 887 static ByteSize suspend_flags_offset() { return byte_offset_of(JavaThread, _suspend_flags); } 888 889 static ByteSize do_not_unlock_if_synchronized_offset() { return byte_offset_of(JavaThread, _do_not_unlock_if_synchronized); } 890 static ByteSize should_post_on_exceptions_flag_offset() { 891 return byte_offset_of(JavaThread, _should_post_on_exceptions_flag); 892 } 893 static ByteSize doing_unsafe_access_offset() { return byte_offset_of(JavaThread, _doing_unsafe_access); } 894 NOT_PRODUCT(static ByteSize requires_cross_modify_fence_offset() { return byte_offset_of(JavaThread, _requires_cross_modify_fence); }) 895 896 static ByteSize monitor_owner_id_offset() { return byte_offset_of(JavaThread, _monitor_owner_id); } 897 898 static ByteSize cont_entry_offset() { return byte_offset_of(JavaThread, _cont_entry); } 899 static ByteSize cont_fastpath_offset() { return byte_offset_of(JavaThread, _cont_fastpath); } 900 static ByteSize held_monitor_count_offset() { return byte_offset_of(JavaThread, _held_monitor_count); } 901 static ByteSize jni_monitor_count_offset() { return byte_offset_of(JavaThread, _jni_monitor_count); } 902 static ByteSize preemption_cancelled_offset() { return byte_offset_of(JavaThread, _preemption_cancelled); } 903 static ByteSize preempt_alternate_return_offset() { return byte_offset_of(JavaThread, _preempt_alternate_return); } 904 static ByteSize unlocked_inflated_monitor_offset() { return byte_offset_of(JavaThread, _unlocked_inflated_monitor); } 905 906 #if INCLUDE_JVMTI 907 static ByteSize is_in_VTMS_transition_offset() { return byte_offset_of(JavaThread, _is_in_VTMS_transition); } 908 static ByteSize is_disable_suspend_offset() { return byte_offset_of(JavaThread, _is_disable_suspend); } 909 #endif 910 911 // Returns the jni environment for this thread 912 JNIEnv* jni_environment() { return &_jni_environment; } 913 914 // Returns the current thread as indicated by the given JNIEnv. 915 // We don't assert it is Thread::current here as that is done at the 916 // external JNI entry points where the JNIEnv is passed into the VM. 917 static JavaThread* thread_from_jni_environment(JNIEnv* env) { 918 JavaThread* current = reinterpret_cast<JavaThread*>(((intptr_t)env - in_bytes(jni_environment_offset()))); 919 // We can't normally get here in a thread that has completed its 920 // execution and so "is_terminated", except when the call is from 921 // AsyncGetCallTrace, which can be triggered by a signal at any point in 922 // a thread's lifecycle. A thread is also considered terminated if the VM 923 // has exited, so we have to check this and block in case this is a daemon 924 // thread returning to the VM (the JNI DirectBuffer entry points rely on 925 // this). 926 if (current->is_terminated()) { 927 current->block_if_vm_exited(); 928 } 929 return current; 930 } 931 932 // JNI critical regions. These can nest. 933 bool in_critical() { return _jni_active_critical > 0; } 934 bool in_last_critical() { return _jni_active_critical == 1; } 935 inline void enter_critical(); 936 void exit_critical() { 937 assert(Thread::current() == this, "this must be current thread"); 938 _jni_active_critical--; 939 assert(_jni_active_critical >= 0, "JNI critical nesting problem?"); 940 } 941 942 // Atomic version; invoked by a thread other than the owning thread. 943 bool in_critical_atomic() { return Atomic::load(&_jni_active_critical) > 0; } 944 945 // Checked JNI: is the programmer required to check for exceptions, if so specify 946 // which function name. Returning to a Java frame should implicitly clear the 947 // pending check, this is done for Native->Java transitions (i.e. user JNI code). 948 // VM->Java transitions are not cleared, it is expected that JNI code enclosed 949 // within ThreadToNativeFromVM makes proper exception checks (i.e. VM internal). 950 bool is_pending_jni_exception_check() const { return _pending_jni_exception_check_fn != nullptr; } 951 void clear_pending_jni_exception_check() { _pending_jni_exception_check_fn = nullptr; } 952 const char* get_pending_jni_exception_check() const { return _pending_jni_exception_check_fn; } 953 void set_pending_jni_exception_check(const char* fn_name) { _pending_jni_exception_check_fn = (char*) fn_name; } 954 955 // For deadlock detection 956 int depth_first_number() { return _depth_first_number; } 957 void set_depth_first_number(int dfn) { _depth_first_number = dfn; } 958 959 public: 960 bool in_deopt_handler() const { return _in_deopt_handler > 0; } 961 void inc_in_deopt_handler() { _in_deopt_handler++; } 962 void dec_in_deopt_handler() { 963 assert(_in_deopt_handler > 0, "mismatched deopt nesting"); 964 if (_in_deopt_handler > 0) { // robustness 965 _in_deopt_handler--; 966 } 967 } 968 969 private: 970 void set_entry_point(ThreadFunction entry_point) { _entry_point = entry_point; } 971 972 // factor out low-level mechanics for use in both normal and error cases 973 const char* get_thread_name_string(char* buf = nullptr, int buflen = 0) const; 974 975 public: 976 977 // Frame iteration; calls the function f for all frames on the stack 978 void frames_do(void f(frame*, const RegisterMap*)); 979 980 // Memory operations 981 void oops_do_frames(OopClosure* f, NMethodClosure* cf); 982 void oops_do_no_frames(OopClosure* f, NMethodClosure* cf); 983 984 // GC operations 985 virtual void nmethods_do(NMethodClosure* cf); 986 987 // RedefineClasses Support 988 void metadata_do(MetadataClosure* f); 989 990 // Debug method asserting thread states are correct during a handshake operation. 991 DEBUG_ONLY(void verify_states_for_handshake();) 992 993 // Misc. operations 994 const char* name() const; 995 const char* name_raw() const; 996 const char* type_name() const { return "JavaThread"; } 997 static const char* name_for(oop thread_obj); 998 999 void print_on(outputStream* st, bool print_extended_info) const; 1000 void print_on(outputStream* st) const { print_on(st, false); } 1001 void print() const; 1002 void print_thread_state_on(outputStream*) const; 1003 void print_on_error(outputStream* st, char* buf, int buflen) const; 1004 void print_name_on_error(outputStream* st, char* buf, int buflen) const; 1005 void verify(); 1006 1007 // Accessing frames 1008 frame last_frame() { 1009 _anchor.make_walkable(); 1010 return pd_last_frame(); 1011 } 1012 javaVFrame* last_java_vframe(RegisterMap* reg_map) { return last_java_vframe(last_frame(), reg_map); } 1013 1014 frame carrier_last_frame(RegisterMap* reg_map); 1015 javaVFrame* carrier_last_java_vframe(RegisterMap* reg_map) { return last_java_vframe(carrier_last_frame(reg_map), reg_map); } 1016 1017 frame vthread_last_frame(); 1018 javaVFrame* vthread_last_java_vframe(RegisterMap* reg_map) { return last_java_vframe(vthread_last_frame(), reg_map); } 1019 1020 frame platform_thread_last_frame(RegisterMap* reg_map); 1021 javaVFrame* platform_thread_last_java_vframe(RegisterMap* reg_map) { 1022 return last_java_vframe(platform_thread_last_frame(reg_map), reg_map); 1023 } 1024 1025 javaVFrame* last_java_vframe(const frame f, RegisterMap* reg_map); 1026 1027 // Returns method at 'depth' java or native frames down the stack 1028 // Used for security checks 1029 Klass* security_get_caller_class(int depth); 1030 1031 // Print stack trace in external format 1032 // These variants print carrier/platform thread information only. 1033 void print_stack_on(outputStream* st); 1034 void print_stack() { print_stack_on(tty); } 1035 // This prints the currently mounted virtual thread. 1036 void print_vthread_stack_on(outputStream* st); 1037 // This prints the active stack: either carrier/platform or virtual. 1038 void print_active_stack_on(outputStream* st); 1039 // Print current stack trace for checked JNI warnings and JNI fatal errors. 1040 // This is the external format from above, but selecting the platform 1041 // or vthread as applicable. 1042 void print_jni_stack(); 1043 1044 // Print stack traces in various internal formats 1045 void trace_stack() PRODUCT_RETURN; 1046 void trace_stack_from(vframe* start_vf) PRODUCT_RETURN; 1047 void trace_frames() PRODUCT_RETURN; 1048 1049 // Print an annotated view of the stack frames 1050 void print_frame_layout(int depth = 0, bool validate_only = false) NOT_DEBUG_RETURN; 1051 void validate_frame_layout() { 1052 print_frame_layout(0, true); 1053 } 1054 1055 // Function for testing deoptimization 1056 void deoptimize(); 1057 void make_zombies(); 1058 1059 void deoptimize_marked_methods(); 1060 1061 public: 1062 // Returns the running thread as a JavaThread 1063 static JavaThread* current() { 1064 return JavaThread::cast(Thread::current()); 1065 } 1066 1067 // Returns the current thread as a JavaThread, or nullptr if not attached 1068 static inline JavaThread* current_or_null(); 1069 1070 // Casts 1071 static JavaThread* cast(Thread* t) { 1072 assert(t->is_Java_thread(), "incorrect cast to JavaThread"); 1073 return static_cast<JavaThread*>(t); 1074 } 1075 1076 static const JavaThread* cast(const Thread* t) { 1077 assert(t->is_Java_thread(), "incorrect cast to const JavaThread"); 1078 return static_cast<const JavaThread*>(t); 1079 } 1080 1081 // Returns the active Java thread. Do not use this if you know you are calling 1082 // from a JavaThread, as it's slower than JavaThread::current. If called from 1083 // the VMThread, it also returns the JavaThread that instigated the VMThread's 1084 // operation. You may not want that either. 1085 static JavaThread* active(); 1086 1087 protected: 1088 virtual void pre_run(); 1089 virtual void run(); 1090 void thread_main_inner(); 1091 virtual void post_run(); 1092 1093 public: 1094 // Thread local information maintained by JVMTI. 1095 void set_jvmti_thread_state(JvmtiThreadState *value) { _jvmti_thread_state = value; } 1096 // A JvmtiThreadState is lazily allocated. This jvmti_thread_state() 1097 // getter is used to get this JavaThread's JvmtiThreadState if it has 1098 // one which means null can be returned. JvmtiThreadState::state_for() 1099 // is used to get the specified JavaThread's JvmtiThreadState if it has 1100 // one or it allocates a new JvmtiThreadState for the JavaThread and 1101 // returns it. JvmtiThreadState::state_for() will return null only if 1102 // the specified JavaThread is exiting. 1103 JvmtiThreadState *jvmti_thread_state() const { return _jvmti_thread_state; } 1104 static ByteSize jvmti_thread_state_offset() { return byte_offset_of(JavaThread, _jvmti_thread_state); } 1105 1106 #if INCLUDE_JVMTI 1107 // Rebind JVMTI thread state from carrier to virtual or from virtual to carrier. 1108 JvmtiThreadState *rebind_to_jvmti_thread_state_of(oop thread_oop); 1109 #endif 1110 1111 // JVMTI PopFrame support 1112 // Setting and clearing popframe_condition 1113 // All of these enumerated values are bits. popframe_pending 1114 // indicates that a PopFrame() has been requested and not yet been 1115 // completed. popframe_processing indicates that that PopFrame() is in 1116 // the process of being completed. popframe_force_deopt_reexecution_bit 1117 // indicates that special handling is required when returning to a 1118 // deoptimized caller. 1119 enum PopCondition { 1120 popframe_inactive = 0x00, 1121 popframe_pending_bit = 0x01, 1122 popframe_processing_bit = 0x02, 1123 popframe_force_deopt_reexecution_bit = 0x04 1124 }; 1125 PopCondition popframe_condition() { return (PopCondition) _popframe_condition; } 1126 void set_popframe_condition(PopCondition c) { _popframe_condition = c; } 1127 void set_popframe_condition_bit(PopCondition c) { _popframe_condition |= c; } 1128 void clear_popframe_condition() { _popframe_condition = popframe_inactive; } 1129 static ByteSize popframe_condition_offset() { return byte_offset_of(JavaThread, _popframe_condition); } 1130 bool has_pending_popframe() { return (popframe_condition() & popframe_pending_bit) != 0; } 1131 bool popframe_forcing_deopt_reexecution() { return (popframe_condition() & popframe_force_deopt_reexecution_bit) != 0; } 1132 1133 bool pop_frame_in_process(void) { return ((_popframe_condition & popframe_processing_bit) != 0); } 1134 void set_pop_frame_in_process(void) { _popframe_condition |= popframe_processing_bit; } 1135 void clr_pop_frame_in_process(void) { _popframe_condition &= ~popframe_processing_bit; } 1136 1137 int frames_to_pop_failed_realloc() const { return _frames_to_pop_failed_realloc; } 1138 void set_frames_to_pop_failed_realloc(int nb) { _frames_to_pop_failed_realloc = nb; } 1139 void dec_frames_to_pop_failed_realloc() { _frames_to_pop_failed_realloc--; } 1140 1141 private: 1142 // Saved incoming arguments to popped frame. 1143 // Used only when popped interpreted frame returns to deoptimized frame. 1144 void* _popframe_preserved_args; 1145 int _popframe_preserved_args_size; 1146 1147 public: 1148 void popframe_preserve_args(ByteSize size_in_bytes, void* start); 1149 void* popframe_preserved_args(); 1150 ByteSize popframe_preserved_args_size(); 1151 WordSize popframe_preserved_args_size_in_words(); 1152 void popframe_free_preserved_args(); 1153 1154 1155 private: 1156 JvmtiThreadState *_jvmti_thread_state; 1157 1158 // Used by the interpreter in fullspeed mode for frame pop, method 1159 // entry, method exit and single stepping support. This field is 1160 // only set to non-zero at a safepoint or using a direct handshake 1161 // (see EnterInterpOnlyModeClosure). 1162 // It can be set to zero asynchronously to this threads execution (i.e., without 1163 // safepoint/handshake or a lock) so we have to be very careful. 1164 // Accesses by other threads are synchronized using JvmtiThreadState_lock though. 1165 int _interp_only_mode; 1166 1167 public: 1168 // used by the interpreter for fullspeed debugging support (see above) 1169 static ByteSize interp_only_mode_offset() { return byte_offset_of(JavaThread, _interp_only_mode); } 1170 bool is_interp_only_mode() { return (_interp_only_mode != 0); } 1171 int get_interp_only_mode() { return _interp_only_mode; } 1172 int set_interp_only_mode(int val) { return _interp_only_mode = val; } 1173 void increment_interp_only_mode() { ++_interp_only_mode; } 1174 void decrement_interp_only_mode() { --_interp_only_mode; } 1175 1176 // support for cached flag that indicates whether exceptions need to be posted for this thread 1177 // if this is false, we can avoid deoptimizing when events are thrown 1178 // this gets set to reflect whether jvmtiExport::post_exception_throw would actually do anything 1179 private: 1180 int _should_post_on_exceptions_flag; 1181 1182 public: 1183 void set_should_post_on_exceptions_flag(int val) { _should_post_on_exceptions_flag = val; } 1184 1185 private: 1186 ThreadStatistics *_thread_stat; 1187 1188 public: 1189 ThreadStatistics* get_thread_stat() const { return _thread_stat; } 1190 1191 // Return a blocker object for which this thread is blocked parking. 1192 oop current_park_blocker(); 1193 1194 private: 1195 static size_t _stack_size_at_create; 1196 1197 public: 1198 static inline size_t stack_size_at_create(void) { 1199 return _stack_size_at_create; 1200 } 1201 static inline void set_stack_size_at_create(size_t value) { 1202 _stack_size_at_create = value; 1203 } 1204 1205 // Machine dependent stuff 1206 #include OS_CPU_HEADER(javaThread) 1207 1208 // JSR166 per-thread parker 1209 private: 1210 Parker _parker; 1211 public: 1212 Parker* parker() { return &_parker; } 1213 1214 public: 1215 // clearing/querying jni attach status 1216 bool is_attaching_via_jni() const { return _jni_attach_state == _attaching_via_jni; } 1217 bool has_attached_via_jni() const { return is_attaching_via_jni() || _jni_attach_state == _attached_via_jni; } 1218 inline void set_done_attaching_via_jni(); 1219 1220 // Stack dump assistance: 1221 // Track the class we want to initialize but for which we have to wait 1222 // on its init_lock() because it is already being initialized. 1223 void set_class_to_be_initialized(InstanceKlass* k); 1224 InstanceKlass* class_to_be_initialized() const; 1225 1226 // Track executing class initializer, see ThreadInClassInitializer 1227 void set_class_being_initialized(InstanceKlass* k); 1228 InstanceKlass* class_being_initialized() const; 1229 1230 private: 1231 InstanceKlass* _class_to_be_initialized; 1232 InstanceKlass* _class_being_initialized; 1233 1234 // java.lang.Thread.sleep support 1235 ParkEvent * _SleepEvent; 1236 1237 #if INCLUDE_JFR 1238 // Support for jdk.VirtualThreadPinned event 1239 freeze_result _last_freeze_fail_result; 1240 Ticks _last_freeze_fail_time; 1241 #endif 1242 1243 public: 1244 bool sleep(jlong millis); 1245 bool sleep_nanos(jlong nanos); 1246 1247 // java.lang.Thread interruption support 1248 void interrupt(); 1249 bool is_interrupted(bool clear_interrupted); 1250 1251 #if INCLUDE_JFR 1252 // Support for jdk.VirtualThreadPinned event 1253 freeze_result last_freeze_fail_result() { return _last_freeze_fail_result; } 1254 Ticks& last_freeze_fail_time() { return _last_freeze_fail_time; } 1255 void set_last_freeze_fail_result(freeze_result result); 1256 #endif 1257 void post_vthread_pinned_event(EventVirtualThreadPinned* event, const char* op, freeze_result result) NOT_JFR_RETURN(); 1258 1259 1260 // This is only for use by JVMTI RawMonitorWait. It emulates the actions of 1261 // the Java code in Object::wait which are not present in RawMonitorWait. 1262 bool get_and_clear_interrupted(); 1263 1264 private: 1265 LockStack _lock_stack; 1266 OMCache _om_cache; 1267 1268 public: 1269 LockStack& lock_stack() { return _lock_stack; } 1270 1271 static ByteSize lock_stack_offset() { return byte_offset_of(JavaThread, _lock_stack); } 1272 // Those offsets are used in code generators to access the LockStack that is embedded in this 1273 // JavaThread structure. Those accesses are relative to the current thread, which 1274 // is typically in a dedicated register. 1275 static ByteSize lock_stack_top_offset() { return lock_stack_offset() + LockStack::top_offset(); } 1276 static ByteSize lock_stack_base_offset() { return lock_stack_offset() + LockStack::base_offset(); } 1277 1278 static ByteSize om_cache_offset() { return byte_offset_of(JavaThread, _om_cache); } 1279 static ByteSize om_cache_oops_offset() { return om_cache_offset() + OMCache::entries_offset(); } 1280 1281 void om_set_monitor_cache(ObjectMonitor* monitor); 1282 void om_clear_monitor_cache(); 1283 ObjectMonitor* om_get_from_monitor_cache(oop obj); 1284 1285 static OopStorage* thread_oop_storage(); 1286 1287 static void verify_cross_modify_fence_failure(JavaThread *thread) PRODUCT_RETURN; 1288 1289 // Helper function to create the java.lang.Thread object for a 1290 // VM-internal thread. The thread will have the given name and be 1291 // part of the System ThreadGroup. 1292 static Handle create_system_thread_object(const char* name, TRAPS); 1293 1294 // Helper function to start a VM-internal daemon thread. 1295 // E.g. ServiceThread, NotificationThread, CompilerThread etc. 1296 static void start_internal_daemon(JavaThread* current, JavaThread* target, 1297 Handle thread_oop, ThreadPriority prio); 1298 1299 // Helper function to do vm_exit_on_initialization for osthread 1300 // resource allocation failure. 1301 static void vm_exit_on_osthread_failure(JavaThread* thread); 1302 1303 // Deferred OopHandle release support 1304 private: 1305 // List of OopHandles to be released - guarded by the Service_lock. 1306 static OopHandleList* _oop_handle_list; 1307 // Add our OopHandles to the list for the service thread to release. 1308 void add_oop_handles_for_release(); 1309 // Called by the ServiceThread to release the OopHandles. 1310 static void release_oop_handles(); 1311 // Called by the ServiceThread to poll if there are any OopHandles to release. 1312 // Called when holding the Service_lock. 1313 static bool has_oop_handles_to_release() { 1314 return _oop_handle_list != nullptr; 1315 } 1316 }; 1317 1318 inline JavaThread* JavaThread::current_or_null() { 1319 Thread* current = Thread::current_or_null(); 1320 return current != nullptr ? JavaThread::cast(current) : nullptr; 1321 } 1322 1323 class UnlockFlagSaver { 1324 private: 1325 JavaThread* _thread; 1326 bool _do_not_unlock; 1327 public: 1328 UnlockFlagSaver(JavaThread* t) { 1329 _thread = t; 1330 _do_not_unlock = t->do_not_unlock_if_synchronized(); 1331 t->set_do_not_unlock_if_synchronized(false); 1332 } 1333 ~UnlockFlagSaver() { 1334 _thread->set_do_not_unlock_if_synchronized(_do_not_unlock); 1335 } 1336 }; 1337 1338 class JNIHandleMark : public StackObj { 1339 JavaThread* _thread; 1340 public: 1341 JNIHandleMark(JavaThread* thread) : _thread(thread) { 1342 thread->push_jni_handle_block(); 1343 } 1344 ~JNIHandleMark() { _thread->pop_jni_handle_block(); } 1345 }; 1346 1347 class NoPreemptMark { 1348 ContinuationEntry* _ce; 1349 bool _unpin; 1350 public: 1351 NoPreemptMark(JavaThread* thread) : _ce(thread->last_continuation()), _unpin(false) { 1352 if (_ce != nullptr) _unpin = _ce->pin(); 1353 } 1354 ~NoPreemptMark() { if (_unpin) _ce->unpin(); } 1355 }; 1356 1357 class ThreadOnMonitorWaitedEvent { 1358 JavaThread* _thread; 1359 public: 1360 ThreadOnMonitorWaitedEvent(JavaThread* thread) : _thread(thread) { 1361 JVMTI_ONLY(_thread->set_on_monitor_waited_event(true);) 1362 } 1363 ~ThreadOnMonitorWaitedEvent() { JVMTI_ONLY(_thread->set_on_monitor_waited_event(false);) } 1364 }; 1365 1366 class ThreadInClassInitializer : public StackObj { 1367 JavaThread* _thread; 1368 InstanceKlass* _previous; 1369 public: 1370 ThreadInClassInitializer(JavaThread* thread, InstanceKlass* ik) : _thread(thread) { 1371 _previous = _thread->class_being_initialized(); 1372 _thread->set_class_being_initialized(ik); 1373 } 1374 ~ThreadInClassInitializer() { 1375 _thread->set_class_being_initialized(_previous); 1376 } 1377 }; 1378 1379 #endif // SHARE_RUNTIME_JAVATHREAD_HPP