83 return "CMS Final Remark"; 84 85 case _cms_concurrent_mark: 86 return "CMS Concurrent Mark"; 87 88 case _old_generation_expanded_on_last_scavenge: 89 return "Old Generation Expanded On Last Scavenge"; 90 91 case _old_generation_too_full_to_scavenge: 92 return "Old Generation Too Full To Scavenge"; 93 94 case _adaptive_size_policy: 95 return "Ergonomics"; 96 97 case _g1_inc_collection_pause: 98 return "G1 Evacuation Pause"; 99 100 case _g1_humongous_allocation: 101 return "G1 Humongous Allocation"; 102 103 case _last_ditch_collection: 104 return "Last ditch collection"; 105 106 case _last_gc_cause: 107 return "ILLEGAL VALUE - last gc cause - ILLEGAL VALUE"; 108 109 default: 110 return "unknown GCCause"; 111 } 112 ShouldNotReachHere(); 113 } | 83 return "CMS Final Remark"; 84 85 case _cms_concurrent_mark: 86 return "CMS Concurrent Mark"; 87 88 case _old_generation_expanded_on_last_scavenge: 89 return "Old Generation Expanded On Last Scavenge"; 90 91 case _old_generation_too_full_to_scavenge: 92 return "Old Generation Too Full To Scavenge"; 93 94 case _adaptive_size_policy: 95 return "Ergonomics"; 96 97 case _g1_inc_collection_pause: 98 return "G1 Evacuation Pause"; 99 100 case _g1_humongous_allocation: 101 return "G1 Humongous Allocation"; 102 103 case _shenandoah_allocation_failure_evac: 104 return "Allocation Failure During Evacuation"; 105 106 case _shenandoah_stop_vm: 107 return "Stopping VM"; 108 109 case _shenandoah_concurrent_gc: 110 return "Concurrent GC"; 111 112 case _shenandoah_upgrade_to_full_gc: 113 return "Upgrade To Full GC"; 114 115 case _last_ditch_collection: 116 return "Last ditch collection"; 117 118 case _last_gc_cause: 119 return "ILLEGAL VALUE - last gc cause - ILLEGAL VALUE"; 120 121 default: 122 return "unknown GCCause"; 123 } 124 ShouldNotReachHere(); 125 } |