src/share/vm/gc_interface/gcCause.cpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File hs-gc-g1-mmap Sdiff src/share/vm/gc_interface

src/share/vm/gc_interface/gcCause.cpp

Print this page




  67       return "CMS Generation Full";
  68 
  69     case _cms_initial_mark:
  70       return "CMS Initial Mark";
  71 
  72     case _cms_final_remark:
  73       return "CMS Final Remark";
  74 
  75     case _cms_concurrent_mark:
  76       return "CMS Concurrent Mark";
  77 
  78     case _old_generation_expanded_on_last_scavenge:
  79       return "Old Generation Expanded On Last Scavenge";
  80 
  81     case _old_generation_too_full_to_scavenge:
  82       return "Old Generation Too Full To Scavenge";
  83 
  84     case _adaptive_size_policy:
  85       return "Ergonomics";
  86 
  87     case _g1_inc_collection_pause:
  88       return "G1 Evacuation Pause";
  89 
  90     case _g1_humongous_allocation:
  91       return "G1 Humongous Allocation";
  92 
  93     case _last_ditch_collection:
  94       return "Last ditch collection";
  95 
  96     case _last_gc_cause:
  97       return "ILLEGAL VALUE - last gc cause - ILLEGAL VALUE";
  98 
  99     default:
 100       return "unknown GCCause";
 101   }
 102   ShouldNotReachHere();
 103 }


  67       return "CMS Generation Full";
  68 
  69     case _cms_initial_mark:
  70       return "CMS Initial Mark";
  71 
  72     case _cms_final_remark:
  73       return "CMS Final Remark";
  74 
  75     case _cms_concurrent_mark:
  76       return "CMS Concurrent Mark";
  77 
  78     case _old_generation_expanded_on_last_scavenge:
  79       return "Old Generation Expanded On Last Scavenge";
  80 
  81     case _old_generation_too_full_to_scavenge:
  82       return "Old Generation Too Full To Scavenge";
  83 
  84     case _adaptive_size_policy:
  85       return "Ergonomics";
  86 



  87     case _g1_humongous_allocation:
  88       return "G1 Humongous Allocation";
  89 
  90     case _last_ditch_collection:
  91       return "Last ditch collection";
  92 
  93     case _last_gc_cause:
  94       return "ILLEGAL VALUE - last gc cause - ILLEGAL VALUE";
  95 
  96     default:
  97       return "unknown GCCause";
  98   }
  99   ShouldNotReachHere();
 100 }
src/share/vm/gc_interface/gcCause.cpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File