src/share/vm/memory/genMarkSweep.hpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File hotspot Cdiff src/share/vm/memory/genMarkSweep.hpp

src/share/vm/memory/genMarkSweep.hpp

Print this page
rev 7215 : imported patch remove_levels

*** 29,49 **** class GenMarkSweep : public MarkSweep { friend class VM_MarkSweep; friend class G1MarkSweep; public: ! static void invoke_at_safepoint(int level, ReferenceProcessor* rp, ! bool clear_all_softrefs); private: // Mark live objects ! static void mark_sweep_phase1(int level, bool clear_all_softrefs); // Calculate new addresses static void mark_sweep_phase2(); // Update pointers ! static void mark_sweep_phase3(int level); // Move objects to new positions static void mark_sweep_phase4(); // Temporary data structures for traversal and storing/restoring marks static void allocate_stacks(); --- 29,48 ---- class GenMarkSweep : public MarkSweep { friend class VM_MarkSweep; friend class G1MarkSweep; public: ! static void invoke_at_safepoint(ReferenceProcessor* rp, bool clear_all_softrefs); private: // Mark live objects ! static void mark_sweep_phase1(bool clear_all_softrefs); // Calculate new addresses static void mark_sweep_phase2(); // Update pointers ! static void mark_sweep_phase3(); // Move objects to new positions static void mark_sweep_phase4(); // Temporary data structures for traversal and storing/restoring marks static void allocate_stacks();
src/share/vm/memory/genMarkSweep.hpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File