annotate src/share/vm/ci/ciKlass.cpp @ 1145:e018e6884bd8

6631166: CMS: better heuristics when combatting fragmentation Summary: Autonomic per-worker free block cache sizing, tunable coalition policies, fixes to per-size block statistics, retuned gain and bandwidth of some feedback loop filters to allow quicker reactivity to abrupt changes in ambient demand, and other heuristics to reduce fragmentation of the CMS old gen. Also tightened some assertions, including those related to locking. Reviewed-by: jmasa
author ysr
date Wed, 23 Dec 2009 09:23:54 -0800
parents a61af66fc99e
children dd57230ba8fe
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 1999-2007 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/_ciKlass.cpp.incl"
a61af66fc99e Initial load
duke
parents:
diff changeset
27
a61af66fc99e Initial load
duke
parents:
diff changeset
28 // ciKlass
a61af66fc99e Initial load
duke
parents:
diff changeset
29 //
a61af66fc99e Initial load
duke
parents:
diff changeset
30 // This class represents a klassOop in the HotSpot virtual
a61af66fc99e Initial load
duke
parents:
diff changeset
31 // machine.
a61af66fc99e Initial load
duke
parents:
diff changeset
32
a61af66fc99e Initial load
duke
parents:
diff changeset
33 // ------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
34 // ciKlass::ciKlass
a61af66fc99e Initial load
duke
parents:
diff changeset
35 ciKlass::ciKlass(KlassHandle h_k) : ciType(h_k) {
a61af66fc99e Initial load
duke
parents:
diff changeset
36 assert(get_oop()->is_klass(), "wrong type");
a61af66fc99e Initial load
duke
parents:
diff changeset
37 Klass* k = get_Klass();
a61af66fc99e Initial load
duke
parents:
diff changeset
38 _layout_helper = k->layout_helper();
a61af66fc99e Initial load
duke
parents:
diff changeset
39 symbolOop klass_name = k->name();
a61af66fc99e Initial load
duke
parents:
diff changeset
40 assert(klass_name != NULL, "wrong ciKlass constructor");
a61af66fc99e Initial load
duke
parents:
diff changeset
41 _name = CURRENT_ENV->get_object(klass_name)->as_symbol();
a61af66fc99e Initial load
duke
parents:
diff changeset
42 }
a61af66fc99e Initial load
duke
parents:
diff changeset
43
a61af66fc99e Initial load
duke
parents:
diff changeset
44 // ------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
45 // ciKlass::ciKlass
a61af66fc99e Initial load
duke
parents:
diff changeset
46 //
a61af66fc99e Initial load
duke
parents:
diff changeset
47 // Nameless klass variant.
a61af66fc99e Initial load
duke
parents:
diff changeset
48 ciKlass::ciKlass(KlassHandle h_k, ciSymbol* name) : ciType(h_k) {
a61af66fc99e Initial load
duke
parents:
diff changeset
49 assert(get_oop()->is_klass(), "wrong type");
a61af66fc99e Initial load
duke
parents:
diff changeset
50 _name = name;
a61af66fc99e Initial load
duke
parents:
diff changeset
51 _layout_helper = Klass::_lh_neutral_value;
a61af66fc99e Initial load
duke
parents:
diff changeset
52 }
a61af66fc99e Initial load
duke
parents:
diff changeset
53
a61af66fc99e Initial load
duke
parents:
diff changeset
54 // ------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
55 // ciKlass::ciKlass
a61af66fc99e Initial load
duke
parents:
diff changeset
56 //
a61af66fc99e Initial load
duke
parents:
diff changeset
57 // Unloaded klass variant.
a61af66fc99e Initial load
duke
parents:
diff changeset
58 ciKlass::ciKlass(ciSymbol* name, ciKlass* klass) : ciType(klass) {
a61af66fc99e Initial load
duke
parents:
diff changeset
59 _name = name;
a61af66fc99e Initial load
duke
parents:
diff changeset
60 _layout_helper = Klass::_lh_neutral_value;
a61af66fc99e Initial load
duke
parents:
diff changeset
61 }
a61af66fc99e Initial load
duke
parents:
diff changeset
62
a61af66fc99e Initial load
duke
parents:
diff changeset
63 // ------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
64 // ciKlass::is_subtype_of
a61af66fc99e Initial load
duke
parents:
diff changeset
65 bool ciKlass::is_subtype_of(ciKlass* that) {
a61af66fc99e Initial load
duke
parents:
diff changeset
66 assert(is_loaded() && that->is_loaded(), "must be loaded");
a61af66fc99e Initial load
duke
parents:
diff changeset
67 assert(is_java_klass() && that->is_java_klass(), "must be java klasses");
a61af66fc99e Initial load
duke
parents:
diff changeset
68 // Check to see if the klasses are identical.
a61af66fc99e Initial load
duke
parents:
diff changeset
69 if (this == that) {
a61af66fc99e Initial load
duke
parents:
diff changeset
70 return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
71 }
a61af66fc99e Initial load
duke
parents:
diff changeset
72
a61af66fc99e Initial load
duke
parents:
diff changeset
73 VM_ENTRY_MARK;
a61af66fc99e Initial load
duke
parents:
diff changeset
74 Klass* this_klass = get_Klass();
a61af66fc99e Initial load
duke
parents:
diff changeset
75 klassOop that_klass = that->get_klassOop();
a61af66fc99e Initial load
duke
parents:
diff changeset
76 bool result = this_klass->is_subtype_of(that_klass);
a61af66fc99e Initial load
duke
parents:
diff changeset
77
a61af66fc99e Initial load
duke
parents:
diff changeset
78 return result;
a61af66fc99e Initial load
duke
parents:
diff changeset
79 }
a61af66fc99e Initial load
duke
parents:
diff changeset
80
a61af66fc99e Initial load
duke
parents:
diff changeset
81 // ------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
82 // ciKlass::is_subclass_of
a61af66fc99e Initial load
duke
parents:
diff changeset
83 bool ciKlass::is_subclass_of(ciKlass* that) {
a61af66fc99e Initial load
duke
parents:
diff changeset
84 assert(is_loaded() && that->is_loaded(), "must be loaded");
a61af66fc99e Initial load
duke
parents:
diff changeset
85 assert(is_java_klass() && that->is_java_klass(), "must be java klasses");
a61af66fc99e Initial load
duke
parents:
diff changeset
86 // Check to see if the klasses are identical.
a61af66fc99e Initial load
duke
parents:
diff changeset
87
a61af66fc99e Initial load
duke
parents:
diff changeset
88 VM_ENTRY_MARK;
a61af66fc99e Initial load
duke
parents:
diff changeset
89 Klass* this_klass = get_Klass();
a61af66fc99e Initial load
duke
parents:
diff changeset
90 klassOop that_klass = that->get_klassOop();
a61af66fc99e Initial load
duke
parents:
diff changeset
91 bool result = this_klass->is_subclass_of(that_klass);
a61af66fc99e Initial load
duke
parents:
diff changeset
92
a61af66fc99e Initial load
duke
parents:
diff changeset
93 return result;
a61af66fc99e Initial load
duke
parents:
diff changeset
94 }
a61af66fc99e Initial load
duke
parents:
diff changeset
95
a61af66fc99e Initial load
duke
parents:
diff changeset
96 // ------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
97 // ciKlass::super_depth
a61af66fc99e Initial load
duke
parents:
diff changeset
98 juint ciKlass::super_depth() {
a61af66fc99e Initial load
duke
parents:
diff changeset
99 assert(is_loaded(), "must be loaded");
a61af66fc99e Initial load
duke
parents:
diff changeset
100 assert(is_java_klass(), "must be java klasses");
a61af66fc99e Initial load
duke
parents:
diff changeset
101
a61af66fc99e Initial load
duke
parents:
diff changeset
102 VM_ENTRY_MARK;
a61af66fc99e Initial load
duke
parents:
diff changeset
103 Klass* this_klass = get_Klass();
a61af66fc99e Initial load
duke
parents:
diff changeset
104 return this_klass->super_depth();
a61af66fc99e Initial load
duke
parents:
diff changeset
105 }
a61af66fc99e Initial load
duke
parents:
diff changeset
106
a61af66fc99e Initial load
duke
parents:
diff changeset
107 // ------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
108 // ciKlass::super_check_offset
a61af66fc99e Initial load
duke
parents:
diff changeset
109 juint ciKlass::super_check_offset() {
a61af66fc99e Initial load
duke
parents:
diff changeset
110 assert(is_loaded(), "must be loaded");
a61af66fc99e Initial load
duke
parents:
diff changeset
111 assert(is_java_klass(), "must be java klasses");
a61af66fc99e Initial load
duke
parents:
diff changeset
112
a61af66fc99e Initial load
duke
parents:
diff changeset
113 VM_ENTRY_MARK;
a61af66fc99e Initial load
duke
parents:
diff changeset
114 Klass* this_klass = get_Klass();
a61af66fc99e Initial load
duke
parents:
diff changeset
115 return this_klass->super_check_offset();
a61af66fc99e Initial load
duke
parents:
diff changeset
116 }
a61af66fc99e Initial load
duke
parents:
diff changeset
117
a61af66fc99e Initial load
duke
parents:
diff changeset
118 // ------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
119 // ciKlass::super_of_depth
a61af66fc99e Initial load
duke
parents:
diff changeset
120 ciKlass* ciKlass::super_of_depth(juint i) {
a61af66fc99e Initial load
duke
parents:
diff changeset
121 assert(is_loaded(), "must be loaded");
a61af66fc99e Initial load
duke
parents:
diff changeset
122 assert(is_java_klass(), "must be java klasses");
a61af66fc99e Initial load
duke
parents:
diff changeset
123
a61af66fc99e Initial load
duke
parents:
diff changeset
124 VM_ENTRY_MARK;
a61af66fc99e Initial load
duke
parents:
diff changeset
125 Klass* this_klass = get_Klass();
a61af66fc99e Initial load
duke
parents:
diff changeset
126 klassOop super = this_klass->primary_super_of_depth(i);
a61af66fc99e Initial load
duke
parents:
diff changeset
127 return (super != NULL) ? CURRENT_THREAD_ENV->get_object(super)->as_klass() : NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
128 }
a61af66fc99e Initial load
duke
parents:
diff changeset
129
a61af66fc99e Initial load
duke
parents:
diff changeset
130 // ------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
131 // ciKlass::can_be_primary_super
a61af66fc99e Initial load
duke
parents:
diff changeset
132 bool ciKlass::can_be_primary_super() {
a61af66fc99e Initial load
duke
parents:
diff changeset
133 assert(is_loaded(), "must be loaded");
a61af66fc99e Initial load
duke
parents:
diff changeset
134 assert(is_java_klass(), "must be java klasses");
a61af66fc99e Initial load
duke
parents:
diff changeset
135
a61af66fc99e Initial load
duke
parents:
diff changeset
136 VM_ENTRY_MARK;
a61af66fc99e Initial load
duke
parents:
diff changeset
137 Klass* this_klass = get_Klass();
a61af66fc99e Initial load
duke
parents:
diff changeset
138 return this_klass->can_be_primary_super();
a61af66fc99e Initial load
duke
parents:
diff changeset
139 }
a61af66fc99e Initial load
duke
parents:
diff changeset
140
a61af66fc99e Initial load
duke
parents:
diff changeset
141 // ------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
142 // ciKlass::least_common_ancestor
a61af66fc99e Initial load
duke
parents:
diff changeset
143 //
a61af66fc99e Initial load
duke
parents:
diff changeset
144 // Get the shared parent of two klasses.
a61af66fc99e Initial load
duke
parents:
diff changeset
145 //
a61af66fc99e Initial load
duke
parents:
diff changeset
146 // Implementation note: this method currently goes "over the wall"
a61af66fc99e Initial load
duke
parents:
diff changeset
147 // and does all of the work on the VM side. It could be rewritten
a61af66fc99e Initial load
duke
parents:
diff changeset
148 // to use the super() method and do all of the work (aside from the
a61af66fc99e Initial load
duke
parents:
diff changeset
149 // lazy computation of super()) in native mode. This may be
a61af66fc99e Initial load
duke
parents:
diff changeset
150 // worthwhile if the compiler is repeatedly requesting the same lca
a61af66fc99e Initial load
duke
parents:
diff changeset
151 // computation or possibly if most of the superklasses have already
a61af66fc99e Initial load
duke
parents:
diff changeset
152 // been created as ciObjects anyway. Something to think about...
a61af66fc99e Initial load
duke
parents:
diff changeset
153 ciKlass*
a61af66fc99e Initial load
duke
parents:
diff changeset
154 ciKlass::least_common_ancestor(ciKlass* that) {
a61af66fc99e Initial load
duke
parents:
diff changeset
155 assert(is_loaded() && that->is_loaded(), "must be loaded");
a61af66fc99e Initial load
duke
parents:
diff changeset
156 assert(is_java_klass() && that->is_java_klass(), "must be java klasses");
a61af66fc99e Initial load
duke
parents:
diff changeset
157 // Check to see if the klasses are identical.
a61af66fc99e Initial load
duke
parents:
diff changeset
158 if (this == that) {
a61af66fc99e Initial load
duke
parents:
diff changeset
159 return this;
a61af66fc99e Initial load
duke
parents:
diff changeset
160 }
a61af66fc99e Initial load
duke
parents:
diff changeset
161
a61af66fc99e Initial load
duke
parents:
diff changeset
162 VM_ENTRY_MARK;
a61af66fc99e Initial load
duke
parents:
diff changeset
163 Klass* this_klass = get_Klass();
a61af66fc99e Initial load
duke
parents:
diff changeset
164 Klass* that_klass = that->get_Klass();
a61af66fc99e Initial load
duke
parents:
diff changeset
165 Klass* lca = this_klass->LCA(that_klass);
a61af66fc99e Initial load
duke
parents:
diff changeset
166
a61af66fc99e Initial load
duke
parents:
diff changeset
167 // Many times the LCA will be either this_klass or that_klass.
a61af66fc99e Initial load
duke
parents:
diff changeset
168 // Treat these as special cases.
a61af66fc99e Initial load
duke
parents:
diff changeset
169 if (lca == that_klass) {
a61af66fc99e Initial load
duke
parents:
diff changeset
170 return that;
a61af66fc99e Initial load
duke
parents:
diff changeset
171 }
a61af66fc99e Initial load
duke
parents:
diff changeset
172 if (this_klass == lca) {
a61af66fc99e Initial load
duke
parents:
diff changeset
173 return this;
a61af66fc99e Initial load
duke
parents:
diff changeset
174 }
a61af66fc99e Initial load
duke
parents:
diff changeset
175
a61af66fc99e Initial load
duke
parents:
diff changeset
176 // Create the ciInstanceKlass for the lca.
a61af66fc99e Initial load
duke
parents:
diff changeset
177 ciKlass* result =
a61af66fc99e Initial load
duke
parents:
diff changeset
178 CURRENT_THREAD_ENV->get_object(lca->as_klassOop())->as_klass();
a61af66fc99e Initial load
duke
parents:
diff changeset
179
a61af66fc99e Initial load
duke
parents:
diff changeset
180 return result;
a61af66fc99e Initial load
duke
parents:
diff changeset
181 }
a61af66fc99e Initial load
duke
parents:
diff changeset
182
a61af66fc99e Initial load
duke
parents:
diff changeset
183 // ------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
184 // ciKlass::find_klass
a61af66fc99e Initial load
duke
parents:
diff changeset
185 //
a61af66fc99e Initial load
duke
parents:
diff changeset
186 // Find a klass using this klass's class loader.
a61af66fc99e Initial load
duke
parents:
diff changeset
187 ciKlass* ciKlass::find_klass(ciSymbol* klass_name) {
a61af66fc99e Initial load
duke
parents:
diff changeset
188 assert(is_loaded(), "cannot find_klass through an unloaded klass");
a61af66fc99e Initial load
duke
parents:
diff changeset
189 return CURRENT_ENV->get_klass_by_name(this,
a61af66fc99e Initial load
duke
parents:
diff changeset
190 klass_name, false);
a61af66fc99e Initial load
duke
parents:
diff changeset
191 }
a61af66fc99e Initial load
duke
parents:
diff changeset
192
a61af66fc99e Initial load
duke
parents:
diff changeset
193 // ------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
194 // ciKlass::java_mirror
a61af66fc99e Initial load
duke
parents:
diff changeset
195 ciInstance* ciKlass::java_mirror() {
a61af66fc99e Initial load
duke
parents:
diff changeset
196 GUARDED_VM_ENTRY(
a61af66fc99e Initial load
duke
parents:
diff changeset
197 oop java_mirror = get_Klass()->java_mirror();
a61af66fc99e Initial load
duke
parents:
diff changeset
198 return CURRENT_ENV->get_object(java_mirror)->as_instance();
a61af66fc99e Initial load
duke
parents:
diff changeset
199 )
a61af66fc99e Initial load
duke
parents:
diff changeset
200 }
a61af66fc99e Initial load
duke
parents:
diff changeset
201
a61af66fc99e Initial load
duke
parents:
diff changeset
202 // ------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
203 // ciKlass::modifier_flags
a61af66fc99e Initial load
duke
parents:
diff changeset
204 jint ciKlass::modifier_flags() {
a61af66fc99e Initial load
duke
parents:
diff changeset
205 assert(is_loaded(), "not loaded");
a61af66fc99e Initial load
duke
parents:
diff changeset
206 GUARDED_VM_ENTRY(
a61af66fc99e Initial load
duke
parents:
diff changeset
207 return get_Klass()->modifier_flags();
a61af66fc99e Initial load
duke
parents:
diff changeset
208 )
a61af66fc99e Initial load
duke
parents:
diff changeset
209 }
a61af66fc99e Initial load
duke
parents:
diff changeset
210
a61af66fc99e Initial load
duke
parents:
diff changeset
211 // ------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
212 // ciKlass::access_flags
a61af66fc99e Initial load
duke
parents:
diff changeset
213 jint ciKlass::access_flags() {
a61af66fc99e Initial load
duke
parents:
diff changeset
214 assert(is_loaded(), "not loaded");
a61af66fc99e Initial load
duke
parents:
diff changeset
215 GUARDED_VM_ENTRY(
a61af66fc99e Initial load
duke
parents:
diff changeset
216 return get_Klass()->access_flags().as_int();
a61af66fc99e Initial load
duke
parents:
diff changeset
217 )
a61af66fc99e Initial load
duke
parents:
diff changeset
218 }
a61af66fc99e Initial load
duke
parents:
diff changeset
219
a61af66fc99e Initial load
duke
parents:
diff changeset
220 // ------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
221 // ciKlass::print_impl
a61af66fc99e Initial load
duke
parents:
diff changeset
222 //
a61af66fc99e Initial load
duke
parents:
diff changeset
223 // Implementation of the print method
a61af66fc99e Initial load
duke
parents:
diff changeset
224 void ciKlass::print_impl(outputStream* st) {
a61af66fc99e Initial load
duke
parents:
diff changeset
225 st->print(" name=");
a61af66fc99e Initial load
duke
parents:
diff changeset
226 print_name_on(st);
a61af66fc99e Initial load
duke
parents:
diff changeset
227 }
a61af66fc99e Initial load
duke
parents:
diff changeset
228
a61af66fc99e Initial load
duke
parents:
diff changeset
229 // ------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
230 // ciKlass::print_name
a61af66fc99e Initial load
duke
parents:
diff changeset
231 //
a61af66fc99e Initial load
duke
parents:
diff changeset
232 // Print the name of this klass
a61af66fc99e Initial load
duke
parents:
diff changeset
233 void ciKlass::print_name_on(outputStream* st) {
a61af66fc99e Initial load
duke
parents:
diff changeset
234 name()->print_symbol_on(st);
a61af66fc99e Initial load
duke
parents:
diff changeset
235 }