hotspot/src/share/vm/gc/shared/cardGeneration.cpp
author david
Thu, 14 Jan 2016 13:26:19 +0100
changeset 35492 c8c0273e6b91
parent 35061 be6025ebffea
child 37073 c39d0903390b
permissions -rw-r--r--
8146690: Make all classes in GC follow the naming convention. Reviewed-by: dholmes, stefank
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
/*
30173
13cf7580b000 8077413: Avoid use of Universe::heap() inside collectors
pliden
parents: 28033
diff changeset
     2
 * Copyright (c) 2014, 2015, 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"
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 30173
diff changeset
    31
#include "gc/shared/genOopClosures.inline.hpp"
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 30173
diff changeset
    32
#include "gc/shared/generationSpec.hpp"
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 30173
diff changeset
    33
#include "gc/shared/space.inline.hpp"
28031
10aec24d2b61 8066780: Split CardGeneration out to its own file
brutisso
parents:
diff changeset
    34
#include "memory/iterator.hpp"
10aec24d2b61 8066780: Split CardGeneration out to its own file
brutisso
parents:
diff changeset
    35
#include "memory/memRegion.hpp"
35061
be6025ebffea 8145092: Use Unified Logging for the GC logging
brutisso
parents: 33580
diff changeset
    36
#include "logging/log.hpp"
28031
10aec24d2b61 8066780: Split CardGeneration out to its own file
brutisso
parents:
diff changeset
    37
#include "runtime/java.hpp"
10aec24d2b61 8066780: Split CardGeneration out to its own file
brutisso
parents:
diff changeset
    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
906b3d079b13 8139434: Unify GenRemSet and CardTableRS
david
parents: 31358
diff changeset
    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
10aec24d2b61 8066780: Split CardGeneration out to its own file
brutisso
parents:
diff changeset
    43
  _shrink_factor(0), _min_heap_delta_bytes(), _capacity_at_prologue(),
10aec24d2b61 8066780: Split CardGeneration out to its own file
brutisso
parents:
diff changeset
    44
  _used_at_prologue()
10aec24d2b61 8066780: Split CardGeneration out to its own file
brutisso
parents:
diff changeset
    45
{
10aec24d2b61 8066780: Split CardGeneration out to its own file
brutisso
parents:
diff changeset
    46
  HeapWord* start = (HeapWord*)rs.base();
10aec24d2b61 8066780: Split CardGeneration out to its own file
brutisso
parents:
diff changeset
    47
  size_t reserved_byte_size = rs.size();
10aec24d2b61 8066780: Split CardGeneration out to its own file
brutisso
parents:
diff changeset
    48
  assert((uintptr_t(start) & 3) == 0, "bad alignment");
10aec24d2b61 8066780: Split CardGeneration out to its own file
brutisso
parents:
diff changeset
    49
  assert((reserved_byte_size & 3) == 0, "bad alignment");
10aec24d2b61 8066780: Split CardGeneration out to its own file
brutisso
parents:
diff changeset
    50
  MemRegion reserved_mr(start, heap_word_size(reserved_byte_size));
10aec24d2b61 8066780: Split CardGeneration out to its own file
brutisso
parents:
diff changeset
    51
  _bts = new BlockOffsetSharedArray(reserved_mr,
10aec24d2b61 8066780: Split CardGeneration out to its own file
brutisso
parents:
diff changeset
    52
                                    heap_word_size(initial_byte_size));
10aec24d2b61 8066780: Split CardGeneration out to its own file
brutisso
parents:
diff changeset
    53
  MemRegion committed_mr(start, heap_word_size(initial_byte_size));
10aec24d2b61 8066780: Split CardGeneration out to its own file
brutisso
parents:
diff changeset
    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
10aec24d2b61 8066780: Split CardGeneration out to its own file
brutisso
parents:
diff changeset
    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
10aec24d2b61 8066780: Split CardGeneration out to its own file
brutisso
parents:
diff changeset
    58
10aec24d2b61 8066780: Split CardGeneration out to its own file
brutisso
parents:
diff changeset
    59
  // 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
    60
  // 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
    61
  // 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
    62
  // clear and dirty cards.
10aec24d2b61 8066780: Split CardGeneration out to its own file
brutisso
parents:
diff changeset
    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
10aec24d2b61 8066780: Split CardGeneration out to its own file
brutisso
parents:
diff changeset
    65
    // 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
    66
    // the end if we try.
10aec24d2b61 8066780: Split CardGeneration out to its own file
brutisso
parents:
diff changeset
    67
    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
    68
  }
10aec24d2b61 8066780: Split CardGeneration out to its own file
brutisso
parents:
diff changeset
    69
  _min_heap_delta_bytes = MinHeapDeltaBytes;
10aec24d2b61 8066780: Split CardGeneration out to its own file
brutisso
parents:
diff changeset
    70
  _capacity_at_prologue = initial_byte_size;
10aec24d2b61 8066780: Split CardGeneration out to its own file
brutisso
parents:
diff changeset
    71
  _used_at_prologue = 0;
10aec24d2b61 8066780: Split CardGeneration out to its own file
brutisso
parents:
diff changeset
    72
}
10aec24d2b61 8066780: Split CardGeneration out to its own file
brutisso
parents:
diff changeset
    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
be6025ebffea 8145092: Use Unified Logging for the GC logging
brutisso
parents: 33580
diff changeset
   100
    size_t new_mem_size = _virtual_space.committed_size();
be6025ebffea 8145092: Use Unified Logging for the GC logging
brutisso
parents: 33580
diff changeset
   101
    size_t old_mem_size = new_mem_size - bytes;
be6025ebffea 8145092: Use Unified Logging for the GC logging
brutisso
parents: 33580
diff changeset
   102
    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
   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
10aec24d2b61 8066780: Split CardGeneration out to its own file
brutisso
parents:
diff changeset
   108
bool CardGeneration::expand(size_t bytes, size_t expand_bytes) {
10aec24d2b61 8066780: Split CardGeneration out to its own file
brutisso
parents:
diff changeset
   109
  assert_locked_or_safepoint(Heap_lock);
10aec24d2b61 8066780: Split CardGeneration out to its own file
brutisso
parents:
diff changeset
   110
  if (bytes == 0) {
10aec24d2b61 8066780: Split CardGeneration out to its own file
brutisso
parents:
diff changeset
   111
    return true;  // That's what grow_by(0) would return
10aec24d2b61 8066780: Split CardGeneration out to its own file
brutisso
parents:
diff changeset
   112
  }
10aec24d2b61 8066780: Split CardGeneration out to its own file
brutisso
parents:
diff changeset
   113
  size_t aligned_bytes  = ReservedSpace::page_align_size_up(bytes);
10aec24d2b61 8066780: Split CardGeneration out to its own file
brutisso
parents:
diff changeset
   114
  if (aligned_bytes == 0){
10aec24d2b61 8066780: Split CardGeneration out to its own file
brutisso
parents:
diff changeset
   115
    // 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
   116
    // 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
   117
    // 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
   118
    // 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
   119
    // 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
   120
    // start with.
10aec24d2b61 8066780: Split CardGeneration out to its own file
brutisso
parents:
diff changeset
   121
    aligned_bytes = ReservedSpace::page_align_size_down(bytes);
10aec24d2b61 8066780: Split CardGeneration out to its own file
brutisso
parents:
diff changeset
   122
  }
10aec24d2b61 8066780: Split CardGeneration out to its own file
brutisso
parents:
diff changeset
   123
  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
   124
  bool success = false;
10aec24d2b61 8066780: Split CardGeneration out to its own file
brutisso
parents:
diff changeset
   125
  if (aligned_expand_bytes > aligned_bytes) {
10aec24d2b61 8066780: Split CardGeneration out to its own file
brutisso
parents:
diff changeset
   126
    success = grow_by(aligned_expand_bytes);
10aec24d2b61 8066780: Split CardGeneration out to its own file
brutisso
parents:
diff changeset
   127
  }
10aec24d2b61 8066780: Split CardGeneration out to its own file
brutisso
parents:
diff changeset
   128
  if (!success) {
10aec24d2b61 8066780: Split CardGeneration out to its own file
brutisso
parents:
diff changeset
   129
    success = grow_by(aligned_bytes);
10aec24d2b61 8066780: Split CardGeneration out to its own file
brutisso
parents:
diff changeset
   130
  }
10aec24d2b61 8066780: Split CardGeneration out to its own file
brutisso
parents:
diff changeset
   131
  if (!success) {
10aec24d2b61 8066780: Split CardGeneration out to its own file
brutisso
parents:
diff changeset
   132
    success = grow_to_reserved();
10aec24d2b61 8066780: Split CardGeneration out to its own file
brutisso
parents:
diff changeset
   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
be6025ebffea 8145092: Use Unified Logging for the GC logging
brutisso
parents: 33580
diff changeset
   135
    log_trace(gc, heap)("Garbage collection disabled, expanded heap instead");
28031
10aec24d2b61 8066780: Split CardGeneration out to its own file
brutisso
parents:
diff changeset
   136
  }
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
  return success;
10aec24d2b61 8066780: Split CardGeneration out to its own file
brutisso
parents:
diff changeset
   139
}
10aec24d2b61 8066780: Split CardGeneration out to its own file
brutisso
parents:
diff changeset
   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);
ab63acbd99ec 8066782: Move common code from CMSGeneration and TenuredGeneration to CardGeneration
brutisso
parents: 28031
diff changeset
   147
    DEBUG_ONLY(if (!success) warning("grow to reserved failed");)
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
be6025ebffea 8145092: Use Unified Logging for the GC logging
brutisso
parents: 33580
diff changeset
   171
  size_t new_mem_size = _virtual_space.committed_size();
be6025ebffea 8145092: Use Unified Logging for the GC logging
brutisso
parents: 33580
diff changeset
   172
  size_t old_mem_size = new_mem_size + size;
be6025ebffea 8145092: Use Unified Logging for the GC logging
brutisso
parents: 33580
diff changeset
   173
  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
   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
10aec24d2b61 8066780: Split CardGeneration out to its own file
brutisso
parents:
diff changeset
   177
// No young generation references, clear this generation's cards.
10aec24d2b61 8066780: Split CardGeneration out to its own file
brutisso
parents:
diff changeset
   178
void CardGeneration::clear_remembered_set() {
10aec24d2b61 8066780: Split CardGeneration out to its own file
brutisso
parents:
diff changeset
   179
  _rs->clear(reserved());
10aec24d2b61 8066780: Split CardGeneration out to its own file
brutisso
parents:
diff changeset
   180
}
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
// Objects in this generation may have moved, invalidate this
10aec24d2b61 8066780: Split CardGeneration out to its own file
brutisso
parents:
diff changeset
   183
// generation's cards.
10aec24d2b61 8066780: Split CardGeneration out to its own file
brutisso
parents:
diff changeset
   184
void CardGeneration::invalidate_remembered_set() {
10aec24d2b61 8066780: Split CardGeneration out to its own file
brutisso
parents:
diff changeset
   185
  _rs->invalidate(used_region());
10aec24d2b61 8066780: Split CardGeneration out to its own file
brutisso
parents:
diff changeset
   186
}
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
void CardGeneration::compute_new_size() {
10aec24d2b61 8066780: Split CardGeneration out to its own file
brutisso
parents:
diff changeset
   189
  assert(_shrink_factor <= 100, "invalid shrink factor");
10aec24d2b61 8066780: Split CardGeneration out to its own file
brutisso
parents:
diff changeset
   190
  size_t current_shrink_factor = _shrink_factor;
10aec24d2b61 8066780: Split CardGeneration out to its own file
brutisso
parents:
diff changeset
   191
  _shrink_factor = 0;
10aec24d2b61 8066780: Split CardGeneration out to its own file
brutisso
parents:
diff changeset
   192
10aec24d2b61 8066780: Split CardGeneration out to its own file
brutisso
parents:
diff changeset
   193
  // We don't have floating point command-line arguments
10aec24d2b61 8066780: Split CardGeneration out to its own file
brutisso
parents:
diff changeset
   194
  // Note:  argument processing ensures that MinHeapFreeRatio < 100.
10aec24d2b61 8066780: Split CardGeneration out to its own file
brutisso
parents:
diff changeset
   195
  const double minimum_free_percentage = MinHeapFreeRatio / 100.0;
10aec24d2b61 8066780: Split CardGeneration out to its own file
brutisso
parents:
diff changeset
   196
  const double maximum_used_percentage = 1.0 - minimum_free_percentage;
10aec24d2b61 8066780: Split CardGeneration out to its own file
brutisso
parents:
diff changeset
   197
10aec24d2b61 8066780: Split CardGeneration out to its own file
brutisso
parents:
diff changeset
   198
  // Compute some numbers about the state of the heap.
10aec24d2b61 8066780: Split CardGeneration out to its own file
brutisso
parents:
diff changeset
   199
  const size_t used_after_gc = used();
10aec24d2b61 8066780: Split CardGeneration out to its own file
brutisso
parents:
diff changeset
   200
  const size_t capacity_after_gc = capacity();
10aec24d2b61 8066780: Split CardGeneration out to its own file
brutisso
parents:
diff changeset
   201
10aec24d2b61 8066780: Split CardGeneration out to its own file
brutisso
parents:
diff changeset
   202
  const double min_tmp = used_after_gc / maximum_used_percentage;
10aec24d2b61 8066780: Split CardGeneration out to its own file
brutisso
parents:
diff changeset
   203
  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
   204
  // Don't shrink less than the initial generation size
33580
c2d95df2c54e 8139772: Cleanups in Generation related code
jwilhelm
parents: 33212
diff changeset
   205
  minimum_desired_capacity = MAX2(minimum_desired_capacity, initial_size());
28031
10aec24d2b61 8066780: Split CardGeneration out to its own file
brutisso
parents:
diff changeset
   206
  assert(used_after_gc <= minimum_desired_capacity, "sanity check");
10aec24d2b61 8066780: Split CardGeneration out to its own file
brutisso
parents:
diff changeset
   207
10aec24d2b61 8066780: Split CardGeneration out to its own file
brutisso
parents:
diff changeset
   208
    const size_t free_after_gc = free();
10aec24d2b61 8066780: Split CardGeneration out to its own file
brutisso
parents:
diff changeset
   209
    const double free_percentage = ((double)free_after_gc) / capacity_after_gc;
35061
be6025ebffea 8145092: Use Unified Logging for the GC logging
brutisso
parents: 33580
diff changeset
   210
    log_trace(gc, heap)("TenuredGeneration::compute_new_size:");
be6025ebffea 8145092: Use Unified Logging for the GC logging
brutisso
parents: 33580
diff changeset
   211
    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
   212
                  minimum_free_percentage,
10aec24d2b61 8066780: Split CardGeneration out to its own file
brutisso
parents:
diff changeset
   213
                  maximum_used_percentage);
35061
be6025ebffea 8145092: Use Unified Logging for the GC logging
brutisso
parents: 33580
diff changeset
   214
    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
   215
                  free_after_gc / (double) K,
10aec24d2b61 8066780: Split CardGeneration out to its own file
brutisso
parents:
diff changeset
   216
                  used_after_gc / (double) K,
10aec24d2b61 8066780: Split CardGeneration out to its own file
brutisso
parents:
diff changeset
   217
                  capacity_after_gc / (double) K);
35061
be6025ebffea 8145092: Use Unified Logging for the GC logging
brutisso
parents: 33580
diff changeset
   218
    log_trace(gc, heap)("     free_percentage: %6.2f", free_percentage);
28031
10aec24d2b61 8066780: Split CardGeneration out to its own file
brutisso
parents:
diff changeset
   219
10aec24d2b61 8066780: Split CardGeneration out to its own file
brutisso
parents:
diff changeset
   220
  if (capacity_after_gc < minimum_desired_capacity) {
10aec24d2b61 8066780: Split CardGeneration out to its own file
brutisso
parents:
diff changeset
   221
    // If we have less free space than we want then expand
10aec24d2b61 8066780: Split CardGeneration out to its own file
brutisso
parents:
diff changeset
   222
    size_t expand_bytes = minimum_desired_capacity - capacity_after_gc;
10aec24d2b61 8066780: Split CardGeneration out to its own file
brutisso
parents:
diff changeset
   223
    // Don't expand unless it's significant
10aec24d2b61 8066780: Split CardGeneration out to its own file
brutisso
parents:
diff changeset
   224
    if (expand_bytes >= _min_heap_delta_bytes) {
10aec24d2b61 8066780: Split CardGeneration out to its own file
brutisso
parents:
diff changeset
   225
      expand(expand_bytes, 0); // safe if expansion fails
10aec24d2b61 8066780: Split CardGeneration out to its own file
brutisso
parents:
diff changeset
   226
    }
35061
be6025ebffea 8145092: Use Unified Logging for the GC logging
brutisso
parents: 33580
diff changeset
   227
    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
   228
                  minimum_desired_capacity / (double) K,
be6025ebffea 8145092: Use Unified Logging for the GC logging
brutisso
parents: 33580
diff changeset
   229
                  expand_bytes / (double) K,
be6025ebffea 8145092: Use Unified Logging for the GC logging
brutisso
parents: 33580
diff changeset
   230
                  _min_heap_delta_bytes / (double) K);
28031
10aec24d2b61 8066780: Split CardGeneration out to its own file
brutisso
parents:
diff changeset
   231
    return;
10aec24d2b61 8066780: Split CardGeneration out to its own file
brutisso
parents:
diff changeset
   232
  }
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
  // No expansion, now see if we want to shrink
10aec24d2b61 8066780: Split CardGeneration out to its own file
brutisso
parents:
diff changeset
   235
  size_t shrink_bytes = 0;
10aec24d2b61 8066780: Split CardGeneration out to its own file
brutisso
parents:
diff changeset
   236
  // We would never want to shrink more than this
10aec24d2b61 8066780: Split CardGeneration out to its own file
brutisso
parents:
diff changeset
   237
  size_t max_shrink_bytes = capacity_after_gc - minimum_desired_capacity;
10aec24d2b61 8066780: Split CardGeneration out to its own file
brutisso
parents:
diff changeset
   238
10aec24d2b61 8066780: Split CardGeneration out to its own file
brutisso
parents:
diff changeset
   239
  if (MaxHeapFreeRatio < 100) {
10aec24d2b61 8066780: Split CardGeneration out to its own file
brutisso
parents:
diff changeset
   240
    const double maximum_free_percentage = MaxHeapFreeRatio / 100.0;
10aec24d2b61 8066780: Split CardGeneration out to its own file
brutisso
parents:
diff changeset
   241
    const double minimum_used_percentage = 1.0 - maximum_free_percentage;
10aec24d2b61 8066780: Split CardGeneration out to its own file
brutisso
parents:
diff changeset
   242
    const double max_tmp = used_after_gc / minimum_used_percentage;
10aec24d2b61 8066780: Split CardGeneration out to its own file
brutisso
parents:
diff changeset
   243
    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
   244
    maximum_desired_capacity = MAX2(maximum_desired_capacity, initial_size());
35061
be6025ebffea 8145092: Use Unified Logging for the GC logging
brutisso
parents: 33580
diff changeset
   245
    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
   246
                             maximum_free_percentage, minimum_used_percentage);
be6025ebffea 8145092: Use Unified Logging for the GC logging
brutisso
parents: 33580
diff changeset
   247
    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
   248
                             _capacity_at_prologue / (double) K,
10aec24d2b61 8066780: Split CardGeneration out to its own file
brutisso
parents:
diff changeset
   249
                             minimum_desired_capacity / (double) K,
10aec24d2b61 8066780: Split CardGeneration out to its own file
brutisso
parents:
diff changeset
   250
                             maximum_desired_capacity / (double) K);
10aec24d2b61 8066780: Split CardGeneration out to its own file
brutisso
parents:
diff changeset
   251
    assert(minimum_desired_capacity <= maximum_desired_capacity,
10aec24d2b61 8066780: Split CardGeneration out to its own file
brutisso
parents:
diff changeset
   252
           "sanity check");
10aec24d2b61 8066780: Split CardGeneration out to its own file
brutisso
parents:
diff changeset
   253
10aec24d2b61 8066780: Split CardGeneration out to its own file
brutisso
parents:
diff changeset
   254
    if (capacity_after_gc > maximum_desired_capacity) {
10aec24d2b61 8066780: Split CardGeneration out to its own file
brutisso
parents:
diff changeset
   255
      // Capacity too large, compute shrinking size
10aec24d2b61 8066780: Split CardGeneration out to its own file
brutisso
parents:
diff changeset
   256
      shrink_bytes = capacity_after_gc - maximum_desired_capacity;
10aec24d2b61 8066780: Split CardGeneration out to its own file
brutisso
parents:
diff changeset
   257
      // We don't want shrink all the way back to initSize if people call
10aec24d2b61 8066780: Split CardGeneration out to its own file
brutisso
parents:
diff changeset
   258
      // System.gc(), because some programs do that between "phases" and then
10aec24d2b61 8066780: Split CardGeneration out to its own file
brutisso
parents:
diff changeset
   259
      // we'd just have to grow the heap up again for the next phase.  So we
10aec24d2b61 8066780: Split CardGeneration out to its own file
brutisso
parents:
diff changeset
   260
      // damp the shrinking: 0% on the first call, 10% on the second call, 40%
10aec24d2b61 8066780: Split CardGeneration out to its own file
brutisso
parents:
diff changeset
   261
      // on the third call, and 100% by the fourth call.  But if we recompute
10aec24d2b61 8066780: Split CardGeneration out to its own file
brutisso
parents:
diff changeset
   262
      // size without shrinking, it goes back to 0%.
10aec24d2b61 8066780: Split CardGeneration out to its own file
brutisso
parents:
diff changeset
   263
      shrink_bytes = shrink_bytes / 100 * current_shrink_factor;
10aec24d2b61 8066780: Split CardGeneration out to its own file
brutisso
parents:
diff changeset
   264
      assert(shrink_bytes <= max_shrink_bytes, "invalid shrink size");
10aec24d2b61 8066780: Split CardGeneration out to its own file
brutisso
parents:
diff changeset
   265
      if (current_shrink_factor == 0) {
10aec24d2b61 8066780: Split CardGeneration out to its own file
brutisso
parents:
diff changeset
   266
        _shrink_factor = 10;
10aec24d2b61 8066780: Split CardGeneration out to its own file
brutisso
parents:
diff changeset
   267
      } else {
10aec24d2b61 8066780: Split CardGeneration out to its own file
brutisso
parents:
diff changeset
   268
        _shrink_factor = MIN2(current_shrink_factor * 4, (size_t) 100);
10aec24d2b61 8066780: Split CardGeneration out to its own file
brutisso
parents:
diff changeset
   269
      }
35061
be6025ebffea 8145092: Use Unified Logging for the GC logging
brutisso
parents: 33580
diff changeset
   270
      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
   271
                               initial_size() / (double) K, maximum_desired_capacity / (double) K);
be6025ebffea 8145092: Use Unified Logging for the GC logging
brutisso
parents: 33580
diff changeset
   272
      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
   273
                               shrink_bytes / (double) K,
c2d95df2c54e 8139772: Cleanups in Generation related code
jwilhelm
parents: 33212
diff changeset
   274
                               current_shrink_factor,
c2d95df2c54e 8139772: Cleanups in Generation related code
jwilhelm
parents: 33212
diff changeset
   275
                               _shrink_factor,
c2d95df2c54e 8139772: Cleanups in Generation related code
jwilhelm
parents: 33212
diff changeset
   276
                               _min_heap_delta_bytes / (double) K);
28031
10aec24d2b61 8066780: Split CardGeneration out to its own file
brutisso
parents:
diff changeset
   277
    }
10aec24d2b61 8066780: Split CardGeneration out to its own file
brutisso
parents:
diff changeset
   278
  }
10aec24d2b61 8066780: Split CardGeneration out to its own file
brutisso
parents:
diff changeset
   279
10aec24d2b61 8066780: Split CardGeneration out to its own file
brutisso
parents:
diff changeset
   280
  if (capacity_after_gc > _capacity_at_prologue) {
10aec24d2b61 8066780: Split CardGeneration out to its own file
brutisso
parents:
diff changeset
   281
    // 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
   282
    // 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
   283
    // stretching the heap with promotions when there's plenty of room.
10aec24d2b61 8066780: Split CardGeneration out to its own file
brutisso
parents:
diff changeset
   284
    size_t expansion_for_promotion = capacity_after_gc - _capacity_at_prologue;
10aec24d2b61 8066780: Split CardGeneration out to its own file
brutisso
parents:
diff changeset
   285
    expansion_for_promotion = MIN2(expansion_for_promotion, max_shrink_bytes);
10aec24d2b61 8066780: Split CardGeneration out to its own file
brutisso
parents:
diff changeset
   286
    // We have two shrinking computations, take the largest
10aec24d2b61 8066780: Split CardGeneration out to its own file
brutisso
parents:
diff changeset
   287
    shrink_bytes = MAX2(shrink_bytes, expansion_for_promotion);
10aec24d2b61 8066780: Split CardGeneration out to its own file
brutisso
parents:
diff changeset
   288
    assert(shrink_bytes <= max_shrink_bytes, "invalid shrink size");
35061
be6025ebffea 8145092: Use Unified Logging for the GC logging
brutisso
parents: 33580
diff changeset
   289
    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
   290
                        capacity_after_gc / (double) K,
be6025ebffea 8145092: Use Unified Logging for the GC logging
brutisso
parents: 33580
diff changeset
   291
                        _capacity_at_prologue / (double) K,
be6025ebffea 8145092: Use Unified Logging for the GC logging
brutisso
parents: 33580
diff changeset
   292
                        expansion_for_promotion / (double) K,
be6025ebffea 8145092: Use Unified Logging for the GC logging
brutisso
parents: 33580
diff changeset
   293
                        shrink_bytes / (double) K);
28031
10aec24d2b61 8066780: Split CardGeneration out to its own file
brutisso
parents:
diff changeset
   294
  }
10aec24d2b61 8066780: Split CardGeneration out to its own file
brutisso
parents:
diff changeset
   295
  // Don't shrink unless it's significant
10aec24d2b61 8066780: Split CardGeneration out to its own file
brutisso
parents:
diff changeset
   296
  if (shrink_bytes >= _min_heap_delta_bytes) {
10aec24d2b61 8066780: Split CardGeneration out to its own file
brutisso
parents:
diff changeset
   297
    shrink(shrink_bytes);
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
}
10aec24d2b61 8066780: Split CardGeneration out to its own file
brutisso
parents:
diff changeset
   300
10aec24d2b61 8066780: Split CardGeneration out to its own file
brutisso
parents:
diff changeset
   301
// Currently nothing to do.
10aec24d2b61 8066780: Split CardGeneration out to its own file
brutisso
parents:
diff changeset
   302
void CardGeneration::prepare_for_verify() {}
28033
ab63acbd99ec 8066782: Move common code from CMSGeneration and TenuredGeneration to CardGeneration
brutisso
parents: 28031
diff changeset
   303
ab63acbd99ec 8066782: Move common code from CMSGeneration and TenuredGeneration to CardGeneration
brutisso
parents: 28031
diff changeset
   304
void CardGeneration::space_iterate(SpaceClosure* blk,
ab63acbd99ec 8066782: Move common code from CMSGeneration and TenuredGeneration to CardGeneration
brutisso
parents: 28031
diff changeset
   305
                                                 bool usedOnly) {
ab63acbd99ec 8066782: Move common code from CMSGeneration and TenuredGeneration to CardGeneration
brutisso
parents: 28031
diff changeset
   306
  blk->do_space(space());
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
30870
3050fdcdc60b 8080112: Replace and remove the last usages of CollectedHeap::n_par_threads()
stefank
parents: 30764
diff changeset
   309
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
   310
  blk->set_generation(this);
30870
3050fdcdc60b 8080112: Replace and remove the last usages of CollectedHeap::n_par_threads()
stefank
parents: 30764
diff changeset
   311
  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
   312
  blk->reset_generation();
ab63acbd99ec 8066782: Move common code from CMSGeneration and TenuredGeneration to CardGeneration
brutisso
parents: 28031
diff changeset
   313
}