src/share/vm/interpreter/templateTable.hpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File hotspot Cdiff src/share/vm/interpreter/templateTable.hpp

src/share/vm/interpreter/templateTable.hpp

Print this page

        

*** 330,339 **** --- 330,344 ---- // jvmti support static void jvmti_post_field_access(Register cache, Register index, bool is_static, bool has_tos); static void jvmti_post_field_mod(Register cache, Register index, bool is_static); static void jvmti_post_fast_field_mod(); + #ifdef ASSERT + static void verify_stable(Register cache, Register index, bool is_static, bool has_tos); + static void verify_stable_fast(); + #endif // ASSERT + // debugging of TemplateGenerator static void transition(TosState tos_in, TosState tos_out);// checks if in/out states expected by template generator correspond to table entries // initialization helpers static void def(Bytecodes::Code code, int flags, TosState in, TosState out, void (*gen)( ), char filler );
src/share/vm/interpreter/templateTable.hpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File