hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/gc/shared/GCCause.java
changeset 37149 f025738bbada
parent 37103 79c0f8e4b7b7
equal deleted inserted replaced
37148:042294ceef52 37149:f025738bbada
    35   _gc_locker ("GCLocker Initiated GC"),
    35   _gc_locker ("GCLocker Initiated GC"),
    36   _heap_inspection ("Heap Inspection Initiated GC"),
    36   _heap_inspection ("Heap Inspection Initiated GC"),
    37   _heap_dump ("Heap Dump Initiated GC"),
    37   _heap_dump ("Heap Dump Initiated GC"),
    38   _wb_young_gc ("WhiteBox Initiated Young GC"),
    38   _wb_young_gc ("WhiteBox Initiated Young GC"),
    39   _wb_conc_mark ("WhiteBox Initiated Concurrent Mark"),
    39   _wb_conc_mark ("WhiteBox Initiated Concurrent Mark"),
       
    40   _wb_full_gc ("WhiteBox Initiated Full GC"),
    40   _update_allocation_context_stats_inc ("Update Allocation Context Stats"),
    41   _update_allocation_context_stats_inc ("Update Allocation Context Stats"),
    41   _update_allocation_context_stats_full ("Update Allocation Context Stats"),
    42   _update_allocation_context_stats_full ("Update Allocation Context Stats"),
    42 
    43 
    43   _no_gc ("No GC"),
    44   _no_gc ("No GC"),
    44   _no_cause_specified ("Unknown GCCause"),
    45   _no_cause_specified ("Unknown GCCause"),
    45   _allocation_failure ("Allocation Failure"),
    46   _allocation_failure ("Allocation Failure"),
    46 
    47 
    47   _tenured_generation_full ("Tenured Generation Full"),
    48   _tenured_generation_full ("Tenured Generation Full"),
    48   _metadata_GC_threshold ("Metadata GC Threshold"),
    49   _metadata_GC_threshold ("Metadata GC Threshold"),
       
    50   _metadata_GC_clear_soft_refs ("Metadata GC Clear Soft References"),
    49 
    51 
    50   _cms_generation_full ("CMS Generation Full"),
    52   _cms_generation_full ("CMS Generation Full"),
    51   _cms_initial_mark ("CMS Initial Mark"),
    53   _cms_initial_mark ("CMS Initial Mark"),
    52   _cms_final_remark ("CMS Final Remark"),
    54   _cms_final_remark ("CMS Final Remark"),
    53   _cms_concurrent_mark ("CMS Concurrent Mark"),
    55   _cms_concurrent_mark ("CMS Concurrent Mark"),
    56   _old_generation_too_full_to_scavenge ("Old Generation Too Full To Scavenge"),
    58   _old_generation_too_full_to_scavenge ("Old Generation Too Full To Scavenge"),
    57   _adaptive_size_policy ("Ergonomics"),
    59   _adaptive_size_policy ("Ergonomics"),
    58 
    60 
    59   _g1_inc_collection_pause ("G1 Evacuation Pause"),
    61   _g1_inc_collection_pause ("G1 Evacuation Pause"),
    60   _g1_humongous_allocation ("G1 Humongous Allocation"),
    62   _g1_humongous_allocation ("G1 Humongous Allocation"),
    61 
       
    62   _last_ditch_collection ("Last ditch collection"),
       
    63 
    63 
    64   _dcmd_gc_run ("Diagnostic Command"),
    64   _dcmd_gc_run ("Diagnostic Command"),
    65 
    65 
    66   _last_gc_cause ("ILLEGAL VALUE - last gc cause - ILLEGAL VALUE");
    66   _last_gc_cause ("ILLEGAL VALUE - last gc cause - ILLEGAL VALUE");
    67 
    67