Issue | Fix Version | Assignee | Priority | Status | Resolution | Resolved In Build |
---|---|---|---|---|---|---|
JDK-8203512 | 11.0.1 | Vladimir Kozlov | P4 | Resolved | Fixed | team |
There's an unhandled oop here:
void JavaThread::collect_counters(typeArrayOop array) {
if (JVMCICounterSize > 0) {
MutexLocker tl(Threads_lock); // Can safepoint here and case array to become stale
JavaThreadIteratorWithHandle jtiwh;
for (int i = 0; i < array->length(); i++) {
Found with fastdebug and -XX:+CheckUnhandledOops
void JavaThread::collect_counters(typeArrayOop array) {
if (JVMCICounterSize > 0) {
MutexLocker tl(Threads_lock); // Can safepoint here and case array to become stale
JavaThreadIteratorWithHandle jtiwh;
for (int i = 0; i < array->length(); i++) {
Found with fastdebug and -XX:+CheckUnhandledOops
- backported by
-
JDK-8203512 Unhandled oop in JavaThread::collect_counters
-
- Resolved
-