Issue | Fix Version | Assignee | Priority | Status | Resolution | Resolved In Build |
---|---|---|---|---|---|---|
JDK-2136637 | 5.0u8 | Tom Rodriguez | P3 | Resolved | Fixed | b01 |
This cutout in the inlining code is keeping us from taking advantage of the type profile information in cases where we could.
if (receiver_method->holder() != ik) {
receiver_method = NULL;
}
It should be removed.
if (receiver_method->holder() != ik) {
receiver_method = NULL;
}
It should be removed.
- backported by
-
JDK-2136637 type profiled inlining should allow method holders to be a superclass
-
- Resolved
-
- relates to
-
JDK-6398964 missing is_abstract test in resolve_invoke
-
- Resolved
-