src/share/vm/oops/instanceKlassKlass.cpp

Wed, 02 Feb 2011 11:35:26 -0500

author
bobv
date
Wed, 02 Feb 2011 11:35:26 -0500
changeset 2508
b92c45f2bc75
parent 2497
3582bf76420e
child 2534
e5383553fd4e
permissions
-rw-r--r--

7016023: Enable building ARM and PPC from src/closed repository
Reviewed-by: dholmes, bdelsart

     1 /*
     2  * Copyright (c) 1997, 2010, Oracle and/or its affiliates. All rights reserved.
     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 Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
    20  * or visit www.oracle.com if you need additional information or have any
    21  * questions.
    22  *
    23  */
    25 #include "precompiled.hpp"
    26 #include "classfile/javaClasses.hpp"
    27 #include "classfile/systemDictionary.hpp"
    28 #include "gc_implementation/shared/markSweep.inline.hpp"
    29 #include "gc_interface/collectedHeap.inline.hpp"
    30 #include "interpreter/oopMapCache.hpp"
    31 #include "memory/gcLocker.hpp"
    32 #include "oops/constantPoolOop.hpp"
    33 #include "oops/instanceKlass.hpp"
    34 #include "oops/instanceKlassKlass.hpp"
    35 #include "oops/instanceRefKlass.hpp"
    36 #include "oops/objArrayKlassKlass.hpp"
    37 #include "oops/objArrayOop.hpp"
    38 #include "oops/oop.inline.hpp"
    39 #include "oops/oop.inline2.hpp"
    40 #include "oops/symbol.hpp"
    41 #include "oops/typeArrayOop.hpp"
    42 #include "prims/jvmtiExport.hpp"
    43 #include "runtime/fieldDescriptor.hpp"
    44 #ifndef SERIALGC
    45 #include "gc_implementation/parNew/parOopClosures.inline.hpp"
    46 #include "gc_implementation/parallelScavenge/psPromotionManager.inline.hpp"
    47 #include "gc_implementation/parallelScavenge/psScavenge.inline.hpp"
    48 #include "memory/cardTableRS.hpp"
    49 #include "oops/oop.pcgc.inline.hpp"
    50 #endif
    52 klassOop instanceKlassKlass::create_klass(TRAPS) {
    53   instanceKlassKlass o;
    54   KlassHandle h_this_klass(THREAD, Universe::klassKlassObj());
    55   KlassHandle k = base_create_klass(h_this_klass, header_size(), o.vtbl_value(), CHECK_NULL);
    56   // Make sure size calculation is right
    57   assert(k()->size() == align_object_size(header_size()), "wrong size for object");
    58   java_lang_Class::create_mirror(k, CHECK_NULL); // Allocate mirror
    59   return k();
    60 }
    62 int instanceKlassKlass::oop_size(oop obj) const {
    63   assert(obj->is_klass(), "must be klass");
    64   return instanceKlass::cast(klassOop(obj))->object_size();
    65 }
    67 bool instanceKlassKlass::oop_is_parsable(oop obj) const {
    68   assert(obj->is_klass(), "must be klass");
    69   instanceKlass* ik = instanceKlass::cast(klassOop(obj));
    70   return (!ik->null_vtbl()) && ik->object_is_parsable();
    71 }
    73 void instanceKlassKlass::iterate_c_heap_oops(instanceKlass* ik,
    74                                              OopClosure* closure) {
    75   if (ik->oop_map_cache() != NULL) {
    76     ik->oop_map_cache()->oop_iterate(closure);
    77   }
    79   if (ik->jni_ids() != NULL) {
    80     ik->jni_ids()->oops_do(closure);
    81   }
    82 }
    84 void instanceKlassKlass::oop_follow_contents(oop obj) {
    85   assert(obj->is_klass(),"must be a klass");
    86   assert(klassOop(obj)->klass_part()->oop_is_instance_slow(), "must be instance klass");
    88   instanceKlass* ik = instanceKlass::cast(klassOop(obj));
    89   ik->follow_static_fields();
    90   {
    91     HandleMark hm;
    92     ik->vtable()->oop_follow_contents();
    93     ik->itable()->oop_follow_contents();
    94   }
    96   MarkSweep::mark_and_push(ik->adr_array_klasses());
    97   MarkSweep::mark_and_push(ik->adr_methods());
    98   MarkSweep::mark_and_push(ik->adr_method_ordering());
    99   MarkSweep::mark_and_push(ik->adr_local_interfaces());
   100   MarkSweep::mark_and_push(ik->adr_transitive_interfaces());
   101   MarkSweep::mark_and_push(ik->adr_fields());
   102   MarkSweep::mark_and_push(ik->adr_constants());
   103   MarkSweep::mark_and_push(ik->adr_class_loader());
   104   MarkSweep::mark_and_push(ik->adr_inner_classes());
   105   MarkSweep::mark_and_push(ik->adr_protection_domain());
   106   MarkSweep::mark_and_push(ik->adr_host_klass());
   107   MarkSweep::mark_and_push(ik->adr_signers());
   108   MarkSweep::mark_and_push(ik->adr_bootstrap_method());
   109   MarkSweep::mark_and_push(ik->adr_class_annotations());
   110   MarkSweep::mark_and_push(ik->adr_fields_annotations());
   111   MarkSweep::mark_and_push(ik->adr_methods_annotations());
   112   MarkSweep::mark_and_push(ik->adr_methods_parameter_annotations());
   113   MarkSweep::mark_and_push(ik->adr_methods_default_annotations());
   115   // We do not follow adr_implementors() here. It is followed later
   116   // in instanceKlass::follow_weak_klass_links()
   118   klassKlass::oop_follow_contents(obj);
   120   iterate_c_heap_oops(ik, &MarkSweep::mark_and_push_closure);
   121 }
   123 #ifndef SERIALGC
   124 void instanceKlassKlass::oop_follow_contents(ParCompactionManager* cm,
   125                                              oop obj) {
   126   assert(obj->is_klass(),"must be a klass");
   127   assert(klassOop(obj)->klass_part()->oop_is_instance_slow(), "must be instance klass");
   129   instanceKlass* ik = instanceKlass::cast(klassOop(obj));
   130   ik->follow_static_fields(cm);
   131   ik->vtable()->oop_follow_contents(cm);
   132   ik->itable()->oop_follow_contents(cm);
   134   PSParallelCompact::mark_and_push(cm, ik->adr_array_klasses());
   135   PSParallelCompact::mark_and_push(cm, ik->adr_methods());
   136   PSParallelCompact::mark_and_push(cm, ik->adr_method_ordering());
   137   PSParallelCompact::mark_and_push(cm, ik->adr_local_interfaces());
   138   PSParallelCompact::mark_and_push(cm, ik->adr_transitive_interfaces());
   139   PSParallelCompact::mark_and_push(cm, ik->adr_fields());
   140   PSParallelCompact::mark_and_push(cm, ik->adr_constants());
   141   PSParallelCompact::mark_and_push(cm, ik->adr_class_loader());
   142   PSParallelCompact::mark_and_push(cm, ik->adr_inner_classes());
   143   PSParallelCompact::mark_and_push(cm, ik->adr_protection_domain());
   144   PSParallelCompact::mark_and_push(cm, ik->adr_host_klass());
   145   PSParallelCompact::mark_and_push(cm, ik->adr_signers());
   146   PSParallelCompact::mark_and_push(cm, ik->adr_bootstrap_method());
   147   PSParallelCompact::mark_and_push(cm, ik->adr_class_annotations());
   148   PSParallelCompact::mark_and_push(cm, ik->adr_fields_annotations());
   149   PSParallelCompact::mark_and_push(cm, ik->adr_methods_annotations());
   150   PSParallelCompact::mark_and_push(cm, ik->adr_methods_parameter_annotations());
   151   PSParallelCompact::mark_and_push(cm, ik->adr_methods_default_annotations());
   153   // We do not follow adr_implementor() here. It is followed later
   154   // in instanceKlass::follow_weak_klass_links()
   156   klassKlass::oop_follow_contents(cm, obj);
   158   PSParallelCompact::MarkAndPushClosure mark_and_push_closure(cm);
   159   iterate_c_heap_oops(ik, &mark_and_push_closure);
   160 }
   161 #endif // SERIALGC
   163 int instanceKlassKlass::oop_oop_iterate(oop obj, OopClosure* blk) {
   164   assert(obj->is_klass(),"must be a klass");
   165   assert(klassOop(obj)->klass_part()->oop_is_instance_slow(), "must be instance klass");
   166   instanceKlass* ik = instanceKlass::cast(klassOop(obj));
   167   // Get size before changing pointers.
   168   // Don't call size() or oop_size() since that is a virtual call.
   169   int size = ik->object_size();
   171   ik->iterate_static_fields(blk);
   172   ik->vtable()->oop_oop_iterate(blk);
   173   ik->itable()->oop_oop_iterate(blk);
   175   blk->do_oop(ik->adr_array_klasses());
   176   blk->do_oop(ik->adr_methods());
   177   blk->do_oop(ik->adr_method_ordering());
   178   blk->do_oop(ik->adr_local_interfaces());
   179   blk->do_oop(ik->adr_transitive_interfaces());
   180   blk->do_oop(ik->adr_fields());
   181   blk->do_oop(ik->adr_constants());
   182   blk->do_oop(ik->adr_class_loader());
   183   blk->do_oop(ik->adr_protection_domain());
   184   blk->do_oop(ik->adr_host_klass());
   185   blk->do_oop(ik->adr_signers());
   186   blk->do_oop(ik->adr_inner_classes());
   187   for (int i = 0; i < instanceKlass::implementors_limit; i++) {
   188     blk->do_oop(&ik->adr_implementors()[i]);
   189   }
   190   blk->do_oop(ik->adr_bootstrap_method());
   191   blk->do_oop(ik->adr_class_annotations());
   192   blk->do_oop(ik->adr_fields_annotations());
   193   blk->do_oop(ik->adr_methods_annotations());
   194   blk->do_oop(ik->adr_methods_parameter_annotations());
   195   blk->do_oop(ik->adr_methods_default_annotations());
   197   klassKlass::oop_oop_iterate(obj, blk);
   199   if(ik->oop_map_cache() != NULL) ik->oop_map_cache()->oop_iterate(blk);
   200   return size;
   201 }
   203 int instanceKlassKlass::oop_oop_iterate_m(oop obj, OopClosure* blk,
   204                                            MemRegion mr) {
   205   assert(obj->is_klass(),"must be a klass");
   206   assert(klassOop(obj)->klass_part()->oop_is_instance_slow(), "must be instance klass");
   207   instanceKlass* ik = instanceKlass::cast(klassOop(obj));
   208   // Get size before changing pointers.
   209   // Don't call size() or oop_size() since that is a virtual call.
   210   int size = ik->object_size();
   212   ik->iterate_static_fields(blk, mr);
   213   ik->vtable()->oop_oop_iterate_m(blk, mr);
   214   ik->itable()->oop_oop_iterate_m(blk, mr);
   216   oop* adr;
   217   adr = ik->adr_array_klasses();
   218   if (mr.contains(adr)) blk->do_oop(adr);
   219   adr = ik->adr_methods();
   220   if (mr.contains(adr)) blk->do_oop(adr);
   221   adr = ik->adr_method_ordering();
   222   if (mr.contains(adr)) blk->do_oop(adr);
   223   adr = ik->adr_local_interfaces();
   224   if (mr.contains(adr)) blk->do_oop(adr);
   225   adr = ik->adr_transitive_interfaces();
   226   if (mr.contains(adr)) blk->do_oop(adr);
   227   adr = ik->adr_fields();
   228   if (mr.contains(adr)) blk->do_oop(adr);
   229   adr = ik->adr_constants();
   230   if (mr.contains(adr)) blk->do_oop(adr);
   231   adr = ik->adr_class_loader();
   232   if (mr.contains(adr)) blk->do_oop(adr);
   233   adr = ik->adr_protection_domain();
   234   if (mr.contains(adr)) blk->do_oop(adr);
   235   adr = ik->adr_host_klass();
   236   if (mr.contains(adr)) blk->do_oop(adr);
   237   adr = ik->adr_signers();
   238   if (mr.contains(adr)) blk->do_oop(adr);
   239   adr = ik->adr_inner_classes();
   240   if (mr.contains(adr)) blk->do_oop(adr);
   241   adr = ik->adr_implementors();
   242   for (int i = 0; i < instanceKlass::implementors_limit; i++) {
   243     if (mr.contains(&adr[i])) blk->do_oop(&adr[i]);
   244   }
   245   adr = ik->adr_bootstrap_method();
   246   if (mr.contains(adr)) blk->do_oop(adr);
   247   adr = ik->adr_class_annotations();
   248   if (mr.contains(adr)) blk->do_oop(adr);
   249   adr = ik->adr_fields_annotations();
   250   if (mr.contains(adr)) blk->do_oop(adr);
   251   adr = ik->adr_methods_annotations();
   252   if (mr.contains(adr)) blk->do_oop(adr);
   253   adr = ik->adr_methods_parameter_annotations();
   254   if (mr.contains(adr)) blk->do_oop(adr);
   255   adr = ik->adr_methods_default_annotations();
   256   if (mr.contains(adr)) blk->do_oop(adr);
   258   klassKlass::oop_oop_iterate_m(obj, blk, mr);
   260   if(ik->oop_map_cache() != NULL) ik->oop_map_cache()->oop_iterate(blk, mr);
   261   return size;
   262 }
   264 int instanceKlassKlass::oop_adjust_pointers(oop obj) {
   265   assert(obj->is_klass(),"must be a klass");
   266   assert(klassOop(obj)->klass_part()->oop_is_instance_slow(), "must be instance klass");
   268   instanceKlass* ik = instanceKlass::cast(klassOop(obj));
   269   ik->adjust_static_fields();
   270   ik->vtable()->oop_adjust_pointers();
   271   ik->itable()->oop_adjust_pointers();
   273   MarkSweep::adjust_pointer(ik->adr_array_klasses());
   274   MarkSweep::adjust_pointer(ik->adr_methods());
   275   MarkSweep::adjust_pointer(ik->adr_method_ordering());
   276   MarkSweep::adjust_pointer(ik->adr_local_interfaces());
   277   MarkSweep::adjust_pointer(ik->adr_transitive_interfaces());
   278   MarkSweep::adjust_pointer(ik->adr_fields());
   279   MarkSweep::adjust_pointer(ik->adr_constants());
   280   MarkSweep::adjust_pointer(ik->adr_class_loader());
   281   MarkSweep::adjust_pointer(ik->adr_protection_domain());
   282   MarkSweep::adjust_pointer(ik->adr_host_klass());
   283   MarkSweep::adjust_pointer(ik->adr_signers());
   284   MarkSweep::adjust_pointer(ik->adr_inner_classes());
   285   for (int i = 0; i < instanceKlass::implementors_limit; i++) {
   286     MarkSweep::adjust_pointer(&ik->adr_implementors()[i]);
   287   }
   288   MarkSweep::adjust_pointer(ik->adr_bootstrap_method());
   289   MarkSweep::adjust_pointer(ik->adr_class_annotations());
   290   MarkSweep::adjust_pointer(ik->adr_fields_annotations());
   291   MarkSweep::adjust_pointer(ik->adr_methods_annotations());
   292   MarkSweep::adjust_pointer(ik->adr_methods_parameter_annotations());
   293   MarkSweep::adjust_pointer(ik->adr_methods_default_annotations());
   295   iterate_c_heap_oops(ik, &MarkSweep::adjust_root_pointer_closure);
   297   return klassKlass::oop_adjust_pointers(obj);
   298 }
   300 #ifndef SERIALGC
   301 void instanceKlassKlass::oop_push_contents(PSPromotionManager* pm, oop obj) {
   302   instanceKlass* ik = instanceKlass::cast(klassOop(obj));
   303   ik->push_static_fields(pm);
   305   oop* loader_addr = ik->adr_class_loader();
   306   if (PSScavenge::should_scavenge(loader_addr)) {
   307     pm->claim_or_forward_depth(loader_addr);
   308   }
   310   oop* pd_addr = ik->adr_protection_domain();
   311   if (PSScavenge::should_scavenge(pd_addr)) {
   312     pm->claim_or_forward_depth(pd_addr);
   313   }
   315   oop* hk_addr = ik->adr_host_klass();
   316   if (PSScavenge::should_scavenge(hk_addr)) {
   317     pm->claim_or_forward_depth(hk_addr);
   318   }
   320   oop* sg_addr = ik->adr_signers();
   321   if (PSScavenge::should_scavenge(sg_addr)) {
   322     pm->claim_or_forward_depth(sg_addr);
   323   }
   325   oop* bsm_addr = ik->adr_bootstrap_method();
   326   if (PSScavenge::should_scavenge(bsm_addr)) {
   327     pm->claim_or_forward_depth(bsm_addr);
   328   }
   330   klassKlass::oop_push_contents(pm, obj);
   331 }
   333 int instanceKlassKlass::oop_update_pointers(ParCompactionManager* cm, oop obj) {
   334   assert(obj->is_klass(),"must be a klass");
   335   assert(klassOop(obj)->klass_part()->oop_is_instance_slow(),
   336          "must be instance klass");
   338   instanceKlass* ik = instanceKlass::cast(klassOop(obj));
   339   ik->update_static_fields();
   340   ik->vtable()->oop_update_pointers(cm);
   341   ik->itable()->oop_update_pointers(cm);
   343   oop* const beg_oop = ik->oop_block_beg();
   344   oop* const end_oop = ik->oop_block_end();
   345   for (oop* cur_oop = beg_oop; cur_oop < end_oop; ++cur_oop) {
   346     PSParallelCompact::adjust_pointer(cur_oop);
   347   }
   349   OopClosure* closure = PSParallelCompact::adjust_root_pointer_closure();
   350   iterate_c_heap_oops(ik, closure);
   352   klassKlass::oop_update_pointers(cm, obj);
   353   return ik->object_size();
   354 }
   356 int instanceKlassKlass::oop_update_pointers(ParCompactionManager* cm, oop obj,
   357                                             HeapWord* beg_addr,
   358                                             HeapWord* end_addr) {
   359   assert(obj->is_klass(),"must be a klass");
   360   assert(klassOop(obj)->klass_part()->oop_is_instance_slow(),
   361          "must be instance klass");
   363   instanceKlass* ik = instanceKlass::cast(klassOop(obj));
   364   ik->update_static_fields(beg_addr, end_addr);
   365   ik->vtable()->oop_update_pointers(cm, beg_addr, end_addr);
   366   ik->itable()->oop_update_pointers(cm, beg_addr, end_addr);
   368   oop* const beg_oop = MAX2((oop*)beg_addr, ik->oop_block_beg());
   369   oop* const end_oop = MIN2((oop*)end_addr, ik->oop_block_end());
   370   for (oop* cur_oop = beg_oop; cur_oop < end_oop; ++cur_oop) {
   371     PSParallelCompact::adjust_pointer(cur_oop);
   372   }
   374   // The oop_map_cache, jni_ids and jni_id_map are allocated from the C heap,
   375   // and so don't lie within any 'Chunk' boundaries.  Update them when the
   376   // lowest addressed oop in the instanceKlass 'oop_block' is updated.
   377   if (beg_oop == ik->oop_block_beg()) {
   378     OopClosure* closure = PSParallelCompact::adjust_root_pointer_closure();
   379     iterate_c_heap_oops(ik, closure);
   380   }
   382   klassKlass::oop_update_pointers(cm, obj, beg_addr, end_addr);
   383   return ik->object_size();
   384 }
   385 #endif // SERIALGC
   387 klassOop
   388 instanceKlassKlass::allocate_instance_klass(int vtable_len, int itable_len,
   389                                             int static_field_size,
   390                                             unsigned nonstatic_oop_map_count,
   391                                             ReferenceType rt, TRAPS) {
   393   const int nonstatic_oop_map_size =
   394     instanceKlass::nonstatic_oop_map_size(nonstatic_oop_map_count);
   395   int size = instanceKlass::object_size(align_object_offset(vtable_len) + align_object_offset(itable_len) + static_field_size + nonstatic_oop_map_size);
   397   // Allocation
   398   KlassHandle h_this_klass(THREAD, as_klassOop());
   399   KlassHandle k;
   400   if (rt == REF_NONE) {
   401     // regular klass
   402     instanceKlass o;
   403     k = base_create_klass(h_this_klass, size, o.vtbl_value(), CHECK_NULL);
   404   } else {
   405     // reference klass
   406     instanceRefKlass o;
   407     k = base_create_klass(h_this_klass, size, o.vtbl_value(), CHECK_NULL);
   408   }
   409   {
   410     No_Safepoint_Verifier no_safepoint; // until k becomes parsable
   411     instanceKlass* ik = (instanceKlass*) k()->klass_part();
   412     assert(!k()->is_parsable(), "not expecting parsability yet.");
   414     // The sizes of these these three variables are used for determining the
   415     // size of the instanceKlassOop. It is critical that these are set to the right
   416     // sizes before the first GC, i.e., when we allocate the mirror.
   417     ik->set_vtable_length(vtable_len);
   418     ik->set_itable_length(itable_len);
   419     ik->set_static_field_size(static_field_size);
   420     ik->set_nonstatic_oop_map_size(nonstatic_oop_map_size);
   421     assert(k()->size() == size, "wrong size for object");
   423     ik->set_array_klasses(NULL);
   424     ik->set_methods(NULL);
   425     ik->set_method_ordering(NULL);
   426     ik->set_local_interfaces(NULL);
   427     ik->set_transitive_interfaces(NULL);
   428     ik->init_implementor();
   429     ik->set_fields(NULL);
   430     ik->set_constants(NULL);
   431     ik->set_class_loader(NULL);
   432     ik->set_protection_domain(NULL);
   433     ik->set_host_klass(NULL);
   434     ik->set_signers(NULL);
   435     ik->set_source_file_name(NULL);
   436     ik->set_source_debug_extension(NULL);
   437     ik->set_source_debug_extension(NULL);
   438     ik->set_array_name(NULL);
   439     ik->set_inner_classes(NULL);
   440     ik->set_static_oop_field_size(0);
   441     ik->set_nonstatic_field_size(0);
   442     ik->set_is_marked_dependent(false);
   443     ik->set_init_state(instanceKlass::allocated);
   444     ik->set_init_thread(NULL);
   445     ik->set_reference_type(rt);
   446     ik->set_oop_map_cache(NULL);
   447     ik->set_jni_ids(NULL);
   448     ik->set_osr_nmethods_head(NULL);
   449     ik->set_breakpoints(NULL);
   450     ik->init_previous_versions();
   451     ik->set_generic_signature(NULL);
   452     ik->set_bootstrap_method(NULL);
   453     ik->release_set_methods_jmethod_ids(NULL);
   454     ik->release_set_methods_cached_itable_indices(NULL);
   455     ik->set_class_annotations(NULL);
   456     ik->set_fields_annotations(NULL);
   457     ik->set_methods_annotations(NULL);
   458     ik->set_methods_parameter_annotations(NULL);
   459     ik->set_methods_default_annotations(NULL);
   460     ik->set_enclosing_method_indices(0, 0);
   461     ik->set_jvmti_cached_class_field_map(NULL);
   462     ik->set_initial_method_idnum(0);
   463     assert(k()->is_parsable(), "should be parsable here.");
   465     // initialize the non-header words to zero
   466     intptr_t* p = (intptr_t*)k();
   467     for (int index = instanceKlass::header_size(); index < size; index++) {
   468       p[index] = NULL_WORD;
   469     }
   471     // To get verify to work - must be set to partial loaded before first GC point.
   472     k()->set_partially_loaded();
   473   }
   475   // GC can happen here
   476   java_lang_Class::create_mirror(k, CHECK_NULL); // Allocate mirror
   477   return k();
   478 }
   482 #ifndef PRODUCT
   484 // Printing
   486 #define BULLET  " - "
   488 static const char* state_names[] = {
   489   "unparseable_by_gc", "allocated", "loaded", "linked", "being_initialized", "fully_initialized", "initialization_error"
   490 };
   493 void instanceKlassKlass::oop_print_on(oop obj, outputStream* st) {
   494   assert(obj->is_klass(), "must be klass");
   495   instanceKlass* ik = instanceKlass::cast(klassOop(obj));
   496   klassKlass::oop_print_on(obj, st);
   498   st->print(BULLET"instance size:     %d", ik->size_helper());                        st->cr();
   499   st->print(BULLET"klass size:        %d", ik->object_size());                        st->cr();
   500   st->print(BULLET"access:            "); ik->access_flags().print_on(st);            st->cr();
   501   st->print(BULLET"state:             "); st->print_cr(state_names[ik->_init_state]);
   502   st->print(BULLET"name:              "); ik->name()->print_value_on(st);             st->cr();
   503   st->print(BULLET"super:             "); ik->super()->print_value_on(st);            st->cr();
   504   st->print(BULLET"sub:               ");
   505   Klass* sub = ik->subklass();
   506   int n;
   507   for (n = 0; sub != NULL; n++, sub = sub->next_sibling()) {
   508     if (n < MaxSubklassPrintSize) {
   509       sub->as_klassOop()->print_value_on(st);
   510       st->print("   ");
   511     }
   512   }
   513   if (n >= MaxSubklassPrintSize) st->print("(%d more klasses...)", n - MaxSubklassPrintSize);
   514   st->cr();
   516   if (ik->is_interface()) {
   517     st->print_cr(BULLET"nof implementors:  %d", ik->nof_implementors());
   518     int print_impl = 0;
   519     for (int i = 0; i < instanceKlass::implementors_limit; i++) {
   520       if (ik->implementor(i) != NULL) {
   521         if (++print_impl == 1)
   522           st->print_cr(BULLET"implementor:    ");
   523         st->print("   ");
   524         ik->implementor(i)->print_value_on(st);
   525       }
   526     }
   527     if (print_impl > 0)  st->cr();
   528   }
   530   st->print(BULLET"arrays:            "); ik->array_klasses()->print_value_on(st);     st->cr();
   531   st->print(BULLET"methods:           "); ik->methods()->print_value_on(st);           st->cr();
   532   if (Verbose) {
   533     objArrayOop methods = ik->methods();
   534     for(int i = 0; i < methods->length(); i++) {
   535       tty->print("%d : ", i); methods->obj_at(i)->print_value(); tty->cr();
   536     }
   537   }
   538   st->print(BULLET"method ordering:   "); ik->method_ordering()->print_value_on(st);       st->cr();
   539   st->print(BULLET"local interfaces:  "); ik->local_interfaces()->print_value_on(st);      st->cr();
   540   st->print(BULLET"trans. interfaces: "); ik->transitive_interfaces()->print_value_on(st); st->cr();
   541   st->print(BULLET"constants:         "); ik->constants()->print_value_on(st);         st->cr();
   542   st->print(BULLET"class loader:      "); ik->class_loader()->print_value_on(st);      st->cr();
   543   st->print(BULLET"protection domain: "); ik->protection_domain()->print_value_on(st); st->cr();
   544   st->print(BULLET"host class:        "); ik->host_klass()->print_value_on(st);        st->cr();
   545   st->print(BULLET"signers:           "); ik->signers()->print_value_on(st);           st->cr();
   546   if (ik->source_file_name() != NULL) {
   547     st->print(BULLET"source file:       ");
   548     ik->source_file_name()->print_value_on(st);
   549     st->cr();
   550   }
   551   if (ik->source_debug_extension() != NULL) {
   552     st->print(BULLET"source debug extension:       ");
   553     ik->source_debug_extension()->print_value_on(st);
   554     st->cr();
   555   }
   557   {
   558     ResourceMark rm;
   559     // PreviousVersionInfo objects returned via PreviousVersionWalker
   560     // contain a GrowableArray of handles. We have to clean up the
   561     // GrowableArray _after_ the PreviousVersionWalker destructor
   562     // has destroyed the handles.
   563     {
   564       bool have_pv = false;
   565       PreviousVersionWalker pvw(ik);
   566       for (PreviousVersionInfo * pv_info = pvw.next_previous_version();
   567            pv_info != NULL; pv_info = pvw.next_previous_version()) {
   568         if (!have_pv)
   569           st->print(BULLET"previous version:  ");
   570         have_pv = true;
   571         pv_info->prev_constant_pool_handle()()->print_value_on(st);
   572       }
   573       if (have_pv)  st->cr();
   574     } // pvw is cleaned up
   575   } // rm is cleaned up
   577   if (ik->bootstrap_method() != NULL) {
   578     st->print(BULLET"bootstrap method:  ");
   579     ik->bootstrap_method()->print_value_on(st);
   580     st->cr();
   581   }
   582   if (ik->generic_signature() != NULL) {
   583     st->print(BULLET"generic signature: ");
   584     ik->generic_signature()->print_value_on(st);
   585     st->cr();
   586   }
   587   st->print(BULLET"inner classes:     "); ik->inner_classes()->print_value_on(st);     st->cr();
   588   st->print(BULLET"java mirror:       "); ik->java_mirror()->print_value_on(st);       st->cr();
   589   st->print(BULLET"vtable length      %d  (start addr: " INTPTR_FORMAT ")", ik->vtable_length(), ik->start_of_vtable());  st->cr();
   590   st->print(BULLET"itable length      %d (start addr: " INTPTR_FORMAT ")", ik->itable_length(), ik->start_of_itable()); st->cr();
   591   st->print_cr(BULLET"---- static fields (%d words):", ik->static_field_size());
   592   FieldPrinter print_static_field(st);
   593   ik->do_local_static_fields(&print_static_field);
   594   st->print_cr(BULLET"---- non-static fields (%d words):", ik->nonstatic_field_size());
   595   FieldPrinter print_nonstatic_field(st);
   596   ik->do_nonstatic_fields(&print_nonstatic_field);
   598   st->print(BULLET"static oop maps:     ");
   599   if (ik->static_oop_field_size() > 0) {
   600     int first_offset = ik->offset_of_static_fields();
   601     st->print("%d-%d", first_offset, first_offset + ik->static_oop_field_size() - 1);
   602   }
   603   st->cr();
   605   st->print(BULLET"non-static oop maps: ");
   606   OopMapBlock* map     = ik->start_of_nonstatic_oop_maps();
   607   OopMapBlock* end_map = map + ik->nonstatic_oop_map_count();
   608   while (map < end_map) {
   609     st->print("%d-%d ", map->offset(), map->offset() + heapOopSize*(map->count() - 1));
   610     map++;
   611   }
   612   st->cr();
   613 }
   615 #endif //PRODUCT
   617 void instanceKlassKlass::oop_print_value_on(oop obj, outputStream* st) {
   618   assert(obj->is_klass(), "must be klass");
   619   instanceKlass* ik = instanceKlass::cast(klassOop(obj));
   620   ik->name()->print_value_on(st);
   621 }
   623 const char* instanceKlassKlass::internal_name() const {
   624   return "{instance class}";
   625 }
   627 // Verification
   629 class VerifyFieldClosure: public OopClosure {
   630  protected:
   631   template <class T> void do_oop_work(T* p) {
   632     guarantee(Universe::heap()->is_in(p), "should be in heap");
   633     oop obj = oopDesc::load_decode_heap_oop(p);
   634     guarantee(obj->is_oop_or_null(), "should be in heap");
   635   }
   636  public:
   637   virtual void do_oop(oop* p)       { VerifyFieldClosure::do_oop_work(p); }
   638   virtual void do_oop(narrowOop* p) { VerifyFieldClosure::do_oop_work(p); }
   639 };
   641 void instanceKlassKlass::oop_verify_on(oop obj, outputStream* st) {
   642   klassKlass::oop_verify_on(obj, st);
   643   if (!obj->partially_loaded()) {
   644     Thread *thread = Thread::current();
   645     instanceKlass* ik = instanceKlass::cast(klassOop(obj));
   647 #ifndef PRODUCT
   648     // Avoid redundant verifies
   649     if (ik->_verify_count == Universe::verify_count()) return;
   650     ik->_verify_count = Universe::verify_count();
   651 #endif
   652     // Verify that klass is present in SystemDictionary
   653     if (ik->is_loaded() && !ik->is_anonymous()) {
   654       Symbol* h_name = ik->name();
   655       Handle h_loader (thread, ik->class_loader());
   656       Handle h_obj(thread, obj);
   657       SystemDictionary::verify_obj_klass_present(h_obj, h_name, h_loader);
   658     }
   660     // Verify static fields
   661     VerifyFieldClosure blk;
   662     ik->iterate_static_fields(&blk);
   664     // Verify vtables
   665     if (ik->is_linked()) {
   666       ResourceMark rm(thread);
   667       // $$$ This used to be done only for m/s collections.  Doing it
   668       // always seemed a valid generalization.  (DLD -- 6/00)
   669       ik->vtable()->verify(st);
   670     }
   672     // Verify oop map cache
   673     if (ik->oop_map_cache() != NULL) {
   674       ik->oop_map_cache()->verify();
   675     }
   677     // Verify first subklass
   678     if (ik->subklass_oop() != NULL) {
   679       guarantee(ik->subklass_oop()->is_perm(),  "should be in permspace");
   680       guarantee(ik->subklass_oop()->is_klass(), "should be klass");
   681     }
   683     // Verify siblings
   684     klassOop super = ik->super();
   685     Klass* sib = ik->next_sibling();
   686     int sib_count = 0;
   687     while (sib != NULL) {
   688       if (sib == ik) {
   689         fatal(err_msg("subclass cycle of length %d", sib_count));
   690       }
   691       if (sib_count >= 100000) {
   692         fatal(err_msg("suspiciously long subclass list %d", sib_count));
   693       }
   694       guarantee(sib->as_klassOop()->is_klass(), "should be klass");
   695       guarantee(sib->as_klassOop()->is_perm(),  "should be in permspace");
   696       guarantee(sib->super() == super, "siblings should have same superklass");
   697       sib = sib->next_sibling();
   698     }
   700     // Verify implementor fields
   701     bool saw_null_impl = false;
   702     for (int i = 0; i < instanceKlass::implementors_limit; i++) {
   703       klassOop im = ik->implementor(i);
   704       if (im == NULL) { saw_null_impl = true; continue; }
   705       guarantee(!saw_null_impl, "non-nulls must preceded all nulls");
   706       guarantee(ik->is_interface(), "only interfaces should have implementor set");
   707       guarantee(i < ik->nof_implementors(), "should only have one implementor");
   708       guarantee(im->is_perm(),  "should be in permspace");
   709       guarantee(im->is_klass(), "should be klass");
   710       guarantee(!Klass::cast(klassOop(im))->is_interface(), "implementors cannot be interfaces");
   711     }
   713     // Verify local interfaces
   714     objArrayOop local_interfaces = ik->local_interfaces();
   715     guarantee(local_interfaces->is_perm(),          "should be in permspace");
   716     guarantee(local_interfaces->is_objArray(),      "should be obj array");
   717     int j;
   718     for (j = 0; j < local_interfaces->length(); j++) {
   719       oop e = local_interfaces->obj_at(j);
   720       guarantee(e->is_klass() && Klass::cast(klassOop(e))->is_interface(), "invalid local interface");
   721     }
   723     // Verify transitive interfaces
   724     objArrayOop transitive_interfaces = ik->transitive_interfaces();
   725     guarantee(transitive_interfaces->is_perm(),          "should be in permspace");
   726     guarantee(transitive_interfaces->is_objArray(),      "should be obj array");
   727     for (j = 0; j < transitive_interfaces->length(); j++) {
   728       oop e = transitive_interfaces->obj_at(j);
   729       guarantee(e->is_klass() && Klass::cast(klassOop(e))->is_interface(), "invalid transitive interface");
   730     }
   732     // Verify methods
   733     objArrayOop methods = ik->methods();
   734     guarantee(methods->is_perm(),              "should be in permspace");
   735     guarantee(methods->is_objArray(),          "should be obj array");
   736     for (j = 0; j < methods->length(); j++) {
   737       guarantee(methods->obj_at(j)->is_method(), "non-method in methods array");
   738     }
   739     for (j = 0; j < methods->length() - 1; j++) {
   740       methodOop m1 = methodOop(methods->obj_at(j));
   741       methodOop m2 = methodOop(methods->obj_at(j + 1));
   742       guarantee(m1->name()->fast_compare(m2->name()) <= 0, "methods not sorted correctly");
   743     }
   745     // Verify method ordering
   746     typeArrayOop method_ordering = ik->method_ordering();
   747     guarantee(method_ordering->is_perm(),              "should be in permspace");
   748     guarantee(method_ordering->is_typeArray(),         "should be type array");
   749     int length = method_ordering->length();
   750     if (JvmtiExport::can_maintain_original_method_order()) {
   751       guarantee(length == methods->length(),           "invalid method ordering length");
   752       jlong sum = 0;
   753       for (j = 0; j < length; j++) {
   754         int original_index = method_ordering->int_at(j);
   755         guarantee(original_index >= 0 && original_index < length, "invalid method ordering index");
   756         sum += original_index;
   757       }
   758       // Verify sum of indices 0,1,...,length-1
   759       guarantee(sum == ((jlong)length*(length-1))/2,   "invalid method ordering sum");
   760     } else {
   761       guarantee(length == 0,                           "invalid method ordering length");
   762     }
   764     // Verify JNI static field identifiers
   765     if (ik->jni_ids() != NULL) {
   766       ik->jni_ids()->verify(ik->as_klassOop());
   767     }
   769     // Verify other fields
   770     if (ik->array_klasses() != NULL) {
   771       guarantee(ik->array_klasses()->is_perm(),      "should be in permspace");
   772       guarantee(ik->array_klasses()->is_klass(),     "should be klass");
   773     }
   774     guarantee(ik->fields()->is_perm(),               "should be in permspace");
   775     guarantee(ik->fields()->is_typeArray(),          "should be type array");
   776     guarantee(ik->constants()->is_perm(),            "should be in permspace");
   777     guarantee(ik->constants()->is_constantPool(),    "should be constant pool");
   778     guarantee(ik->inner_classes()->is_perm(),        "should be in permspace");
   779     guarantee(ik->inner_classes()->is_typeArray(),   "should be type array");
   780     if (ik->protection_domain() != NULL) {
   781       guarantee(ik->protection_domain()->is_oop(),  "should be oop");
   782     }
   783     if (ik->host_klass() != NULL) {
   784       guarantee(ik->host_klass()->is_oop(),  "should be oop");
   785     }
   786     if (ik->signers() != NULL) {
   787       guarantee(ik->signers()->is_objArray(),       "should be obj array");
   788     }
   789     if (ik->class_annotations() != NULL) {
   790       guarantee(ik->class_annotations()->is_typeArray(), "should be type array");
   791     }
   792     if (ik->fields_annotations() != NULL) {
   793       guarantee(ik->fields_annotations()->is_objArray(), "should be obj array");
   794     }
   795     if (ik->methods_annotations() != NULL) {
   796       guarantee(ik->methods_annotations()->is_objArray(), "should be obj array");
   797     }
   798     if (ik->methods_parameter_annotations() != NULL) {
   799       guarantee(ik->methods_parameter_annotations()->is_objArray(), "should be obj array");
   800     }
   801     if (ik->methods_default_annotations() != NULL) {
   802       guarantee(ik->methods_default_annotations()->is_objArray(), "should be obj array");
   803     }
   804   }
   805 }
   808 bool instanceKlassKlass::oop_partially_loaded(oop obj) const {
   809   assert(obj->is_klass(), "object must be klass");
   810   instanceKlass* ik = instanceKlass::cast(klassOop(obj));
   811   assert(ik->oop_is_instance(), "object must be instanceKlass");
   812   return ik->transitive_interfaces() == (objArrayOop) obj;   // Check whether transitive_interfaces points to self
   813 }
   816 // The transitive_interfaces is the last field set when loading an object.
   817 void instanceKlassKlass::oop_set_partially_loaded(oop obj) {
   818   assert(obj->is_klass(), "object must be klass");
   819   instanceKlass* ik = instanceKlass::cast(klassOop(obj));
   820   // Set the layout helper to a place-holder value, until fuller initialization.
   821   // (This allows asserts in oop_is_instance to succeed.)
   822   ik->set_layout_helper(Klass::instance_layout_helper(0, true));
   823   assert(ik->oop_is_instance(), "object must be instanceKlass");
   824   assert(ik->transitive_interfaces() == NULL, "just checking");
   825   ik->set_transitive_interfaces((objArrayOop) obj);   // Temporarily set transitive_interfaces to point to self
   826 }

mercurial