/openjdk7/hotspot/src/share/vm/memory/ |
H A D | genMarkSweep.cpp | 294 const ReferenceProcessorStats& stats = local 297 gc_tracer()->report_gc_reference_stats(stats);
|
H A D | defNewGeneration.cpp | 613 const ReferenceProcessorStats& stats = local 616 gc_tracer.report_gc_reference_stats(stats);
|
/openjdk7/hotspot/src/share/vm/gc_implementation/g1/ |
H A D | g1MarkSweep.cpp | 151 const ReferenceProcessorStats& stats = local 157 gc_tracer()->report_gc_reference_stats(stats);
|
H A D | g1CollectedHeap.hpp | 300 PLABStats* stats = NULL; local 304 stats = &_survivor_plab_stats; 307 stats = &_old_plab_stats; 313 return stats;
|
H A D | concurrentMark.cpp | 2373 ReferenceProcessorStats stats; local 2386 stats = rp->process_discovered_references(&g1_is_alive, 2396 g1h->gc_tracer_cm()->report_gc_reference_stats(stats); 3468 // (3) If marking stats are enabled, then we update the step history.
|
H A D | g1CollectedHeap.cpp | 2200 // In case we're keeping closure specialization stats, initialize those 3542 // The "G1CollectorPolicy" is keeping track of these stats, so delegate 3755 st->print("%3d ", i); task_queue(i)->stats.print(st); st->cr(); 3756 totals += task_queue(i)->stats; 3766 task_queue(i)->stats.reset(); 3849 // Inner scope for scope based logging, timers, and stats collection 4911 _stats_lock(Mutex::leaf, "parallel G1 stats lock", true) 5614 ReferenceProcessorStats stats; local 5617 stats = rp->process_discovered_references(&is_alive, 5628 stats [all...] |
/openjdk7/hotspot/src/share/vm/gc_implementation/shared/ |
H A D | parGCAllocBuffer.cpp | 80 void ParGCAllocBuffer::flush_stats(PLABStats* stats) { argument 82 stats->add_allocated(_allocated); 83 stats->add_wasted(_wasted); 84 stats->add_unused(pointer_delta(_end, _top)); 94 err_msg("Inconsistency in PLAB stats: "
|
H A D | parGCAllocBuffer.hpp | 55 // Flush the stats supporting ergonomic sizing of PLAB's 57 void flush_stats(PLABStats* stats); 126 // Flush the stats supporting ergonomic sizing of PLAB's 128 void flush_stats_and_retire(PLABStats* stats, bool end_of_gc, bool retain) { argument 129 // We flush the stats first in order to get a reading of 132 flush_stats(stats); 134 // Since we have flushed the stats we need to clear 136 // will artifically inflate the values in the stats 166 // PLAB stats book-keeping
|
/openjdk7/hotspot/src/share/vm/opto/ |
H A D | live.cpp | 172 //------------------------------stats------------------------------------------ 174 void PhaseLive::stats(uint iters) const { function in class:PhaseLive
|
H A D | ifg.cpp | 265 //------------------------------stats------------------------------------------ 266 void PhaseIFG::stats() const { function in class:PhaseIFG
|
/openjdk7/hotspot/src/share/vm/gc_implementation/parallelScavenge/ |
H A D | psMarkSweep.cpp | 540 const ReferenceProcessorStats& stats = local 543 gc_tracer()->report_gc_reference_stats(stats);
|
H A D | psScavenge.cpp | 450 ReferenceProcessorStats stats; local 453 stats = reference_processor()->process_discovered_references( 457 stats = reference_processor()->process_discovered_references( 461 _gc_tracer.report_gc_reference_stats(stats);
|
H A D | psParallelCompact.cpp | 2434 ReferenceProcessorStats stats; local 2437 stats = ref_processor()->process_discovered_references( 2441 stats = ref_processor()->process_discovered_references( 2446 _gc_tracer.report_gc_reference_stats(stats);
|
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/comp/ |
H A D | Flow.java | 802 scanStats(tree.stats); 969 scanStats(c.stats); 970 addVars(c.stats, initsSwitch, uninitsSwitch); 975 c.stats.nonEmpty() && l.tail.nonEmpty()) 988 /** Add any variables defined in stats to inits and uninits. */ 989 private static void addVars(List<JCStatement> stats, Bits inits, argument 991 for (;stats.nonEmpty(); stats = stats.tail) { 992 JCTree stat = stats [all...] |
H A D | Attr.java | 815 if (body.stats.isEmpty() || 816 !TreeInfo.isSelfCall(body.stats.head)) { 817 body.stats = body.stats. 824 TreeInfo.isSuperCall(body.stats.head)) { 829 log.error(tree.body.stats.head.pos(), 913 attribStats(tree.stats, localEnv); 918 attribStats(tree.stats, localEnv); 1049 attribStats(c.stats, caseEnv); 1051 addVars(c.stats, switchEn 1059 addVars(List<JCStatement> stats, Scope switchScope) argument [all...] |
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/tree/ |
H A D | Pretty.java | 269 public void printBlock(List<? extends JCTree> stats) throws IOException { argument 273 printStats(stats); 281 public void printEnumBody(List<JCTree> stats) throws IOException { argument 286 for (List<JCTree> l = stats; l.nonEmpty(); l = l.tail) { 299 for (List<JCTree> l = stats; l.nonEmpty(); l = l.tail) { 536 printBlock(tree.stats); 657 printStats(tree.stats);
|
H A D | TreeMaker.java | 197 public JCBlock Block(long flags, List<JCStatement> stats) { argument 198 JCBlock tree = new JCBlock(flags, stats); 243 public JCCase Case(JCExpression pat, List<JCStatement> stats) { argument 244 JCCase tree = new JCCase(pat, stats);
|
H A D | JCTree.java | 635 * @param stats statements in the method 768 * @param stats statements 773 public List<JCStatement> stats; field in class:JCTree.JCBlock 776 protected JCBlock(long flags, List<JCStatement> stats) { argument 777 this.stats = stats; 785 return stats; 979 public List<JCStatement> stats; field in class:JCTree.JCCase 980 protected JCCase(JCExpression pat, List<JCStatement> stats) { argument 982 this.stats 2123 Block(long flags, List<JCStatement> stats) argument 2133 Case(JCExpression pat, List<JCStatement> stats) argument [all...] |
/openjdk7/jdk/src/share/classes/javax/swing/text/ |
H A D | AsyncBoxView.java | 62 stats = new ArrayList<ChildState>(); 199 synchronized(stats) { 200 if ((index >= 0) && (index < stats.size())) { 201 return stats.get(index); 278 synchronized(stats) { 358 synchronized(stats) { 361 ChildState cs = stats.remove(offset); 375 stats.add(offset + i, s); 697 synchronized(stats) { 698 return stats 867 List<ChildState> stats; field in class:AsyncBoxView [all...] |
/openjdk7/hotspot/src/share/vm/gc_implementation/parNew/ |
H A D | parNewGeneration.cpp | 422 // Print stats related to work queue activity. 437 const TaskQueueStats & stats = pss.taskqueue_stats(); local 438 st->print("%3d ", i); stats.print(st); st->cr(); 439 totals += stats; 462 // Flush stats related to To-space PLAB activity and 1021 ReferenceProcessorStats stats; local 1024 stats = rp->process_discovered_references(&is_alive, &keep_alive, 1031 stats = rp->process_discovered_references(&is_alive, &keep_alive, 1035 gc_tracer.report_gc_reference_stats(stats); 1251 // Add stats fo [all...] |
/openjdk7/jdk/src/share/classes/com/sun/rowset/internal/ |
H A D | SyncResolverImpl.java | 68 private ArrayList stats; field in class:SyncResolverImpl 135 return ((Integer)stats.get(rowStatus-1)).intValue(); 433 stats = status; 475 if((rowStatus-1) >= stats.size()) { 480 if(((Integer)stats.get(rowStatus-1)).intValue() == SyncResolver.NO_ROW_CONFLICT) {
|
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/parser/ |
H A D | JavacParser.java | 1561 List<JCStatement> stats = blockStatements(); 1562 JCBlock t = F.at(pos).Block(flags, stats); 1589 ListBuffer<JCStatement> stats = new ListBuffer<JCStatement>(); 1594 return stats.toList(); 1598 stats.append(parseStatement()); 1607 stats.append(classOrInterfaceOrEnumDeclaration(mods, dc)); 1610 stats.appendList(variableDeclarators(mods, t, 1613 storeEnd(stats.elems.last(), S.endPos()); 1621 stats.append(classOrInterfaceOrEnumDeclaration(mods, dc)); 1626 stats 1939 moreStatementExpressions(int pos, JCExpression first, T stats) argument [all...] |
/openjdk7/hotspot/src/share/vm/gc_implementation/concurrentMarkSweep/ |
H A D | concurrentMarkSweepGeneration.hpp | 171 friend class CMSCollector; // to get at expasion stats further below 719 // occupancy used for bootstrapping stats 999 // Timers/stats for gc scheduling and incremental mode pacing. 1000 CMSStats& stats() { return _stats; } function in class:CMSCollector
|