hotspot/src/share/vm/oops/klass.hpp
changeset 46746 ea379ebb9447
parent 46482 10dde7fbed26
child 47103 a993ec29ec75
--- a/hotspot/src/share/vm/oops/klass.hpp	Sat Jul 22 15:54:27 2017 -0400
+++ b/hotspot/src/share/vm/oops/klass.hpp	Wed Aug 02 18:06:38 2017 -0700
@@ -65,6 +65,9 @@
   friend class VMStructs;
   friend class JVMCIVMStructs;
  protected:
+  // If you add a new field that points to any metaspace object, you
+  // must add this field to Klass::metaspace_pointers_do().
+
   // note: put frequently-used fields together at start of klass structure
   // for better cache behavior (may not make much of a difference but sure won't hurt)
   enum { _primary_super_limit = 8 };
@@ -597,6 +600,9 @@
   // garbage collection support
   void oops_do(OopClosure* cl);
 
+  virtual void metaspace_pointers_do(MetaspaceClosure* iter);
+  virtual MetaspaceObj::Type type() const { return ClassType; }
+
   // Iff the class loader (or mirror for anonymous classes) is alive the
   // Klass is considered alive.
   // The is_alive closure passed in depends on the Garbage Collector used.