void set_prev_event_count(int count, TRAPS) { MethodCounters* mcs = get_method_counters(CHECK); if (mcs != NULL) { mcs->set_interpreter_invocation_count(count); } }
void set_prev_event_count(int count) { MethodCounters* mcs = method_counters(); if (mcs != NULL) { mcs->set_interpreter_invocation_count(count); } }