Searched defs:counters (Results 1 - 22 of 22) sorted by relevance

/openjdk7/hotspot/src/share/vm/gc_implementation/parallelScavenge/
H A DpsMarkSweep.hpp88 static CollectorCounters* counters() { return _counters; } function in class:PSMarkSweep
H A DpsScavenge.hpp67 // Flags/counters
81 static CollectorCounters* _counters; // collector performance counters
101 static CollectorCounters* counters() { return _counters; } function in class:PSScavenge
H A DpsScavenge.cpp240 PSGCAdaptivePolicyCounters* const counters = heap->gc_policy_counters(); local
242 counters->update_full_follows_scavenge(ffs_val);
338 TraceCollectorStats tcs(counters());
527 PSGCAdaptivePolicyCounters* counters = heap->gc_policy_counters(); local
528 counters->update_old_eden_size(
530 counters->update_old_promo_size(
532 counters->update_old_capacity(old_gen->capacity_in_bytes());
533 counters->update_young_capacity(young_gen->capacity_in_bytes());
534 counters->update_survived(survived);
535 counters
555 PSGCAdaptivePolicyCounters* counters = heap->gc_policy_counters(); local
753 PSGCAdaptivePolicyCounters* counters = heap->gc_policy_counters(); local
[all...]
H A DpsParallelCompact.cpp2094 TraceCollectorStats tcs(counters());
2207 PSGCAdaptivePolicyCounters* const counters = heap->gc_policy_counters(); local
2208 counters->update_counters();
2209 counters->update_old_capacity(old_gen->capacity_in_bytes());
2210 counters->update_young_capacity(young_gen->capacity_in_bytes());
/openjdk7/hotspot/src/share/vm/opto/
H A Dlocknode.hpp113 BiasedLockingCounters* counters() const { return _counters; } function in class:FastLockNode
H A Druntime.hpp54 // NamedCounters are tagged counters which can be used for profiling
102 BiasedLockingCounters* counters() { return &_counters; } function in class:BiasedLockingNamedCounter
319 // dumps all the named counters
/openjdk7/jdk/src/share/classes/com/sun/media/sound/
H A DModelStandardIndexedDirector.java42 int[] counters; field in class:ModelStandardIndexedDirector
65 return mat[xt + yt * counters[0]];
79 counters = new int[trantables.length];
115 counters[d] = counter;
117 mat = new int[counters[0] * counters[1]][];
135 x_to = counters[0];
137 y_to = counters[1];
139 int i = x_from + y * counters[0];
/openjdk7/hotspot/src/share/vm/runtime/
H A DbiasedLocking.hpp110 // Biased locking counters
186 static BiasedLockingCounters* counters() { return &_counters; } function in class:BiasedLocking
H A Dfprofiler.cpp132 static int* counters; member in class:PCRecorder
144 if (counters == NULL) return NULL;
147 static int bucket_count_for(address pc) { return counters[index_for(pc)]; }
154 int* PCRecorder::counters = NULL; member in class:PCRecorder
160 counters = NEW_C_HEAP_ARRAY(int, s, mtInternal);
162 counters[index] = 0;
168 if (counters == NULL) return;
170 counters[index_for(pc)]++;
183 if (counters == NULL) return;
200 int count = counters[inde
[all...]
H A Dthread.hpp236 // The two classes No_Safepoint_Verifier and No_Allocation_Verifier are used to set these counters.
1790 CompilerThread(CompileQueue* queue, CompilerCounters* counters);
1797 CompilerCounters* counters() { return _counters; } function in class:CompilerThread
/openjdk7/jdk/test/java/net/URLClassLoader/
H A DHttpTest.java190 public Counters counters() { method in class:HttpTest.HttpServer
209 svr.counters().reset();
211 System.out.println(svr.counters());
213 if (svr.counters().getCount() > 0 ||
214 svr.counters().headCount() > 1) {
220 svr.counters().reset();
223 System.out.println(svr.counters());
224 if (svr.counters().getCount() > 1) {
229 svr.counters().reset();
236 System.out.println(svr.counters());
[all...]
/openjdk7/jdk/test/java/util/ResourceBundle/Control/
H A DStressTest.java56 static AtomicIntegerArray counters; field in class:StressTest
74 counters = new AtomicIntegerArray(tasks.length);
105 int length = counters.length();
108 snapshot[i] = counters.get(i);
131 for (int i = 0; i < counters.length(); i++) {
132 int counter = counters.get(i);
165 counters.incrementAndGet(id);
/openjdk7/hotspot/src/share/vm/gc_implementation/parNew/
H A DasParNewGeneration.cpp595 CMSGCAdaptivePolicyCounters* counters = local
596 (CMSGCAdaptivePolicyCounters*) gch->collector_policy()->counters();
597 assert(counters->kind() ==
599 "Wrong kind of counters");
600 counters->update_tenuring_threshold(_tenuring_threshold);
601 counters->update_survivor_overflowed(_survivor_overflow);
602 counters->update_young_capacity(capacity());
/openjdk7/jdk/src/solaris/native/com/sun/management/
H A DLinuxOperatingSystem.c58 } counters; variable in typeref:struct:perfbuf
201 counters.cpus = calloc(n,sizeof(ticks));
202 if (counters.cpus != NULL) {
204 get_totalticks(-1, &counters.cpuTicks);
207 get_totalticks(i, &counters.cpus[i]);
210 get_jvmticks(&counters.jvmTicks);
244 pticks = &counters.jvmTicks;
246 pticks = &counters.cpuTicks;
248 pticks = &counters.cpus[which];
/openjdk7/jdk/src/share/classes/sun/management/
H A DHotspotCompilation.java115 private Map<String, Counter> counters; field in class:HotspotCompilation
121 // since most counters are in SUN_CI namespace.
123 if ((c = (Counter) counters.get(SUN_CI + name)) != null) {
126 if ((c = (Counter) counters.get(COM_SUN_CI + name)) != null) {
129 if ((c = (Counter) counters.get(JAVA_CI + name)) != null) {
138 // Build a tree map of the current list of performance counters
140 counters = new TreeMap<String, Counter>();
143 counters.put(c.getName(), c);
166 if (counters.containsKey(SUN_CI + "adapterThread.compiles")) {
/openjdk7/hotspot/src/share/vm/memory/
H A DcollectorPolicy.hpp185 GCPolicyCounters* counters() { return _gc_policy_counters; } function in class:CollectorPolicy
187 // Create the jstat counters for the GC policy. By default, policy's
188 // don't have associated counters, and we complain if this is invoked.
H A Dgeneration.hpp621 virtual CollectorCounters* counters() { return _gc_counters; } function in class:Generation
/openjdk7/jdk/src/windows/native/com/sun/management/
H A DOperatingSystem_md.c166 // The index value for the base system counters and objects like processor,
257 * Struct for the processor load counters.
261 HCOUNTER* counters; member in struct:__anon1053
276 * Currently available counters.
346 // (PDH behaves erratically if the counters are
347 // queried too often, especially counters that
383 /* printf("performance counters. If you are running on Windows 2003"); */
471 * the necessary info to check the PDH processor counters.
491 // counters. This was previously guarded by a very ugly piece of code which disabled the
499 /* printf("User does not have sufficient privileges to use performance counters"); */
[all...]
/openjdk7/hotspot/src/share/vm/compiler/
H A DcompileBroker.cpp138 // These counters are used for assigning id's to each compilation
147 // Performance counters
171 // Timers and counters for generating statistics
703 // counters from having a ".0" namespace.
779 // create the jvmstat performance counters
871 CompilerThread* CompileBroker::make_compiler_thread(const char* name, CompileQueue* queue, CompilerCounters* counters, TRAPS) { argument
894 compiler_thread = new CompilerThread(queue, counters);
974 CompilerCounters* counters = new CompilerCounters("compilerThread", i, CHECK); local
975 CompilerThread* new_thread = make_compiler_thread(name_buffer, _c2_method_queue, counters, CHECK);
982 CompilerCounters* counters local
1582 CompilerCounters* counters = ((CompilerThread*)thread)->counters(); local
1961 CompilerCounters* counters = thread->counters(); local
2026 CompilerCounters* counters = thread->counters(); local
[all...]
/openjdk7/hotspot/src/share/vm/gc_implementation/concurrentMarkSweep/
H A DconcurrentMarkSweepGeneration.hpp977 CollectorCounters* counters() { return _gc_counters; } function in class:CMSCollector
1067 // Non-product stat counters
1313 CollectorCounters* counters() { return collector()->counters(); } function in class:ConcurrentMarkSweepGeneration
1345 // Return the GC counters from the collector policy
/openjdk7/hotspot/src/cpu/sparc/vm/
H A Dassembler_sparc.cpp3319 BiasedLockingCounters* counters) {
3324 if (counters == NULL)
3325 counters = BiasedLocking::counters();
3344 if (counters != NULL) {
3345 cond_inc(Assembler::equal, (address) counters->biased_lock_entry_count_addr(), mark_reg, temp_reg);
3397 if (counters != NULL) {
3398 cond_inc(Assembler::zero, (address) counters->anonymously_biased_lock_entry_count_addr(), mark_reg, temp_reg);
3425 if (counters != NULL) {
3426 cond_inc(Assembler::zero, (address) counters
3316 biased_locking_enter(Register obj_reg, Register mark_reg, Register temp_reg, Label& done, Label* slow_case, BiasedLockingCounters* counters) argument
3510 compiler_lock_object(Register Roop, Register Rmark, Register Rbox, Register Rscratch, BiasedLockingCounters* counters, bool try_bias) argument
[all...]
/openjdk7/hotspot/src/cpu/x86/vm/
H A Dassembler_x86.cpp5530 BiasedLockingCounters* counters) {
5535 if (PrintBiasedLockingStatistics && counters == NULL)
5536 counters = BiasedLocking::counters();
5594 if (counters != NULL) {
5596 ExternalAddress((address)counters->biased_lock_entry_count_addr()));
5652 if (counters != NULL) {
5654 ExternalAddress((address)counters->anonymously_biased_lock_entry_count_addr()));
5688 if (counters != NULL) {
5690 ExternalAddress((address)counters
5523 biased_locking_enter(Register lock_reg, Register obj_reg, Register swap_reg, Register tmp_reg, bool swap_reg_contains_mark, Label& done, Label* slow_case, BiasedLockingCounters* counters) argument
6132 biased_locking_enter(Register lock_reg, Register obj_reg, Register swap_reg, Register tmp_reg, bool swap_reg_contains_mark, Label& done, Label* slow_case, BiasedLockingCounters* counters) argument
[all...]

Completed in 159 milliseconds