Searched refs:_counters (Results 1 - 20 of 20) sorted by relevance

/openjdk7/hotspot/src/share/vm/gc_implementation/parallelScavenge/
H A DpsMarkSweep.hpp41 static CollectorCounters* _counters; member in class:PSMarkSweep
88 static CollectorCounters* counters() { return _counters; }
H A DpsScavenge.hpp81 static CollectorCounters* _counters; // collector performance counters member in class:PSScavenge
101 static CollectorCounters* counters() { return _counters; }
H A DpsMarkSweep.cpp61 CollectorCounters* PSMarkSweep::_counters = NULL; member in class:PSMarkSweep
66 _counters = new CollectorCounters("PSMarkSweep", 1);
H A DpsScavenge.cpp73 CollectorCounters* PSScavenge::_counters = NULL; member in class:PSScavenge
860 _counters = new CollectorCounters("PSScavenge", 0);
H A DpsParallelCompact.hpp995 static CollectorCounters* _counters;
1221 static CollectorCounters* counters() { return _counters; }
H A DpsParallelCompact.cpp840 CollectorCounters* PSParallelCompact::_counters = NULL; member in class:PSParallelCompact
877 _counters = new CollectorCounters("PSParallelCompact", 1);
/openjdk7/hotspot/src/share/vm/interpreter/
H A DbytecodeHistogram.hpp59 NOT_PRODUCT(static int _counters[Bytecodes::number_of_codes];) // a counter for each bytecode
86 NOT_PRODUCT(static int _index;) // new bytecode is shifted in - used to index into _counters
87 NOT_PRODUCT(static int _counters[number_of_pairs];) // a counter for each pair
H A DbytecodeHistogram.cpp109 int BytecodeHistogram::_counters[Bytecodes::number_of_codes]; member in class:BytecodeHistogram
114 while (i-- > 0) _counters[i] = 0;
120 GrowableArray<HistoEntry*>* profile = sorted_array(_counters, Bytecodes::number_of_codes);
149 int BytecodePairHistogram::_counters[BytecodePairHistogram::number_of_pairs]; member in class:BytecodePairHistogram
156 while (i-- > 0) _counters[i] = 0;
162 GrowableArray<HistoEntry*>* profile = sorted_array(_counters, number_of_pairs);
H A DbytecodeInterpreter.cpp161 BytecodeHistogram::_counters[(Bytecodes::Code)opcode]++; \
/openjdk7/hotspot/src/share/vm/runtime/
H A DbiasedLocking.hpp150 static BiasedLockingCounters _counters; member in class:BiasedLocking
185 static void print_counters() { _counters.print(); }
186 static BiasedLockingCounters* counters() { return &_counters; }
H A DbiasedLocking.cpp36 BiasedLockingCounters BiasedLocking::_counters; member in class:BiasedLocking
743 int* BiasedLocking::total_entry_count_addr() { return _counters.total_entry_count_addr(); }
744 int* BiasedLocking::biased_lock_entry_count_addr() { return _counters.biased_lock_entry_count_addr(); }
745 int* BiasedLocking::anonymously_biased_lock_entry_count_addr() { return _counters.anonymously_biased_lock_entry_count_addr(); }
746 int* BiasedLocking::rebiased_lock_entry_count_addr() { return _counters.rebiased_lock_entry_count_addr(); }
747 int* BiasedLocking::revoked_lock_entry_count_addr() { return _counters.revoked_lock_entry_count_addr(); }
748 int* BiasedLocking::fast_path_entry_count_addr() { return _counters.fast_path_entry_count_addr(); }
749 int* BiasedLocking::slow_path_entry_count_addr() { return _counters.slow_path_entry_count_addr(); }
H A Dthread.hpp1776 CompilerCounters* _counters; member in class:CompilerThread
1797 CompilerCounters* counters() { return _counters; }
H A Dthread.cpp3191 _counters = counters;
/openjdk7/hotspot/src/share/vm/opto/
H A Dlocknode.hpp92 BiasedLockingCounters* _counters; member in class:FastLockNode
98 _counters = NULL;
113 BiasedLockingCounters* counters() const { return _counters; }
H A Druntime.hpp96 BiasedLockingCounters _counters; member in class:BiasedLockingNamedCounter
100 NamedCounter(n, BiasedLockingCounter), _counters() {}
102 BiasedLockingCounters* counters() { return &_counters; }
H A Dlocknode.cpp159 _counters = blnc->counters();
H A Dmachnode.hpp623 BiasedLockingCounters* _counters; member in class:MachFastLockNode
/openjdk7/hotspot/src/cpu/sparc/vm/
H A DtemplateInterpreter_sparc.cpp2019 __ inc_counter(&BytecodeHistogram::_counters[t->bytecode()], G3_scratch, G4_scratch);
2025 AddressLiteral counters((address) &BytecodePairHistogram::_counters);
2038 // _counters[_index] ++;
/openjdk7/hotspot/src/cpu/x86/vm/
H A DtemplateInterpreter_x86_32.cpp1914 __ incrementl(ExternalAddress((address) &BytecodeHistogram::_counters[t->bytecode()]));
1922 ExternalAddress table((address) BytecodePairHistogram::_counters);
H A DtemplateInterpreter_x86_64.cpp1954 __ incrementl(ExternalAddress((address) &BytecodeHistogram::_counters[t->bytecode()]));
1964 __ lea(rscratch1, ExternalAddress((address) BytecodePairHistogram::_counters));

Completed in 115 milliseconds