Searched defs:_nof_normal_calls (Results 1 - 2 of 2) sorted by relevance

/openjdk7/hotspot/src/share/vm/runtime/
H A DsharedRuntime.hpp530 static int _nof_normal_calls; // total # of calls member in class:SharedRuntime
544 static address nof_normal_calls_addr() { return (address)&_nof_normal_calls; }
H A DsharedRuntime.cpp147 int SharedRuntime::_nof_normal_calls = 0; member in class:SharedRuntime
2006 int total = _nof_normal_calls + _nof_interface_calls + _nof_static_calls;
2007 int mono_c = _nof_normal_calls - _nof_optimized_calls - _nof_megamorphic_calls;
2010 tty->print_cr("\t%9d (%4.1f%%) virtual calls ", _nof_normal_calls, percent(_nof_normal_calls, total));
2011 tty->print_cr("\t %9d (%3.0f%%) inlined ", _nof_inlined_calls, percent(_nof_inlined_calls, _nof_normal_calls));
2012 tty->print_cr("\t %9d (%3.0f%%) optimized ", _nof_optimized_calls, percent(_nof_optimized_calls, _nof_normal_calls));
2013 tty->print_cr("\t %9d (%3.0f%%) monomorphic ", mono_c, percent(mono_c, _nof_normal_calls));
2014 tty->print_cr("\t %9d (%3.0f%%) megamorphic ", _nof_megamorphic_calls, percent(_nof_megamorphic_calls, _nof_normal_calls));

Completed in 60 milliseconds