--- old/src/share/vm/interpreter/interpreterRuntime.hpp 2017-06-26 12:31:26.218174787 -0400 +++ new/src/share/vm/interpreter/interpreterRuntime.hpp 2017-06-26 12:31:25.602171733 -0400 @@ -91,6 +91,15 @@ static int vwithfield (JavaThread* thread, ConstantPoolCache* cp_cache); static void qgetfield (JavaThread* thread, oopDesc* value, int offset); static void qputfield (JavaThread* thread, oopDesc* obj, oopDesc* value, int offset); + static void qputstatic (JavaThread* thread, oopDesc* value); + static void initialize_static_value_field(JavaThread*, oopDesc* mirror, int offset); + + // Value Buffers support + static void recycle_vtbuffer(JavaThread* thread); + static void recycle_buffered_values(JavaThread* thread); + static void return_value(JavaThread* thread, oopDesc* obj); + static void check_areturn(JavaThread* thread, oopDesc* obj); + static void fix_frame_vt_alloc_ptr(JavaThread* thread); // vaload/vastore static void value_array_load(JavaThread* thread, arrayOopDesc* array, int index);