-
Notifications
You must be signed in to change notification settings - Fork 720
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Re-fetch objects after VM access is released and reacquired #18420
Conversation
Stale objects can manifest many issues. In this case, stale objects cause complex and intermittent synchronization issues. Related: eclipse-openj9#17865 Related: eclipse-openj9#17869 Related: eclipse-openj9#18370 Signed-off-by: Babneet Singh <sbabneet@ca.ibm.com>
I looked at |
jenkins test sanity zlinux jdk21 |
Yes, VM is always entered prior to invoking acquireVThreadInspector. I will update it to release and acquire VM access in a new PR. |
VM is entered by the invocation of internalEnterVMFromJNI. VM is exited by the invocation of internalExitVMToJNI VM is always entered before acquireVThreadInspector and enterVThreadTransitionCritical are invoked. In these functions, the goal can be achieved by just releasing and re-acquiring VM access. The new changes just release and re-acquire VM access instead of exiting and entering the VM. This has less overhead. Addresses: eclipse-openj9#18420 (comment) Signed-off-by: Babneet Singh <sbabneet@ca.ibm.com>
VM is entered by the invocation of internalEnterVMFromJNI. VM is exited by the invocation of internalExitVMToJNI. VM is always entered before acquireVThreadInspector and enterVThreadTransitionCritical are invoked. In these functions, the goal can be achieved by just releasing and re-acquiring VM access. The new changes just release and re-acquire VM access instead of exiting and entering the VM. This has less overhead. Addresses: eclipse-openj9#18420 (comment) Signed-off-by: Babneet Singh <sbabneet@ca.ibm.com>
Stale objects can manifest many issues. In this case, stale objects
cause complex and intermittent synchronization issues.
Related: #17865
Related: #17869
Related: #18370