8004336: Better handling of method handle intrinsic frames

Reviewed-by: kvn, jrose, ahgross
This commit is contained in:
Christian Thalinger 2013-02-26 16:16:54 -08:00
parent 65547b27ff
commit e95e6b9070

View File

@ -4005,8 +4005,9 @@ bool LibraryCallKit::is_method_invoke_or_aux_frame(JVMState* jvms) {
}
}
}
else if (method->is_method_handle_intrinsic() ||
method->is_compiled_lambda_form()) {
if (method->is_method_handle_intrinsic() ||
method->is_compiled_lambda_form()) {
// This is an internal adapter frame from the MethodHandleCompiler -- skip it
return true;
}