--- old/src/share/vm/interpreter/abstractInterpreter.hpp 2016-01-04 13:47:08.077866655 -0500 +++ new/src/share/vm/interpreter/abstractInterpreter.hpp 2016-01-04 13:47:07.997866652 -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); };