示例#1
0
 void set_prev_event_count(int count, TRAPS)    {
   MethodCounters* mcs = get_method_counters(CHECK);
   if (mcs != NULL) {
     mcs->set_interpreter_invocation_count(count);
   }
 }
示例#2
0
文件: method.hpp 项目: txazo/hotspot
 void set_prev_event_count(int count) {
   MethodCounters* mcs = method_counters();
   if (mcs != NULL) {
     mcs->set_interpreter_invocation_count(count);
   }
 }