src/hotspot/share/gc/parallel/adjoiningGenerations.cpp
author lkorinth
Mon, 25 Mar 2019 14:46:55 +0100
changeset 54264 41af8d0546bc
parent 53117 37930c6ba6d7
child 54678 93f09ca4a7f8
permissions -rw-r--r--
8221260: Initialize more class members on construction, remove some unused ones Reviewed-by: kbarrett, tschatzl
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
54264
41af8d0546bc 8221260: Initialize more class members on construction, remove some unused ones
lkorinth
parents: 53117
diff changeset
     2
 * Copyright (c) 2003, 2019, 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: 1
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1
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: 1
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"
30764
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 24941
diff changeset
    26
#include "gc/parallel/adjoiningGenerations.hpp"
53117
37930c6ba6d7 8211424: Allocation of old generation of java heap on alternate memory devices - Parallel GC
sangheki
parents: 51978
diff changeset
    27
#include "gc/parallel/adjoiningGenerationsForHeteroHeap.hpp"
30764
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 24941
diff changeset
    28
#include "gc/parallel/adjoiningVirtualSpaces.hpp"
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 24941
diff changeset
    29
#include "gc/parallel/generationSizer.hpp"
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 24941
diff changeset
    30
#include "gc/parallel/parallelScavengeHeap.hpp"
35061
be6025ebffea 8145092: Use Unified Logging for the GC logging
brutisso
parents: 30764
diff changeset
    31
#include "logging/log.hpp"
46701
f559541c0daa 8181917: Refactor UL LogStreams to avoid using resource area
stuefe
parents: 46625
diff changeset
    32
#include "logging/logStream.hpp"
35061
be6025ebffea 8145092: Use Unified Logging for the GC logging
brutisso
parents: 30764
diff changeset
    33
#include "memory/resourceArea.hpp"
46625
edefffab74e2 8183552: Move align functions to align.hpp
stefank
parents: 46622
diff changeset
    34
#include "utilities/align.hpp"
35061
be6025ebffea 8145092: Use Unified Logging for the GC logging
brutisso
parents: 30764
diff changeset
    35
#include "utilities/ostream.hpp"
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
// If boundary moving is being used, create the young gen and old
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
// gen with ASPSYoungGen and ASPSOldGen, respectively.  Revert to
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
// the old behavior otherwise (with PSYoungGen and PSOldGen).
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
AdjoiningGenerations::AdjoiningGenerations(ReservedSpace old_young_rs,
21561
c619b1cb4554 8016309: assert(eden_size > 0 && survivor_size > 0) failed: just checking
jwilhelm
parents: 13728
diff changeset
    42
                                           GenerationSizer* policy,
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
                                           size_t alignment) :
