annotate src/share/vm/gc_interface/gcCause.cpp @ 20462:dce3f772de9f

8058235: identify GCs initiated to update allocation context stats Reviewed-by: mikael, sjohanss
author jcoomes
date Thu, 11 Sep 2014 17:13:30 -0700
parents 4bfc44ba0d19
children d3fd73295885
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
17467
55fb97c4c58d 8029233: Update copyright year to match last edit in jdk8 hotspot repository for 2013
mikael
parents: 10405
diff changeset
2 * Copyright (c) 2002, 2013, Oracle and/or its affiliates. All rights reserved.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
a61af66fc99e Initial load
duke
parents:
diff changeset
4 *
a61af66fc99e Initial load
duke
parents:
diff changeset
5 * This code is free software; you can redistribute it and/or modify it
a61af66fc99e Initial load
duke
parents:
diff changeset
6 * under the terms of the GNU General Public License version 2 only, as
a61af66fc99e Initial load
duke
parents:
diff changeset
7 * published by the Free Software Foundation.
a61af66fc99e Initial load
duke
parents:
diff changeset
8 *
a61af66fc99e Initial load
duke
parents:
diff changeset
9 * This code is distributed in the hope that it will be useful, but WITHOUT
a61af66fc99e Initial load
duke
parents:
diff changeset
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
a61af66fc99e Initial load
duke
parents:
diff changeset
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
a61af66fc99e Initial load
duke
parents:
diff changeset
12 * version 2 for more details (a copy is included in the LICENSE file that
a61af66fc99e Initial load
duke
parents:
diff changeset
13 * accompanied this code).
a61af66fc99e Initial load
duke
parents:
diff changeset
14 *
a61af66fc99e Initial load
duke
parents:
diff changeset
15 * You should have received a copy of the GNU General Public License version
a61af66fc99e Initial load
duke
parents:
diff changeset
16 * 2 along with this work; if not, write to the Free Software Foundation,
a61af66fc99e Initial load
duke
parents:
diff changeset
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
a61af66fc99e Initial load
duke
parents:
diff changeset
18 *
1552
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 0
diff changeset
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 0
diff changeset
20 * or visit www.oracle.com if you need additional information or have any
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 0
diff changeset
21 * questions.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
22 *
a61af66fc99e Initial load
duke
parents:
diff changeset
23 */
a61af66fc99e Initial load
duke
parents:
diff changeset
24
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1656
diff changeset
25 #include "precompiled.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1656
diff changeset
26 #include "gc_interface/gcCause.hpp"
0
a61af66fc99e Initial load
duke
parents:
diff changeset
27
a61af66fc99e Initial load
duke
parents:
diff changeset
28 const char* GCCause::to_string(GCCause::Cause cause) {
a61af66fc99e Initial load
duke
parents:
diff changeset
29 switch (cause) {
a61af66fc99e Initial load
duke
parents:
diff changeset
30 case _java_lang_system_gc:
a61af66fc99e Initial load
duke
parents:
diff changeset
31 return "System.gc()";
a61af66fc99e Initial load
duke
parents:
diff changeset
32
a61af66fc99e Initial load
duke
parents:
diff changeset
33 case _full_gc_alot:
a61af66fc99e Initial load
duke
parents:
diff changeset
34 return "FullGCAlot";
a61af66fc99e Initial load
duke
parents:
diff changeset
35
a61af66fc99e Initial load
duke
parents:
diff changeset
36 case _scavenge_alot:
a61af66fc99e Initial load
duke
parents:
diff changeset
37 return "ScavengeAlot";
a61af66fc99e Initial load
duke
parents:
diff changeset
38
a61af66fc99e Initial load
duke
parents:
diff changeset
39 case _allocation_profiler:
a61af66fc99e Initial load
duke
parents:
diff changeset
40 return "Allocation Profiler";
a61af66fc99e Initial load
duke
parents:
diff changeset
41
a61af66fc99e Initial load
duke
parents:
diff changeset
42 case _jvmti_force_gc:
a61af66fc99e Initial load
duke
parents:
diff changeset
43 return "JvmtiEnv ForceGarbageCollection";
a61af66fc99e Initial load
duke
parents:
diff changeset
44
a61af66fc99e Initial load
duke
parents:
diff changeset
45 case _gc_locker:
a61af66fc99e Initial load
duke
parents:
diff changeset
46 return "GCLocker Initiated GC";
a61af66fc99e Initial load
duke
parents:
diff changeset
47
a61af66fc99e Initial load
duke
parents:
diff changeset
48 case _heap_inspection:
a61af66fc99e Initial load
duke
parents:
diff changeset
49 return "Heap Inspection Initiated GC";
a61af66fc99e Initial load
duke
parents:
diff changeset
50
a61af66fc99e Initial load
duke
parents:
diff changeset
51 case _heap_dump:
a61af66fc99e Initial load
duke
parents:
diff changeset
52 return "Heap Dump Initiated GC";
a61af66fc99e Initial load
duke
parents:
diff changeset
53
20357
4bfc44ba0d19 8055098: WB API should be extended to provide information about size and age of object.
tschatzl
parents: 17467
diff changeset
54 case _wb_young_gc:
4bfc44ba0d19 8055098: WB API should be extended to provide information about size and age of object.
tschatzl
parents: 17467
diff changeset
55 return "WhiteBox Initiated Young GC";
4bfc44ba0d19 8055098: WB API should be extended to provide information about size and age of object.
tschatzl
parents: 17467
diff changeset
56
20462
dce3f772de9f 8058235: identify GCs initiated to update allocation context stats
jcoomes
parents: 20357
diff changeset
57 case _update_allocation_context_stats:
dce3f772de9f 8058235: identify GCs initiated to update allocation context stats
jcoomes
parents: 20357
diff changeset
58 return "Update Allocation Context Stats";
dce3f772de9f 8058235: identify GCs initiated to update allocation context stats
jcoomes
parents: 20357
diff changeset
59
4074
ab5107bee78c 7110190: GCCause::to_string missing case for _adaptive_size_policy
brutisso
parents: 2225
diff changeset
60 case _no_gc:
ab5107bee78c 7110190: GCCause::to_string missing case for _adaptive_size_policy
brutisso
parents: 2225
diff changeset
61 return "No GC";
ab5107bee78c 7110190: GCCause::to_string missing case for _adaptive_size_policy
brutisso
parents: 2225
diff changeset
62
ab5107bee78c 7110190: GCCause::to_string missing case for _adaptive_size_policy
brutisso
parents: 2225
diff changeset
63 case _allocation_failure:
ab5107bee78c 7110190: GCCause::to_string missing case for _adaptive_size_policy
brutisso
parents: 2225
diff changeset
64 return "Allocation Failure";
ab5107bee78c 7110190: GCCause::to_string missing case for _adaptive_size_policy
brutisso
parents: 2225
diff changeset
65
0
a61af66fc99e Initial load
duke
parents:
diff changeset
66 case _tenured_generation_full:
a61af66fc99e Initial load
duke
parents:
diff changeset
67 return "Tenured Generation Full";
a61af66fc99e Initial load
duke
parents:
diff changeset
68
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 4829
diff changeset
69 case _metadata_GC_threshold:
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 4829
diff changeset
70 return "Metadata GC Threshold";
0
a61af66fc99e Initial load
duke
parents:
diff changeset
71
a61af66fc99e Initial load
duke
parents:
diff changeset
72 case _cms_generation_full:
a61af66fc99e Initial load
duke
parents:
diff changeset
73 return "CMS Generation Full";
a61af66fc99e Initial load
duke
parents:
diff changeset
74
a61af66fc99e Initial load
duke
parents:
diff changeset
75 case _cms_initial_mark:
a61af66fc99e Initial load
duke
parents:
diff changeset
76 return "CMS Initial Mark";
a61af66fc99e Initial load
duke
parents:
diff changeset
77
a61af66fc99e Initial load
duke
parents:
diff changeset
78 case _cms_final_remark:
a61af66fc99e Initial load
duke
parents:
diff changeset
79 return "CMS Final Remark";
a61af66fc99e Initial load
duke
parents:
diff changeset
80
10405
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 6725
diff changeset
81 case _cms_concurrent_mark:
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 6725
diff changeset
82 return "CMS Concurrent Mark";
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 6725
diff changeset
83
0
a61af66fc99e Initial load
duke
parents:
diff changeset
84 case _old_generation_expanded_on_last_scavenge:
a61af66fc99e Initial load
duke
parents:
diff changeset
85 return "Old Generation Expanded On Last Scavenge";
a61af66fc99e Initial load
duke
parents:
diff changeset
86
a61af66fc99e Initial load
duke
parents:
diff changeset
87 case _old_generation_too_full_to_scavenge:
a61af66fc99e Initial load
duke
parents:
diff changeset
88 return "Old Generation Too Full To Scavenge";
a61af66fc99e Initial load
duke
parents:
diff changeset
89
4074
ab5107bee78c 7110190: GCCause::to_string missing case for _adaptive_size_policy
brutisso
parents: 2225
diff changeset
90 case _adaptive_size_policy:
ab5107bee78c 7110190: GCCause::to_string missing case for _adaptive_size_policy
brutisso
parents: 2225
diff changeset
91 return "Ergonomics";
ab5107bee78c 7110190: GCCause::to_string missing case for _adaptive_size_policy
brutisso
parents: 2225
diff changeset
92
1656
4e5661ba9d98 6944166: G1: explicit GCs are not always handled correctly
tonyp
parents: 1552
diff changeset
93 case _g1_inc_collection_pause:
4e5661ba9d98 6944166: G1: explicit GCs are not always handled correctly
tonyp
parents: 1552
diff changeset
94 return "G1 Evacuation Pause";
4e5661ba9d98 6944166: G1: explicit GCs are not always handled correctly
tonyp
parents: 1552
diff changeset
95
4829
9509c20bba28 6976060: G1: humongous object allocations should initiate marking cycles when necessary
brutisso
parents: 4074
diff changeset
96 case _g1_humongous_allocation:
9509c20bba28 6976060: G1: humongous object allocations should initiate marking cycles when necessary
brutisso
parents: 4074
diff changeset
97 return "G1 Humongous Allocation";
9509c20bba28 6976060: G1: humongous object allocations should initiate marking cycles when necessary
brutisso
parents: 4074
diff changeset
98
0
a61af66fc99e Initial load
duke
parents:
diff changeset
99 case _last_ditch_collection:
a61af66fc99e Initial load
duke
parents:
diff changeset
100 return "Last ditch collection";
a61af66fc99e Initial load
duke
parents:
diff changeset
101
a61af66fc99e Initial load
duke
parents:
diff changeset
102 case _last_gc_cause:
a61af66fc99e Initial load
duke
parents:
diff changeset
103 return "ILLEGAL VALUE - last gc cause - ILLEGAL VALUE";
a61af66fc99e Initial load
duke
parents:
diff changeset
104
a61af66fc99e Initial load
duke
parents:
diff changeset
105 default:
a61af66fc99e Initial load
duke
parents:
diff changeset
106 return "unknown GCCause";
a61af66fc99e Initial load
duke
parents:
diff changeset
107 }
a61af66fc99e Initial load
duke
parents:
diff changeset
108 ShouldNotReachHere();
a61af66fc99e Initial load
duke
parents:
diff changeset
109 }