< prev index next >

src/share/vm/gc/serial/genMarkSweep.hpp

Print this page
rev 8393 : 8077842: Remove the level parameter passed around in GenCollectedHeap
Reviewed-by:

*** 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();
< prev index next >