annotate src/share/vm/gc_interface/gcCause.cpp @ 1972:f95d63e2154a

6989984: Use standard include model for Hospot Summary: Replaced MakeDeps and the includeDB files with more standardized solutions. Reviewed-by: coleenp, kvn, kamg
author stefank
date Tue, 23 Nov 2010 13:22:55 -0800
parents 4e5661ba9d98
children c798c277ddd1
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1656
diff changeset
2 * Copyright (c) 2002, 2010, 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 _no_gc:
a61af66fc99e Initial load
duke
parents:
diff changeset
46 return "No GC";
a61af66fc99e Initial load
duke
parents:
diff changeset
47
a61af66fc99e Initial load
duke
parents:
diff changeset
48 case _allocation_failure:
a61af66fc99e Initial load
duke
parents:
diff changeset
49 return "Allocation Failure";
a61af66fc99e Initial load
duke
parents:
diff changeset
50
a61af66fc99e Initial load
duke
parents:
diff changeset
51 case _gc_locker:
a61af66fc99e Initial load
duke
parents:
diff changeset
52 return "GCLocker Initiated GC";
a61af66fc99e Initial load
duke
parents:
diff changeset
53
a61af66fc99e Initial load
duke
parents:
diff changeset
54 case _heap_inspection:
a61af66fc99e Initial load
duke
parents:
diff changeset
55 return "Heap Inspection Initiated GC";
a61af66fc99e Initial load
duke
parents:
diff changeset
56
a61af66fc99e Initial load
duke
parents:
diff changeset
57 case _heap_dump:
a61af66fc99e Initial load
duke
parents:
diff changeset
58 return "Heap Dump Initiated GC";
a61af66fc99e Initial load
duke
parents:
diff changeset
59
a61af66fc99e Initial load
duke
parents:
diff changeset
60 case _tenured_generation_full:
a61af66fc99e Initial load
duke
parents:
diff changeset
61 return "Tenured Generation Full";
a61af66fc99e Initial load
duke
parents:
diff changeset
62
a61af66fc99e Initial load
duke
parents:
diff changeset
63 case _permanent_generation_full:
a61af66fc99e Initial load
duke
parents:
diff changeset
64 return "Permanent Generation Full";
a61af66fc99e Initial load
duke
parents:
diff changeset
65
a61af66fc99e Initial load
duke
parents:
diff changeset
66 case _cms_generation_full:
a61af66fc99e Initial load
duke
parents:
diff changeset
67 return "CMS Generation Full";
a61af66fc99e Initial load
duke
parents:
diff changeset
68
a61af66fc99e Initial load
duke
parents:
diff changeset
69 case _cms_initial_mark:
a61af66fc99e Initial load
duke
parents:
diff changeset
70 return "CMS Initial Mark";
a61af66fc99e Initial load
duke
parents:
diff changeset
71
a61af66fc99e Initial load
duke
parents:
diff changeset
72 case _cms_final_remark:
a61af66fc99e Initial load
duke
parents:
diff changeset
73 return "CMS Final Remark";
a61af66fc99e Initial load
duke
parents:
diff changeset
74
a61af66fc99e Initial load
duke
parents:
diff changeset
75 case _old_generation_expanded_on_last_scavenge:
a61af66fc99e Initial load
duke
parents:
diff changeset
76 return "Old Generation Expanded On Last Scavenge";
a61af66fc99e Initial load
duke
parents:
diff changeset
77
a61af66fc99e Initial load
duke
parents:
diff changeset
78 case _old_generation_too_full_to_scavenge:
a61af66fc99e Initial load
duke
parents:
diff changeset
79 return "Old Generation Too Full To Scavenge";
a61af66fc99e Initial load
duke
parents:
diff changeset
80
1656
4e5661ba9d98 6944166: G1: explicit GCs are not always handled correctly
tonyp
parents: 1552
diff changeset
81 case _g1_inc_collection_pause:
4e5661ba9d98 6944166: G1: explicit GCs are not always handled correctly
tonyp
parents: 1552
diff changeset
82 return "G1 Evacuation Pause";
4e5661ba9d98 6944166: G1: explicit GCs are not always handled correctly
tonyp
parents: 1552
diff changeset
83
0
a61af66fc99e Initial load
duke
parents:
diff changeset
84 case _last_ditch_collection:
a61af66fc99e Initial load
duke
parents:
diff changeset
85 return "Last ditch collection";
a61af66fc99e Initial load
duke
parents:
diff changeset
86
a61af66fc99e Initial load
duke
parents:
diff changeset
87 case _last_gc_cause:
a61af66fc99e Initial load
duke
parents:
diff changeset
88 return "ILLEGAL VALUE - last gc cause - ILLEGAL VALUE";
a61af66fc99e Initial load
duke
parents:
diff changeset
89
a61af66fc99e Initial load
duke
parents:
diff changeset
90 default:
a61af66fc99e Initial load
duke
parents:
diff changeset
91 return "unknown GCCause";
a61af66fc99e Initial load
duke
parents:
diff changeset
92 }
a61af66fc99e Initial load
duke
parents:
diff changeset
93 ShouldNotReachHere();
a61af66fc99e Initial load
duke
parents:
diff changeset
94 }
a61af66fc99e Initial load
duke
parents:
diff changeset
95
a61af66fc99e Initial load
duke
parents:
diff changeset
96 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
97
a61af66fc99e Initial load
duke
parents:
diff changeset
98 bool GCCause::is_for_full_collection(GCCause::Cause cause) {
a61af66fc99e Initial load
duke
parents:
diff changeset
99 bool result;
a61af66fc99e Initial load
duke
parents:
diff changeset
100
a61af66fc99e Initial load
duke
parents:
diff changeset
101 // There are more GCCause::Cause types than listed here.
a61af66fc99e Initial load
duke
parents:
diff changeset
102 // For brevity, we list only those that cause full collections.
a61af66fc99e Initial load
duke
parents:
diff changeset
103 switch (cause) {
a61af66fc99e Initial load
duke
parents:
diff changeset
104 case _allocation_failure:
a61af66fc99e Initial load
duke
parents:
diff changeset
105 case _tenured_generation_full:
a61af66fc99e Initial load
duke
parents:
diff changeset
106 case _permanent_generation_full:
a61af66fc99e Initial load
duke
parents:
diff changeset
107 case _cms_generation_full:
a61af66fc99e Initial load
duke
parents:
diff changeset
108 case _last_ditch_collection:
a61af66fc99e Initial load
duke
parents:
diff changeset
109 result = true;
a61af66fc99e Initial load
duke
parents:
diff changeset
110 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
111
a61af66fc99e Initial load
duke
parents:
diff changeset
112 default:
a61af66fc99e Initial load
duke
parents:
diff changeset
113 result = false;
a61af66fc99e Initial load
duke
parents:
diff changeset
114 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
115 }
a61af66fc99e Initial load
duke
parents:
diff changeset
116 return result;
a61af66fc99e Initial load
duke
parents:
diff changeset
117 }
a61af66fc99e Initial load
duke
parents:
diff changeset
118
a61af66fc99e Initial load
duke
parents:
diff changeset
119 #endif // PRODUCT