53117
37930c6ba6d7 8211424: Allocation of old generation of java heap on alternate memory devices - Parallel GC
sangheki
parents: 51978
diff changeset
    44
  _virtual_spaces(new AdjoiningVirtualSpaces(old_young_rs, policy->min_old_size(),
37930c6ba6d7 8211424: Allocation of old generation of java heap on alternate memory devices - Parallel GC
sangheki
parents: 51978
diff changeset
    45
                                             policy->min_young_size(), alignment)) {
24941
4ebbe176a7b1 8042298: Remove the names gen0 and gen1 from the GC code
jwilhelm
parents: 24092
diff changeset
    46
  size_t init_low_byte_size = policy->initial_old_size();
4ebbe176a7b1 8042298: Remove the names gen0 and gen1 from the GC code
jwilhelm
parents: 24092
diff changeset
    47
  size_t min_low_byte_size = policy->min_old_size();
4ebbe176a7b1 8042298: Remove the names gen0 and gen1 from the GC code
jwilhelm
parents: 24092
diff changeset
    48
  size_t max_low_byte_size = policy->max_old_size();
4ebbe176a7b1 8042298: Remove the names gen0 and gen1 from the GC code
jwilhelm
parents: 24092
diff changeset
    49
  size_t init_high_byte_size = policy->initial_young_size();
4ebbe176a7b1 8042298: Remove the names gen0 and gen1 from the GC code
jwilhelm
parents: 24092
diff changeset
    50
  size_t min_high_byte_size = policy->min_young_size();
4ebbe176a7b1 8042298: Remove the names gen0 and gen1 from the GC code
jwilhelm
parents: 24092
diff changeset
    51
  size_t max_high_byte_size = policy->max_young_size();
21561
c619b1cb4554 8016309: assert(eden_size > 0 && survivor_size > 0) failed: just checking
jwilhelm
parents: 13728
diff changeset
    52
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
  assert(min_low_byte_size <= init_low_byte_size &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
         init_low_byte_size <= max_low_byte_size, "Parameter check");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
  assert(min_high_byte_size <= init_high_byte_size &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
         init_high_byte_size <= max_high_byte_size, "Parameter check");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
  // Create the generations differently based on the option to
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
  // move the boundary.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
  if (UseAdaptiveGCBoundary) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
    // Initialize the adjoining virtual spaces.  Then pass the
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
    // a virtual to each generation for initialization of the
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
    // generation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
    // Does the actual creation of the virtual spaces
53117
37930c6ba6d7 8211424: Allocation of old generation of java heap on alternate memory devices - Parallel GC
sangheki
parents: 51978
diff changeset
    65
    _virtual_spaces->initialize(max_low_byte_size,
37930c6ba6d7 8211424: Allocation of old generation of java heap on alternate memory devices - Parallel GC
sangheki
parents: 51978
diff changeset
    66
                                init_low_byte_size,
37930c6ba6d7 8211424: Allocation of old generation of java heap on alternate memory devices - Parallel GC
sangheki
parents: 51978
diff changeset
    67
                                init_high_byte_size);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
    // Place the young gen at the high end.  Passes in the virtual space.
53117
37930c6ba6d7 8211424: Allocation of old generation of java heap on alternate memory devices - Parallel GC
sangheki
parents: 51978
diff changeset
    70
    _young_gen = new ASPSYoungGen(_virtual_spaces->high(),
37930c6ba6d7 8211424: Allocation of old generation of java heap on alternate memory devices - Parallel GC
sangheki
parents: 51978
diff changeset
    71
                                  _virtual_spaces->high()->committed_size(),
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
                                  min_high_byte_size,
53117
37930c6ba6d7 8211424: Allocation of old generation of java heap on alternate memory devices - Parallel GC
sangheki
parents: 51978
diff changeset
    73
                                  _virtual_spaces->high_byte_size_limit());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
    // Place the old gen at the low end. Passes in the virtual space.
53117
37930c6ba6d7 8211424: Allocation of old generation of java heap on alternate memory devices - Parallel GC
sangheki
parents: 51978
diff changeset
    76
    _old_gen = new ASPSOldGen(_virtual_spaces->low(),
37930c6ba6d7 8211424: Allocation of old generation of java heap on alternate memory devices - Parallel GC
sangheki
parents: 51978
diff changeset
    77
                              _virtual_spaces->low()->committed_size(),
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
                              min_low_byte_size,
53117
37930c6ba6d7 8211424: Allocation of old generation of java heap on alternate memory devices - Parallel GC
sangheki
parents: 51978
diff changeset
    79
                              _virtual_spaces->low_byte_size_limit(),
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
                              "old", 1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
    young_gen()->initialize_work();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
    assert(young_gen()->reserved().byte_size() <= young_gen()->gen_size_limit(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
     "Consistency check");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
    assert(old_young_rs.size() >= young_gen()->gen_size_limit(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
     "Consistency check");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
    old_gen()->initialize_work("old", 1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
    assert(old_gen()->reserved().byte_size() <= old_gen()->gen_size_limit(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
     "Consistency check");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
    assert(old_young_rs.size() >= old_gen()->gen_size_limit(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
     "Consistency check");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
    // Layout the reserved space for the generations.
53117
37930c6ba6d7 8211424: Allocation of old generation of java heap on alternate memory devices - Parallel GC
sangheki
parents: 51978
diff changeset
    96
    // If OldGen is allocated on nv-dimm, we need to split the reservation (this is required for windows).
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
    ReservedSpace old_rs   =
53117
37930c6ba6d7 8211424: Allocation of old generation of java heap on alternate memory devices - Parallel GC
sangheki
parents: 51978
diff changeset
    98
      virtual_spaces()->reserved_space().first_part(max_low_byte_size, policy->is_hetero_heap() /* split */);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
    ReservedSpace heap_rs  =
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
      virtual_spaces()->reserved_space().last_part(max_low_byte_size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
    ReservedSpace young_rs = heap_rs.first_part(max_high_byte_size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
    assert(young_rs.size() == heap_rs.size(), "Didn't reserve all of the heap");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
    // Create the generations.  Virtual spaces are not passed in.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
    _young_gen = new PSYoungGen(init_high_byte_size,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
                                min_high_byte_size,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
                                max_high_byte_size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
    _old_gen = new PSOldGen(init_low_byte_size,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
                            min_low_byte_size,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
                            max_low_byte_size,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
                            "old", 1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
    // The virtual spaces are created by the initialization of the gens.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
    _young_gen->initialize(young_rs, alignment);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
    assert(young_gen()->gen_size_limit() == young_rs.size(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
      "Consistency check");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
    _old_gen->initialize(old_rs, alignment, "old", 1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
    assert(old_gen()->gen_size_limit() == old_rs.size(), "Consistency check");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
54264
41af8d0546bc 8221260: Initialize more class members on construction, remove some unused ones
lkorinth
parents: 53117
diff changeset
   122
AdjoiningGenerations::AdjoiningGenerations(): _young_gen(NULL), _old_gen(NULL), _virtual_spaces(NULL) { }
53117
37930c6ba6d7 8211424: Allocation of old generation of java heap on alternate memory devices - Parallel GC
sangheki
parents: 51978
diff changeset
   123
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
size_t AdjoiningGenerations::reserved_byte_size() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
  return virtual_spaces()->reserved_space().size();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
35061
be6025ebffea 8145092: Use Unified Logging for the GC logging
brutisso
parents: 30764
diff changeset
   128
void log_before_expansion(bool old, size_t expand_in_bytes, size_t change_in_bytes, size_t max_size) {
51978
4756af2308a1 8210716: Detailed GC logging request misses some
manc
parents: 47216
diff changeset
   129
  Log(gc, ergo, heap) log;
35061
be6025ebffea 8145092: Use Unified Logging for the GC logging
brutisso
parents: 30764
diff changeset
   130
  if (!log.is_debug()) {
be6025ebffea 8145092: Use Unified Logging for the GC logging
brutisso
parents: 30764
diff changeset
   131
   return;
be6025ebffea 8145092: Use Unified Logging for the GC logging
brutisso
parents: 30764
diff changeset
   132
  }
be6025ebffea 8145092: Use Unified Logging for the GC logging
brutisso
parents: 30764
diff changeset
   133
  log.debug("Before expansion of %s gen with boundary move", old ? "old" : "young");
be6025ebffea 8145092: Use Unified Logging for the GC logging
brutisso
parents: 30764
diff changeset
   134
  log.debug("  Requested change: " SIZE_FORMAT_HEX "  Attempted change: " SIZE_FORMAT_HEX,
be6025ebffea 8145092: Use Unified Logging for the GC logging
brutisso
parents: 30764
diff changeset
   135
                        expand_in_bytes, change_in_bytes);
be6025ebffea 8145092: Use Unified Logging for the GC logging
brutisso
parents: 30764
diff changeset
   136
  ResourceMark rm;
46701
f559541c0daa 8181917: Refactor UL LogStreams to avoid using resource area
stuefe
parents: 46625
diff changeset
   137
  LogStream ls(log.debug());
f559541c0daa 8181917: Refactor UL LogStreams to avoid using resource area
stuefe
parents: 46625
diff changeset
   138
  ParallelScavengeHeap::heap()->print_on(&ls);
35061
be6025ebffea 8145092: Use Unified Logging for the GC logging
brutisso
parents: 30764
diff changeset
   139
  log.debug("  PS%sGen max size: " SIZE_FORMAT "K", old ? "Old" : "Young", max_size/K);
be6025ebffea 8145092: Use Unified Logging for the GC logging
brutisso
parents: 30764
diff changeset
   140
}
be6025ebffea 8145092: Use Unified Logging for the GC logging
brutisso
parents: 30764
diff changeset
   141
be6025ebffea 8145092: Use Unified Logging for the GC logging
brutisso
parents: 30764
diff changeset
   142
void log_after_expansion(bool old, size_t max_size) {
51978
4756af2308a1 8210716: Detailed GC logging request misses some
manc
parents: 47216
diff changeset
   143
  Log(gc, ergo, heap) log;
35061
be6025ebffea 8145092: Use Unified Logging for the GC logging
brutisso
parents: 30764
diff changeset
   144
  if (!log.is_debug()) {
be6025ebffea 8145092: Use Unified Logging for the GC logging
brutisso
parents: 30764
diff changeset
   145
   return;
be6025ebffea 8145092: Use Unified Logging for the GC logging
brutisso
parents: 30764
diff changeset
   146
  }
be6025ebffea 8145092: Use Unified Logging for the GC logging
brutisso
parents: 30764
diff changeset
   147
  log.debug("After expansion of %s gen with boundary move", old ? "old" : "young");
be6025ebffea 8145092: Use Unified Logging for the GC logging
brutisso
parents: 30764
diff changeset
   148
  ResourceMark rm;
46701
f559541c0daa 8181917: Refactor UL LogStreams to avoid using resource area
stuefe
parents: 46625
diff changeset
   149
  LogStream ls(log.debug());
f559541c0daa 8181917: Refactor UL LogStreams to avoid using resource area
stuefe
parents: 46625
diff changeset
   150
  ParallelScavengeHeap::heap()->print_on(&ls);
35061
be6025ebffea 8145092: Use Unified Logging for the GC logging
brutisso
parents: 30764
diff changeset
   151
  log.debug("  PS%sGen max size: " SIZE_FORMAT "K", old ? "Old" : "Young", max_size/K);
be6025ebffea 8145092: Use Unified Logging for the GC logging
brutisso
parents: 30764
diff changeset
   152
}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
// Make checks on the current sizes of the generations and
22551
9bf46d16dcc6 8025856: Fix typos in the GC code
jwilhelm
parents: 22234
diff changeset
   155
// the constraints on the sizes of the generations.  Push
9bf46d16dcc6 8025856: Fix typos in the GC code
jwilhelm
parents: 22234
diff changeset
   156
// up the boundary within the constraints.  A partial
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
// push can occur.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
void AdjoiningGenerations::request_old_gen_expansion(size_t expand_in_bytes) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
  assert(UseAdaptiveSizePolicy && UseAdaptiveGCBoundary, "runtime check");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
  assert_lock_strong(ExpandHeap_lock);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
  assert_locked_or_safepoint(Heap_lock);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
  // These sizes limit the amount the boundaries can move.  Effectively,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
  // the generation says how much it is willing to yield to the other
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
  // generation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
  const size_t young_gen_available = young_gen()->available_for_contraction();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
  const size_t old_gen_available = old_gen()->available_for_expansion();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
  const size_t alignment = virtual_spaces()->alignment();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
  size_t change_in_bytes = MIN3(young_gen_available,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
                                old_gen_available,
46622
910fc72c03e8 8178501: Replace usages of align macros with calls to the align inline functions
stefank
parents: 46619
diff changeset
   172
                                align_up(expand_in_bytes, alignment));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
  if (change_in_bytes == 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
    return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
35061
be6025ebffea 8145092: Use Unified Logging for the GC logging
brutisso
parents: 30764
diff changeset
   178
  log_before_expansion(true, expand_in_bytes, change_in_bytes, old_gen()->max_gen_size());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
  // Move the boundary between the generations up (smaller young gen).
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
  if (virtual_spaces()->adjust_boundary_up(change_in_bytes)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
    young_gen()->reset_after_change();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
    old_gen()->reset_after_change();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
  // The total reserved for the generations should match the sum
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
  // of the two even if the boundary is moving.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
  assert(reserved_byte_size() ==
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
         old_gen()->max_gen_size() + young_gen()->max_size(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
         "Space is missing");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
  young_gen()->space_invariants();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
  old_gen()->space_invariants();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
35061
be6025ebffea 8145092: Use Unified Logging for the GC logging
brutisso
parents: 30764
diff changeset
   194
  log_after_expansion(true, old_gen()->max_gen_size());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
// See comments on request_old_gen_expansion()
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
bool AdjoiningGenerations::request_young_gen_expansion(size_t expand_in_bytes) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
  assert(UseAdaptiveSizePolicy && UseAdaptiveGCBoundary, "runtime check");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
  // If eden is not empty, the boundary can be moved but no advantage
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
  // can be made of the move since eden cannot be moved.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
  if (!young_gen()->eden_space()->is_empty()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
    return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
  bool result = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
  const size_t young_gen_available = young_gen()->available_for_expansion();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
  const size_t old_gen_available = old_gen()->available_for_contraction();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   211
  const size_t alignment = virtual_spaces()->alignment();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   212
  size_t change_in_bytes = MIN3(young_gen_available,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
                                old_gen_available,
46622
910fc72c03e8 8178501: Replace usages of align macros with calls to the align inline functions
stefank
parents: 46619
diff changeset
   214
                                align_up(expand_in_bytes, alignment));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
  if (change_in_bytes == 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
    return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   218
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   219
35061
be6025ebffea 8145092: Use Unified Logging for the GC logging
brutisso
parents: 30764
diff changeset
   220
  log_before_expansion(false, expand_in_bytes, change_in_bytes, young_gen()->max_size());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   221
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
  // Move the boundary between the generations down (smaller old gen).
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
  MutexLocker x(ExpandHeap_lock);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
  if (virtual_spaces()->adjust_boundary_down(change_in_bytes)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
    young_gen()->reset_after_change();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   226
    old_gen()->reset_after_change();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   227
    result = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   228
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   229
489c9b5090e2 Initial load
duke
parents:
diff changeset
   230
  // The total reserved for the generations should match the sum
489c9b5090e2 Initial load
duke
parents:
diff changeset
   231
  // of the two even if the boundary is moving.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   232
  assert(reserved_byte_size() ==
489c9b5090e2 Initial load
duke
parents:
diff changeset
   233
         old_gen()->max_gen_size() + young_gen()->max_size(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   234
         "Space is missing");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   235
  young_gen()->space_invariants();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   236
  old_gen()->space_invariants();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   237
35061
be6025ebffea 8145092: Use Unified Logging for the GC logging
brutisso
parents: 30764
diff changeset
   238
  log_after_expansion(false, young_gen()->max_size());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   239
489c9b5090e2 Initial load
duke
parents:
diff changeset
   240
  return result;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   241
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   242
489c9b5090e2 Initial load
duke
parents:
diff changeset
   243
// Additional space is needed in the old generation.  Try to move the boundary
489c9b5090e2 Initial load
duke
parents:
diff changeset
   244
// up to meet the need.  Moves boundary up only
489c9b5090e2 Initial load
duke
parents:
diff changeset
   245
void AdjoiningGenerations::adjust_boundary_for_old_gen_needs(
489c9b5090e2 Initial load
duke
parents:
diff changeset
   246
  size_t desired_free_space) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   247
  assert(UseAdaptiveSizePolicy && UseAdaptiveGCBoundary, "runtime check");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   248
489c9b5090e2 Initial load
duke
parents:
diff changeset
   249
  // Stress testing.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   250
  if (PSAdaptiveSizePolicyResizeVirtualSpaceAlot == 1) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   251
    MutexLocker x(ExpandHeap_lock);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   252
    request_old_gen_expansion(virtual_spaces()->alignment() * 3 / 2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   253
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   254
489c9b5090e2 Initial load
duke
parents:
diff changeset
   255
  // Expand only if the entire generation is already committed.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   256
  if (old_gen()->virtual_space()->uncommitted_size() == 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   257
    if (old_gen()->free_in_bytes() < desired_free_space) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   258
      MutexLocker x(ExpandHeap_lock);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   259
      request_old_gen_expansion(desired_free_space);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   260
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   261
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   262
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   263
489c9b5090e2 Initial load
duke
parents:
diff changeset
   264
// See comment on adjust_boundary_for_old_gen_needss().
489c9b5090e2 Initial load
duke
parents:
diff changeset
   265
// Adjust boundary down only.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   266
void AdjoiningGenerations::adjust_boundary_for_young_gen_needs(size_t eden_size,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   267
    size_t survivor_size) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   268
489c9b5090e2 Initial load
duke
parents:
diff changeset
   269
  assert(UseAdaptiveSizePolicy && UseAdaptiveGCBoundary, "runtime check");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   270
489c9b5090e2 Initial load
duke
parents:
diff changeset
   271
  // Stress testing.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   272
  if (PSAdaptiveSizePolicyResizeVirtualSpaceAlot == 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   273
    request_young_gen_expansion(virtual_spaces()->alignment() * 3 / 2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   274
    eden_size = young_gen()->eden_space()->capacity_in_bytes();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   275
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   276
489c9b5090e2 Initial load
duke
parents:
diff changeset
   277
  // Expand only if the entire generation is already committed.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   278
  if (young_gen()->virtual_space()->uncommitted_size() == 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   279
    size_t desired_size = eden_size + 2 * survivor_size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   280
    const size_t committed = young_gen()->virtual_space()->committed_size();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   281
    if (desired_size > committed) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   282
      request_young_gen_expansion(desired_size - committed);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   283
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   284
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   285
}
53117
37930c6ba6d7 8211424: Allocation of old generation of java heap on alternate memory devices - Parallel GC
sangheki
parents: 51978
diff changeset
   286
37930c6ba6d7 8211424: Allocation of old generation of java heap on alternate memory devices - Parallel GC
sangheki
parents: 51978
diff changeset
   287
AdjoiningGenerations* AdjoiningGenerations::create_adjoining_generations(ReservedSpace old_young_rs,
37930c6ba6d7 8211424: Allocation of old generation of java heap on alternate memory devices - Parallel GC
sangheki
parents: 51978
diff changeset
   288
                                                                         GenerationSizer* policy,
37930c6ba6d7 8211424: Allocation of old generation of java heap on alternate memory devices - Parallel GC
sangheki
parents: 51978
diff changeset
   289
                                                                         size_t alignment) {
37930c6ba6d7 8211424: Allocation of old generation of java heap on alternate memory devices - Parallel GC
sangheki
parents: 51978
diff changeset
   290
  if (policy->is_hetero_heap() && UseAdaptiveGCBoundary) {
37930c6ba6d7 8211424: Allocation of old generation of java heap on alternate memory devices - Parallel GC
sangheki
parents: 51978
diff changeset
   291
    return new AdjoiningGenerationsForHeteroHeap(old_young_rs, policy, alignment);
37930c6ba6d7 8211424: Allocation of old generation of java heap on alternate memory devices - Parallel GC
sangheki
parents: 51978
diff changeset
   292
  } else {
37930c6ba6d7 8211424: Allocation of old generation of java heap on alternate memory devices - Parallel GC
sangheki
parents: 51978
diff changeset
   293
    return new AdjoiningGenerations(old_young_rs, policy, alignment);
37930c6ba6d7 8211424: Allocation of old generation of java heap on alternate memory devices - Parallel GC
sangheki
parents: 51978
diff changeset
   294
  }
37930c6ba6d7 8211424: Allocation of old generation of java heap on alternate memory devices - Parallel GC
sangheki
parents: 51978
diff changeset
   295
}