--- old/src/hotspot/share/classfile/systemDictionary.hpp 2019-11-11 13:07:52.930711218 -0500 +++ new/src/hotspot/share/classfile/systemDictionary.hpp 2019-11-11 13:07:52.638703566 -0500 @@ -464,17 +464,17 @@ // JSR 292 // find a java.lang.invoke.MethodHandle.invoke* method for a given signature // (asks Java to compute it if necessary, except in a compiler thread) - static methodHandle find_method_handle_invoker(Klass* klass, - Symbol* name, - Symbol* signature, - Klass* accessing_klass, - Handle *appendix_result, - TRAPS); + static Method* find_method_handle_invoker(Klass* klass, + Symbol* name, + Symbol* signature, + Klass* accessing_klass, + Handle *appendix_result, + TRAPS); // for a given signature, find the internal MethodHandle method (linkTo* or invokeBasic) // (does not ask Java, since this is a low-level intrinsic defined by the JVM) - static methodHandle find_method_handle_intrinsic(vmIntrinsics::ID iid, - Symbol* signature, - TRAPS); + static Method* find_method_handle_intrinsic(vmIntrinsics::ID iid, + Symbol* signature, + TRAPS); // compute java_mirror (java.lang.Class instance) for a type ("I", "[[B", "LFoo;", etc.) // Either the accessing_klass or the CL/PD can be non-null, but not both.