Exemple #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);
   }
 }
Exemple #2
0
 void set_prev_event_count(int count) {
   MethodCounters* mcs = method_counters();
   if (mcs != NULL) {
     mcs->set_interpreter_invocation_count(count);
   }
 }