< prev index next >

src/share/vm/gc_interface/gcCause.cpp

Print this page




  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 }


  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 _dcmd_gc_run:
 107       return "Diagnostic Command";
 108 
 109     case _last_gc_cause:
 110       return "ILLEGAL VALUE - last gc cause - ILLEGAL VALUE";
 111 
 112     default:
 113       return "unknown GCCause";
 114   }
 115   ShouldNotReachHere();
 116 }
< prev index next >