Skip to content

Commit fb86d13

Browse files
committedJul 14, 2021
8270100: Fix some inaccurate GC logging
Reviewed-by: ayang, tschatzl
1 parent b1bb05b commit fb86d13

File tree

4 files changed

+38
-24
lines changed

4 files changed

+38
-24
lines changed
 

‎src/hotspot/share/gc/serial/defNewGeneration.cpp

+23-20
Original file line numberDiff line numberDiff line change
@@ -313,29 +313,31 @@ bool DefNewGeneration::expand(size_t bytes) {
313313
return success;
314314
}
315315

316+
size_t DefNewGeneration::calculate_thread_increase_size(int threads_count) const {
317+
size_t thread_increase_size = 0;
318+
// Check an overflow at 'threads_count * NewSizeThreadIncrease'.
319+
if (threads_count > 0 && NewSizeThreadIncrease <= max_uintx / threads_count) {
320+
thread_increase_size = threads_count * NewSizeThreadIncrease;
321+
}
322+
return thread_increase_size;
323+
}
324+
316325
size_t DefNewGeneration::adjust_for_thread_increase(size_t new_size_candidate,
317326
size_t new_size_before,
318-
size_t alignment) const {
327+
size_t alignment,
328+
size_t thread_increase_size) const {
319329
size_t desired_new_size = new_size_before;
320330

321-
if (NewSizeThreadIncrease > 0) {
322-
int threads_count;
323-
size_t thread_increase_size = 0;
324-
325-
// 1. Check an overflow at 'threads_count * NewSizeThreadIncrease'.
326-
threads_count = Threads::number_of_non_daemon_threads();
327-
if (threads_count > 0 && NewSizeThreadIncrease <= max_uintx / threads_count) {
328-
thread_increase_size = threads_count * NewSizeThreadIncrease;
331+
if (NewSizeThreadIncrease > 0 && thread_increase_size > 0) {
329332

330-
// 2. Check an overflow at 'new_size_candidate + thread_increase_size'.
331-
if (new_size_candidate <= max_uintx - thread_increase_size) {
332-
new_size_candidate += thread_increase_size;
333+
// 1. Check an overflow at 'new_size_candidate + thread_increase_size'.
334+
if (new_size_candidate <= max_uintx - thread_increase_size) {
335+
new_size_candidate += thread_increase_size;
333336

334-
// 3. Check an overflow at 'align_up'.
335-
size_t aligned_max = ((max_uintx - alignment) & ~(alignment-1));
336-
if (new_size_candidate <= aligned_max) {
337-
desired_new_size = align_up(new_size_candidate, alignment);
338-
}
337+
// 2. Check an overflow at 'align_up'.
338+
size_t aligned_max = ((max_uintx - alignment) & ~(alignment-1));
339+
if (new_size_candidate <= aligned_max) {
340+
desired_new_size = align_up(new_size_candidate, alignment);
339341
}
340342
}
341343
}
@@ -364,13 +366,14 @@ void DefNewGeneration::compute_new_size() {
364366
// All space sizes must be multiples of Generation::GenGrain.
365367
size_t alignment = Generation::GenGrain;
366368

367-
int threads_count = 0;
368-
size_t thread_increase_size = 0;
369+
int threads_count = Threads::number_of_non_daemon_threads();
370+
size_t thread_increase_size = calculate_thread_increase_size(threads_count);
369371

370372
size_t new_size_candidate = old_size / NewRatio;
371373
// Compute desired new generation size based on NewRatio and NewSizeThreadIncrease
372374
// and reverts to previous value if any overflow happens
373-
size_t desired_new_size = adjust_for_thread_increase(new_size_candidate, new_size_before, alignment);
375+
size_t desired_new_size = adjust_for_thread_increase(new_size_candidate, new_size_before,
376+
alignment, thread_increase_size);
374377

375378
// Adjust new generation size
376379
desired_new_size = clamp(desired_new_size, min_new_size, max_new_size);

‎src/hotspot/share/gc/serial/defNewGeneration.hpp

+4-1
Original file line numberDiff line numberDiff line change
@@ -341,7 +341,10 @@ class DefNewGeneration: public Generation {
341341
// If any overflow happens, revert to previous new size.
342342
size_t adjust_for_thread_increase(size_t new_size_candidate,
343343
size_t new_size_before,
344-
size_t alignment) const;
344+
size_t alignment,
345+
size_t thread_increase_size) const;
346+
347+
size_t calculate_thread_increase_size(int threads_count) const;
345348

346349

347350
// Scavenge support

‎src/hotspot/share/gc/serial/tenuredGeneration.cpp

+2-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,8 @@ TenuredGeneration::TenuredGeneration(ReservedSpace rs,
5151
HeapWord* end = (HeapWord*) _virtual_space.high();
5252
_the_space = new TenuredSpace(_bts, MemRegion(bottom, end));
5353
_the_space->reset_saved_mark();
54-
_shrink_factor = 0;
54+
// If we don't shrink the heap in steps, '_shrink_factor' is always 100%.
55+
_shrink_factor = ShrinkHeapInSteps ? 0 : 100;
5556
_capacity_at_prologue = 0;
5657

5758
_gc_stats = new GCStats();

‎src/hotspot/share/gc/shared/cardGeneration.cpp

+9-2
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,11 @@ CardGeneration::CardGeneration(ReservedSpace rs,
4141
size_t initial_byte_size,
4242
CardTableRS* remset) :
4343
Generation(rs, initial_byte_size), _rs(remset),
44-
_shrink_factor(0), _min_heap_delta_bytes(), _capacity_at_prologue(),
44+
_min_heap_delta_bytes(), _capacity_at_prologue(),
4545
_used_at_prologue()
4646
{
47+
// If we don't shrink the heap in steps, '_shrink_factor' is always 100%.
48+
_shrink_factor = ShrinkHeapInSteps ? 0 : 100;
4749
HeapWord* start = (HeapWord*)rs.base();
4850
size_t reserved_byte_size = rs.size();
4951
assert((uintptr_t(start) & 3) == 0, "bad alignment");
@@ -186,7 +188,12 @@ void CardGeneration::invalidate_remembered_set() {
186188
void CardGeneration::compute_new_size() {
187189
assert(_shrink_factor <= 100, "invalid shrink factor");
188190
size_t current_shrink_factor = _shrink_factor;
189-
_shrink_factor = 0;
191+
if (ShrinkHeapInSteps) {
192+
// Always reset '_shrink_factor' if the heap is shrunk in steps.
193+
// If we shrink the heap in this iteration, '_shrink_factor' will
194+
// be recomputed based on the old value further down in this fuction.
195+
_shrink_factor = 0;
196+
}
190197

191198
// We don't have floating point command-line arguments
192199
// Note: argument processing ensures that MinHeapFreeRatio < 100.

0 commit comments

Comments
 (0)
Please sign in to comment.