Issue | Fix Version | Assignee | Priority | Status | Resolution | Resolved In Build |
---|---|---|---|---|---|---|
JDK-8135683 | emb-9 | Karen Kinnear | P2 | Resolved | Fixed | team |
JDK-8183659 | 8u161 | David Buck | P2 | Resolved | Fixed | b01 |
JDK-8173816 | 8u152 | David Buck | P2 | Closed | Fixed | b01 |
JDK-8192221 | emb-8u161 | David Buck | P2 | Resolved | Fixed | b01 |
In product mode only, InvokeInterfaceICCE.java crashs in klassItable. This is related to, but not caused by 8067480. Additional improvements like those are needed.
Test case:
interface I1 has abstract m
interface I0 extends I1 private m{}
class C2 implements I0 private m{}
Caller: I0: invokeinterace I0.m C2 objectref
expect: resolution finds I0.m private, throws IncompatibleClassChangeError since you need
to call invokespecial to invoke a private method in an interface.
Fastdebug you get the correct behavior.
In product, we get a SEGV.
Test case:
interface I1 has abstract m
interface I0 extends I1 private m{}
class C2 implements I0 private m{}
Caller: I0: invokeinterace I0.m C2 objectref
expect: resolution finds I0.m private, throws IncompatibleClassChangeError since you need
to call invokespecial to invoke a private method in an interface.
Fastdebug you get the correct behavior.
In product, we get a SEGV.
- backported by
-
JDK-8135683 Crash in klassItable::initialize_itable_for_interface when running SelectionResolution InvokeInterfaceICCE.java
-
- Resolved
-
-
JDK-8183659 Crash in klassItable::initialize_itable_for_interface when running SelectionResolution InvokeInterfaceICCE.java
-
- Resolved
-
-
JDK-8192221 Crash in klassItable::initialize_itable_for_interface when running SelectionResolution InvokeInterfaceICCE.java
-
- Resolved
-
-
JDK-8173816 Crash in klassItable::initialize_itable_for_interface when running SelectionResolution InvokeInterfaceICCE.java
-
- Closed
-