src/hotspot/share/gc/parallel/psOldGen.hpp
changeset 50800 6da12aa23b88
parent 49982 9042ffe5b7fe
child 53244 9807daeb47c4
equal deleted inserted replaced
50799:f9ae777f71ee 50800:6da12aa23b88
   190   // Allocation. We report all successful allocations to the size policy
   190   // Allocation. We report all successful allocations to the size policy
   191   // Note that the perm gen does not use this method, and should not!
   191   // Note that the perm gen does not use this method, and should not!
   192   HeapWord* allocate(size_t word_size);
   192   HeapWord* allocate(size_t word_size);
   193 
   193 
   194   // Iteration.
   194   // Iteration.
   195   void oop_iterate_no_header(OopClosure* cl) { object_space()->oop_iterate_no_header(cl); }
   195   void oop_iterate(OopIterateClosure* cl) { object_space()->oop_iterate(cl); }
   196   void object_iterate(ObjectClosure* cl) { object_space()->object_iterate(cl); }
   196   void object_iterate(ObjectClosure* cl) { object_space()->object_iterate(cl); }
   197 
   197 
   198   // Debugging - do not use for time critical operations
   198   // Debugging - do not use for time critical operations
   199   virtual void print() const;
   199   virtual void print() const;
   200   virtual void print_on(outputStream* st) const;
   200   virtual void print_on(outputStream* st) const;