annotate src/share/vm/gc_interface/gcCause.cpp @ 13212:eb03a7335eb0

Use fixed instead of virtual register for target in far foreign call, since the register allocator does not support virtual registers to be used at call sites.
author Christian Wimmer <christian.wimmer@oracle.com>
date Mon, 02 Dec 2013 14:20:32 -0800
parents f2110083203d
children de6a9e811145
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
4829
9509c20bba28 6976060: G1: humongous object allocations should initiate marking cycles when necessary
brutisso
parents: 4074
diff changeset
2 * Copyright (c) 2002, 2012, 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
4074
ab5107bee78c 7110190: GCCause::to_string missing case for _adaptive_size_policy
brutisso
parents: 2225
diff changeset
54 case _no_gc:
ab5107bee78c 7110190: GCCause::to_string missing case for _adaptive_size_policy
brutisso
parents: 2225
diff changeset
55 return "No GC";
ab5107bee78c 7110190: GCCause::to_string missing case for _adaptive_size_policy
brutisso
parents: 2225
diff changeset
56
ab5107bee78c 7110190: GCCause::to_string missing case for _adaptive_size_policy
brutisso
parents: 2225
diff changeset
57 case _allocation_failure:
ab5107bee78c 7110190: GCCause::to_string missing case for _adaptive_size_policy
brutisso
parents: 2225
diff changeset
58 return "Allocation Failure";
ab5107bee78c 7110190: GCCause::to_string missing case for _adaptive_size_policy
brutisso
parents: 2225
diff changeset
59
0
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
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 4829
diff changeset
63 case _metadata_GC_threshold:
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 4829
diff changeset
64 return "Metadata GC Threshold";
0
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
10405
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 6725
diff changeset
75 case _cms_concurrent_mark:
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 6725
diff changeset
76 return "CMS Concurrent Mark";
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 6725
diff changeset
77
0
a61af66fc99e Initial load
duke
parents:
diff changeset
78 case _old_generation_expanded_on_last_scavenge:
a61af66fc99e Initial load
duke
parents:
diff changeset
79 return "Old Generation Expanded On Last Scavenge";
a61af66fc99e Initial load
duke
parents:
diff changeset
80
a61af66fc99e Initial load
duke
parents:
diff changeset
81 case _old_generation_too_full_to_scavenge:
a61af66fc99e Initial load
duke
parents:
diff changeset
82 return "Old Generation Too Full To Scavenge";
a61af66fc99e Initial load
duke
parents:
diff changeset
83
4074
ab5107bee78c 7110190: GCCause::to_string missing case for _adaptive_size_policy
brutisso
parents: 2225
diff changeset
84 case _adaptive_size_policy:
ab5107bee78c 7110190: GCCause::to_string missing case for _adaptive_size_policy
brutisso
parents: 2225
diff changeset
85 return "Ergonomics";
ab5107bee78c 7110190: GCCause::to_string missing case for _adaptive_size_policy
brutisso
parents: 2225
diff changeset
86
1656
4e5661ba9d98 6944166: G1: explicit GCs are not always handled correctly
tonyp
parents: 1552
diff changeset
87 case _g1_inc_collection_pause:
4e5661ba9d98 6944166: G1: explicit GCs are not always handled correctly
tonyp
parents: 1552
diff changeset
88 return "G1 Evacuation Pause";
4e5661ba9d98 6944166: G1: explicit GCs are not always handled correctly
tonyp
parents: 1552
diff changeset
89
4829
9509c20bba28 6976060: G1: humongous object allocations should initiate marking cycles when necessary
brutisso
parents: 4074
diff changeset
90 case _g1_humongous_allocation:
9509c20bba28 6976060: G1: humongous object allocations should initiate marking cycles when necessary
brutisso
parents: 4074
diff changeset
91 return "G1 Humongous Allocation";
9509c20bba28 6976060: G1: humongous object allocations should initiate marking cycles when necessary
brutisso
parents: 4074
diff changeset
92
0
a61af66fc99e Initial load
duke
parents:
diff changeset
93 case _last_ditch_collection:
a61af66fc99e Initial load
duke
parents:
diff changeset
94 return "Last ditch collection";
a61af66fc99e Initial load
duke
parents:
diff changeset
95
a61af66fc99e Initial load
duke
parents:
diff changeset
96 case _last_gc_cause:
a61af66fc99e Initial load
duke
parents:
diff changeset
97 return "ILLEGAL VALUE - last gc cause - ILLEGAL VALUE";
a61af66fc99e Initial load
duke
parents:
diff changeset
98
a61af66fc99e Initial load
duke
parents:
diff changeset
99 default:
a61af66fc99e Initial load
duke
parents:
diff changeset
100 return "unknown GCCause";
a61af66fc99e Initial load
duke
parents:
diff changeset
101 }
a61af66fc99e Initial load
duke
parents:
diff changeset
102 ShouldNotReachHere();
a61af66fc99e Initial load
duke
parents:
diff changeset
103 }