Searched refs:_nof_static_calls (Results 1 - 2 of 2) sorted by relevance

/openjdk7/hotspot/src/share/vm/runtime/
H A DsharedRuntime.hpp533 static int _nof_static_calls; // total # of calls to static methods or super methods (invokespecial) member in class:SharedRuntime
547 static address nof_static_calls_addr() { return (address)&_nof_static_calls; }
H A DsharedRuntime.cpp151 int SharedRuntime::_nof_static_calls = 0; member in class:SharedRuntime
2006 int total = _nof_normal_calls + _nof_interface_calls + _nof_static_calls;
2020 tty->print_cr("\t%9d (%4.1f%%) static/special calls", _nof_static_calls, percent(_nof_static_calls, total));
2021 tty->print_cr("\t %9d (%3.0f%%) inlined ", _nof_inlined_static_calls, percent(_nof_inlined_static_calls, _nof_static_calls));

Completed in 263 milliseconds