comparison src/share/vm/gc_implementation/g1/g1ErgoVerbose.cpp @ 4710:41406797186b

7113012: G1: rename not-fully-young GCs as "mixed" Summary: Renamed partially-young GCs as mixed and fully-young GCs as young. Change all external output that includes those terms (GC log and GC ergo log) as well as any comments, fields, methods, etc. The changeset also includes very minor code tidying up (added some curly brackets). Reviewed-by: johnc, brutisso
author tonyp
date Fri, 16 Dec 2011 02:14:27 -0500
parents 20213c8a3c40
children
comparison
equal deleted inserted replaced
4709:fd2b426c30db 4710:41406797186b
50 } 50 }
51 51
52 const char* G1ErgoVerbose::to_string(int tag) { 52 const char* G1ErgoVerbose::to_string(int tag) {
53 ErgoHeuristic n = extract_heuristic(tag); 53 ErgoHeuristic n = extract_heuristic(tag);
54 switch (n) { 54 switch (n) {
55 case ErgoHeapSizing: return "Heap Sizing"; 55 case ErgoHeapSizing: return "Heap Sizing";
56 case ErgoCSetConstruction: return "CSet Construction"; 56 case ErgoCSetConstruction: return "CSet Construction";
57 case ErgoConcCycles: return "Concurrent Cycles"; 57 case ErgoConcCycles: return "Concurrent Cycles";
58 case ErgoPartiallyYoungGCs: return "Partially-Young GCs"; 58 case ErgoMixedGCs: return "Mixed GCs";
59 default: 59 default:
60 ShouldNotReachHere(); 60 ShouldNotReachHere();
61 // Keep the Windows compiler happy 61 // Keep the Windows compiler happy
62 return NULL; 62 return NULL;
63 } 63 }
64 } 64 }
65