src/share/vm/gc_implementation/g1/collectionSetChooser.cpp

Sat, 07 Nov 2020 10:30:02 +0800

author
aoqi
date
Sat, 07 Nov 2020 10:30:02 +0800
changeset 10026
8c95980d0b66
parent 9448
73d689add964
permissions
-rw-r--r--

Added tag mips-jdk8u275-b01 for changeset d3b4d62f391f

aoqi@0 1 /*
aoqi@0 2 * Copyright (c) 2001, 2013, Oracle and/or its affiliates. All rights reserved.
aoqi@0 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
aoqi@0 4 *
aoqi@0 5 * This code is free software; you can redistribute it and/or modify it
aoqi@0 6 * under the terms of the GNU General Public License version 2 only, as
aoqi@0 7 * published by the Free Software Foundation.
aoqi@0 8 *
aoqi@0 9 * This code is distributed in the hope that it will be useful, but WITHOUT
aoqi@0 10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
aoqi@0 11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
aoqi@0 12 * version 2 for more details (a copy is included in the LICENSE file that
aoqi@0 13 * accompanied this code).
aoqi@0 14 *
aoqi@0 15 * You should have received a copy of the GNU General Public License version
aoqi@0 16 * 2 along with this work; if not, write to the Free Software Foundation,
aoqi@0 17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
aoqi@0 18 *
aoqi@0 19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
aoqi@0 20 * or visit www.oracle.com if you need additional information or have any
aoqi@0 21 * questions.
aoqi@0 22 *
aoqi@0 23 */
aoqi@0 24
aoqi@0 25 #include "precompiled.hpp"
aoqi@0 26 #include "gc_implementation/g1/collectionSetChooser.hpp"
aoqi@0 27 #include "gc_implementation/g1/g1CollectedHeap.inline.hpp"
aoqi@0 28 #include "gc_implementation/g1/g1CollectorPolicy.hpp"
aoqi@0 29 #include "gc_implementation/g1/g1ErgoVerbose.hpp"
aoqi@0 30 #include "memory/space.inline.hpp"
aoqi@0 31
aoqi@0 32 // Even though we don't use the GC efficiency in our heuristics as
aoqi@0 33 // much as we used to, we still order according to GC efficiency. This
aoqi@0 34 // will cause regions with a lot of live objects and large RSets to
aoqi@0 35 // end up at the end of the array. Given that we might skip collecting
aoqi@0 36 // the last few old regions, if after a few mixed GCs the remaining
aoqi@0 37 // have reclaimable bytes under a certain threshold, the hope is that
aoqi@0 38 // the ones we'll skip are ones with both large RSets and a lot of
aoqi@0 39 // live objects, not the ones with just a lot of live objects if we
aoqi@0 40 // ordered according to the amount of reclaimable bytes per region.
aoqi@0 41 static int order_regions(HeapRegion* hr1, HeapRegion* hr2) {
aoqi@0 42 if (hr1 == NULL) {
aoqi@0 43 if (hr2 == NULL) {
aoqi@0 44 return 0;
aoqi@0 45 } else {
aoqi@0 46 return 1;
aoqi@0 47 }
aoqi@0 48 } else if (hr2 == NULL) {
aoqi@0 49 return -1;
aoqi@0 50 }
aoqi@0 51
aoqi@0 52 double gc_eff1 = hr1->gc_efficiency();
aoqi@0 53 double gc_eff2 = hr2->gc_efficiency();
aoqi@0 54 if (gc_eff1 > gc_eff2) {
aoqi@0 55 return -1;
aoqi@0 56 } if (gc_eff1 < gc_eff2) {
aoqi@0 57 return 1;
aoqi@0 58 } else {
aoqi@0 59 return 0;
aoqi@0 60 }
aoqi@0 61 }
aoqi@0 62
aoqi@0 63 static int order_regions(HeapRegion** hr1p, HeapRegion** hr2p) {
aoqi@0 64 return order_regions(*hr1p, *hr2p);
aoqi@0 65 }
aoqi@0 66
aoqi@0 67 CollectionSetChooser::CollectionSetChooser() :
aoqi@0 68 // The line below is the worst bit of C++ hackery I've ever written
aoqi@0 69 // (Detlefs, 11/23). You should think of it as equivalent to
aoqi@0 70 // "_regions(100, true)": initialize the growable array and inform it
aoqi@0 71 // that it should allocate its elem array(s) on the C heap.
aoqi@0 72 //
aoqi@0 73 // The first argument, however, is actually a comma expression
aoqi@0 74 // (set_allocation_type(this, C_HEAP), 100). The purpose of the
aoqi@0 75 // set_allocation_type() call is to replace the default allocation
aoqi@0 76 // type for embedded objects STACK_OR_EMBEDDED with C_HEAP. It will
aoqi@0 77 // allow to pass the assert in GenericGrowableArray() which checks
aoqi@0 78 // that a growable array object must be on C heap if elements are.
aoqi@0 79 //
aoqi@0 80 // Note: containing object is allocated on C heap since it is CHeapObj.
aoqi@0 81 //
aoqi@0 82 _regions((ResourceObj::set_allocation_type((address) &_regions,
aoqi@0 83 ResourceObj::C_HEAP),
aoqi@0 84 100), true /* C_Heap */),
aoqi@0 85 _curr_index(0), _length(0), _first_par_unreserved_idx(0),
aoqi@0 86 _region_live_threshold_bytes(0), _remaining_reclaimable_bytes(0) {
aoqi@0 87 _region_live_threshold_bytes =
aoqi@0 88 HeapRegion::GrainBytes * (size_t) G1MixedGCLiveThresholdPercent / 100;
aoqi@0 89 }
aoqi@0 90
aoqi@0 91 #ifndef PRODUCT
aoqi@0 92 void CollectionSetChooser::verify() {
aoqi@0 93 guarantee(_length <= regions_length(),
aoqi@0 94 err_msg("_length: %u regions length: %u", _length, regions_length()));
aoqi@0 95 guarantee(_curr_index <= _length,
aoqi@0 96 err_msg("_curr_index: %u _length: %u", _curr_index, _length));
aoqi@0 97 uint index = 0;
aoqi@0 98 size_t sum_of_reclaimable_bytes = 0;
aoqi@0 99 while (index < _curr_index) {
aoqi@0 100 guarantee(regions_at(index) == NULL,
aoqi@0 101 "all entries before _curr_index should be NULL");
aoqi@0 102 index += 1;
aoqi@0 103 }
aoqi@0 104 HeapRegion *prev = NULL;
aoqi@0 105 while (index < _length) {
aoqi@0 106 HeapRegion *curr = regions_at(index++);
aoqi@0 107 guarantee(curr != NULL, "Regions in _regions array cannot be NULL");
aoqi@0 108 guarantee(!curr->is_young(), "should not be young!");
aoqi@0 109 guarantee(!curr->isHumongous(), "should not be humongous!");
aoqi@0 110 if (prev != NULL) {
aoqi@0 111 guarantee(order_regions(prev, curr) != 1,
aoqi@0 112 err_msg("GC eff prev: %1.4f GC eff curr: %1.4f",
aoqi@0 113 prev->gc_efficiency(), curr->gc_efficiency()));
aoqi@0 114 }
aoqi@0 115 sum_of_reclaimable_bytes += curr->reclaimable_bytes();
aoqi@0 116 prev = curr;
aoqi@0 117 }
aoqi@0 118 guarantee(sum_of_reclaimable_bytes == _remaining_reclaimable_bytes,
aoqi@0 119 err_msg("reclaimable bytes inconsistent, "
kevinw@9327 120 "remaining: " SIZE_FORMAT " sum: " SIZE_FORMAT,
aoqi@0 121 _remaining_reclaimable_bytes, sum_of_reclaimable_bytes));
aoqi@0 122 }
aoqi@0 123 #endif // !PRODUCT
aoqi@0 124
aoqi@0 125 void CollectionSetChooser::sort_regions() {
aoqi@0 126 // First trim any unused portion of the top in the parallel case.
aoqi@0 127 if (_first_par_unreserved_idx > 0) {
aoqi@0 128 assert(_first_par_unreserved_idx <= regions_length(),
aoqi@0 129 "Or we didn't reserved enough length");
aoqi@0 130 regions_trunc_to(_first_par_unreserved_idx);
aoqi@0 131 }
aoqi@0 132 _regions.sort(order_regions);
aoqi@0 133 assert(_length <= regions_length(), "Requirement");
aoqi@0 134 #ifdef ASSERT
aoqi@0 135 for (uint i = 0; i < _length; i++) {
aoqi@0 136 assert(regions_at(i) != NULL, "Should be true by sorting!");
aoqi@0 137 }
aoqi@0 138 #endif // ASSERT
aoqi@0 139 if (G1PrintRegionLivenessInfo) {
aoqi@0 140 G1PrintRegionLivenessInfoClosure cl(gclog_or_tty, "Post-Sorting");
aoqi@0 141 for (uint i = 0; i < _length; ++i) {
aoqi@0 142 HeapRegion* r = regions_at(i);
aoqi@0 143 cl.doHeapRegion(r);
aoqi@0 144 }
aoqi@0 145 }
aoqi@0 146 verify();
aoqi@0 147 }
aoqi@0 148
aoqi@0 149
aoqi@0 150 void CollectionSetChooser::add_region(HeapRegion* hr) {
aoqi@0 151 assert(!hr->isHumongous(),
aoqi@0 152 "Humongous regions shouldn't be added to the collection set");
aoqi@0 153 assert(!hr->is_young(), "should not be young!");
aoqi@0 154 _regions.append(hr);
aoqi@0 155 _length++;
aoqi@0 156 _remaining_reclaimable_bytes += hr->reclaimable_bytes();
aoqi@0 157 hr->calc_gc_efficiency();
aoqi@0 158 }
aoqi@0 159
aoqi@0 160 void CollectionSetChooser::prepare_for_par_region_addition(uint n_regions,
aoqi@0 161 uint chunk_size) {
aoqi@0 162 _first_par_unreserved_idx = 0;
aoqi@0 163 uint n_threads = (uint) ParallelGCThreads;
aoqi@0 164 if (UseDynamicNumberOfGCThreads) {
aoqi@0 165 assert(G1CollectedHeap::heap()->workers()->active_workers() > 0,
aoqi@0 166 "Should have been set earlier");
aoqi@0 167 // This is defensive code. As the assertion above says, the number
aoqi@0 168 // of active threads should be > 0, but in case there is some path
aoqi@0 169 // or some improperly initialized variable with leads to no
aoqi@0 170 // active threads, protect against that in a product build.
aoqi@0 171 n_threads = MAX2(G1CollectedHeap::heap()->workers()->active_workers(),
aoqi@0 172 1U);
aoqi@0 173 }
aoqi@0 174 uint max_waste = n_threads * chunk_size;
aoqi@0 175 // it should be aligned with respect to chunk_size
aoqi@0 176 uint aligned_n_regions = (n_regions + chunk_size - 1) / chunk_size * chunk_size;
aoqi@0 177 assert(aligned_n_regions % chunk_size == 0, "should be aligned");
aoqi@0 178 regions_at_put_grow(aligned_n_regions + max_waste - 1, NULL);
aoqi@0 179 }
aoqi@0 180
aoqi@0 181 uint CollectionSetChooser::claim_array_chunk(uint chunk_size) {
aoqi@0 182 uint res = (uint) Atomic::add((jint) chunk_size,
aoqi@0 183 (volatile jint*) &_first_par_unreserved_idx);
aoqi@0 184 assert(regions_length() > res + chunk_size - 1,
aoqi@0 185 "Should already have been expanded");
aoqi@0 186 return res - chunk_size;
aoqi@0 187 }
aoqi@0 188
aoqi@0 189 void CollectionSetChooser::set_region(uint index, HeapRegion* hr) {
aoqi@0 190 assert(regions_at(index) == NULL, "precondition");
aoqi@0 191 assert(!hr->is_young(), "should not be young!");
aoqi@0 192 regions_at_put(index, hr);
aoqi@0 193 hr->calc_gc_efficiency();
aoqi@0 194 }
aoqi@0 195
aoqi@0 196 void CollectionSetChooser::update_totals(uint region_num,
aoqi@0 197 size_t reclaimable_bytes) {
aoqi@0 198 // Only take the lock if we actually need to update the totals.
aoqi@0 199 if (region_num > 0) {
aoqi@0 200 assert(reclaimable_bytes > 0, "invariant");
aoqi@0 201 // We could have just used atomics instead of taking the
aoqi@0 202 // lock. However, we currently don't have an atomic add for size_t.
aoqi@0 203 MutexLockerEx x(ParGCRareEvent_lock, Mutex::_no_safepoint_check_flag);
aoqi@0 204 _length += region_num;
aoqi@0 205 _remaining_reclaimable_bytes += reclaimable_bytes;
aoqi@0 206 } else {
aoqi@0 207 assert(reclaimable_bytes == 0, "invariant");
aoqi@0 208 }
aoqi@0 209 }
aoqi@0 210
aoqi@0 211 void CollectionSetChooser::clear() {
aoqi@0 212 _regions.clear();
aoqi@0 213 _curr_index = 0;
aoqi@0 214 _length = 0;
aoqi@0 215 _remaining_reclaimable_bytes = 0;
aoqi@0 216 };

mercurial