Path: blob/master/src/hotspot/share/gc/shenandoah/shenandoahFullGC.hpp
40961 views
/*1* Copyright (c) 2014, 2021, Red Hat, Inc. All rights reserved.2* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.3*4* This code is free software; you can redistribute it and/or modify it5* under the terms of the GNU General Public License version 2 only, as6* published by the Free Software Foundation.7*8* This code is distributed in the hope that it will be useful, but WITHOUT9* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or10* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License11* version 2 for more details (a copy is included in the LICENSE file that12* accompanied this code).13*14* You should have received a copy of the GNU General Public License version15* 2 along with this work; if not, write to the Free Software Foundation,16* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.17*18* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA19* or visit www.oracle.com if you need additional information or have any20* questions.21*22*/2324#ifndef SHARE_GC_SHENANDOAH_SHENANDOAHFULLGC_HPP25#define SHARE_GC_SHENANDOAH_SHENANDOAHFULLGC_HPP2627#include "gc/shared/gcTimer.hpp"28#include "gc/shenandoah/shenandoahGC.hpp"29#include "gc/shenandoah/shenandoahHeapRegionSet.hpp"3031/**32* This implements Full GC (e.g. when invoking System.gc()) using a mark-compact algorithm.33*34* Current implementation is parallel sliding Lisp-2-style algorithm, based on35* "Parallel Garbage Collection for Shared Memory Multiprocessors", by Christine Flood et al.36* http://people.csail.mit.edu/shanir/publications/dfsz2001.pdf37*38* It is implemented in four phases:39*40* 1. Mark all live objects of the heap by traversing objects starting at GC roots.41* 2. Calculate the new location of each live object. This is done by sequentially scanning42* the heap, keeping track of a next-location-pointer, which is then written to each43* object's fwdptr field.44* 3. Update all references. This is implemented by another scan of the heap, and updates45* all references in live objects by what's stored in the target object's fwdptr.46* 4. Compact the heap by copying all live objects to their new location.47*48* Parallelization is handled by assigning each GC worker the slice of the heap (the set of regions)49* where it does sliding compaction, without interfering with other threads.50*/5152class PreservedMarksSet;53class VM_ShenandoahFullGC;54class ShenandoahDegenGC;5556class ShenandoahFullGC : public ShenandoahGC {57friend class ShenandoahPrepareForCompactionObjectClosure;58friend class VM_ShenandoahFullGC;59friend class ShenandoahDegenGC;6061private:62GCTimer* _gc_timer;6364PreservedMarksSet* _preserved_marks;6566public:67ShenandoahFullGC();68bool collect(GCCause::Cause cause);6970private:71// GC entries72void vmop_entry_full(GCCause::Cause cause);73void entry_full(GCCause::Cause cause);74void op_full(GCCause::Cause cause);7576void do_it(GCCause::Cause gc_cause);7778void phase1_mark_heap();79void phase2_calculate_target_addresses(ShenandoahHeapRegionSet** worker_slices);80void phase3_update_references();81void phase4_compact_objects(ShenandoahHeapRegionSet** worker_slices);8283void distribute_slices(ShenandoahHeapRegionSet** worker_slices);84void calculate_target_humongous_objects();85void compact_humongous_objects();86};8788#endif // SHARE_GC_SHENANDOAH_SHENANDOAHFULLGC_HPP899091