Path: blob/aarch64-shenandoah-jdk8u272-b10/hotspot/src/share/vm/gc_implementation/g1/collectionSetChooser.cpp
38920 views
/*1* Copyright (c) 2001, 2013, Oracle and/or its affiliates. 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"25#include "gc_implementation/g1/collectionSetChooser.hpp"26#include "gc_implementation/g1/g1CollectedHeap.inline.hpp"27#include "gc_implementation/g1/g1CollectorPolicy.hpp"28#include "gc_implementation/g1/g1ErgoVerbose.hpp"29#include "memory/space.inline.hpp"3031// Even though we don't use the GC efficiency in our heuristics as32// much as we used to, we still order according to GC efficiency. This33// will cause regions with a lot of live objects and large RSets to34// end up at the end of the array. Given that we might skip collecting35// the last few old regions, if after a few mixed GCs the remaining36// have reclaimable bytes under a certain threshold, the hope is that37// the ones we'll skip are ones with both large RSets and a lot of38// live objects, not the ones with just a lot of live objects if we39// ordered according to the amount of reclaimable bytes per region.40static int order_regions(HeapRegion* hr1, HeapRegion* hr2) {41if (hr1 == NULL) {42if (hr2 == NULL) {43return 0;44} else {45return 1;46}47} else if (hr2 == NULL) {48return -1;49}5051double gc_eff1 = hr1->gc_efficiency();52double gc_eff2 = hr2->gc_efficiency();53if (gc_eff1 > gc_eff2) {54return -1;55} if (gc_eff1 < gc_eff2) {56return 1;57} else {58return 0;59}60}6162static int order_regions(HeapRegion** hr1p, HeapRegion** hr2p) {63return order_regions(*hr1p, *hr2p);64}6566CollectionSetChooser::CollectionSetChooser() :67// The line below is the worst bit of C++ hackery I've ever written68// (Detlefs, 11/23). You should think of it as equivalent to69// "_regions(100, true)": initialize the growable array and inform it70// that it should allocate its elem array(s) on the C heap.71//72// The first argument, however, is actually a comma expression73// (set_allocation_type(this, C_HEAP), 100). The purpose of the74// set_allocation_type() call is to replace the default allocation75// type for embedded objects STACK_OR_EMBEDDED with C_HEAP. It will76// allow to pass the assert in GenericGrowableArray() which checks77// that a growable array object must be on C heap if elements are.78//79// Note: containing object is allocated on C heap since it is CHeapObj.80//81_regions((ResourceObj::set_allocation_type((address) &_regions,82ResourceObj::C_HEAP),83100), true /* C_Heap */),84_curr_index(0), _length(0), _first_par_unreserved_idx(0),85_region_live_threshold_bytes(0), _remaining_reclaimable_bytes(0) {86_region_live_threshold_bytes =87HeapRegion::GrainBytes * (size_t) G1MixedGCLiveThresholdPercent / 100;88}8990#ifndef PRODUCT91void CollectionSetChooser::verify() {92guarantee(_length <= regions_length(),93err_msg("_length: %u regions length: %u", _length, regions_length()));94guarantee(_curr_index <= _length,95err_msg("_curr_index: %u _length: %u", _curr_index, _length));96uint index = 0;97size_t sum_of_reclaimable_bytes = 0;98while (index < _curr_index) {99guarantee(regions_at(index) == NULL,100"all entries before _curr_index should be NULL");101index += 1;102}103HeapRegion *prev = NULL;104while (index < _length) {105HeapRegion *curr = regions_at(index++);106guarantee(curr != NULL, "Regions in _regions array cannot be NULL");107guarantee(!curr->is_young(), "should not be young!");108guarantee(!curr->isHumongous(), "should not be humongous!");109if (prev != NULL) {110guarantee(order_regions(prev, curr) != 1,111err_msg("GC eff prev: %1.4f GC eff curr: %1.4f",112prev->gc_efficiency(), curr->gc_efficiency()));113}114sum_of_reclaimable_bytes += curr->reclaimable_bytes();115prev = curr;116}117guarantee(sum_of_reclaimable_bytes == _remaining_reclaimable_bytes,118err_msg("reclaimable bytes inconsistent, "119"remaining: " SIZE_FORMAT " sum: " SIZE_FORMAT,120_remaining_reclaimable_bytes, sum_of_reclaimable_bytes));121}122#endif // !PRODUCT123124void CollectionSetChooser::sort_regions() {125// First trim any unused portion of the top in the parallel case.126if (_first_par_unreserved_idx > 0) {127assert(_first_par_unreserved_idx <= regions_length(),128"Or we didn't reserved enough length");129regions_trunc_to(_first_par_unreserved_idx);130}131_regions.sort(order_regions);132assert(_length <= regions_length(), "Requirement");133#ifdef ASSERT134for (uint i = 0; i < _length; i++) {135assert(regions_at(i) != NULL, "Should be true by sorting!");136}137#endif // ASSERT138if (G1PrintRegionLivenessInfo) {139G1PrintRegionLivenessInfoClosure cl(gclog_or_tty, "Post-Sorting");140for (uint i = 0; i < _length; ++i) {141HeapRegion* r = regions_at(i);142cl.doHeapRegion(r);143}144}145verify();146}147148149void CollectionSetChooser::add_region(HeapRegion* hr) {150assert(!hr->isHumongous(),151"Humongous regions shouldn't be added to the collection set");152assert(!hr->is_young(), "should not be young!");153_regions.append(hr);154_length++;155_remaining_reclaimable_bytes += hr->reclaimable_bytes();156hr->calc_gc_efficiency();157}158159void CollectionSetChooser::prepare_for_par_region_addition(uint n_regions,160uint chunk_size) {161_first_par_unreserved_idx = 0;162uint n_threads = (uint) ParallelGCThreads;163if (UseDynamicNumberOfGCThreads) {164assert(G1CollectedHeap::heap()->workers()->active_workers() > 0,165"Should have been set earlier");166// This is defensive code. As the assertion above says, the number167// of active threads should be > 0, but in case there is some path168// or some improperly initialized variable with leads to no169// active threads, protect against that in a product build.170n_threads = MAX2(G1CollectedHeap::heap()->workers()->active_workers(),1711U);172}173uint max_waste = n_threads * chunk_size;174// it should be aligned with respect to chunk_size175uint aligned_n_regions = (n_regions + chunk_size - 1) / chunk_size * chunk_size;176assert(aligned_n_regions % chunk_size == 0, "should be aligned");177regions_at_put_grow(aligned_n_regions + max_waste - 1, NULL);178}179180uint CollectionSetChooser::claim_array_chunk(uint chunk_size) {181uint res = (uint) Atomic::add((jint) chunk_size,182(volatile jint*) &_first_par_unreserved_idx);183assert(regions_length() > res + chunk_size - 1,184"Should already have been expanded");185return res - chunk_size;186}187188void CollectionSetChooser::set_region(uint index, HeapRegion* hr) {189assert(regions_at(index) == NULL, "precondition");190assert(!hr->is_young(), "should not be young!");191regions_at_put(index, hr);192hr->calc_gc_efficiency();193}194195void CollectionSetChooser::update_totals(uint region_num,196size_t reclaimable_bytes) {197// Only take the lock if we actually need to update the totals.198if (region_num > 0) {199assert(reclaimable_bytes > 0, "invariant");200// We could have just used atomics instead of taking the201// lock. However, we currently don't have an atomic add for size_t.202MutexLockerEx x(ParGCRareEvent_lock, Mutex::_no_safepoint_check_flag);203_length += region_num;204_remaining_reclaimable_bytes += reclaimable_bytes;205} else {206assert(reclaimable_bytes == 0, "invariant");207}208}209210void CollectionSetChooser::clear() {211_regions.clear();212_curr_index = 0;213_length = 0;214_remaining_reclaimable_bytes = 0;215};216217218