src/share/vm/oops/constantPoolKlass.cpp

Thu, 22 Jul 2010 10:27:41 -0400

author
tonyp
date
Thu, 22 Jul 2010 10:27:41 -0400
changeset 2061
9d7a8ab3736b
parent 2015
083fde3b838e
child 2068
7fcd5f39bd7a
permissions
-rw-r--r--

6962589: remove breadth first scanning code from parallel gc
Summary: Remove the breadth-first copying order from ParallelScavenge and use depth-first by default.
Reviewed-by: jcoomes, ysr, johnc

duke@435 1 /*
trims@1907 2 * Copyright (c) 1997, 2009, Oracle and/or its affiliates. All rights reserved.
duke@435 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
duke@435 4 *
duke@435 5 * This code is free software; you can redistribute it and/or modify it
duke@435 6 * under the terms of the GNU General Public License version 2 only, as
duke@435 7 * published by the Free Software Foundation.
duke@435 8 *
duke@435 9 * This code is distributed in the hope that it will be useful, but WITHOUT
duke@435 10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
duke@435 11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
duke@435 12 * version 2 for more details (a copy is included in the LICENSE file that
duke@435 13 * accompanied this code).
duke@435 14 *
duke@435 15 * You should have received a copy of the GNU General Public License version
duke@435 16 * 2 along with this work; if not, write to the Free Software Foundation,
duke@435 17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
duke@435 18 *
trims@1907 19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
trims@1907 20 * or visit www.oracle.com if you need additional information or have any
trims@1907 21 * questions.
duke@435 22 *
duke@435 23 */
duke@435 24
duke@435 25 # include "incls/_precompiled.incl"
duke@435 26 # include "incls/_constantPoolKlass.cpp.incl"
duke@435 27
jmasa@953 28 constantPoolOop constantPoolKlass::allocate(int length, bool is_conc_safe, TRAPS) {
duke@435 29 int size = constantPoolOopDesc::object_size(length);
duke@435 30 KlassHandle klass (THREAD, as_klassOop());
duke@435 31 constantPoolOop c =
coleenp@548 32 (constantPoolOop)CollectedHeap::permanent_obj_allocate(klass, size, CHECK_NULL);
duke@435 33
coleenp@548 34 c->set_length(length);
duke@435 35 c->set_tags(NULL);
duke@435 36 c->set_cache(NULL);
duke@435 37 c->set_pool_holder(NULL);
jrose@866 38 c->set_flags(0);
duke@435 39 // only set to non-zero if constant pool is merged by RedefineClasses
duke@435 40 c->set_orig_length(0);
jmasa@953 41 // if constant pool may change during RedefineClasses, it is created
jmasa@953 42 // unsafe for GC concurrent processing.
jmasa@953 43 c->set_is_conc_safe(is_conc_safe);
duke@435 44 // all fields are initialized; needed for GC
duke@435 45
duke@435 46 // initialize tag array
duke@435 47 // Note: cannot introduce constant pool handle before since it is not
duke@435 48 // completely initialized (no class) -> would cause assertion failure
duke@435 49 constantPoolHandle pool (THREAD, c);
duke@435 50 typeArrayOop t_oop = oopFactory::new_permanent_byteArray(length, CHECK_NULL);
duke@435 51 typeArrayHandle tags (THREAD, t_oop);
duke@435 52 for (int index = 0; index < length; index++) {
duke@435 53 tags()->byte_at_put(index, JVM_CONSTANT_Invalid);
duke@435 54 }
duke@435 55 pool->set_tags(tags());
duke@435 56
duke@435 57 return pool();
duke@435 58 }
duke@435 59
duke@435 60 klassOop constantPoolKlass::create_klass(TRAPS) {
duke@435 61 constantPoolKlass o;
coleenp@548 62 KlassHandle h_this_klass(THREAD, Universe::klassKlassObj());
coleenp@548 63 KlassHandle k = base_create_klass(h_this_klass, header_size(), o.vtbl_value(), CHECK_NULL);
coleenp@548 64 // Make sure size calculation is right
coleenp@548 65 assert(k()->size() == align_object_size(header_size()), "wrong size for object");
coleenp@548 66 java_lang_Class::create_mirror(k, CHECK_NULL); // Allocate mirror
duke@435 67 return k();
duke@435 68 }
duke@435 69
duke@435 70 int constantPoolKlass::oop_size(oop obj) const {
duke@435 71 assert(obj->is_constantPool(), "must be constantPool");
duke@435 72 return constantPoolOop(obj)->object_size();
duke@435 73 }
duke@435 74
duke@435 75
duke@435 76 void constantPoolKlass::oop_follow_contents(oop obj) {
duke@435 77 assert (obj->is_constantPool(), "obj must be constant pool");
duke@435 78 constantPoolOop cp = (constantPoolOop) obj;
duke@435 79 // Performance tweak: We skip iterating over the klass pointer since we
duke@435 80 // know that Universe::constantPoolKlassObj never moves.
duke@435 81
duke@435 82 // If the tags array is null we are in the middle of allocating this constant pool
duke@435 83 if (cp->tags() != NULL) {
duke@435 84 // gc of constant pool contents
duke@435 85 oop* base = (oop*)cp->base();
duke@435 86 for (int i = 0; i < cp->length(); i++) {
duke@435 87 if (cp->is_pointer_entry(i)) {
duke@435 88 if (*base != NULL) MarkSweep::mark_and_push(base);
duke@435 89 }
duke@435 90 base++;
duke@435 91 }
duke@435 92 // gc of constant pool instance variables
duke@435 93 MarkSweep::mark_and_push(cp->tags_addr());
duke@435 94 MarkSweep::mark_and_push(cp->cache_addr());
duke@435 95 MarkSweep::mark_and_push(cp->pool_holder_addr());
duke@435 96 }
duke@435 97 }
duke@435 98
duke@435 99 #ifndef SERIALGC
duke@435 100 void constantPoolKlass::oop_follow_contents(ParCompactionManager* cm,
duke@435 101 oop obj) {
duke@435 102 assert (obj->is_constantPool(), "obj must be constant pool");
duke@435 103 constantPoolOop cp = (constantPoolOop) obj;
duke@435 104 // Performance tweak: We skip iterating over the klass pointer since we
duke@435 105 // know that Universe::constantPoolKlassObj never moves.
duke@435 106
duke@435 107 // If the tags array is null we are in the middle of allocating this constant
duke@435 108 // pool.
duke@435 109 if (cp->tags() != NULL) {
duke@435 110 // gc of constant pool contents
duke@435 111 oop* base = (oop*)cp->base();
duke@435 112 for (int i = 0; i < cp->length(); i++) {
duke@435 113 if (cp->is_pointer_entry(i)) {
duke@435 114 if (*base != NULL) PSParallelCompact::mark_and_push(cm, base);
duke@435 115 }
duke@435 116 base++;
duke@435 117 }
duke@435 118 // gc of constant pool instance variables
duke@435 119 PSParallelCompact::mark_and_push(cm, cp->tags_addr());
duke@435 120 PSParallelCompact::mark_and_push(cm, cp->cache_addr());
duke@435 121 PSParallelCompact::mark_and_push(cm, cp->pool_holder_addr());
duke@435 122 }
duke@435 123 }
duke@435 124 #endif // SERIALGC
duke@435 125
duke@435 126
duke@435 127 int constantPoolKlass::oop_adjust_pointers(oop obj) {
duke@435 128 assert (obj->is_constantPool(), "obj must be constant pool");
duke@435 129 constantPoolOop cp = (constantPoolOop) obj;
duke@435 130 // Get size before changing pointers.
duke@435 131 // Don't call size() or oop_size() since that is a virtual call.
duke@435 132 int size = cp->object_size();
duke@435 133 // Performance tweak: We skip iterating over the klass pointer since we
duke@435 134 // know that Universe::constantPoolKlassObj never moves.
duke@435 135
duke@435 136 // If the tags array is null we are in the middle of allocating this constant
duke@435 137 // pool.
duke@435 138 if (cp->tags() != NULL) {
duke@435 139 oop* base = (oop*)cp->base();
duke@435 140 for (int i = 0; i< cp->length(); i++) {
duke@435 141 if (cp->is_pointer_entry(i)) {
duke@435 142 MarkSweep::adjust_pointer(base);
duke@435 143 }
duke@435 144 base++;
duke@435 145 }
duke@435 146 }
duke@435 147 MarkSweep::adjust_pointer(cp->tags_addr());
duke@435 148 MarkSweep::adjust_pointer(cp->cache_addr());
duke@435 149 MarkSweep::adjust_pointer(cp->pool_holder_addr());
duke@435 150 return size;
duke@435 151 }
duke@435 152
duke@435 153
duke@435 154 int constantPoolKlass::oop_oop_iterate(oop obj, OopClosure* blk) {
duke@435 155 assert (obj->is_constantPool(), "obj must be constant pool");
duke@435 156 // Performance tweak: We skip iterating over the klass pointer since we
duke@435 157 // know that Universe::constantPoolKlassObj never moves.
duke@435 158 constantPoolOop cp = (constantPoolOop) obj;
duke@435 159 // Get size before changing pointers.
duke@435 160 // Don't call size() or oop_size() since that is a virtual call.
duke@435 161 int size = cp->object_size();
duke@435 162
duke@435 163 // If the tags array is null we are in the middle of allocating this constant
duke@435 164 // pool.
duke@435 165 if (cp->tags() != NULL) {
duke@435 166 oop* base = (oop*)cp->base();
duke@435 167 for (int i = 0; i < cp->length(); i++) {
duke@435 168 if (cp->is_pointer_entry(i)) {
duke@435 169 blk->do_oop(base);
duke@435 170 }
duke@435 171 base++;
duke@435 172 }
duke@435 173 }
duke@435 174 blk->do_oop(cp->tags_addr());
duke@435 175 blk->do_oop(cp->cache_addr());
duke@435 176 blk->do_oop(cp->pool_holder_addr());
duke@435 177 return size;
duke@435 178 }
duke@435 179
duke@435 180
duke@435 181 int constantPoolKlass::oop_oop_iterate_m(oop obj, OopClosure* blk, MemRegion mr) {
duke@435 182 assert (obj->is_constantPool(), "obj must be constant pool");
duke@435 183 // Performance tweak: We skip iterating over the klass pointer since we
duke@435 184 // know that Universe::constantPoolKlassObj never moves.
duke@435 185 constantPoolOop cp = (constantPoolOop) obj;
duke@435 186 // Get size before changing pointers.
duke@435 187 // Don't call size() or oop_size() since that is a virtual call.
duke@435 188 int size = cp->object_size();
duke@435 189
duke@435 190 // If the tags array is null we are in the middle of allocating this constant
duke@435 191 // pool.
duke@435 192 if (cp->tags() != NULL) {
duke@435 193 oop* base = (oop*)cp->base();
duke@435 194 for (int i = 0; i < cp->length(); i++) {
duke@435 195 if (mr.contains(base)) {
duke@435 196 if (cp->is_pointer_entry(i)) {
duke@435 197 blk->do_oop(base);
duke@435 198 }
duke@435 199 }
duke@435 200 base++;
duke@435 201 }
duke@435 202 }
duke@435 203 oop* addr;
duke@435 204 addr = cp->tags_addr();
duke@435 205 blk->do_oop(addr);
duke@435 206 addr = cp->cache_addr();
duke@435 207 blk->do_oop(addr);
duke@435 208 addr = cp->pool_holder_addr();
duke@435 209 blk->do_oop(addr);
duke@435 210 return size;
duke@435 211 }
duke@435 212
jmasa@953 213 bool constantPoolKlass::oop_is_conc_safe(oop obj) const {
jmasa@953 214 assert(obj->is_constantPool(), "must be constantPool");
jmasa@953 215 return constantPoolOop(obj)->is_conc_safe();
jmasa@953 216 }
jmasa@953 217
duke@435 218 #ifndef SERIALGC
duke@435 219 int constantPoolKlass::oop_update_pointers(ParCompactionManager* cm, oop obj) {
duke@435 220 assert (obj->is_constantPool(), "obj must be constant pool");
duke@435 221 constantPoolOop cp = (constantPoolOop) obj;
duke@435 222
duke@435 223 // If the tags array is null we are in the middle of allocating this constant
duke@435 224 // pool.
duke@435 225 if (cp->tags() != NULL) {
duke@435 226 oop* base = (oop*)cp->base();
duke@435 227 for (int i = 0; i < cp->length(); ++i, ++base) {
duke@435 228 if (cp->is_pointer_entry(i)) {
duke@435 229 PSParallelCompact::adjust_pointer(base);
duke@435 230 }
duke@435 231 }
duke@435 232 }
duke@435 233 PSParallelCompact::adjust_pointer(cp->tags_addr());
duke@435 234 PSParallelCompact::adjust_pointer(cp->cache_addr());
duke@435 235 PSParallelCompact::adjust_pointer(cp->pool_holder_addr());
duke@435 236 return cp->object_size();
duke@435 237 }
duke@435 238
duke@435 239 int
duke@435 240 constantPoolKlass::oop_update_pointers(ParCompactionManager* cm, oop obj,
duke@435 241 HeapWord* beg_addr, HeapWord* end_addr) {
duke@435 242 assert (obj->is_constantPool(), "obj must be constant pool");
duke@435 243 constantPoolOop cp = (constantPoolOop) obj;
duke@435 244
duke@435 245 // If the tags array is null we are in the middle of allocating this constant
duke@435 246 // pool.
duke@435 247 if (cp->tags() != NULL) {
duke@435 248 oop* base = (oop*)cp->base();
duke@435 249 oop* const beg_oop = MAX2((oop*)beg_addr, base);
duke@435 250 oop* const end_oop = MIN2((oop*)end_addr, base + cp->length());
duke@435 251 const size_t beg_idx = pointer_delta(beg_oop, base, sizeof(oop*));
duke@435 252 const size_t end_idx = pointer_delta(end_oop, base, sizeof(oop*));
duke@435 253 for (size_t cur_idx = beg_idx; cur_idx < end_idx; ++cur_idx, ++base) {
duke@435 254 if (cp->is_pointer_entry(int(cur_idx))) {
duke@435 255 PSParallelCompact::adjust_pointer(base);
duke@435 256 }
duke@435 257 }
duke@435 258 }
duke@435 259
duke@435 260 oop* p;
duke@435 261 p = cp->tags_addr();
duke@435 262 PSParallelCompact::adjust_pointer(p, beg_addr, end_addr);
duke@435 263 p = cp->cache_addr();
duke@435 264 PSParallelCompact::adjust_pointer(p, beg_addr, end_addr);
duke@435 265 p = cp->pool_holder_addr();
duke@435 266 PSParallelCompact::adjust_pointer(p, beg_addr, end_addr);
duke@435 267
duke@435 268 return cp->object_size();
duke@435 269 }
duke@435 270
duke@435 271 void constantPoolKlass::oop_push_contents(PSPromotionManager* pm, oop obj) {
duke@435 272 assert(obj->is_constantPool(), "should be constant pool");
jrose@866 273 constantPoolOop cp = (constantPoolOop) obj;
jrose@866 274 if (AnonymousClasses && cp->has_pseudo_string() && cp->tags() != NULL) {
jrose@866 275 oop* base = (oop*)cp->base();
jrose@866 276 for (int i = 0; i < cp->length(); ++i, ++base) {
jrose@866 277 if (cp->tag_at(i).is_string()) {
jrose@866 278 if (PSScavenge::should_scavenge(base)) {
jrose@866 279 pm->claim_or_forward_depth(base);
jrose@866 280 }
jrose@866 281 }
jrose@866 282 }
jrose@866 283 }
duke@435 284 }
duke@435 285 #endif // SERIALGC
duke@435 286
duke@435 287 #ifndef PRODUCT
duke@435 288
duke@435 289 // Printing
duke@435 290
duke@435 291 void constantPoolKlass::oop_print_on(oop obj, outputStream* st) {
duke@435 292 EXCEPTION_MARK;
duke@435 293 oop anObj;
duke@435 294 assert(obj->is_constantPool(), "must be constantPool");
coleenp@548 295 Klass::oop_print_on(obj, st);
duke@435 296 constantPoolOop cp = constantPoolOop(obj);
jrose@866 297 if (cp->flags() != 0) {
jrose@1928 298 st->print(" - flags: 0x%x", cp->flags());
jrose@866 299 if (cp->has_pseudo_string()) st->print(" has_pseudo_string");
jrose@1161 300 if (cp->has_invokedynamic()) st->print(" has_invokedynamic");
jrose@866 301 st->cr();
jrose@866 302 }
jrose@1928 303 st->print_cr(" - cache: " INTPTR_FORMAT, cp->cache());
duke@435 304
duke@435 305 for (int index = 1; index < cp->length(); index++) { // Index 0 is unused
duke@435 306 st->print(" - %3d : ", index);
duke@435 307 cp->tag_at(index).print_on(st);
duke@435 308 st->print(" : ");
duke@435 309 switch (cp->tag_at(index).value()) {
duke@435 310 case JVM_CONSTANT_Class :
duke@435 311 { anObj = cp->klass_at(index, CATCH);
duke@435 312 anObj->print_value_on(st);
duke@435 313 st->print(" {0x%lx}", (address)anObj);
duke@435 314 }
duke@435 315 break;
duke@435 316 case JVM_CONSTANT_Fieldref :
duke@435 317 case JVM_CONSTANT_Methodref :
duke@435 318 case JVM_CONSTANT_InterfaceMethodref :
jrose@1928 319 st->print("klass_index=%d", cp->uncached_klass_ref_index_at(index));
jrose@1928 320 st->print(" name_and_type_index=%d", cp->uncached_name_and_type_ref_index_at(index));
duke@435 321 break;
duke@435 322 case JVM_CONSTANT_UnresolvedString :
duke@435 323 case JVM_CONSTANT_String :
jrose@866 324 if (cp->is_pseudo_string_at(index)) {
jrose@866 325 anObj = cp->pseudo_string_at(index);
jrose@866 326 } else {
jrose@866 327 anObj = cp->string_at(index, CATCH);
jrose@866 328 }
duke@435 329 anObj->print_value_on(st);
duke@435 330 st->print(" {0x%lx}", (address)anObj);
duke@435 331 break;
duke@435 332 case JVM_CONSTANT_Integer :
duke@435 333 st->print("%d", cp->int_at(index));
duke@435 334 break;
duke@435 335 case JVM_CONSTANT_Float :
duke@435 336 st->print("%f", cp->float_at(index));
duke@435 337 break;
duke@435 338 case JVM_CONSTANT_Long :
duke@435 339 st->print_jlong(cp->long_at(index));
duke@435 340 index++; // Skip entry following eigth-byte constant
duke@435 341 break;
duke@435 342 case JVM_CONSTANT_Double :
duke@435 343 st->print("%lf", cp->double_at(index));
duke@435 344 index++; // Skip entry following eigth-byte constant
duke@435 345 break;
duke@435 346 case JVM_CONSTANT_NameAndType :
duke@435 347 st->print("name_index=%d", cp->name_ref_index_at(index));
duke@435 348 st->print(" signature_index=%d", cp->signature_ref_index_at(index));
duke@435 349 break;
duke@435 350 case JVM_CONSTANT_Utf8 :
duke@435 351 cp->symbol_at(index)->print_value_on(st);
duke@435 352 break;
duke@435 353 case JVM_CONSTANT_UnresolvedClass : // fall-through
duke@435 354 case JVM_CONSTANT_UnresolvedClassInError: {
duke@435 355 // unresolved_klass_at requires lock or safe world.
duke@435 356 oop entry = *cp->obj_at_addr(index);
duke@435 357 entry->print_value_on(st);
duke@435 358 }
duke@435 359 break;
jrose@1957 360 case JVM_CONSTANT_MethodHandle :
jrose@1957 361 st->print("ref_kind=%d", cp->method_handle_ref_kind_at(index));
jrose@1957 362 st->print(" ref_index=%d", cp->method_handle_index_at(index));
jrose@1957 363 break;
jrose@1957 364 case JVM_CONSTANT_MethodType :
jrose@1957 365 st->print("signature_index=%d", cp->method_type_index_at(index));
jrose@1957 366 break;
jrose@2015 367 case JVM_CONSTANT_InvokeDynamic :
jrose@2015 368 st->print("bootstrap_method_index=%d", cp->invoke_dynamic_bootstrap_method_ref_index_at(index));
jrose@2015 369 st->print(" name_and_type_index=%d", cp->invoke_dynamic_name_and_type_ref_index_at(index));
jrose@2015 370 break;
duke@435 371 default:
duke@435 372 ShouldNotReachHere();
duke@435 373 break;
duke@435 374 }
duke@435 375 st->cr();
duke@435 376 }
duke@435 377 st->cr();
duke@435 378 }
duke@435 379
jrose@1590 380 #endif
duke@435 381
jrose@1590 382 void constantPoolKlass::oop_print_value_on(oop obj, outputStream* st) {
jrose@1590 383 assert(obj->is_constantPool(), "must be constantPool");
jrose@1590 384 constantPoolOop cp = constantPoolOop(obj);
jrose@1590 385 st->print("constant pool [%d]", cp->length());
jrose@1590 386 if (cp->has_pseudo_string()) st->print("/pseudo_string");
jrose@1590 387 if (cp->has_invokedynamic()) st->print("/invokedynamic");
jrose@1590 388 cp->print_address_on(st);
jrose@1590 389 st->print(" for ");
jrose@1590 390 cp->pool_holder()->print_value_on(st);
jrose@1928 391 if (cp->cache() != NULL) {
jrose@1928 392 st->print(" cache=" PTR_FORMAT, cp->cache());
jrose@1928 393 }
jrose@1590 394 }
duke@435 395
duke@435 396 const char* constantPoolKlass::internal_name() const {
duke@435 397 return "{constant pool}";
duke@435 398 }
duke@435 399
duke@435 400 // Verification
duke@435 401
duke@435 402 void constantPoolKlass::oop_verify_on(oop obj, outputStream* st) {
duke@435 403 Klass::oop_verify_on(obj, st);
duke@435 404 guarantee(obj->is_constantPool(), "object must be constant pool");
duke@435 405 constantPoolOop cp = constantPoolOop(obj);
duke@435 406 guarantee(cp->is_perm(), "should be in permspace");
duke@435 407 if (!cp->partially_loaded()) {
duke@435 408 oop* base = (oop*)cp->base();
duke@435 409 for (int i = 0; i< cp->length(); i++) {
duke@435 410 if (cp->tag_at(i).is_klass()) {
duke@435 411 guarantee((*base)->is_perm(), "should be in permspace");
duke@435 412 guarantee((*base)->is_klass(), "should be klass");
duke@435 413 }
duke@435 414 if (cp->tag_at(i).is_unresolved_klass()) {
duke@435 415 guarantee((*base)->is_perm(), "should be in permspace");
duke@435 416 guarantee((*base)->is_symbol() || (*base)->is_klass(),
duke@435 417 "should be symbol or klass");
duke@435 418 }
duke@435 419 if (cp->tag_at(i).is_symbol()) {
duke@435 420 guarantee((*base)->is_perm(), "should be in permspace");
duke@435 421 guarantee((*base)->is_symbol(), "should be symbol");
duke@435 422 }
duke@435 423 if (cp->tag_at(i).is_unresolved_string()) {
duke@435 424 guarantee((*base)->is_perm(), "should be in permspace");
duke@435 425 guarantee((*base)->is_symbol() || (*base)->is_instance(),
duke@435 426 "should be symbol or instance");
duke@435 427 }
duke@435 428 if (cp->tag_at(i).is_string()) {
jrose@866 429 if (!cp->has_pseudo_string()) {
jrose@866 430 guarantee((*base)->is_perm(), "should be in permspace");
jrose@866 431 guarantee((*base)->is_instance(), "should be instance");
jrose@866 432 } else {
jrose@866 433 // can be non-perm, can be non-instance (array)
jrose@866 434 }
duke@435 435 }
jrose@1957 436 // FIXME: verify JSR 292 tags JVM_CONSTANT_MethodHandle, etc.
duke@435 437 base++;
duke@435 438 }
duke@435 439 guarantee(cp->tags()->is_perm(), "should be in permspace");
duke@435 440 guarantee(cp->tags()->is_typeArray(), "should be type array");
duke@435 441 if (cp->cache() != NULL) {
duke@435 442 // Note: cache() can be NULL before a class is completely setup or
duke@435 443 // in temporary constant pools used during constant pool merging
duke@435 444 guarantee(cp->cache()->is_perm(), "should be in permspace");
duke@435 445 guarantee(cp->cache()->is_constantPoolCache(), "should be constant pool cache");
duke@435 446 }
duke@435 447 if (cp->pool_holder() != NULL) {
duke@435 448 // Note: pool_holder() can be NULL in temporary constant pools
duke@435 449 // used during constant pool merging
duke@435 450 guarantee(cp->pool_holder()->is_perm(), "should be in permspace");
duke@435 451 guarantee(cp->pool_holder()->is_klass(), "should be klass");
duke@435 452 }
duke@435 453 }
duke@435 454 }
duke@435 455
duke@435 456 bool constantPoolKlass::oop_partially_loaded(oop obj) const {
duke@435 457 assert(obj->is_constantPool(), "object must be constant pool");
duke@435 458 constantPoolOop cp = constantPoolOop(obj);
duke@435 459 return cp->tags() == NULL || cp->pool_holder() == (klassOop) cp; // Check whether pool holder points to self
duke@435 460 }
duke@435 461
duke@435 462
duke@435 463 void constantPoolKlass::oop_set_partially_loaded(oop obj) {
duke@435 464 assert(obj->is_constantPool(), "object must be constant pool");
duke@435 465 constantPoolOop cp = constantPoolOop(obj);
duke@435 466 assert(cp->pool_holder() == NULL, "just checking");
duke@435 467 cp->set_pool_holder((klassOop) cp); // Temporarily set pool holder to point to self
duke@435 468 }
duke@435 469
duke@435 470 #ifndef PRODUCT
duke@435 471 // CompileTheWorld support. Preload all classes loaded references in the passed in constantpool
duke@435 472 void constantPoolKlass::preload_and_initialize_all_classes(oop obj, TRAPS) {
duke@435 473 guarantee(obj->is_constantPool(), "object must be constant pool");
duke@435 474 constantPoolHandle cp(THREAD, (constantPoolOop)obj);
duke@435 475 guarantee(!cp->partially_loaded(), "must be fully loaded");
duke@435 476
duke@435 477 for (int i = 0; i< cp->length(); i++) {
duke@435 478 if (cp->tag_at(i).is_unresolved_klass()) {
duke@435 479 // This will force loading of the class
duke@435 480 klassOop klass = cp->klass_at(i, CHECK);
duke@435 481 if (klass->is_instance()) {
duke@435 482 // Force initialization of class
duke@435 483 instanceKlass::cast(klass)->initialize(CHECK);
duke@435 484 }
duke@435 485 }
duke@435 486 }
duke@435 487 }
duke@435 488
duke@435 489 #endif

mercurial