- Consolidate ThreadBlockInVM and ThreadBlockInVMWithDeadlockCheck
- Consolidate ThreadInVMfromJava and ThreadInVMfromJavaNoAsyncException
- With little effort maybe we can also get rid of the transitional states (_thread_in_vm_trans, _thread_blocked_trans, etc) since we either are already in a safepoint unsafe state before checking for safepoints/handshakes or we can transition first to the desired safepoint unsafe state and then check for safepoint/handshakes.
- Make clear which operations we need to check for when transitioning from one state to another(safepoint/handshake, suspend, async exceptions etc) and adjust wrappers if needed.
- We call make_walkable() before transitioning to a safe state, but stack should always be walkable if we are in the vm and there is a last Java frame (_last_Java_sp != NULL). It seems the only issue could come from the compiler, since it can set _last_Java_sp but not _last_Java_pc, expecting it will be retrieved later from _last_Java_sp if we do need to walk the stack. For x86 and aarch64, _last_Java_pc is retrieved by doing _last_Java_pc = _last_Java_sp[-1]).
- relates to
-
JDK-8238861 Remove suspend_flag
-
- Open
-
-
JDK-8265934 Cleanup _suspend_flags and _special_runtime_exit_condition
-
- Resolved
-
-
JDK-8275950 Use only _thread_in_vm in ~ThreadBlockInVMPreprocess()
-
- Resolved
-
-
JDK-8263191 Consolidate ThreadInVMfromJavaNoAsyncException and ThreadBlockInVMWithDeadlockCheck with existing wrappers
-
- Resolved
-
-
JDK-8265327 Remove check_safepoint_and_suspend_for_native_trans()
-
- Resolved
-
-
JDK-8271293 Monitor class should use ThreadBlockInVMPreprocess
-
- Resolved
-
-
JDK-8272526 Cleanup ThreadStateTransition class
-
- Resolved
-
-
JDK-8273143 Transition to _thread_in_vm when handling a polling page exception
-
- Resolved
-