Searched refs:_invocations (Results 1 - 6 of 6) sorted by relevance

/openjdk7/hotspot/src/share/vm/gc_implementation/shared/
H A DcollectorCounters.hpp37 PerfCounter* _invocations; member in class:CollectorCounters
56 inline PerfCounter* invocation_counter() const { return _invocations; }
H A DcollectorCounters.cpp44 _invocations = PerfDataManager::create_counter(SUN_GC, cname,
/openjdk7/hotspot/src/share/vm/runtime/
H A Drframe.cpp41 _invocations = 0;
145 _invocations = _method->compiled_invocation_count();
150 _invocations = _method->invocation_count() + _method->backedge_count();
162 tty->print_cr(": inv=%5d(%d) cst=%4d", _invocations, cnt, cost());
H A Drframe.hpp42 int _invocations; // current invocation estimate (for this frame) member in class:RFrame
58 int invocations() const { return _invocations; }
H A Dsweeper.cpp113 _records[_sweep_index].invocation = _invocations;
136 volatile int NMethodSweeper::_invocations = 0; // No. of invocations left until we are completed with this pass member in class:NMethodSweeper
192 _invocations = NmethodSweepFraction;
237 if (_invocations > 0) {
250 if (_invocations > 0) {
252 _invocations--;
267 tty->print_cr("### Sweep at %d out of %d. Invocations left: %d", _seen, CodeCache::nof_nmethods(), _invocations);
275 int todo = (CodeCache::nof_nmethods() - _seen) / _invocations;
284 for (int i = 0; (i < todo || _invocations == 1) && _current != NULL; i++) {
287 tty->print_cr("### Sweep at %d out of %d, invocation: %d, yielding to safepoint", _seen, CodeCache::nof_nmethods(), _invocations);
[all...]
H A Dsweeper.hpp41 static volatile int _invocations; // No. of invocations left until we are completed with this pass member in class:NMethodSweeper

Completed in 223 milliseconds