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