Path: blob/master/src/hotspot/share/gc/shenandoah/heuristics/shenandoahPassiveHeuristics.cpp
40975 views
/*1* Copyright (c) 2018, 2019, 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#include "precompiled.hpp"2526#include "gc/shenandoah/heuristics/shenandoahPassiveHeuristics.hpp"27#include "gc/shenandoah/shenandoahCollectionSet.hpp"28#include "gc/shenandoah/shenandoahHeap.inline.hpp"29#include "gc/shenandoah/shenandoahHeapRegion.inline.hpp"30#include "logging/log.hpp"31#include "logging/logTag.hpp"3233bool ShenandoahPassiveHeuristics::should_start_gc() {34// Never do concurrent GCs.35return false;36}3738bool ShenandoahPassiveHeuristics::should_unload_classes() {39// Always unload classes, if we can.40return can_unload_classes();41}4243bool ShenandoahPassiveHeuristics::should_degenerate_cycle() {44// Always fail to Degenerated GC, if enabled45return ShenandoahDegeneratedGC;46}4748void ShenandoahPassiveHeuristics::choose_collection_set_from_regiondata(ShenandoahCollectionSet* cset,49RegionData* data, size_t size,50size_t actual_free) {51assert(ShenandoahDegeneratedGC, "This path is only taken for Degenerated GC");5253// Do not select too large CSet that would overflow the available free space.54// Take at least the entire evacuation reserve, and be free to overflow to free space.55size_t max_capacity = ShenandoahHeap::heap()->max_capacity();56size_t available = MAX2(max_capacity / 100 * ShenandoahEvacReserve, actual_free);57size_t max_cset = (size_t)(available / ShenandoahEvacWaste);5859log_info(gc, ergo)("CSet Selection. Actual Free: " SIZE_FORMAT "%s, Max CSet: " SIZE_FORMAT "%s",60byte_size_in_proper_unit(actual_free), proper_unit_for_byte_size(actual_free),61byte_size_in_proper_unit(max_cset), proper_unit_for_byte_size(max_cset));6263size_t threshold = ShenandoahHeapRegion::region_size_bytes() * ShenandoahGarbageThreshold / 100;6465size_t live_cset = 0;66for (size_t idx = 0; idx < size; idx++) {67ShenandoahHeapRegion* r = data[idx]._region;68size_t new_cset = live_cset + r->get_live_data_bytes();69if (new_cset < max_cset && r->garbage() > threshold) {70live_cset = new_cset;71cset->add_region(r);72}73}74}757677