hotspot/src/share/vm/gc_implementation/parallelScavenge/psOldGen.cpp
author pliden
Mon, 13 Apr 2015 15:47:48 +0200
changeset 30173 13cf7580b000
parent 29798 451c73fdf690
permissions -rw-r--r--
8077413: Avoid use of Universe::heap() inside collectors Reviewed-by: stefank, kbarrett
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
29325
0e86e64c66e5 8069016: Add BarrierSet downcast support
kbarrett
parents: 26324
diff changeset
     2
 * Copyright (c) 2001, 2015, Oracle and/or its affiliates. All rights reserved.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     4
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
489c9b5090e2 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
489c9b5090e2 Initial load
duke
parents:
diff changeset
     7
 * published by the Free Software Foundation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     8
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
489c9b5090e2 Initial load
duke
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
489c9b5090e2 Initial load
duke
parents:
diff changeset
    13
 * accompanied this code).
489c9b5090e2 Initial load
duke
parents:
diff changeset
    14
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
489c9b5090e2 Initial load
duke
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    18
 *
5547
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 2105
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 2105
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 2105
diff changeset
    21
 * questions.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    22
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    23
 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    24
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    25
#include "precompiled.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    26
#include "gc_implementation/parallelScavenge/parallelScavengeHeap.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    27
#include "gc_implementation/parallelScavenge/psAdaptiveSizePolicy.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    28
#include "gc_implementation/parallelScavenge/psMarkSweepDecorator.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    29
#include "gc_implementation/parallelScavenge/psOldGen.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    30
#include "gc_implementation/shared/spaceDecorator.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    31
#include "memory/cardTableModRefBS.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    32
#include "memory/gcLocker.inline.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    33
#include "oops/oop.inline.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    34
#include "runtime/java.hpp"
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
inline const char* PSOldGen::select_name() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
  return UseParallelOldGC ? "ParOldGen" : "PSOldGen";
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
PSOldGen::PSOldGen(ReservedSpace rs, size_t alignment,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
                   size_t initial_size, size_t min_size, size_t max_size,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
                   const char* perf_data_name, int level):
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
  _name(select_name()), _init_gen_size(initial_size), _min_gen_size(min_size),
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
  _max_gen_size(max_size)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
{
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
  initialize(rs, alignment, perf_data_name, level);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
PSOldGen::PSOldGen(size_t initial_size,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
                   size_t min_size, size_t max_size,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
                   const char* perf_data_name, int level):
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
  _name(select_name()), _init_gen_size(initial_size), _min_gen_size(min_size),
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
  _max_gen_size(max_size)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
{}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
void PSOldGen::initialize(ReservedSpace rs, size_t alignment,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
                          const char* perf_data_name, int level) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
  initialize_virtual_space(rs, alignment);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
  initialize_work(perf_data_name, level);
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
    60
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
  // The old gen can grow to gen_size_limit().  _reserve reflects only
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
  // the current maximum that can be committed.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
  assert(_reserved.byte_size() <= gen_size_limit(), "Consistency check");
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
    64
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
    65
  initialize_performance_counters(perf_data_name, level);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
void PSOldGen::initialize_virtual_space(ReservedSpace rs, size_t alignment) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
  _virtual_space = new PSVirtualSpace(rs, alignment);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
  if (!_virtual_space->expand_by(_init_gen_size)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
    vm_exit_during_initialization("Could not reserve enough space for "
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
                                  "object heap");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
void PSOldGen::initialize_work(const char* perf_data_name, int level) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
  // Basic memory initialization
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
  MemRegion limit_reserved((HeapWord*)virtual_space()->low_boundary(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
    heap_word_size(_max_gen_size));
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
  assert(limit_reserved.byte_size() == _max_gen_size,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
    "word vs bytes confusion");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
  // Object start stuff
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
  start_array()->initialize(limit_reserved);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
  _reserved = MemRegion((HeapWord*)virtual_space()->low_boundary(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
                        (HeapWord*)virtual_space()->high_boundary());
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
  // Card table stuff
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
  MemRegion cmr((HeapWord*)virtual_space()->low(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
                (HeapWord*)virtual_space()->high());
971
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 1
diff changeset
   101
  if (ZapUnusedHeapArea) {
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 1
diff changeset
   102
    // Mangle newly committed space immediately rather than
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 1
diff changeset
   103
    // waiting for the initialization of the space even though
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 1
diff changeset
   104
    // mangling is related to spaces.  Doing it here eliminates
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 1
diff changeset
   105
    // the need to carry along information that a complete mangling
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 1
diff changeset
   106
    // (bottom to end) needs to be done.
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 1
diff changeset
   107
    SpaceMangler::mangle_region(cmr);
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 1
diff changeset
   108
  }
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 1
diff changeset
   109
30173
13cf7580b000 8077413: Avoid use of Universe::heap() inside collectors
pliden
parents: 29798
diff changeset
   110
  ParallelScavengeHeap* heap = ParallelScavengeHeap::heap();
13cf7580b000 8077413: Avoid use of Universe::heap() inside collectors
pliden
parents: 29798
diff changeset
   111
  BarrierSet* bs = heap->barrier_set();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
30173
13cf7580b000 8077413: Avoid use of Universe::heap() inside collectors
pliden
parents: 29798
diff changeset
   113
  bs->resize_covered_region(cmr);
13cf7580b000 8077413: Avoid use of Universe::heap() inside collectors
pliden
parents: 29798
diff changeset
   114
13cf7580b000 8077413: Avoid use of Universe::heap() inside collectors
pliden
parents: 29798
diff changeset
   115
  CardTableModRefBS* ct = barrier_set_cast<CardTableModRefBS>(bs);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
  // Verify that the start and end of this generation is the start of a card.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
  // If this wasn't true, a single card could span more than one generation,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
  // which would cause problems when we commit/uncommit memory, and when we
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
  // clear and dirty cards.
30173
13cf7580b000 8077413: Avoid use of Universe::heap() inside collectors
pliden
parents: 29798
diff changeset
   121
  guarantee(ct->is_card_aligned(_reserved.start()), "generation must be card aligned");
13cf7580b000 8077413: Avoid use of Universe::heap() inside collectors
pliden
parents: 29798
diff changeset
   122
  if (_reserved.end() != heap->reserved_region().end()) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
    // Don't check at the very end of the heap as we'll assert that we're probing off
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
    // the end if we try.
30173
13cf7580b000 8077413: Avoid use of Universe::heap() inside collectors
pliden
parents: 29798
diff changeset
   125
    guarantee(ct->is_card_aligned(_reserved.end()), "generation must be card aligned");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
  // ObjectSpace stuff
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
1911
b7cfe7eb809c 6783381: NUMA allocator: don't pretouch eden space with UseNUMA
iveresov
parents: 1412
diff changeset
   132
  _object_space = new MutableSpace(virtual_space()->alignment());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
  if (_object_space == NULL)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
    vm_exit_during_initialization("Could not allocate an old gen space");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
971
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 1
diff changeset
   137
  object_space()->initialize(cmr,
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 1
diff changeset
   138
                             SpaceDecorator::Clear,
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 1
diff changeset
   139
                             SpaceDecorator::Mangle);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
  _object_mark_sweep = new PSMarkSweepDecorator(_object_space, start_array(), MarkSweepDeadRatio);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
  if (_object_mark_sweep == NULL)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
    vm_exit_during_initialization("Could not complete allocation of old generation");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
  // Update the start_array
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
  start_array()->set_covered_region(cmr);
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   148
}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   150
void PSOldGen::initialize_performance_counters(const char* perf_data_name, int level) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
  // Generation Counters, generation 'level', 1 subspace
26324
6b9c12e15535 8028787: tmtools/jstat/gcoldcapacity/jstat_gcoldcapacity02 fails nsk.share.Failure: OGC < OGCMN in RT_Baseline
sjohanss
parents: 24424
diff changeset
   152
  _gen_counters = new PSGenerationCounters(perf_data_name, level, 1, _min_gen_size,
6b9c12e15535 8028787: tmtools/jstat/gcoldcapacity/jstat_gcoldcapacity02 fails nsk.share.Failure: OGC < OGCMN in RT_Baseline
sjohanss
parents: 24424
diff changeset
   153
                                           _max_gen_size, virtual_space());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
  _space_counters = new SpaceCounters(perf_data_name, 0,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
                                      virtual_space()->reserved_size(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
                                      _object_space, _gen_counters);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
// Assume that the generation has been allocated if its
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
// reserved size is not 0.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
bool  PSOldGen::is_allocated() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
  return virtual_space()->reserved_size() != 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
void PSOldGen::precompact() {
30173
13cf7580b000 8077413: Avoid use of Universe::heap() inside collectors
pliden
parents: 29798
diff changeset
   166
  ParallelScavengeHeap* heap = ParallelScavengeHeap::heap();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
  // Reset start array first.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
  start_array()->reset();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
  object_mark_sweep()->precompact();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
  // Now compact the young gen
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
  heap->young_gen()->precompact();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
void PSOldGen::adjust_pointers() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
  object_mark_sweep()->adjust_pointers();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
void PSOldGen::compact() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
  object_mark_sweep()->compact(ZapUnusedHeapArea);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
size_t PSOldGen::contiguous_available() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
  return object_space()->free_in_bytes() + virtual_space()->uncommitted_size();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
// Allocation. We report all successful allocations to the size policy
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
// Note that the perm gen does not use this method, and should not!
9997
b75b7939f448 6994322: Remove the is_tlab and is_noref / is_large_noref parameters from the CollectedHeap
tonyp
parents: 9423
diff changeset
   191
HeapWord* PSOldGen::allocate(size_t word_size) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
  assert_locked_or_safepoint(Heap_lock);
9997
b75b7939f448 6994322: Remove the is_tlab and is_noref / is_large_noref parameters from the CollectedHeap
tonyp
parents: 9423
diff changeset
   193
  HeapWord* res = allocate_noexpand(word_size);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
  if (res == NULL) {
9997
b75b7939f448 6994322: Remove the is_tlab and is_noref / is_large_noref parameters from the CollectedHeap
tonyp
parents: 9423
diff changeset
   196
    res = expand_and_allocate(word_size);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
  // Allocations in the old generation need to be reported
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
  if (res != NULL) {
30173
13cf7580b000 8077413: Avoid use of Universe::heap() inside collectors
pliden
parents: 29798
diff changeset
   201
    ParallelScavengeHeap* heap = ParallelScavengeHeap::heap();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
    heap->size_policy()->tenured_allocation(word_size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
  return res;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
9997
b75b7939f448 6994322: Remove the is_tlab and is_noref / is_large_noref parameters from the CollectedHeap
tonyp
parents: 9423
diff changeset
   208
HeapWord* PSOldGen::expand_and_allocate(size_t word_size) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
  expand(word_size*HeapWordSize);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
  if (GCExpandToAllocateDelayMillis > 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   211
    os::sleep(Thread::current(), GCExpandToAllocateDelayMillis, false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   212
  }
9997
b75b7939f448 6994322: Remove the is_tlab and is_noref / is_large_noref parameters from the CollectedHeap
tonyp
parents: 9423
diff changeset
   213
  return allocate_noexpand(word_size);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
HeapWord* PSOldGen::expand_and_cas_allocate(size_t word_size) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
  expand(word_size*HeapWordSize);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   218
  if (GCExpandToAllocateDelayMillis > 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   219
    os::sleep(Thread::current(), GCExpandToAllocateDelayMillis, false);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   220
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   221
  return cas_allocate_noexpand(word_size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
void PSOldGen::expand(size_t bytes) {
979
c9479f1e0a94 6730514: assertion failure in mangling code when expanding by 0 bytes
jmasa
parents: 971
diff changeset
   225
  if (bytes == 0) {
c9479f1e0a94 6730514: assertion failure in mangling code when expanding by 0 bytes
jmasa
parents: 971
diff changeset
   226
    return;
c9479f1e0a94 6730514: assertion failure in mangling code when expanding by 0 bytes
jmasa
parents: 971
diff changeset
   227
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   228
  MutexLocker x(ExpandHeap_lock);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   229
  const size_t alignment = virtual_space()->alignment();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   230
  size_t aligned_bytes  = align_size_up(bytes, alignment);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   231
  size_t aligned_expand_bytes = align_size_up(MinHeapDeltaBytes, alignment);
9423
a977bd202cec 7041501: NUMA: Expand the old gen more aggressively
iveresov
parents: 9178
diff changeset
   232
a977bd202cec 7041501: NUMA: Expand the old gen more aggressively
iveresov
parents: 9178
diff changeset
   233
  if (UseNUMA) {
a977bd202cec 7041501: NUMA: Expand the old gen more aggressively
iveresov
parents: 9178
diff changeset
   234
    // With NUMA we use round-robin page allocation for the old gen. Expand by at least
a977bd202cec 7041501: NUMA: Expand the old gen more aggressively
iveresov
parents: 9178
diff changeset
   235
    // providing a page per lgroup. Alignment is larger or equal to the page size.
a977bd202cec 7041501: NUMA: Expand the old gen more aggressively
iveresov
parents: 9178
diff changeset
   236
    aligned_expand_bytes = MAX2(aligned_expand_bytes, alignment * os::numa_get_groups_num());
a977bd202cec 7041501: NUMA: Expand the old gen more aggressively
iveresov
parents: 9178
diff changeset
   237
  }
979
c9479f1e0a94 6730514: assertion failure in mangling code when expanding by 0 bytes
jmasa
parents: 971
diff changeset
   238
  if (aligned_bytes == 0){
c9479f1e0a94 6730514: assertion failure in mangling code when expanding by 0 bytes
jmasa
parents: 971
diff changeset
   239
    // The alignment caused the number of bytes to wrap.  An expand_by(0) will
c9479f1e0a94 6730514: assertion failure in mangling code when expanding by 0 bytes
jmasa
parents: 971
diff changeset
   240
    // return true with the implication that and expansion was done when it
c9479f1e0a94 6730514: assertion failure in mangling code when expanding by 0 bytes
jmasa
parents: 971
diff changeset
   241
    // was not.  A call to expand implies a best effort to expand by "bytes"
c9479f1e0a94 6730514: assertion failure in mangling code when expanding by 0 bytes
jmasa
parents: 971
diff changeset
   242
    // but not a guarantee.  Align down to give a best effort.  This is likely
c9479f1e0a94 6730514: assertion failure in mangling code when expanding by 0 bytes
jmasa
parents: 971
diff changeset
   243
    // the most that the generation can expand since it has some capacity to
c9479f1e0a94 6730514: assertion failure in mangling code when expanding by 0 bytes
jmasa
parents: 971
diff changeset
   244
    // start with.
c9479f1e0a94 6730514: assertion failure in mangling code when expanding by 0 bytes
jmasa
parents: 971
diff changeset
   245
    aligned_bytes = align_size_down(bytes, alignment);
c9479f1e0a94 6730514: assertion failure in mangling code when expanding by 0 bytes
jmasa
parents: 971
diff changeset
   246
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   247
489c9b5090e2 Initial load
duke
parents:
diff changeset
   248
  bool success = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   249
  if (aligned_expand_bytes > aligned_bytes) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   250
    success = expand_by(aligned_expand_bytes);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   251
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   252
  if (!success) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   253
    success = expand_by(aligned_bytes);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   254
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   255
  if (!success) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   256
    success = expand_to_reserved();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   257
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   258
979
c9479f1e0a94 6730514: assertion failure in mangling code when expanding by 0 bytes
jmasa
parents: 971
diff changeset
   259
  if (PrintGC && Verbose) {
16608
9dd420de589b 8005857: assert in GC_locker from PSOldGen::expand with -XX:+PrintGCDetails and Verbose
tschatzl
parents: 13728
diff changeset
   260
    if (success && GC_locker::is_active_and_needs_gc()) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   261
      gclog_or_tty->print_cr("Garbage collection disabled, expanded heap instead");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   262
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   263
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   264
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   265
489c9b5090e2 Initial load
duke
parents:
diff changeset
   266
bool PSOldGen::expand_by(size_t bytes) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   267
  assert_lock_strong(ExpandHeap_lock);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   268
  assert_locked_or_safepoint(Heap_lock);
979
c9479f1e0a94 6730514: assertion failure in mangling code when expanding by 0 bytes
jmasa
parents: 971
diff changeset
   269
  if (bytes == 0) {
c9479f1e0a94 6730514: assertion failure in mangling code when expanding by 0 bytes
jmasa
parents: 971
diff changeset
   270
    return true;  // That's what virtual_space()->expand_by(0) would return
c9479f1e0a94 6730514: assertion failure in mangling code when expanding by 0 bytes
jmasa
parents: 971
diff changeset
   271
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   272
  bool result = virtual_space()->expand_by(bytes);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   273
  if (result) {
971
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 1
diff changeset
   274
    if (ZapUnusedHeapArea) {
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 1
diff changeset
   275
      // We need to mangle the newly expanded area. The memregion spans
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 1
diff changeset
   276
      // end -> new_end, we assume that top -> end is already mangled.
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 1
diff changeset
   277
      // Do the mangling before post_resize() is called because
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 1
diff changeset
   278
      // the space is available for allocation after post_resize();
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 1
diff changeset
   279
      HeapWord* const virtual_space_high = (HeapWord*) virtual_space()->high();
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 1
diff changeset
   280
      assert(object_space()->end() < virtual_space_high,
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 1
diff changeset
   281
        "Should be true before post_resize()");
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 1
diff changeset
   282
      MemRegion mangle_region(object_space()->end(), virtual_space_high);
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 1
diff changeset
   283
      // Note that the object space has not yet been updated to
22551
9bf46d16dcc6 8025856: Fix typos in the GC code
jwilhelm
parents: 22234
diff changeset
   284
      // coincide with the new underlying virtual space.
971
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 1
diff changeset
   285
      SpaceMangler::mangle_region(mangle_region);
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 1
diff changeset
   286
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   287
    post_resize();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   288
    if (UsePerfData) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   289
      _space_counters->update_capacity();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   290
      _gen_counters->update_all();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   291
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   292
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   293
489c9b5090e2 Initial load
duke
parents:
diff changeset
   294
  if (result && Verbose && PrintGC) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   295
    size_t new_mem_size = virtual_space()->committed_size();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   296
    size_t old_mem_size = new_mem_size - bytes;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   297
    gclog_or_tty->print_cr("Expanding %s from " SIZE_FORMAT "K by "
489c9b5090e2 Initial load
duke
parents:
diff changeset
   298
                                       SIZE_FORMAT "K to "
489c9b5090e2 Initial load
duke
parents:
diff changeset
   299
                                       SIZE_FORMAT "K",
489c9b5090e2 Initial load
duke
parents:
diff changeset
   300
                    name(), old_mem_size/K, bytes/K, new_mem_size/K);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   301
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   302
489c9b5090e2 Initial load
duke
parents:
diff changeset
   303
  return result;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   304
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   305
489c9b5090e2 Initial load
duke
parents:
diff changeset
   306
bool PSOldGen::expand_to_reserved() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   307
  assert_lock_strong(ExpandHeap_lock);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   308
  assert_locked_or_safepoint(Heap_lock);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   309
489c9b5090e2 Initial load
duke
parents:
diff changeset
   310
  bool result = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   311
  const size_t remaining_bytes = virtual_space()->uncommitted_size();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   312
  if (remaining_bytes > 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   313
    result = expand_by(remaining_bytes);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   314
    DEBUG_ONLY(if (!result) warning("grow to reserve failed"));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   315
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   316
  return result;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   317
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   318
489c9b5090e2 Initial load
duke
parents:
diff changeset
   319
void PSOldGen::shrink(size_t bytes) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   320
  assert_lock_strong(ExpandHeap_lock);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   321
  assert_locked_or_safepoint(Heap_lock);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   322
489c9b5090e2 Initial load
duke
parents:
diff changeset
   323
  size_t size = align_size_down(bytes, virtual_space()->alignment());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   324
  if (size > 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   325
    assert_lock_strong(ExpandHeap_lock);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   326
    virtual_space()->shrink_by(bytes);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   327
    post_resize();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   328
489c9b5090e2 Initial load
duke
parents:
diff changeset
   329
    if (Verbose && PrintGC) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   330
      size_t new_mem_size = virtual_space()->committed_size();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   331
      size_t old_mem_size = new_mem_size + bytes;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   332
      gclog_or_tty->print_cr("Shrinking %s from " SIZE_FORMAT "K by "
489c9b5090e2 Initial load
duke
parents:
diff changeset
   333
                                         SIZE_FORMAT "K to "
489c9b5090e2 Initial load
duke
parents:
diff changeset
   334
                                         SIZE_FORMAT "K",
489c9b5090e2 Initial load
duke
parents:
diff changeset
   335
                      name(), old_mem_size/K, bytes/K, new_mem_size/K);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   336
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   337
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   338
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   339
489c9b5090e2 Initial load
duke
parents:
diff changeset
   340
void PSOldGen::resize(size_t desired_free_space) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   341
  const size_t alignment = virtual_space()->alignment();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   342
  const size_t size_before = virtual_space()->committed_size();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   343
  size_t new_size = used_in_bytes() + desired_free_space;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   344
  if (new_size < used_in_bytes()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   345
    // Overflowed the addition.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   346
    new_size = gen_size_limit();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   347
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   348
  // Adjust according to our min and max
489c9b5090e2 Initial load
duke
parents:
diff changeset
   349
  new_size = MAX2(MIN2(new_size, gen_size_limit()), min_gen_size());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   350
489c9b5090e2 Initial load
duke
parents:
diff changeset
   351
  assert(gen_size_limit() >= reserved().byte_size(), "max new size problem?");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   352
  new_size = align_size_up(new_size, alignment);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   353
489c9b5090e2 Initial load
duke
parents:
diff changeset
   354
  const size_t current_size = capacity_in_bytes();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   355
489c9b5090e2 Initial load
duke
parents:
diff changeset
   356
  if (PrintAdaptiveSizePolicy && Verbose) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   357
    gclog_or_tty->print_cr("AdaptiveSizePolicy::old generation size: "
489c9b5090e2 Initial load
duke
parents:
diff changeset
   358
      "desired free: " SIZE_FORMAT " used: " SIZE_FORMAT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   359
      " new size: " SIZE_FORMAT " current size " SIZE_FORMAT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   360
      " gen limits: " SIZE_FORMAT " / " SIZE_FORMAT,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   361
      desired_free_space, used_in_bytes(), new_size, current_size,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   362
      gen_size_limit(), min_gen_size());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   363
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   364
489c9b5090e2 Initial load
duke
parents:
diff changeset
   365
  if (new_size == current_size) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   366
    // No change requested
489c9b5090e2 Initial load
duke
parents:
diff changeset
   367
    return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   368
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   369
  if (new_size > current_size) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   370
    size_t change_bytes = new_size - current_size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   371
    expand(change_bytes);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   372
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   373
    size_t change_bytes = current_size - new_size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   374
    // shrink doesn't grab this lock, expand does. Is that right?
489c9b5090e2 Initial load
duke
parents:
diff changeset
   375
    MutexLocker x(ExpandHeap_lock);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   376
    shrink(change_bytes);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   377
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   378
489c9b5090e2 Initial load
duke
parents:
diff changeset
   379
  if (PrintAdaptiveSizePolicy) {
30173
13cf7580b000 8077413: Avoid use of Universe::heap() inside collectors
pliden
parents: 29798
diff changeset
   380
    ParallelScavengeHeap* heap = ParallelScavengeHeap::heap();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   381
    gclog_or_tty->print_cr("AdaptiveSizePolicy::old generation size: "
489c9b5090e2 Initial load
duke
parents:
diff changeset
   382
                  "collection: %d "
489c9b5090e2 Initial load
duke
parents:
diff changeset
   383
                  "(" SIZE_FORMAT ") -> (" SIZE_FORMAT ") ",
489c9b5090e2 Initial load
duke
parents:
diff changeset
   384
                  heap->total_collections(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   385
                  size_before, virtual_space()->committed_size());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   386
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   387
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   388
489c9b5090e2 Initial load
duke
parents:
diff changeset
   389
// NOTE! We need to be careful about resizing. During a GC, multiple
489c9b5090e2 Initial load
duke
parents:
diff changeset
   390
// allocators may be active during heap expansion. If we allow the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   391
// heap resizing to become visible before we have correctly resized
489c9b5090e2 Initial load
duke
parents:
diff changeset
   392
// all heap related data structures, we may cause program failures.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   393
void PSOldGen::post_resize() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   394
  // First construct a memregion representing the new size
489c9b5090e2 Initial load
duke
parents:
diff changeset
   395
  MemRegion new_memregion((HeapWord*)virtual_space()->low(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   396
    (HeapWord*)virtual_space()->high());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   397
  size_t new_word_size = new_memregion.word_size();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   398
489c9b5090e2 Initial load
duke
parents:
diff changeset
   399
  start_array()->set_covered_region(new_memregion);
30173
13cf7580b000 8077413: Avoid use of Universe::heap() inside collectors
pliden
parents: 29798
diff changeset
   400
  ParallelScavengeHeap::heap()->barrier_set()->resize_covered_region(new_memregion);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   401
489c9b5090e2 Initial load
duke
parents:
diff changeset
   402
  // ALWAYS do this last!!
1911
b7cfe7eb809c 6783381: NUMA allocator: don't pretouch eden space with UseNUMA
iveresov
parents: 1412
diff changeset
   403
  object_space()->initialize(new_memregion,
b7cfe7eb809c 6783381: NUMA allocator: don't pretouch eden space with UseNUMA
iveresov
parents: 1412
diff changeset
   404
                             SpaceDecorator::DontClear,
b7cfe7eb809c 6783381: NUMA allocator: don't pretouch eden space with UseNUMA
iveresov
parents: 1412
diff changeset
   405
                             SpaceDecorator::DontMangle);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   406
489c9b5090e2 Initial load
duke
parents:
diff changeset
   407
  assert(new_word_size == heap_word_size(object_space()->capacity_in_bytes()),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   408
    "Sanity");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   409
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   410
489c9b5090e2 Initial load
duke
parents:
diff changeset
   411
size_t PSOldGen::gen_size_limit() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   412
  return _max_gen_size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   413
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   414
489c9b5090e2 Initial load
duke
parents:
diff changeset
   415
void PSOldGen::reset_after_change() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   416
  ShouldNotReachHere();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   417
  return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   418
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   419
489c9b5090e2 Initial load
duke
parents:
diff changeset
   420
size_t PSOldGen::available_for_expansion() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   421
  ShouldNotReachHere();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   422
  return 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   423
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   424
489c9b5090e2 Initial load
duke
parents:
diff changeset
   425
size_t PSOldGen::available_for_contraction() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   426
  ShouldNotReachHere();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   427
  return 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   428
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   429
489c9b5090e2 Initial load
duke
parents:
diff changeset
   430
void PSOldGen::print() const { print_on(tty);}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   431
void PSOldGen::print_on(outputStream* st) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   432
  st->print(" %-15s", name());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   433
  if (PrintGCDetails && Verbose) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   434
    st->print(" total " SIZE_FORMAT ", used " SIZE_FORMAT,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   435
                capacity_in_bytes(), used_in_bytes());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   436
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   437
    st->print(" total " SIZE_FORMAT "K, used " SIZE_FORMAT "K",
489c9b5090e2 Initial load
duke
parents:
diff changeset
   438
                capacity_in_bytes()/K, used_in_bytes()/K);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   439
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   440
  st->print_cr(" [" INTPTR_FORMAT ", " INTPTR_FORMAT ", " INTPTR_FORMAT ")",
29798
451c73fdf690 8076071: parallelScavenge: PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC needs to be removed from source files
david
parents: 29325
diff changeset
   441
                p2i(virtual_space()->low_boundary()),
451c73fdf690 8076071: parallelScavenge: PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC needs to be removed from source files
david
parents: 29325
diff changeset
   442
                p2i(virtual_space()->high()),
451c73fdf690 8076071: parallelScavenge: PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC needs to be removed from source files
david
parents: 29325
diff changeset
   443
                p2i(virtual_space()->high_boundary()));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   444
489c9b5090e2 Initial load
duke
parents:
diff changeset
   445
  st->print("  object"); object_space()->print_on(st);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   446
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   447
489c9b5090e2 Initial load
duke
parents:
diff changeset
   448
void PSOldGen::print_used_change(size_t prev_used) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   449
  gclog_or_tty->print(" [%s:", name());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   450
  gclog_or_tty->print(" "  SIZE_FORMAT "K"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   451
                      "->" SIZE_FORMAT "K"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   452
                      "("  SIZE_FORMAT "K)",
489c9b5090e2 Initial load
duke
parents:
diff changeset
   453
                      prev_used / K, used_in_bytes() / K,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   454
                      capacity_in_bytes() / K);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   455
  gclog_or_tty->print("]");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   456
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   457
489c9b5090e2 Initial load
duke
parents:
diff changeset
   458
void PSOldGen::update_counters() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   459
  if (UsePerfData) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   460
    _space_counters->update_all();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   461
    _gen_counters->update_all();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   462
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   463
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   464
489c9b5090e2 Initial load
duke
parents:
diff changeset
   465
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   466
489c9b5090e2 Initial load
duke
parents:
diff changeset
   467
void PSOldGen::space_invariants() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   468
  assert(object_space()->end() == (HeapWord*) virtual_space()->high(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   469
    "Space invariant");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   470
  assert(object_space()->bottom() == (HeapWord*) virtual_space()->low(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   471
    "Space invariant");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   472
  assert(virtual_space()->low_boundary() <= virtual_space()->low(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   473
    "Space invariant");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   474
  assert(virtual_space()->high_boundary() >= virtual_space()->high(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   475
    "Space invariant");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   476
  assert(virtual_space()->low_boundary() == (char*) _reserved.start(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   477
    "Space invariant");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   478
  assert(virtual_space()->high_boundary() == (char*) _reserved.end(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   479
    "Space invariant");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   480
  assert(virtual_space()->committed_size() <= virtual_space()->reserved_size(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   481
    "Space invariant");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   482
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   483
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   484
12379
2cf45b79ce3a 4988100: oop_verify_old_oop appears to be dead
brutisso
parents: 9997
diff changeset
   485
void PSOldGen::verify() {
2cf45b79ce3a 4988100: oop_verify_old_oop appears to be dead
brutisso
parents: 9997
diff changeset
   486
  object_space()->verify();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   487
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   488
class VerifyObjectStartArrayClosure : public ObjectClosure {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   489
  PSOldGen* _gen;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   490
  ObjectStartArray* _start_array;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   491
489c9b5090e2 Initial load
duke
parents:
diff changeset
   492
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   493
  VerifyObjectStartArrayClosure(PSOldGen* gen, ObjectStartArray* start_array) :
489c9b5090e2 Initial load
duke
parents:
diff changeset
   494
    _gen(gen), _start_array(start_array) { }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   495
489c9b5090e2 Initial load
duke
parents:
diff changeset
   496
  virtual void do_object(oop obj) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   497
    HeapWord* test_addr = (HeapWord*)obj + 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   498
    guarantee(_start_array->object_start(test_addr) == (HeapWord*)obj, "ObjectStartArray cannot find start of object");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   499
    guarantee(_start_array->is_block_allocated((HeapWord*)obj), "ObjectStartArray missing block allocation");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   500
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   501
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   502
489c9b5090e2 Initial load
duke
parents:
diff changeset
   503
void PSOldGen::verify_object_start_array() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   504
  VerifyObjectStartArrayClosure check( this, &_start_array );
489c9b5090e2 Initial load
duke
parents:
diff changeset
   505
  object_iterate(&check);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   506
}
971
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 1
diff changeset
   507
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 1
diff changeset
   508
#ifndef PRODUCT
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 1
diff changeset
   509
void PSOldGen::record_spaces_top() {
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 1
diff changeset
   510
  assert(ZapUnusedHeapArea, "Not mangling unused space");
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 1
diff changeset
   511
  object_space()->set_top_for_allocations();
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 1
diff changeset
   512
}
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 1
diff changeset
   513
#endif