annotate src/share/vm/gc_interface/gcCause.cpp @ 452:00b023ae2d78

6722113: CMS: Incorrect overflow handling during precleaning of Reference lists Summary: When we encounter marking stack overflow during precleaning of Reference lists, we were using the overflow list mechanism, which can cause problems on account of mutating the mark word of the header because of conflicts with mutator accesses and updates of that field. Instead we should use the usual mechanism for overflow handling in concurrent phases, namely dirtying of the card on which the overflowed object lies. Since precleaning effectively does a form of discovered list processing, albeit with discovery enabled, we needed to adjust some code to be correct in the face of interleaved processing and discovery. Reviewed-by: apetrusenko, jcoomes
author ysr
date Thu, 20 Nov 2008 12:27:41 -0800
parents a61af66fc99e
children c18cbe5936b8
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
a61af66fc99e Initial load
duke
parents:
diff changeset
2 * Copyright 2002-2005 Sun Microsystems, Inc. All Rights Reserved.
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 *
a61af66fc99e Initial load
duke
parents:
diff changeset
19 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
a61af66fc99e Initial load
duke
parents:
diff changeset
20 * CA 95054 USA or visit www.sun.com if you need additional information or
a61af66fc99e Initial load
duke
parents:
diff changeset
21 * have any questions.
a61af66fc99e Initial load
duke
parents:
diff changeset
22 *
a61af66fc99e Initial load
duke
parents:
diff changeset
23 */
a61af66fc99e Initial load
duke
parents:
diff changeset
24
a61af66fc99e Initial load
duke
parents:
diff changeset
25 # include "incls/_precompiled.incl"
a61af66fc99e Initial load
duke
parents:
diff changeset
26 # include "incls/_gcCause.cpp.incl"
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
a61af66fc99e Initial load
duke
parents:
diff changeset
81 case _last_ditch_collection:
a61af66fc99e Initial load
duke
parents:
diff changeset
82 return "Last ditch collection";
a61af66fc99e Initial load
duke
parents:
diff changeset
83
a61af66fc99e Initial load
duke
parents:
diff changeset
84 case _last_gc_cause:
a61af66fc99e Initial load
duke
parents:
diff changeset
85 return "ILLEGAL VALUE - last gc cause - ILLEGAL VALUE";
a61af66fc99e Initial load
duke
parents:
diff changeset
86
a61af66fc99e Initial load
duke
parents:
diff changeset
87 default:
a61af66fc99e Initial load
duke
parents:
diff changeset
88 return "unknown GCCause";
a61af66fc99e Initial load
duke
parents:
diff changeset
89 }
a61af66fc99e Initial load
duke
parents:
diff changeset
90 ShouldNotReachHere();
a61af66fc99e Initial load
duke
parents:
diff changeset
91 }
a61af66fc99e Initial load
duke
parents:
diff changeset
92
a61af66fc99e Initial load
duke
parents:
diff changeset
93 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
94
a61af66fc99e Initial load
duke
parents:
diff changeset
95 bool GCCause::is_for_full_collection(GCCause::Cause cause) {
a61af66fc99e Initial load
duke
parents:
diff changeset
96 bool result;
a61af66fc99e Initial load
duke
parents:
diff changeset
97
a61af66fc99e Initial load
duke
parents:
diff changeset
98 // There are more GCCause::Cause types than listed here.
a61af66fc99e Initial load
duke
parents:
diff changeset
99 // For brevity, we list only those that cause full collections.
a61af66fc99e Initial load
duke
parents:
diff changeset
100 switch (cause) {
a61af66fc99e Initial load
duke
parents:
diff changeset
101 case _allocation_failure:
a61af66fc99e Initial load
duke
parents:
diff changeset
102 case _tenured_generation_full:
a61af66fc99e Initial load
duke
parents:
diff changeset
103 case _permanent_generation_full:
a61af66fc99e Initial load
duke
parents:
diff changeset
104 case _cms_generation_full:
a61af66fc99e Initial load
duke
parents:
diff changeset
105 case _last_ditch_collection:
a61af66fc99e Initial load
duke
parents:
diff changeset
106 result = true;
a61af66fc99e Initial load
duke
parents:
diff changeset
107 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
108
a61af66fc99e Initial load
duke
parents:
diff changeset
109 default:
a61af66fc99e Initial load
duke
parents:
diff changeset
110 result = false;
a61af66fc99e Initial load
duke
parents:
diff changeset
111 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
112 }
a61af66fc99e Initial load
duke
parents:
diff changeset
113 return result;
a61af66fc99e Initial load
duke
parents:
diff changeset
114 }
a61af66fc99e Initial load
duke
parents:
diff changeset
115
a61af66fc99e Initial load
duke
parents:
diff changeset
116 #endif // PRODUCT