author | stefank |
Thu, 22 Feb 2018 18:36:32 +0100 | |
changeset 49048 | 4e8c86b75428 |
parent 47216 | 71c04702a3d5 |
child 49164 | 7e958a8ebcd3 |
permissions | -rw-r--r-- |
28031 | 1 |
/* |
37073
c39d0903390b
8151605: Change warning() to log_warning(gc) in the GC code
brutisso
parents:
35492
diff
changeset
|
2 |
* Copyright (c) 2014, 2016, Oracle and/or its affiliates. All rights reserved. |
28031 | 3 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
4 |
* |
|
5 |
* This code is free software; you can redistribute it and/or modify it |
|
6 |
* under the terms of the GNU General Public License version 2 only, as |
|
7 |
* published by the Free Software Foundation. |
|
8 |
* |
|
9 |
* This code is distributed in the hope that it will be useful, but WITHOUT |
|
10 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
11 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
12 |
* version 2 for more details (a copy is included in the LICENSE file that |
|
13 |
* accompanied this code). |
|
14 |
* |
|
15 |
* You should have received a copy of the GNU General Public License version |
|
16 |
* 2 along with this work; if not, write to the Free Software Foundation, |
|
17 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
|
18 |
* |
|
19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
|
20 |
* or visit www.oracle.com if you need additional information or have any |
|
21 |
* questions. |
|
22 |
* |
|
23 |
*/ |
|
24 |
||
25 |
#include "precompiled.hpp" |
|
28033
ab63acbd99ec
8066782: Move common code from CMSGeneration and TenuredGeneration to CardGeneration
brutisso
parents:
28031
diff
changeset
|
26 |
|
30764 | 27 |
#include "gc/shared/blockOffsetTable.inline.hpp" |
28 |
#include "gc/shared/cardGeneration.inline.hpp" |
|
33212 | 29 |
#include "gc/shared/cardTableRS.hpp" |
30764 | 30 |
#include "gc/shared/gcLocker.hpp" |
31 |
#include "gc/shared/genOopClosures.inline.hpp" |
|
32 |
#include "gc/shared/generationSpec.hpp" |
|
33 |
#include "gc/shared/space.inline.hpp" |
|
28031 | 34 |
#include "memory/iterator.hpp" |
35 |
#include "memory/memRegion.hpp" |
|
35061 | 36 |
#include "logging/log.hpp" |
28031 | 37 |
#include "runtime/java.hpp" |
38 |
||
31358
693058672cc6
8077842: Remove the level parameter passed around in GenCollectedHeap
jwilhelm
parents:
30870
diff
changeset
|
39 |
CardGeneration::CardGeneration(ReservedSpace rs, |
693058672cc6
8077842: Remove the level parameter passed around in GenCollectedHeap
jwilhelm
parents:
30870
diff
changeset
|
40 |
size_t initial_byte_size, |
33212 | 41 |
CardTableRS* remset) : |
31358
693058672cc6
8077842: Remove the level parameter passed around in GenCollectedHeap
jwilhelm
parents:
30870
diff
changeset
|
42 |
Generation(rs, initial_byte_size), _rs(remset), |
28031 | 43 |
_shrink_factor(0), _min_heap_delta_bytes(), _capacity_at_prologue(), |
44 |
_used_at_prologue() |
|
45 |
{ |
|
46 |
HeapWord* start = (HeapWord*)rs.base(); |
|
47 |
size_t reserved_byte_size = rs.size(); |
|
48 |
assert((uintptr_t(start) & 3) == 0, "bad alignment"); |
|
49 |
assert((reserved_byte_size & 3) == 0, "bad alignment"); |
|
50 |
MemRegion reserved_mr(start, heap_word_size(reserved_byte_size)); |
|
51 |
_bts = new BlockOffsetSharedArray(reserved_mr, |
|
52 |
heap_word_size(initial_byte_size)); |
|
53 |
MemRegion committed_mr(start, heap_word_size(initial_byte_size)); |
|
54 |
_rs->resize_covered_region(committed_mr); |
|
28033
ab63acbd99ec
8066782: Move common code from CMSGeneration and TenuredGeneration to CardGeneration
brutisso
parents:
28031
diff
changeset
|
55 |
if (_bts == NULL) { |
28031 | 56 |
vm_exit_during_initialization("Could not allocate a BlockOffsetArray"); |
28033
ab63acbd99ec
8066782: Move common code from CMSGeneration and TenuredGeneration to CardGeneration
brutisso
parents:
28031
diff
changeset
|
57 |
} |
28031 | 58 |
|
59 |
// Verify that the start and end of this generation is the start of a card. |
|
60 |
// If this wasn't true, a single card could span more than on generation, |
|
61 |
// which would cause problems when we commit/uncommit memory, and when we |
|
62 |
// clear and dirty cards. |
|
63 |
guarantee(_rs->is_aligned(reserved_mr.start()), "generation must be card aligned"); |
|
30173
13cf7580b000
8077413: Avoid use of Universe::heap() inside collectors
pliden
parents:
28033
diff
changeset
|
64 |
if (reserved_mr.end() != GenCollectedHeap::heap()->reserved_region().end()) { |
28031 | 65 |
// Don't check at the very end of the heap as we'll assert that we're probing off |
66 |
// the end if we try. |
|
67 |
guarantee(_rs->is_aligned(reserved_mr.end()), "generation must be card aligned"); |
|
68 |
} |
|
69 |
_min_heap_delta_bytes = MinHeapDeltaBytes; |
|
70 |
_capacity_at_prologue = initial_byte_size; |
|
71 |
_used_at_prologue = 0; |
|
72 |
} |
|
73 |
||
28033
ab63acbd99ec
8066782: Move common code from CMSGeneration and TenuredGeneration to CardGeneration
brutisso
parents:
28031
diff
changeset
|
74 |
bool CardGeneration::grow_by(size_t bytes) { |
ab63acbd99ec
8066782: Move common code from CMSGeneration and TenuredGeneration to CardGeneration
brutisso
parents:
28031
diff
changeset
|
75 |
assert_correct_size_change_locking(); |
ab63acbd99ec
8066782: Move common code from CMSGeneration and TenuredGeneration to CardGeneration
brutisso
parents:
28031
diff
changeset
|
76 |
bool result = _virtual_space.expand_by(bytes); |
ab63acbd99ec
8066782: Move common code from CMSGeneration and TenuredGeneration to CardGeneration
brutisso
parents:
28031
diff
changeset
|
77 |
if (result) { |
ab63acbd99ec
8066782: Move common code from CMSGeneration and TenuredGeneration to CardGeneration
brutisso
parents:
28031
diff
changeset
|
78 |
size_t new_word_size = |
ab63acbd99ec
8066782: Move common code from CMSGeneration and TenuredGeneration to CardGeneration
brutisso
parents:
28031
diff
changeset
|
79 |
heap_word_size(_virtual_space.committed_size()); |
ab63acbd99ec
8066782: Move common code from CMSGeneration and TenuredGeneration to CardGeneration
brutisso
parents:
28031
diff
changeset
|
80 |
MemRegion mr(space()->bottom(), new_word_size); |
ab63acbd99ec
8066782: Move common code from CMSGeneration and TenuredGeneration to CardGeneration
brutisso
parents:
28031
diff
changeset
|
81 |
// Expand card table |
30173
13cf7580b000
8077413: Avoid use of Universe::heap() inside collectors
pliden
parents:
28033
diff
changeset
|
82 |
GenCollectedHeap::heap()->barrier_set()->resize_covered_region(mr); |
28033
ab63acbd99ec
8066782: Move common code from CMSGeneration and TenuredGeneration to CardGeneration
brutisso
parents:
28031
diff
changeset
|
83 |
// Expand shared block offset array |
ab63acbd99ec
8066782: Move common code from CMSGeneration and TenuredGeneration to CardGeneration
brutisso
parents:
28031
diff
changeset
|
84 |
_bts->resize(new_word_size); |
ab63acbd99ec
8066782: Move common code from CMSGeneration and TenuredGeneration to CardGeneration
brutisso
parents:
28031
diff
changeset
|
85 |
|
ab63acbd99ec
8066782: Move common code from CMSGeneration and TenuredGeneration to CardGeneration
brutisso
parents:
28031
diff
changeset
|
86 |
// Fix for bug #4668531 |
ab63acbd99ec
8066782: Move common code from CMSGeneration and TenuredGeneration to CardGeneration
brutisso
parents:
28031
diff
changeset
|
87 |
if (ZapUnusedHeapArea) { |
ab63acbd99ec
8066782: Move common code from CMSGeneration and TenuredGeneration to CardGeneration
brutisso
parents:
28031
diff
changeset
|
88 |
MemRegion mangle_region(space()->end(), |
ab63acbd99ec
8066782: Move common code from CMSGeneration and TenuredGeneration to CardGeneration
brutisso
parents:
28031
diff
changeset
|
89 |
(HeapWord*)_virtual_space.high()); |
ab63acbd99ec
8066782: Move common code from CMSGeneration and TenuredGeneration to CardGeneration
brutisso
parents:
28031
diff
changeset
|
90 |
SpaceMangler::mangle_region(mangle_region); |
ab63acbd99ec
8066782: Move common code from CMSGeneration and TenuredGeneration to CardGeneration
brutisso
parents:
28031
diff
changeset
|
91 |
} |
ab63acbd99ec
8066782: Move common code from CMSGeneration and TenuredGeneration to CardGeneration
brutisso
parents:
28031
diff
changeset
|
92 |
|
ab63acbd99ec
8066782: Move common code from CMSGeneration and TenuredGeneration to CardGeneration
brutisso
parents:
28031
diff
changeset
|
93 |
// Expand space -- also expands space's BOT |
ab63acbd99ec
8066782: Move common code from CMSGeneration and TenuredGeneration to CardGeneration
brutisso
parents:
28031
diff
changeset
|
94 |
// (which uses (part of) shared array above) |
ab63acbd99ec
8066782: Move common code from CMSGeneration and TenuredGeneration to CardGeneration
brutisso
parents:
28031
diff
changeset
|
95 |
space()->set_end((HeapWord*)_virtual_space.high()); |
ab63acbd99ec
8066782: Move common code from CMSGeneration and TenuredGeneration to CardGeneration
brutisso
parents:
28031
diff
changeset
|
96 |
|
ab63acbd99ec
8066782: Move common code from CMSGeneration and TenuredGeneration to CardGeneration
brutisso
parents:
28031
diff
changeset
|
97 |
// update the space and generation capacity counters |
ab63acbd99ec
8066782: Move common code from CMSGeneration and TenuredGeneration to CardGeneration
brutisso
parents:
28031
diff
changeset
|
98 |
update_counters(); |
ab63acbd99ec
8066782: Move common code from CMSGeneration and TenuredGeneration to CardGeneration
brutisso
parents:
28031
diff
changeset
|
99 |
|
35061 | 100 |
size_t new_mem_size = _virtual_space.committed_size(); |
101 |
size_t old_mem_size = new_mem_size - bytes; |
|
102 |
log_trace(gc, heap)("Expanding %s from " SIZE_FORMAT "K by " SIZE_FORMAT "K to " SIZE_FORMAT "K", |
|
103 |
name(), old_mem_size/K, bytes/K, new_mem_size/K); |
|
28033
ab63acbd99ec
8066782: Move common code from CMSGeneration and TenuredGeneration to CardGeneration
brutisso
parents:
28031
diff
changeset
|
104 |
} |
ab63acbd99ec
8066782: Move common code from CMSGeneration and TenuredGeneration to CardGeneration
brutisso
parents:
28031
diff
changeset
|
105 |
return result; |
ab63acbd99ec
8066782: Move common code from CMSGeneration and TenuredGeneration to CardGeneration
brutisso
parents:
28031
diff
changeset
|
106 |
} |
ab63acbd99ec
8066782: Move common code from CMSGeneration and TenuredGeneration to CardGeneration
brutisso
parents:
28031
diff
changeset
|
107 |
|
28031 | 108 |
bool CardGeneration::expand(size_t bytes, size_t expand_bytes) { |
109 |
assert_locked_or_safepoint(Heap_lock); |
|
110 |
if (bytes == 0) { |
|
111 |
return true; // That's what grow_by(0) would return |
|
112 |
} |
|
113 |
size_t aligned_bytes = ReservedSpace::page_align_size_up(bytes); |
|
114 |
if (aligned_bytes == 0){ |
|
115 |
// The alignment caused the number of bytes to wrap. An expand_by(0) will |
|
116 |
// return true with the implication that an expansion was done when it |
|
117 |
// was not. A call to expand implies a best effort to expand by "bytes" |
|
118 |
// but not a guarantee. Align down to give a best effort. This is likely |
|
119 |
// the most that the generation can expand since it has some capacity to |
|
120 |
// start with. |
|
121 |
aligned_bytes = ReservedSpace::page_align_size_down(bytes); |
|
122 |
} |
|
123 |
size_t aligned_expand_bytes = ReservedSpace::page_align_size_up(expand_bytes); |
|
124 |
bool success = false; |
|
125 |
if (aligned_expand_bytes > aligned_bytes) { |
|
126 |
success = grow_by(aligned_expand_bytes); |
|
127 |
} |
|
128 |
if (!success) { |
|
129 |
success = grow_by(aligned_bytes); |
|
130 |
} |
|
131 |
if (!success) { |
|
132 |
success = grow_to_reserved(); |
|
133 |
} |
|
35492
c8c0273e6b91
8146690: Make all classes in GC follow the naming convention.
david
parents:
35061
diff
changeset
|
134 |
if (success && GCLocker::is_active_and_needs_gc()) { |
35061 | 135 |
log_trace(gc, heap)("Garbage collection disabled, expanded heap instead"); |
28031 | 136 |
} |
137 |
||
138 |
return success; |
|
139 |
} |
|
140 |
||
28033
ab63acbd99ec
8066782: Move common code from CMSGeneration and TenuredGeneration to CardGeneration
brutisso
parents:
28031
diff
changeset
|
141 |
bool CardGeneration::grow_to_reserved() { |
ab63acbd99ec
8066782: Move common code from CMSGeneration and TenuredGeneration to CardGeneration
brutisso
parents:
28031
diff
changeset
|
142 |
assert_correct_size_change_locking(); |
ab63acbd99ec
8066782: Move common code from CMSGeneration and TenuredGeneration to CardGeneration
brutisso
parents:
28031
diff
changeset
|
143 |
bool success = true; |
ab63acbd99ec
8066782: Move common code from CMSGeneration and TenuredGeneration to CardGeneration
brutisso
parents:
28031
diff
changeset
|
144 |
const size_t remaining_bytes = _virtual_space.uncommitted_size(); |
ab63acbd99ec
8066782: Move common code from CMSGeneration and TenuredGeneration to CardGeneration
brutisso
parents:
28031
diff
changeset
|
145 |
if (remaining_bytes > 0) { |
ab63acbd99ec
8066782: Move common code from CMSGeneration and TenuredGeneration to CardGeneration
brutisso
parents:
28031
diff
changeset
|
146 |
success = grow_by(remaining_bytes); |
37073
c39d0903390b
8151605: Change warning() to log_warning(gc) in the GC code
brutisso
parents:
35492
diff
changeset
|
147 |
DEBUG_ONLY(if (!success) log_warning(gc)("grow to reserved failed");) |
28033
ab63acbd99ec
8066782: Move common code from CMSGeneration and TenuredGeneration to CardGeneration
brutisso
parents:
28031
diff
changeset
|
148 |
} |
ab63acbd99ec
8066782: Move common code from CMSGeneration and TenuredGeneration to CardGeneration
brutisso
parents:
28031
diff
changeset
|
149 |
return success; |
ab63acbd99ec
8066782: Move common code from CMSGeneration and TenuredGeneration to CardGeneration
brutisso
parents:
28031
diff
changeset
|
150 |
} |
ab63acbd99ec
8066782: Move common code from CMSGeneration and TenuredGeneration to CardGeneration
brutisso
parents:
28031
diff
changeset
|
151 |
|
ab63acbd99ec
8066782: Move common code from CMSGeneration and TenuredGeneration to CardGeneration
brutisso
parents:
28031
diff
changeset
|
152 |
void CardGeneration::shrink(size_t bytes) { |
ab63acbd99ec
8066782: Move common code from CMSGeneration and TenuredGeneration to CardGeneration
brutisso
parents:
28031
diff
changeset
|
153 |
assert_correct_size_change_locking(); |
ab63acbd99ec
8066782: Move common code from CMSGeneration and TenuredGeneration to CardGeneration
brutisso
parents:
28031
diff
changeset
|
154 |
|
ab63acbd99ec
8066782: Move common code from CMSGeneration and TenuredGeneration to CardGeneration
brutisso
parents:
28031
diff
changeset
|
155 |
size_t size = ReservedSpace::page_align_size_down(bytes); |
ab63acbd99ec
8066782: Move common code from CMSGeneration and TenuredGeneration to CardGeneration
brutisso
parents:
28031
diff
changeset
|
156 |
if (size == 0) { |
ab63acbd99ec
8066782: Move common code from CMSGeneration and TenuredGeneration to CardGeneration
brutisso
parents:
28031
diff
changeset
|
157 |
return; |
ab63acbd99ec
8066782: Move common code from CMSGeneration and TenuredGeneration to CardGeneration
brutisso
parents:
28031
diff
changeset
|
158 |
} |
ab63acbd99ec
8066782: Move common code from CMSGeneration and TenuredGeneration to CardGeneration
brutisso
parents:
28031
diff
changeset
|
159 |
|
ab63acbd99ec
8066782: Move common code from CMSGeneration and TenuredGeneration to CardGeneration
brutisso
parents:
28031
diff
changeset
|
160 |
// Shrink committed space |
ab63acbd99ec
8066782: Move common code from CMSGeneration and TenuredGeneration to CardGeneration
brutisso
parents:
28031
diff
changeset
|
161 |
_virtual_space.shrink_by(size); |
ab63acbd99ec
8066782: Move common code from CMSGeneration and TenuredGeneration to CardGeneration
brutisso
parents:
28031
diff
changeset
|
162 |
// Shrink space; this also shrinks the space's BOT |
ab63acbd99ec
8066782: Move common code from CMSGeneration and TenuredGeneration to CardGeneration
brutisso
parents:
28031
diff
changeset
|
163 |
space()->set_end((HeapWord*) _virtual_space.high()); |
ab63acbd99ec
8066782: Move common code from CMSGeneration and TenuredGeneration to CardGeneration
brutisso
parents:
28031
diff
changeset
|
164 |
size_t new_word_size = heap_word_size(space()->capacity()); |
ab63acbd99ec
8066782: Move common code from CMSGeneration and TenuredGeneration to CardGeneration
brutisso
parents:
28031
diff
changeset
|
165 |
// Shrink the shared block offset array |
ab63acbd99ec
8066782: Move common code from CMSGeneration and TenuredGeneration to CardGeneration
brutisso
parents:
28031
diff
changeset
|
166 |
_bts->resize(new_word_size); |
ab63acbd99ec
8066782: Move common code from CMSGeneration and TenuredGeneration to CardGeneration
brutisso
parents:
28031
diff
changeset
|
167 |
MemRegion mr(space()->bottom(), new_word_size); |
ab63acbd99ec
8066782: Move common code from CMSGeneration and TenuredGeneration to CardGeneration
brutisso
parents:
28031
diff
changeset
|
168 |
// Shrink the card table |
30173
13cf7580b000
8077413: Avoid use of Universe::heap() inside collectors
pliden
parents:
28033
diff
changeset
|
169 |
GenCollectedHeap::heap()->barrier_set()->resize_covered_region(mr); |
28033
ab63acbd99ec
8066782: Move common code from CMSGeneration and TenuredGeneration to CardGeneration
brutisso
parents:
28031
diff
changeset
|
170 |
|
35061 | 171 |
size_t new_mem_size = _virtual_space.committed_size(); |
172 |
size_t old_mem_size = new_mem_size + size; |
|
173 |
log_trace(gc, heap)("Shrinking %s from " SIZE_FORMAT "K to " SIZE_FORMAT "K", |
|
174 |
name(), old_mem_size/K, new_mem_size/K); |
|
28033
ab63acbd99ec
8066782: Move common code from CMSGeneration and TenuredGeneration to CardGeneration
brutisso
parents:
28031
diff
changeset
|
175 |
} |
ab63acbd99ec
8066782: Move common code from CMSGeneration and TenuredGeneration to CardGeneration
brutisso
parents:
28031
diff
changeset
|
176 |
|
28031 | 177 |
// No young generation references, clear this generation's cards. |
178 |
void CardGeneration::clear_remembered_set() { |
|
179 |
_rs->clear(reserved()); |
|
180 |
} |
|
181 |
||
182 |
// Objects in this generation may have moved, invalidate this |
|
183 |
// generation's cards. |
|
184 |
void CardGeneration::invalidate_remembered_set() { |
|
185 |
_rs->invalidate(used_region()); |
|
186 |
} |
|
187 |
||
188 |
void CardGeneration::compute_new_size() { |
|
189 |
assert(_shrink_factor <= 100, "invalid shrink factor"); |
|
190 |
size_t current_shrink_factor = _shrink_factor; |
|
191 |
_shrink_factor = 0; |
|
192 |
||
193 |
// We don't have floating point command-line arguments |
|
194 |
// Note: argument processing ensures that MinHeapFreeRatio < 100. |
|
195 |
const double minimum_free_percentage = MinHeapFreeRatio / 100.0; |
|
196 |
const double maximum_used_percentage = 1.0 - minimum_free_percentage; |
|
197 |
||
198 |
// Compute some numbers about the state of the heap. |
|
199 |
const size_t used_after_gc = used(); |
|
200 |
const size_t capacity_after_gc = capacity(); |
|
201 |
||
202 |
const double min_tmp = used_after_gc / maximum_used_percentage; |
|
203 |
size_t minimum_desired_capacity = (size_t)MIN2(min_tmp, double(max_uintx)); |
|
204 |
// Don't shrink less than the initial generation size |
|
33580 | 205 |
minimum_desired_capacity = MAX2(minimum_desired_capacity, initial_size()); |
28031 | 206 |
assert(used_after_gc <= minimum_desired_capacity, "sanity check"); |
207 |
||
208 |
const size_t free_after_gc = free(); |
|
209 |
const double free_percentage = ((double)free_after_gc) / capacity_after_gc; |
|
35061 | 210 |
log_trace(gc, heap)("TenuredGeneration::compute_new_size:"); |
211 |
log_trace(gc, heap)(" minimum_free_percentage: %6.2f maximum_used_percentage: %6.2f", |
|
28031 | 212 |
minimum_free_percentage, |
213 |
maximum_used_percentage); |
|
35061 | 214 |
log_trace(gc, heap)(" free_after_gc : %6.1fK used_after_gc : %6.1fK capacity_after_gc : %6.1fK", |
28031 | 215 |
free_after_gc / (double) K, |
216 |
used_after_gc / (double) K, |
|
217 |
capacity_after_gc / (double) K); |
|
35061 | 218 |
log_trace(gc, heap)(" free_percentage: %6.2f", free_percentage); |
28031 | 219 |
|
220 |
if (capacity_after_gc < minimum_desired_capacity) { |
|
221 |
// If we have less free space than we want then expand |
|
222 |
size_t expand_bytes = minimum_desired_capacity - capacity_after_gc; |
|
223 |
// Don't expand unless it's significant |
|
224 |
if (expand_bytes >= _min_heap_delta_bytes) { |
|
225 |
expand(expand_bytes, 0); // safe if expansion fails |
|
226 |
} |
|
35061 | 227 |
log_trace(gc, heap)(" expanding: minimum_desired_capacity: %6.1fK expand_bytes: %6.1fK _min_heap_delta_bytes: %6.1fK", |
228 |
minimum_desired_capacity / (double) K, |
|
229 |
expand_bytes / (double) K, |
|
230 |
_min_heap_delta_bytes / (double) K); |
|
28031 | 231 |
return; |
232 |
} |
|
233 |
||
234 |
// No expansion, now see if we want to shrink |
|
235 |
size_t shrink_bytes = 0; |
|
236 |
// We would never want to shrink more than this |
|
237 |
size_t max_shrink_bytes = capacity_after_gc - minimum_desired_capacity; |
|
238 |
||
239 |
if (MaxHeapFreeRatio < 100) { |
|
240 |
const double maximum_free_percentage = MaxHeapFreeRatio / 100.0; |
|
241 |
const double minimum_used_percentage = 1.0 - maximum_free_percentage; |
|
242 |
const double max_tmp = used_after_gc / minimum_used_percentage; |
|
243 |
size_t maximum_desired_capacity = (size_t)MIN2(max_tmp, double(max_uintx)); |
|
33580 | 244 |
maximum_desired_capacity = MAX2(maximum_desired_capacity, initial_size()); |
35061 | 245 |
log_trace(gc, heap)(" maximum_free_percentage: %6.2f minimum_used_percentage: %6.2f", |
246 |
maximum_free_percentage, minimum_used_percentage); |
|
247 |
log_trace(gc, heap)(" _capacity_at_prologue: %6.1fK minimum_desired_capacity: %6.1fK maximum_desired_capacity: %6.1fK", |
|
28031 | 248 |
_capacity_at_prologue / (double) K, |
249 |
minimum_desired_capacity / (double) K, |
|
250 |
maximum_desired_capacity / (double) K); |
|
251 |
assert(minimum_desired_capacity <= maximum_desired_capacity, |
|
252 |
"sanity check"); |
|
253 |
||
254 |
if (capacity_after_gc > maximum_desired_capacity) { |
|
255 |
// Capacity too large, compute shrinking size |
|
256 |
shrink_bytes = capacity_after_gc - maximum_desired_capacity; |
|
37166
8a5f1594e692
8146436: Add -XX:-ShrinkHeapInSteps option (previously -XX:+UseAggressiveHeapShrink)
cjplummer
parents:
37073
diff
changeset
|
257 |
if (ShrinkHeapInSteps) { |
8a5f1594e692
8146436: Add -XX:-ShrinkHeapInSteps option (previously -XX:+UseAggressiveHeapShrink)
cjplummer
parents:
37073
diff
changeset
|
258 |
// If ShrinkHeapInSteps is true (the default), |
8a5f1594e692
8146436: Add -XX:-ShrinkHeapInSteps option (previously -XX:+UseAggressiveHeapShrink)
cjplummer
parents:
37073
diff
changeset
|
259 |
// we don't want to shrink all the way back to initSize if people call |
8a5f1594e692
8146436: Add -XX:-ShrinkHeapInSteps option (previously -XX:+UseAggressiveHeapShrink)
cjplummer
parents:
37073
diff
changeset
|
260 |
// System.gc(), because some programs do that between "phases" and then |
8a5f1594e692
8146436: Add -XX:-ShrinkHeapInSteps option (previously -XX:+UseAggressiveHeapShrink)
cjplummer
parents:
37073
diff
changeset
|
261 |
// we'd just have to grow the heap up again for the next phase. So we |
8a5f1594e692
8146436: Add -XX:-ShrinkHeapInSteps option (previously -XX:+UseAggressiveHeapShrink)
cjplummer
parents:
37073
diff
changeset
|
262 |
// damp the shrinking: 0% on the first call, 10% on the second call, 40% |
8a5f1594e692
8146436: Add -XX:-ShrinkHeapInSteps option (previously -XX:+UseAggressiveHeapShrink)
cjplummer
parents:
37073
diff
changeset
|
263 |
// on the third call, and 100% by the fourth call. But if we recompute |
8a5f1594e692
8146436: Add -XX:-ShrinkHeapInSteps option (previously -XX:+UseAggressiveHeapShrink)
cjplummer
parents:
37073
diff
changeset
|
264 |
// size without shrinking, it goes back to 0%. |
8a5f1594e692
8146436: Add -XX:-ShrinkHeapInSteps option (previously -XX:+UseAggressiveHeapShrink)
cjplummer
parents:
37073
diff
changeset
|
265 |
shrink_bytes = shrink_bytes / 100 * current_shrink_factor; |
8a5f1594e692
8146436: Add -XX:-ShrinkHeapInSteps option (previously -XX:+UseAggressiveHeapShrink)
cjplummer
parents:
37073
diff
changeset
|
266 |
if (current_shrink_factor == 0) { |
8a5f1594e692
8146436: Add -XX:-ShrinkHeapInSteps option (previously -XX:+UseAggressiveHeapShrink)
cjplummer
parents:
37073
diff
changeset
|
267 |
_shrink_factor = 10; |
8a5f1594e692
8146436: Add -XX:-ShrinkHeapInSteps option (previously -XX:+UseAggressiveHeapShrink)
cjplummer
parents:
37073
diff
changeset
|
268 |
} else { |
8a5f1594e692
8146436: Add -XX:-ShrinkHeapInSteps option (previously -XX:+UseAggressiveHeapShrink)
cjplummer
parents:
37073
diff
changeset
|
269 |
_shrink_factor = MIN2(current_shrink_factor * 4, (size_t) 100); |
8a5f1594e692
8146436: Add -XX:-ShrinkHeapInSteps option (previously -XX:+UseAggressiveHeapShrink)
cjplummer
parents:
37073
diff
changeset
|
270 |
} |
8a5f1594e692
8146436: Add -XX:-ShrinkHeapInSteps option (previously -XX:+UseAggressiveHeapShrink)
cjplummer
parents:
37073
diff
changeset
|
271 |
} |
28031 | 272 |
assert(shrink_bytes <= max_shrink_bytes, "invalid shrink size"); |
35061 | 273 |
log_trace(gc, heap)(" shrinking: initSize: %.1fK maximum_desired_capacity: %.1fK", |
274 |
initial_size() / (double) K, maximum_desired_capacity / (double) K); |
|
275 |
log_trace(gc, heap)(" shrink_bytes: %.1fK current_shrink_factor: " SIZE_FORMAT " new shrink factor: " SIZE_FORMAT " _min_heap_delta_bytes: %.1fK", |
|
33580 | 276 |
shrink_bytes / (double) K, |
277 |
current_shrink_factor, |
|
278 |
_shrink_factor, |
|
279 |
_min_heap_delta_bytes / (double) K); |
|
28031 | 280 |
} |
281 |
} |
|
282 |
||
283 |
if (capacity_after_gc > _capacity_at_prologue) { |
|
284 |
// We might have expanded for promotions, in which case we might want to |
|
285 |
// take back that expansion if there's room after GC. That keeps us from |
|
286 |
// stretching the heap with promotions when there's plenty of room. |
|
287 |
size_t expansion_for_promotion = capacity_after_gc - _capacity_at_prologue; |
|
288 |
expansion_for_promotion = MIN2(expansion_for_promotion, max_shrink_bytes); |
|
289 |
// We have two shrinking computations, take the largest |
|
290 |
shrink_bytes = MAX2(shrink_bytes, expansion_for_promotion); |
|
291 |
assert(shrink_bytes <= max_shrink_bytes, "invalid shrink size"); |
|
35061 | 292 |
log_trace(gc, heap)(" aggressive shrinking: _capacity_at_prologue: %.1fK capacity_after_gc: %.1fK expansion_for_promotion: %.1fK shrink_bytes: %.1fK", |
293 |
capacity_after_gc / (double) K, |
|
294 |
_capacity_at_prologue / (double) K, |
|
295 |
expansion_for_promotion / (double) K, |
|
296 |
shrink_bytes / (double) K); |
|
28031 | 297 |
} |
298 |
// Don't shrink unless it's significant |
|
299 |
if (shrink_bytes >= _min_heap_delta_bytes) { |
|
300 |
shrink(shrink_bytes); |
|
301 |
} |
|
302 |
} |
|
303 |
||
304 |
// Currently nothing to do. |
|
305 |
void CardGeneration::prepare_for_verify() {} |
|
28033
ab63acbd99ec
8066782: Move common code from CMSGeneration and TenuredGeneration to CardGeneration
brutisso
parents:
28031
diff
changeset
|
306 |
|
ab63acbd99ec
8066782: Move common code from CMSGeneration and TenuredGeneration to CardGeneration
brutisso
parents:
28031
diff
changeset
|
307 |
void CardGeneration::space_iterate(SpaceClosure* blk, |
ab63acbd99ec
8066782: Move common code from CMSGeneration and TenuredGeneration to CardGeneration
brutisso
parents:
28031
diff
changeset
|
308 |
bool usedOnly) { |
ab63acbd99ec
8066782: Move common code from CMSGeneration and TenuredGeneration to CardGeneration
brutisso
parents:
28031
diff
changeset
|
309 |
blk->do_space(space()); |
ab63acbd99ec
8066782: Move common code from CMSGeneration and TenuredGeneration to CardGeneration
brutisso
parents:
28031
diff
changeset
|
310 |
} |
ab63acbd99ec
8066782: Move common code from CMSGeneration and TenuredGeneration to CardGeneration
brutisso
parents:
28031
diff
changeset
|
311 |
|
30870
3050fdcdc60b
8080112: Replace and remove the last usages of CollectedHeap::n_par_threads()
stefank
parents:
30764
diff
changeset
|
312 |
void CardGeneration::younger_refs_iterate(OopsInGenClosure* blk, uint n_threads) { |
28033
ab63acbd99ec
8066782: Move common code from CMSGeneration and TenuredGeneration to CardGeneration
brutisso
parents:
28031
diff
changeset
|
313 |
blk->set_generation(this); |
30870
3050fdcdc60b
8080112: Replace and remove the last usages of CollectedHeap::n_par_threads()
stefank
parents:
30764
diff
changeset
|
314 |
younger_refs_in_space_iterate(space(), blk, n_threads); |
28033
ab63acbd99ec
8066782: Move common code from CMSGeneration and TenuredGeneration to CardGeneration
brutisso
parents:
28031
diff
changeset
|
315 |
blk->reset_generation(); |
ab63acbd99ec
8066782: Move common code from CMSGeneration and TenuredGeneration to CardGeneration
brutisso
parents:
28031
diff
changeset
|
316 |
} |