< prev index next >

src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/gc/shared/GCCause.java

Print this page
rev 48959 : 8198420: Remove unused extension point AllocationContextStats
Reviewed-by:


  21  * questions.
  22  *
  23  */
  24 
  25 package sun.jvm.hotspot.gc.shared;
  26 
  27 //These definitions should be kept in sync with the definitions in the HotSpot code.
  28 
  29 public enum GCCause {
  30   _java_lang_system_gc ("System.gc()"),
  31   _full_gc_alot ("FullGCAlot"),
  32   _scavenge_alot ("ScavengeAlot"),
  33   _allocation_profiler ("Allocation Profiler"),
  34   _jvmti_force_gc ("JvmtiEnv ForceGarbageCollection"),
  35   _gc_locker ("GCLocker Initiated GC"),
  36   _heap_inspection ("Heap Inspection Initiated GC"),
  37   _heap_dump ("Heap Dump Initiated GC"),
  38   _wb_young_gc ("WhiteBox Initiated Young GC"),
  39   _wb_conc_mark ("WhiteBox Initiated Concurrent Mark"),
  40   _wb_full_gc ("WhiteBox Initiated Full GC"),
  41   _update_allocation_context_stats_inc ("Update Allocation Context Stats"),
  42   _update_allocation_context_stats_full ("Update Allocation Context Stats"),
  43 
  44   _no_gc ("No GC"),
  45   _no_cause_specified ("Unknown GCCause"),
  46   _allocation_failure ("Allocation Failure"),
  47 
  48   _tenured_generation_full ("Tenured Generation Full"),
  49   _metadata_GC_threshold ("Metadata GC Threshold"),
  50   _metadata_GC_clear_soft_refs ("Metadata GC Clear Soft References"),
  51 
  52   _cms_generation_full ("CMS Generation Full"),
  53   _cms_initial_mark ("CMS Initial Mark"),
  54   _cms_final_remark ("CMS Final Remark"),
  55   _cms_concurrent_mark ("CMS Concurrent Mark"),
  56 
  57   _old_generation_expanded_on_last_scavenge ("Old Generation Expanded On Last Scavenge"),
  58   _old_generation_too_full_to_scavenge ("Old Generation Too Full To Scavenge"),
  59   _adaptive_size_policy ("Ergonomics"),
  60 
  61   _g1_inc_collection_pause ("G1 Evacuation Pause"),
  62   _g1_humongous_allocation ("G1 Humongous Allocation"),


  21  * questions.
  22  *
  23  */
  24 
  25 package sun.jvm.hotspot.gc.shared;
  26 
  27 //These definitions should be kept in sync with the definitions in the HotSpot code.
  28 
  29 public enum GCCause {
  30   _java_lang_system_gc ("System.gc()"),
  31   _full_gc_alot ("FullGCAlot"),
  32   _scavenge_alot ("ScavengeAlot"),
  33   _allocation_profiler ("Allocation Profiler"),
  34   _jvmti_force_gc ("JvmtiEnv ForceGarbageCollection"),
  35   _gc_locker ("GCLocker Initiated GC"),
  36   _heap_inspection ("Heap Inspection Initiated GC"),
  37   _heap_dump ("Heap Dump Initiated GC"),
  38   _wb_young_gc ("WhiteBox Initiated Young GC"),
  39   _wb_conc_mark ("WhiteBox Initiated Concurrent Mark"),
  40   _wb_full_gc ("WhiteBox Initiated Full GC"),


  41 
  42   _no_gc ("No GC"),
  43   _no_cause_specified ("Unknown GCCause"),
  44   _allocation_failure ("Allocation Failure"),
  45 
  46   _tenured_generation_full ("Tenured Generation Full"),
  47   _metadata_GC_threshold ("Metadata GC Threshold"),
  48   _metadata_GC_clear_soft_refs ("Metadata GC Clear Soft References"),
  49 
  50   _cms_generation_full ("CMS Generation Full"),
  51   _cms_initial_mark ("CMS Initial Mark"),
  52   _cms_final_remark ("CMS Final Remark"),
  53   _cms_concurrent_mark ("CMS Concurrent Mark"),
  54 
  55   _old_generation_expanded_on_last_scavenge ("Old Generation Expanded On Last Scavenge"),
  56   _old_generation_too_full_to_scavenge ("Old Generation Too Full To Scavenge"),
  57   _adaptive_size_policy ("Ergonomics"),
  58 
  59   _g1_inc_collection_pause ("G1 Evacuation Pause"),
  60   _g1_humongous_allocation ("G1 Humongous Allocation"),
< prev index next >