src/share/vm/interpreter/templateInterpreter.hpp
Index Unified diffs Context diffs Sdiffs Wdiffs Patch New Old Previous File Next File 6833129 Cdiff src/share/vm/interpreter/templateInterpreter.hpp

src/share/vm/interpreter/templateInterpreter.hpp

Print this page

        

*** 169,183 **** // Safepoint support static void notice_safepoints(); // stops the thread when reaching a safepoint static void ignore_safepoints(); // ignores safepoints // Deoptimization support ! static address continuation_for(methodOop method, address bcp, int callee_parameters, ! bool is_top_frame, ! bool& use_next_mdp); #include "incls/_templateInterpreter_pd.hpp.incl" }; --- 169,187 ---- // Safepoint support static void notice_safepoints(); // stops the thread when reaching a safepoint static void ignore_safepoints(); // ignores safepoints // Deoptimization support ! // Compute the entry address for continuation after ! static address deopt_continue_after_entry(methodOop method, address bcp, int callee_parameters, ! bool is_top_frame); ! // Deoptimization should reexecute this bytecode ! static bool bytecode_should_reexecute(Bytecodes::Code code); ! // Compute the address for reexecution ! static address deopt_reexecute_entry(methodOop method, address bcp); #include "incls/_templateInterpreter_pd.hpp.incl" };
src/share/vm/interpreter/templateInterpreter.hpp
Index Unified diffs Context diffs Sdiffs Wdiffs Patch New Old Previous File Next File