hotspot/src/share/vm/oops/klassVtable.hpp
changeset 9172 a4e13ccafc44
parent 8297 f05d10c1c4b8
child 13728 882756847a04
--- a/hotspot/src/share/vm/oops/klassVtable.hpp	Thu Apr 14 23:06:33 2011 -0400
+++ b/hotspot/src/share/vm/oops/klassVtable.hpp	Fri Apr 15 09:36:28 2011 -0400
@@ -75,7 +75,15 @@
 
   void initialize_vtable(bool checkconstraints, TRAPS);   // initialize vtable of a new klass
 
-  // conputes vtable length (in words) and the number of miranda methods
+  // CDS/RedefineClasses support - clear vtables so they can be reinitialized
+  // at dump time.  Clearing gives us an easy way to tell if the vtable has
+  // already been reinitialized at dump time (see dump.cpp).  Vtables can
+  // be initialized at run time by RedefineClasses so dumping the right order
+  // is necessary.
+  void clear_vtable();
+  bool is_initialized();
+
+  // computes vtable length (in words) and the number of miranda methods
   static void compute_vtable_size_and_num_mirandas(int &vtable_length, int &num_miranda_methods,
                                                    klassOop super, objArrayOop methods,
                                                    AccessFlags class_flags, Handle classloader,