author | xdono |
Mon, 09 Mar 2009 13:28:46 -0700 | |
changeset 2105 | 347008ce7984 |
parent 1894 | 5c343868d071 |
child 4584 | e2a449e8cc6f |
permissions | -rw-r--r-- |
1 | 1 |
/* |
2105 | 2 |
* Copyright 2003-2009 Sun Microsystems, Inc. All Rights Reserved. |
1 | 3 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
4 |
* |
|
5 |
* This code is free software; you can redistribute it and/or modify it |
|
6 |
* under the terms of the GNU General Public License version 2 only, as |
|
7 |
* published by the Free Software Foundation. |
|
8 |
* |
|
9 |
* This code is distributed in the hope that it will be useful, but WITHOUT |
|
10 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
11 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
12 |
* version 2 for more details (a copy is included in the LICENSE file that |
|
13 |
* accompanied this code). |
|
14 |
* |
|
15 |
* You should have received a copy of the GNU General Public License version |
|
16 |
* 2 along with this work; if not, write to the Free Software Foundation, |
|
17 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
|
18 |
* |
|
19 |
* Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara, |
|
20 |
* CA 95054 USA or visit www.sun.com if you need additional information or |
|
21 |
* have any questions. |
|
22 |
* |
|
23 |
*/ |
|
24 |
||
25 |
# include "incls/_precompiled.incl" |
|
26 |
# include "incls/_constMethodKlass.cpp.incl" |
|
27 |
||
28 |
||
29 |
klassOop constMethodKlass::create_klass(TRAPS) { |
|
30 |
constMethodKlass o; |
|
31 |
KlassHandle h_this_klass(THREAD, Universe::klassKlassObj()); |
|
32 |
KlassHandle k = base_create_klass(h_this_klass, header_size(), |
|
33 |
o.vtbl_value(), CHECK_NULL); |
|
34 |
// Make sure size calculation is right |
|
35 |
assert(k()->size() == align_object_size(header_size()), |
|
36 |
"wrong size for object"); |
|
37 |
//java_lang_Class::create_mirror(k, CHECK_NULL); // Allocate mirror |
|
38 |
return k(); |
|
39 |
} |
|
40 |
||
41 |
||
42 |
int constMethodKlass::oop_size(oop obj) const { |
|
43 |
assert(obj->is_constMethod(), "must be constMethod oop"); |
|
44 |
return constMethodOop(obj)->object_size(); |
|
45 |
} |
|
46 |
||
47 |
bool constMethodKlass::oop_is_parsable(oop obj) const { |
|
48 |
assert(obj->is_constMethod(), "must be constMethod oop"); |
|
49 |
return constMethodOop(obj)->object_is_parsable(); |
|
50 |
} |
|
51 |
||
1894
5c343868d071
6692899: CMS: many vm.parallel_class_loading tests fail with assert "missing Printezis mark"
jmasa
parents:
1
diff
changeset
|
52 |
bool constMethodKlass::oop_is_conc_safe(oop obj) const { |
5c343868d071
6692899: CMS: many vm.parallel_class_loading tests fail with assert "missing Printezis mark"
jmasa
parents:
1
diff
changeset
|
53 |
assert(obj->is_constMethod(), "must be constMethod oop"); |
5c343868d071
6692899: CMS: many vm.parallel_class_loading tests fail with assert "missing Printezis mark"
jmasa
parents:
1
diff
changeset
|
54 |
return constMethodOop(obj)->is_conc_safe(); |
5c343868d071
6692899: CMS: many vm.parallel_class_loading tests fail with assert "missing Printezis mark"
jmasa
parents:
1
diff
changeset
|
55 |
} |
5c343868d071
6692899: CMS: many vm.parallel_class_loading tests fail with assert "missing Printezis mark"
jmasa
parents:
1
diff
changeset
|
56 |
|
1 | 57 |
constMethodOop constMethodKlass::allocate(int byte_code_size, |
58 |
int compressed_line_number_size, |
|
59 |
int localvariable_table_length, |
|
60 |
int checked_exceptions_length, |
|
1894
5c343868d071
6692899: CMS: many vm.parallel_class_loading tests fail with assert "missing Printezis mark"
jmasa
parents:
1
diff
changeset
|
61 |
bool is_conc_safe, |
1 | 62 |
TRAPS) { |
63 |
||
64 |
int size = constMethodOopDesc::object_size(byte_code_size, |
|
65 |
compressed_line_number_size, |
|
66 |
localvariable_table_length, |
|
67 |
checked_exceptions_length); |
|
68 |
KlassHandle h_k(THREAD, as_klassOop()); |
|
69 |
constMethodOop cm = (constMethodOop) |
|
70 |
CollectedHeap::permanent_obj_allocate(h_k, size, CHECK_NULL); |
|
71 |
assert(!cm->is_parsable(), "Not yet safely parsable"); |
|
72 |
No_Safepoint_Verifier no_safepoint; |
|
73 |
cm->set_interpreter_kind(Interpreter::invalid); |
|
74 |
cm->init_fingerprint(); |
|
75 |
cm->set_method(NULL); |
|
76 |
cm->set_stackmap_data(NULL); |
|
77 |
cm->set_exception_table(NULL); |
|
78 |
cm->set_code_size(byte_code_size); |
|
79 |
cm->set_constMethod_size(size); |
|
80 |
cm->set_inlined_tables_length(checked_exceptions_length, |
|
81 |
compressed_line_number_size, |
|
82 |
localvariable_table_length); |
|
83 |
assert(cm->size() == size, "wrong size for object"); |
|
1894
5c343868d071
6692899: CMS: many vm.parallel_class_loading tests fail with assert "missing Printezis mark"
jmasa
parents:
1
diff
changeset
|
84 |
cm->set_is_conc_safe(is_conc_safe); |
1 | 85 |
cm->set_partially_loaded(); |
86 |
assert(cm->is_parsable(), "Is safely parsable by gc"); |
|
87 |
return cm; |
|
88 |
} |
|
89 |
||
90 |
void constMethodKlass::oop_follow_contents(oop obj) { |
|
91 |
assert (obj->is_constMethod(), "object must be constMethod"); |
|
92 |
constMethodOop cm = constMethodOop(obj); |
|
93 |
MarkSweep::mark_and_push(cm->adr_method()); |
|
94 |
MarkSweep::mark_and_push(cm->adr_stackmap_data()); |
|
95 |
MarkSweep::mark_and_push(cm->adr_exception_table()); |
|
96 |
// Performance tweak: We skip iterating over the klass pointer since we |
|
97 |
// know that Universe::constMethodKlassObj never moves. |
|
98 |
} |
|
99 |
||
100 |
#ifndef SERIALGC |
|
101 |
void constMethodKlass::oop_follow_contents(ParCompactionManager* cm, |
|
102 |
oop obj) { |
|
103 |
assert (obj->is_constMethod(), "object must be constMethod"); |
|
104 |
constMethodOop cm_oop = constMethodOop(obj); |
|
105 |
PSParallelCompact::mark_and_push(cm, cm_oop->adr_method()); |
|
106 |
PSParallelCompact::mark_and_push(cm, cm_oop->adr_stackmap_data()); |
|
107 |
PSParallelCompact::mark_and_push(cm, cm_oop->adr_exception_table()); |
|
108 |
// Performance tweak: We skip iterating over the klass pointer since we |
|
109 |
// know that Universe::constMethodKlassObj never moves. |
|
110 |
} |
|
111 |
#endif // SERIALGC |
|
112 |
||
113 |
int constMethodKlass::oop_oop_iterate(oop obj, OopClosure* blk) { |
|
114 |
assert (obj->is_constMethod(), "object must be constMethod"); |
|
115 |
constMethodOop cm = constMethodOop(obj); |
|
116 |
blk->do_oop(cm->adr_method()); |
|
117 |
blk->do_oop(cm->adr_stackmap_data()); |
|
118 |
blk->do_oop(cm->adr_exception_table()); |
|
119 |
// Get size before changing pointers. |
|
120 |
// Don't call size() or oop_size() since that is a virtual call. |
|
121 |
int size = cm->object_size(); |
|
122 |
return size; |
|
123 |
} |
|
124 |
||
125 |
||
126 |
int constMethodKlass::oop_oop_iterate_m(oop obj, OopClosure* blk, MemRegion mr) { |
|
127 |
assert (obj->is_constMethod(), "object must be constMethod"); |
|
128 |
constMethodOop cm = constMethodOop(obj); |
|
129 |
oop* adr; |
|
130 |
adr = cm->adr_method(); |
|
131 |
if (mr.contains(adr)) blk->do_oop(adr); |
|
132 |
adr = cm->adr_stackmap_data(); |
|
133 |
if (mr.contains(adr)) blk->do_oop(adr); |
|
134 |
adr = cm->adr_exception_table(); |
|
135 |
if (mr.contains(adr)) blk->do_oop(adr); |
|
136 |
// Get size before changing pointers. |
|
137 |
// Don't call size() or oop_size() since that is a virtual call. |
|
138 |
int size = cm->object_size(); |
|
139 |
// Performance tweak: We skip iterating over the klass pointer since we |
|
140 |
// know that Universe::constMethodKlassObj never moves. |
|
141 |
return size; |
|
142 |
} |
|
143 |
||
144 |
||
145 |
int constMethodKlass::oop_adjust_pointers(oop obj) { |
|
146 |
assert(obj->is_constMethod(), "should be constMethod"); |
|
147 |
constMethodOop cm = constMethodOop(obj); |
|
148 |
MarkSweep::adjust_pointer(cm->adr_method()); |
|
149 |
MarkSweep::adjust_pointer(cm->adr_stackmap_data()); |
|
150 |
MarkSweep::adjust_pointer(cm->adr_exception_table()); |
|
151 |
// Get size before changing pointers. |
|
152 |
// Don't call size() or oop_size() since that is a virtual call. |
|
153 |
int size = cm->object_size(); |
|
154 |
// Performance tweak: We skip iterating over the klass pointer since we |
|
155 |
// know that Universe::constMethodKlassObj never moves. |
|
156 |
return size; |
|
157 |
} |
|
158 |
||
159 |
#ifndef SERIALGC |
|
160 |
void constMethodKlass::oop_copy_contents(PSPromotionManager* pm, oop obj) { |
|
161 |
assert(obj->is_constMethod(), "should be constMethod"); |
|
162 |
} |
|
163 |
||
164 |
void constMethodKlass::oop_push_contents(PSPromotionManager* pm, oop obj) { |
|
165 |
assert(obj->is_constMethod(), "should be constMethod"); |
|
166 |
} |
|
167 |
||
168 |
int constMethodKlass::oop_update_pointers(ParCompactionManager* cm, oop obj) { |
|
169 |
assert(obj->is_constMethod(), "should be constMethod"); |
|
170 |
constMethodOop cm_oop = constMethodOop(obj); |
|
171 |
#if 0 |
|
172 |
PSParallelCompact::adjust_pointer(cm_oop->adr_method()); |
|
173 |
PSParallelCompact::adjust_pointer(cm_oop->adr_exception_table()); |
|
174 |
PSParallelCompact::adjust_pointer(cm_oop->adr_stackmap_data()); |
|
175 |
#endif |
|
176 |
oop* const beg_oop = cm_oop->oop_block_beg(); |
|
177 |
oop* const end_oop = cm_oop->oop_block_end(); |
|
178 |
for (oop* cur_oop = beg_oop; cur_oop < end_oop; ++cur_oop) { |
|
179 |
PSParallelCompact::adjust_pointer(cur_oop); |
|
180 |
} |
|
181 |
return cm_oop->object_size(); |
|
182 |
} |
|
183 |
||
184 |
int constMethodKlass::oop_update_pointers(ParCompactionManager* cm, oop obj, |
|
185 |
HeapWord* beg_addr, |
|
186 |
HeapWord* end_addr) { |
|
187 |
assert(obj->is_constMethod(), "should be constMethod"); |
|
188 |
constMethodOop cm_oop = constMethodOop(obj); |
|
189 |
||
190 |
oop* const beg_oop = MAX2((oop*)beg_addr, cm_oop->oop_block_beg()); |
|
191 |
oop* const end_oop = MIN2((oop*)end_addr, cm_oop->oop_block_end()); |
|
192 |
for (oop* cur_oop = beg_oop; cur_oop < end_oop; ++cur_oop) { |
|
193 |
PSParallelCompact::adjust_pointer(cur_oop); |
|
194 |
} |
|
195 |
||
196 |
return cm_oop->object_size(); |
|
197 |
} |
|
198 |
#endif // SERIALGC |
|
199 |
||
200 |
#ifndef PRODUCT |
|
201 |
||
202 |
// Printing |
|
203 |
||
204 |
void constMethodKlass::oop_print_on(oop obj, outputStream* st) { |
|
205 |
ResourceMark rm; |
|
206 |
assert(obj->is_constMethod(), "must be constMethod"); |
|
207 |
Klass::oop_print_on(obj, st); |
|
208 |
constMethodOop m = constMethodOop(obj); |
|
209 |
st->print(" - method: " INTPTR_FORMAT " ", (address)m->method()); |
|
210 |
m->method()->print_value_on(st); st->cr(); |
|
211 |
st->print(" - exceptions: " INTPTR_FORMAT "\n", (address)m->exception_table()); |
|
212 |
if (m->has_stackmap_table()) { |
|
213 |
st->print(" - stackmap data: "); |
|
214 |
m->stackmap_data()->print_value_on(st); |
|
215 |
st->cr(); |
|
216 |
} |
|
217 |
} |
|
218 |
||
219 |
||
220 |
// Short version of printing constMethodOop - just print the name of the |
|
221 |
// method it belongs to. |
|
222 |
void constMethodKlass::oop_print_value_on(oop obj, outputStream* st) { |
|
223 |
assert(obj->is_constMethod(), "must be constMethod"); |
|
224 |
constMethodOop m = constMethodOop(obj); |
|
225 |
st->print(" const part of method " ); |
|
226 |
m->method()->print_value_on(st); |
|
227 |
} |
|
228 |
||
229 |
#endif // PRODUCT |
|
230 |
||
231 |
const char* constMethodKlass::internal_name() const { |
|
232 |
return "{constMethod}"; |
|
233 |
} |
|
234 |
||
235 |
||
236 |
// Verification |
|
237 |
||
238 |
void constMethodKlass::oop_verify_on(oop obj, outputStream* st) { |
|
239 |
Klass::oop_verify_on(obj, st); |
|
240 |
guarantee(obj->is_constMethod(), "object must be constMethod"); |
|
241 |
constMethodOop m = constMethodOop(obj); |
|
242 |
guarantee(m->is_perm(), "should be in permspace"); |
|
243 |
||
244 |
// Verification can occur during oop construction before the method or |
|
245 |
// other fields have been initialized. |
|
246 |
if (!obj->partially_loaded()) { |
|
247 |
guarantee(m->method()->is_perm(), "should be in permspace"); |
|
248 |
guarantee(m->method()->is_method(), "should be method"); |
|
249 |
typeArrayOop stackmap_data = m->stackmap_data(); |
|
250 |
guarantee(stackmap_data == NULL || |
|
251 |
stackmap_data->is_perm(), "should be in permspace"); |
|
252 |
guarantee(m->exception_table()->is_perm(), "should be in permspace"); |
|
253 |
guarantee(m->exception_table()->is_typeArray(), "should be type array"); |
|
254 |
||
255 |
address m_end = (address)((oop*) m + m->size()); |
|
256 |
address compressed_table_start = m->code_end(); |
|
257 |
guarantee(compressed_table_start <= m_end, "invalid method layout"); |
|
258 |
address compressed_table_end = compressed_table_start; |
|
259 |
// Verify line number table |
|
260 |
if (m->has_linenumber_table()) { |
|
261 |
CompressedLineNumberReadStream stream(m->compressed_linenumber_table()); |
|
262 |
while (stream.read_pair()) { |
|
263 |
guarantee(stream.bci() >= 0 && stream.bci() <= m->code_size(), "invalid bci in line number table"); |
|
264 |
} |
|
265 |
compressed_table_end += stream.position(); |
|
266 |
} |
|
267 |
guarantee(compressed_table_end <= m_end, "invalid method layout"); |
|
268 |
// Verify checked exceptions and local variable tables |
|
269 |
if (m->has_checked_exceptions()) { |
|
270 |
u2* addr = m->checked_exceptions_length_addr(); |
|
271 |
guarantee(*addr > 0 && (address) addr >= compressed_table_end && (address) addr < m_end, "invalid method layout"); |
|
272 |
} |
|
273 |
if (m->has_localvariable_table()) { |
|
274 |
u2* addr = m->localvariable_table_length_addr(); |
|
275 |
guarantee(*addr > 0 && (address) addr >= compressed_table_end && (address) addr < m_end, "invalid method layout"); |
|
276 |
} |
|
277 |
// Check compressed_table_end relative to uncompressed_table_start |
|
278 |
u2* uncompressed_table_start; |
|
279 |
if (m->has_localvariable_table()) { |
|
280 |
uncompressed_table_start = (u2*) m->localvariable_table_start(); |
|
281 |
} else { |
|
282 |
if (m->has_checked_exceptions()) { |
|
283 |
uncompressed_table_start = (u2*) m->checked_exceptions_start(); |
|
284 |
} else { |
|
285 |
uncompressed_table_start = (u2*) m_end; |
|
286 |
} |
|
287 |
} |
|
288 |
int gap = (intptr_t) uncompressed_table_start - (intptr_t) compressed_table_end; |
|
289 |
int max_gap = align_object_size(1)*BytesPerWord; |
|
290 |
guarantee(gap >= 0 && gap < max_gap, "invalid method layout"); |
|
291 |
} |
|
292 |
} |
|
293 |
||
294 |
bool constMethodKlass::oop_partially_loaded(oop obj) const { |
|
295 |
assert(obj->is_constMethod(), "object must be klass"); |
|
296 |
constMethodOop m = constMethodOop(obj); |
|
297 |
// check whether exception_table points to self (flag for partially loaded) |
|
298 |
return m->exception_table() == (typeArrayOop)obj; |
|
299 |
} |
|
300 |
||
301 |
||
302 |
// The exception_table is the last field set when loading an object. |
|
303 |
void constMethodKlass::oop_set_partially_loaded(oop obj) { |
|
304 |
assert(obj->is_constMethod(), "object must be klass"); |
|
305 |
constMethodOop m = constMethodOop(obj); |
|
306 |
// Temporarily set exception_table to point to self |
|
307 |
m->set_exception_table((typeArrayOop)obj); |
|
308 |
} |