--- old/src/share/vm/interpreter/abstractInterpreter.hpp 2016-01-05 15:04:52.744168511 -0500 +++ new/src/share/vm/interpreter/abstractInterpreter.hpp 2016-01-05 15:04:52.635744433 -0500 @@ -284,6 +284,8 @@ default: ShouldNotReachHere(); } } + + static void initialize_method_handle_entries(); }; //------------------------------------------------------------------------------------------------------------------------ @@ -294,16 +296,6 @@ protected: InterpreterMacroAssembler* _masm; - // shared code sequences - // Converter for native abi result to tosca result - address generate_result_handler_for(BasicType type); - address generate_slow_signature_handler(); - - void bang_stack_shadow_pages(bool native_call); - - void generate_all(); - void initialize_method_handle_entries(); - public: AbstractInterpreterGenerator(StubQueue* _code); };