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