src/hotspot/share/gc/shared/collectorPolicy.cpp
author tschatzl
Wed, 08 Aug 2018 15:31:06 +0200
changeset 51332 c25572739e7c
parent 49734 f946776e9354
child 52876 2d17750d41e7
permissions -rw-r--r--
8208669: GC changes to allow enabling -Wreorder Reviewed-by: kbarrett
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
49164
7e958a8ebcd3 8195142: Refactor out card table from CardTableModRefBS to flatten the BarrierSet hierarchy
eosterlund
parents: 49050
diff changeset
     2
 * Copyright (c) 2001, 2018, 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: 5343
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 5343
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: 5343
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: 6985
diff changeset
    25
#include "precompiled.hpp"
30764
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 30173
diff changeset
    26
#include "gc/shared/adaptiveSizePolicy.hpp"
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 30173
diff changeset
    27
#include "gc/shared/cardTableRS.hpp"
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 30173
diff changeset
    28
#include "gc/shared/collectorPolicy.hpp"
49594
898ef81cbc0e 8200106: Move NoSafepointVerifier out from gcLocker.hpp
stefank
parents: 49164
diff changeset
    29
#include "gc/shared/gcLocker.hpp"
30764
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 30173
diff changeset
    30
#include "gc/shared/gcPolicyCounters.hpp"
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 30173
diff changeset
    31
#include "gc/shared/generationSpec.hpp"
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 30173
diff changeset
    32
#include "gc/shared/space.hpp"
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 30173
diff changeset
    33
#include "gc/shared/vmGCOperations.hpp"
35061
be6025ebffea 8145092: Use Unified Logging for the GC logging
brutisso
parents: 33212
diff changeset
    34
#include "logging/log.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6985
diff changeset
    35
#include "memory/universe.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6985
diff changeset
    36
#include "runtime/arguments.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6985
diff changeset
    37
#include "runtime/globals_extension.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6985
diff changeset
    38
#include "runtime/handles.inline.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6985
diff changeset
    39
#include "runtime/java.hpp"
14583
d70ee55535f4 8003935: Simplify the needed includes for using Thread::current()
stefank
parents: 14291
diff changeset
    40
#include "runtime/thread.inline.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6985
diff changeset
    41
#include "runtime/vmThread.hpp"
46625
edefffab74e2 8183552: Move align functions to align.hpp
stefank
parents: 46619
diff changeset
    42
#include "utilities/align.hpp"
15482
470d0b0c09f1 8005915: Unify SERIALGC and INCLUDE_ALTERNATE_GCS
jprovino
parents: 15091
diff changeset
    43
#include "utilities/macros.hpp"
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
22551
9bf46d16dcc6 8025856: Fix typos in the GC code
jwilhelm
parents: 22548
diff changeset
    45
// CollectorPolicy methods
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
21561
c619b1cb4554 8016309: assert(eden_size > 0 && survivor_size > 0) failed: just checking
jwilhelm
parents: 21560
diff changeset
    47
CollectorPolicy::CollectorPolicy() :
c619b1cb4554 8016309: assert(eden_size > 0 && survivor_size > 0) failed: just checking
jwilhelm
parents: 21560
diff changeset
    48
    _initial_heap_byte_size(InitialHeapSize),
c619b1cb4554 8016309: assert(eden_size > 0 && survivor_size > 0) failed: just checking
jwilhelm
parents: 21560
diff changeset
    49
    _max_heap_byte_size(MaxHeapSize),
51332
c25572739e7c 8208669: GC changes to allow enabling -Wreorder
tschatzl
parents: 49734
diff changeset
    50
    _min_heap_byte_size(Arguments::min_heap_size()),
c25572739e7c 8208669: GC changes to allow enabling -Wreorder
tschatzl
parents: 49734
diff changeset
    51
    _space_alignment(0),
c25572739e7c 8208669: GC changes to allow enabling -Wreorder
tschatzl
parents: 49734
diff changeset
    52
    _heap_alignment(0)
21561
c619b1cb4554 8016309: assert(eden_size > 0 && survivor_size > 0) failed: just checking
jwilhelm
parents: 21560
diff changeset
    53
{}
c619b1cb4554 8016309: assert(eden_size > 0 && survivor_size > 0) failed: just checking
jwilhelm
parents: 21560
diff changeset
    54
c619b1cb4554 8016309: assert(eden_size > 0 && survivor_size > 0) failed: just checking
jwilhelm
parents: 21560
diff changeset
    55
#ifdef ASSERT
c619b1cb4554 8016309: assert(eden_size > 0 && survivor_size > 0) failed: just checking
jwilhelm
parents: 21560
diff changeset
    56
void CollectorPolicy::assert_flags() {
c619b1cb4554 8016309: assert(eden_size > 0 && survivor_size > 0) failed: just checking
jwilhelm
parents: 21560
diff changeset
    57
  assert(InitialHeapSize <= MaxHeapSize, "Ergonomics decided on incompatible initial and maximum heap sizes");
c619b1cb4554 8016309: assert(eden_size > 0 && survivor_size > 0) failed: just checking
jwilhelm
parents: 21560
diff changeset
    58
  assert(InitialHeapSize % _heap_alignment == 0, "InitialHeapSize alignment");
c619b1cb4554 8016309: assert(eden_size > 0 && survivor_size > 0) failed: just checking
jwilhelm
parents: 21560
diff changeset
    59
  assert(MaxHeapSize % _heap_alignment == 0, "MaxHeapSize alignment");
c619b1cb4554 8016309: assert(eden_size > 0 && survivor_size > 0) failed: just checking
jwilhelm
parents: 21560
diff changeset
    60
}
c619b1cb4554 8016309: assert(eden_size > 0 && survivor_size > 0) failed: just checking
jwilhelm
parents: 21560
diff changeset
    61
c619b1cb4554 8016309: assert(eden_size > 0 && survivor_size > 0) failed: just checking
jwilhelm
parents: 21560
diff changeset
    62
void CollectorPolicy::assert_size_info() {
c619b1cb4554 8016309: assert(eden_size > 0 && survivor_size > 0) failed: just checking
jwilhelm
parents: 21560
diff changeset
    63
  assert(InitialHeapSize == _initial_heap_byte_size, "Discrepancy between InitialHeapSize flag and local storage");
c619b1cb4554 8016309: assert(eden_size > 0 && survivor_size > 0) failed: just checking
jwilhelm
parents: 21560
diff changeset
    64
  assert(MaxHeapSize == _max_heap_byte_size, "Discrepancy between MaxHeapSize flag and local storage");
c619b1cb4554 8016309: assert(eden_size > 0 && survivor_size > 0) failed: just checking
jwilhelm
parents: 21560
diff changeset
    65
  assert(_max_heap_byte_size >= _min_heap_byte_size, "Ergonomics decided on incompatible minimum and maximum heap sizes");
c619b1cb4554 8016309: assert(eden_size > 0 && survivor_size > 0) failed: just checking
jwilhelm
parents: 21560
diff changeset
    66
  assert(_initial_heap_byte_size >= _min_heap_byte_size, "Ergonomics decided on incompatible initial and minimum heap sizes");
c619b1cb4554 8016309: assert(eden_size > 0 && survivor_size > 0) failed: just checking
jwilhelm
parents: 21560
diff changeset
    67
  assert(_max_heap_byte_size >= _initial_heap_byte_size, "Ergonomics decided on incompatible initial and maximum heap sizes");
c619b1cb4554 8016309: assert(eden_size > 0 && survivor_size > 0) failed: just checking
jwilhelm
parents: 21560
diff changeset
    68
  assert(_min_heap_byte_size % _heap_alignment == 0, "min_heap_byte_size alignment");
c619b1cb4554 8016309: assert(eden_size > 0 && survivor_size > 0) failed: just checking
jwilhelm
parents: 21560
diff changeset
    69
  assert(_initial_heap_byte_size % _heap_alignment == 0, "initial_heap_byte_size alignment");
c619b1cb4554 8016309: assert(eden_size > 0 && survivor_size > 0) failed: just checking
jwilhelm
parents: 21560
diff changeset
    70
  assert(_max_heap_byte_size % _heap_alignment == 0, "max_heap_byte_size alignment");
c619b1cb4554 8016309: assert(eden_size > 0 && survivor_size > 0) failed: just checking
jwilhelm
parents: 21560
diff changeset
    71
}
c619b1cb4554 8016309: assert(eden_size > 0 && survivor_size > 0) failed: just checking
jwilhelm
parents: 21560
diff changeset
    72
#endif // ASSERT
c619b1cb4554 8016309: assert(eden_size > 0 && survivor_size > 0) failed: just checking
jwilhelm
parents: 21560
diff changeset
    73
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
void CollectorPolicy::initialize_flags() {
21561
c619b1cb4554 8016309: assert(eden_size > 0 && survivor_size > 0) failed: just checking
jwilhelm
parents: 21560
diff changeset
    75
  assert(_space_alignment != 0, "Space alignment not set up properly");
c619b1cb4554 8016309: assert(eden_size > 0 && survivor_size > 0) failed: just checking
jwilhelm
parents: 21560
diff changeset
    76
  assert(_heap_alignment != 0, "Heap alignment not set up properly");
c619b1cb4554 8016309: assert(eden_size > 0 && survivor_size > 0) failed: just checking
jwilhelm
parents: 21560
diff changeset
    77
  assert(_heap_alignment >= _space_alignment,
33105
294e48b4f704 8080775: Better argument formatting for assert() and friends
david
parents: 32362
diff changeset
    78
         "heap_alignment: " SIZE_FORMAT " less than space_alignment: " SIZE_FORMAT,
294e48b4f704 8080775: Better argument formatting for assert() and friends
david
parents: 32362
diff changeset
    79
         _heap_alignment, _space_alignment);
21561
c619b1cb4554 8016309: assert(eden_size > 0 && survivor_size > 0) failed: just checking
jwilhelm
parents: 21560
diff changeset
    80
  assert(_heap_alignment % _space_alignment == 0,
33105
294e48b4f704 8080775: Better argument formatting for assert() and friends
david
parents: 32362
diff changeset
    81
         "heap_alignment: " SIZE_FORMAT " not aligned by space_alignment: " SIZE_FORMAT,
294e48b4f704 8080775: Better argument formatting for assert() and friends
david
parents: 32362
diff changeset
    82
         _heap_alignment, _space_alignment);
17320
e7e94e2542e4 8013791: G1: G1CollectorPolicy::initialize_flags() may set min_alignment > max_alignment
brutisso
parents: 17031
diff changeset
    83
21561
c619b1cb4554 8016309: assert(eden_size > 0 && survivor_size > 0) failed: just checking
jwilhelm
parents: 21560
diff changeset
    84
  if (FLAG_IS_CMDLINE(MaxHeapSize)) {
c619b1cb4554 8016309: assert(eden_size > 0 && survivor_size > 0) failed: just checking
jwilhelm
parents: 21560
diff changeset
    85
    if (FLAG_IS_CMDLINE(InitialHeapSize) && InitialHeapSize > MaxHeapSize) {
c619b1cb4554 8016309: assert(eden_size > 0 && survivor_size > 0) failed: just checking
jwilhelm
parents: 21560
diff changeset
    86
      vm_exit_during_initialization("Initial heap size set to a larger value than the maximum heap size");
c619b1cb4554 8016309: assert(eden_size > 0 && survivor_size > 0) failed: just checking
jwilhelm
parents: 21560
diff changeset
    87
    }
c619b1cb4554 8016309: assert(eden_size > 0 && survivor_size > 0) failed: just checking
jwilhelm
parents: 21560
diff changeset
    88
    if (_min_heap_byte_size != 0 && MaxHeapSize < _min_heap_byte_size) {
c619b1cb4554 8016309: assert(eden_size > 0 && survivor_size > 0) failed: just checking
jwilhelm
parents: 21560
diff changeset
    89
      vm_exit_during_initialization("Incompatible minimum and maximum heap sizes specified");
c619b1cb4554 8016309: assert(eden_size > 0 && survivor_size > 0) failed: just checking
jwilhelm
parents: 21560
diff changeset
    90
    }
17322
35c488005999 8006088: Incompatible heap size flags accepted by VM
tschatzl
parents: 17320
diff changeset
    91
  }
35c488005999 8006088: Incompatible heap size flags accepted by VM
tschatzl
parents: 17320
diff changeset
    92
21561
c619b1cb4554 8016309: assert(eden_size > 0 && survivor_size > 0) failed: just checking
jwilhelm
parents: 21560
diff changeset
    93
  // Check heap parameter properties
37088
2f2b21b4df00 8067768: Check for too small values for -Xmx
pliden
parents: 35864
diff changeset
    94
  if (MaxHeapSize < 2 * M) {
2f2b21b4df00 8067768: Check for too small values for -Xmx
pliden
parents: 35864
diff changeset
    95
    vm_exit_during_initialization("Too small maximum heap");
2f2b21b4df00 8067768: Check for too small values for -Xmx
pliden
parents: 35864
diff changeset
    96
  }
21561
c619b1cb4554 8016309: assert(eden_size > 0 && survivor_size > 0) failed: just checking
jwilhelm
parents: 21560
diff changeset
    97
  if (InitialHeapSize < M) {
c619b1cb4554 8016309: assert(eden_size > 0 && survivor_size > 0) failed: just checking
jwilhelm
parents: 21560
diff changeset
    98
    vm_exit_during_initialization("Too small initial heap");
c619b1cb4554 8016309: assert(eden_size > 0 && survivor_size > 0) failed: just checking
jwilhelm
parents: 21560
diff changeset
    99
  }
c619b1cb4554 8016309: assert(eden_size > 0 && survivor_size > 0) failed: just checking
jwilhelm
parents: 21560
diff changeset
   100
  if (_min_heap_byte_size < M) {
c619b1cb4554 8016309: assert(eden_size > 0 && survivor_size > 0) failed: just checking
jwilhelm
parents: 21560
diff changeset
   101
    vm_exit_during_initialization("Too small minimum heap");
c619b1cb4554 8016309: assert(eden_size > 0 && survivor_size > 0) failed: just checking
jwilhelm
parents: 21560
diff changeset
   102
  }
c619b1cb4554 8016309: assert(eden_size > 0 && survivor_size > 0) failed: just checking
jwilhelm
parents: 21560
diff changeset
   103
c619b1cb4554 8016309: assert(eden_size > 0 && survivor_size > 0) failed: just checking
jwilhelm
parents: 21560
diff changeset
   104
  // User inputs from -Xmx and -Xms must be aligned
46619
a3919f5e8d2b 8178499: Remove _ptr_ and _size_ infixes from align functions
stefank
parents: 46618
diff changeset
   105
  _min_heap_byte_size = align_up(_min_heap_byte_size, _heap_alignment);
a3919f5e8d2b 8178499: Remove _ptr_ and _size_ infixes from align functions
stefank
parents: 46618
diff changeset
   106
  size_t aligned_initial_heap_size = align_up(InitialHeapSize, _heap_alignment);
a3919f5e8d2b 8178499: Remove _ptr_ and _size_ infixes from align functions
stefank
parents: 46618
diff changeset
   107
  size_t aligned_max_heap_size = align_up(MaxHeapSize, _heap_alignment);
21561
c619b1cb4554 8016309: assert(eden_size > 0 && survivor_size > 0) failed: just checking
jwilhelm
parents: 21560
diff changeset
   108
c619b1cb4554 8016309: assert(eden_size > 0 && survivor_size > 0) failed: just checking
jwilhelm
parents: 21560
diff changeset
   109
  // Write back to flags if the values changed
c619b1cb4554 8016309: assert(eden_size > 0 && survivor_size > 0) failed: just checking
jwilhelm
parents: 21560
diff changeset
   110
  if (aligned_initial_heap_size != InitialHeapSize) {
29697
92501504191b 8074459: Flags handling memory sizes should be of type size_t
jwilhelm
parents: 29684
diff changeset
   111
    FLAG_SET_ERGO(size_t, InitialHeapSize, aligned_initial_heap_size);
21561
c619b1cb4554 8016309: assert(eden_size > 0 && survivor_size > 0) failed: just checking
jwilhelm
parents: 21560
diff changeset
   112
  }
c619b1cb4554 8016309: assert(eden_size > 0 && survivor_size > 0) failed: just checking
jwilhelm
parents: 21560
diff changeset
   113
  if (aligned_max_heap_size != MaxHeapSize) {
29697
92501504191b 8074459: Flags handling memory sizes should be of type size_t
jwilhelm
parents: 29684
diff changeset
   114
    FLAG_SET_ERGO(size_t, MaxHeapSize, aligned_max_heap_size);
21561
c619b1cb4554 8016309: assert(eden_size > 0 && survivor_size > 0) failed: just checking
jwilhelm
parents: 21560
diff changeset
   115
  }
c619b1cb4554 8016309: assert(eden_size > 0 && survivor_size > 0) failed: just checking
jwilhelm
parents: 21560
diff changeset
   116
c619b1cb4554 8016309: assert(eden_size > 0 && survivor_size > 0) failed: just checking
jwilhelm
parents: 21560
diff changeset
   117
  if (FLAG_IS_CMDLINE(InitialHeapSize) && _min_heap_byte_size != 0 &&
c619b1cb4554 8016309: assert(eden_size > 0 && survivor_size > 0) failed: just checking
jwilhelm
parents: 21560
diff changeset
   118
      InitialHeapSize < _min_heap_byte_size) {
c619b1cb4554 8016309: assert(eden_size > 0 && survivor_size > 0) failed: just checking
jwilhelm
parents: 21560
diff changeset
   119
    vm_exit_during_initialization("Incompatible minimum and initial heap sizes specified");
c619b1cb4554 8016309: assert(eden_size > 0 && survivor_size > 0) failed: just checking
jwilhelm
parents: 21560
diff changeset
   120
  }
c619b1cb4554 8016309: assert(eden_size > 0 && survivor_size > 0) failed: just checking
jwilhelm
parents: 21560
diff changeset
   121
  if (!FLAG_IS_DEFAULT(InitialHeapSize) && InitialHeapSize > MaxHeapSize) {
29697
92501504191b 8074459: Flags handling memory sizes should be of type size_t
jwilhelm
parents: 29684
diff changeset
   122
    FLAG_SET_ERGO(size_t, MaxHeapSize, InitialHeapSize);
21561
c619b1cb4554 8016309: assert(eden_size > 0 && survivor_size > 0) failed: just checking
jwilhelm
parents: 21560
diff changeset
   123
  } else if (!FLAG_IS_DEFAULT(MaxHeapSize) && InitialHeapSize > MaxHeapSize) {
29697
92501504191b 8074459: Flags handling memory sizes should be of type size_t
jwilhelm
parents: 29684
diff changeset
   124
    FLAG_SET_ERGO(size_t, InitialHeapSize, MaxHeapSize);
21561
c619b1cb4554 8016309: assert(eden_size > 0 && survivor_size > 0) failed: just checking
jwilhelm
parents: 21560
diff changeset
   125
    if (InitialHeapSize < _min_heap_byte_size) {
c619b1cb4554 8016309: assert(eden_size > 0 && survivor_size > 0) failed: just checking
jwilhelm
parents: 21560
diff changeset
   126
      _min_heap_byte_size = InitialHeapSize;
c619b1cb4554 8016309: assert(eden_size > 0 && survivor_size > 0) failed: just checking
jwilhelm
parents: 21560
diff changeset
   127
    }
c619b1cb4554 8016309: assert(eden_size > 0 && survivor_size > 0) failed: just checking
jwilhelm
parents: 21560
diff changeset
   128
  }
c619b1cb4554 8016309: assert(eden_size > 0 && survivor_size > 0) failed: just checking
jwilhelm
parents: 21560
diff changeset
   129
c619b1cb4554 8016309: assert(eden_size > 0 && survivor_size > 0) failed: just checking
jwilhelm
parents: 21560
diff changeset
   130
  _initial_heap_byte_size = InitialHeapSize;
c619b1cb4554 8016309: assert(eden_size > 0 && survivor_size > 0) failed: just checking
jwilhelm
parents: 21560
diff changeset
   131
  _max_heap_byte_size = MaxHeapSize;
c619b1cb4554 8016309: assert(eden_size > 0 && survivor_size > 0) failed: just checking
jwilhelm
parents: 21560
diff changeset
   132
46619
a3919f5e8d2b 8178499: Remove _ptr_ and _size_ infixes from align functions
stefank
parents: 46618
diff changeset
   133
  FLAG_SET_ERGO(size_t, MinHeapDeltaBytes, align_up(MinHeapDeltaBytes, _space_alignment));
21561
c619b1cb4554 8016309: assert(eden_size > 0 && survivor_size > 0) failed: just checking
jwilhelm
parents: 21560
diff changeset
   134
c619b1cb4554 8016309: assert(eden_size > 0 && survivor_size > 0) failed: just checking
jwilhelm
parents: 21560
diff changeset
   135
  DEBUG_ONLY(CollectorPolicy::assert_flags();)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
void CollectorPolicy::initialize_size_info() {
35061
be6025ebffea 8145092: Use Unified Logging for the GC logging
brutisso
parents: 33212
diff changeset
   139
  log_debug(gc, heap)("Minimum heap " SIZE_FORMAT "  Initial heap " SIZE_FORMAT "  Maximum heap " SIZE_FORMAT,
be6025ebffea 8145092: Use Unified Logging for the GC logging
brutisso
parents: 33212
diff changeset
   140
                      _min_heap_byte_size, _initial_heap_byte_size, _max_heap_byte_size);
21561
c619b1cb4554 8016309: assert(eden_size > 0 && survivor_size > 0) failed: just checking
jwilhelm
parents: 21560
diff changeset
   141
c619b1cb4554 8016309: assert(eden_size > 0 && survivor_size > 0) failed: just checking
jwilhelm
parents: 21560
diff changeset
   142
  DEBUG_ONLY(CollectorPolicy::assert_size_info();)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
21561
c619b1cb4554 8016309: assert(eden_size > 0 && survivor_size > 0) failed: just checking
jwilhelm
parents: 21560
diff changeset
   145
size_t CollectorPolicy::compute_heap_alignment() {
19986
33d188c66ed9 8010722: assert: failed: heap size is too big for compressed oops
tschatzl
parents: 19546
diff changeset
   146
  // The card marking array and the offset arrays for old generations are
33d188c66ed9 8010722: assert: failed: heap size is too big for compressed oops
tschatzl
parents: 19546
diff changeset
   147
  // committed in os pages as well. Make sure they are entirely full (to
33d188c66ed9 8010722: assert: failed: heap size is too big for compressed oops
tschatzl
parents: 19546
diff changeset
   148
  // avoid partial page problems), e.g. if 512 bytes heap corresponds to 1
33d188c66ed9 8010722: assert: failed: heap size is too big for compressed oops
tschatzl
parents: 19546
diff changeset
   149
  // byte entry and the os page size is 4096, the maximum heap size should
33d188c66ed9 8010722: assert: failed: heap size is too big for compressed oops
tschatzl
parents: 19546
diff changeset
   150
  // be 512*4096 = 2MB aligned.
33d188c66ed9 8010722: assert: failed: heap size is too big for compressed oops
tschatzl
parents: 19546
diff changeset
   151
33212
906b3d079b13 8139434: Unify GenRemSet and CardTableRS
david
parents: 33105
diff changeset
   152
  size_t alignment = CardTableRS::ct_max_alignment_constraint();
19986
33d188c66ed9 8010722: assert: failed: heap size is too big for compressed oops
tschatzl
parents: 19546
diff changeset
   153
25943
fdb79c13bd3b 8034056: assert(_heap_alignment >= _space_alignment) failed: heap_alignment less than space_alignment
jmasa
parents: 25485
diff changeset
   154
  if (UseLargePages) {
22551
9bf46d16dcc6 8025856: Fix typos in the GC code
jwilhelm
parents: 22548
diff changeset
   155
      // In presence of large pages we have to make sure that our
25943
fdb79c13bd3b 8034056: assert(_heap_alignment >= _space_alignment) failed: heap_alignment less than space_alignment
jmasa
parents: 25485
diff changeset
   156
      // alignment is large page aware.
19986
33d188c66ed9 8010722: assert: failed: heap size is too big for compressed oops
tschatzl
parents: 19546
diff changeset
   157
      alignment = lcm(os::large_page_size(), alignment);
33d188c66ed9 8010722: assert: failed: heap size is too big for compressed oops
tschatzl
parents: 19546
diff changeset
   158
  }
33d188c66ed9 8010722: assert: failed: heap size is too big for compressed oops
tschatzl
parents: 19546
diff changeset
   159
33d188c66ed9 8010722: assert: failed: heap size is too big for compressed oops
tschatzl
parents: 19546
diff changeset
   160
  return alignment;
33d188c66ed9 8010722: assert: failed: heap size is too big for compressed oops
tschatzl
parents: 19546
diff changeset
   161
}
5343
95a5c4b89273 6858496: Clear all SoftReferences before an out-of-memory due to GC overhead limit.
jmasa
parents: 4434
diff changeset
   162
22551
9bf46d16dcc6 8025856: Fix typos in the GC code
jwilhelm
parents: 22548
diff changeset
   163
// GenCollectorPolicy methods
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
21561
c619b1cb4554 8016309: assert(eden_size > 0 && survivor_size > 0) failed: just checking
jwilhelm
parents: 21560
diff changeset
   165
GenCollectorPolicy::GenCollectorPolicy() :
24941
4ebbe176a7b1 8042298: Remove the names gen0 and gen1 from the GC code
jwilhelm
parents: 24940
diff changeset
   166
    _min_young_size(0),
4ebbe176a7b1 8042298: Remove the names gen0 and gen1 from the GC code
jwilhelm
parents: 24940
diff changeset
   167
    _initial_young_size(0),
4ebbe176a7b1 8042298: Remove the names gen0 and gen1 from the GC code
jwilhelm
parents: 24940
diff changeset
   168
    _max_young_size(0),
4ebbe176a7b1 8042298: Remove the names gen0 and gen1 from the GC code
jwilhelm
parents: 24940
diff changeset
   169
    _min_old_size(0),
4ebbe176a7b1 8042298: Remove the names gen0 and gen1 from the GC code
jwilhelm
parents: 24940
diff changeset
   170
    _initial_old_size(0),
4ebbe176a7b1 8042298: Remove the names gen0 and gen1 from the GC code
jwilhelm
parents: 24940
diff changeset
   171
    _max_old_size(0),
49049
effb50eeea4e 8198528: Move GenerationSpecs from GenCollectorPolicy to GenCollectedHeap
stefank
parents: 49048
diff changeset
   172
    _gen_alignment(0)
21561
c619b1cb4554 8016309: assert(eden_size > 0 && survivor_size > 0) failed: just checking
jwilhelm
parents: 21560
diff changeset
   173
{}
c619b1cb4554 8016309: assert(eden_size > 0 && survivor_size > 0) failed: just checking
jwilhelm
parents: 21560
diff changeset
   174
186
32e6c95f8d9b 6557851: CMS: ergonomics defaults are not set with FLAG_SET_ERGO
jmasa
parents: 1
diff changeset
   175
size_t GenCollectorPolicy::scale_by_NewRatio_aligned(size_t base_size) {
46619
a3919f5e8d2b 8178499: Remove _ptr_ and _size_ infixes from align functions
stefank
parents: 46618
diff changeset
   176
  return align_down_bounded(base_size / (NewRatio + 1), _gen_alignment);
186
32e6c95f8d9b 6557851: CMS: ergonomics defaults are not set with FLAG_SET_ERGO
jmasa
parents: 1
diff changeset
   177
}
32e6c95f8d9b 6557851: CMS: ergonomics defaults are not set with FLAG_SET_ERGO
jmasa
parents: 1
diff changeset
   178
32e6c95f8d9b 6557851: CMS: ergonomics defaults are not set with FLAG_SET_ERGO
jmasa
parents: 1
diff changeset
   179
size_t GenCollectorPolicy::bound_minus_alignment(size_t desired_size,
32e6c95f8d9b 6557851: CMS: ergonomics defaults are not set with FLAG_SET_ERGO
jmasa
parents: 1
diff changeset
   180
                                                 size_t maximum_size) {
21561
c619b1cb4554 8016309: assert(eden_size > 0 && survivor_size > 0) failed: just checking
jwilhelm
parents: 21560
diff changeset
   181
  size_t max_minus = maximum_size - _gen_alignment;
186
32e6c95f8d9b 6557851: CMS: ergonomics defaults are not set with FLAG_SET_ERGO
jmasa
parents: 1
diff changeset
   182
  return desired_size < max_minus ? desired_size : max_minus;
32e6c95f8d9b 6557851: CMS: ergonomics defaults are not set with FLAG_SET_ERGO
jmasa
parents: 1
diff changeset
   183
}
32e6c95f8d9b 6557851: CMS: ergonomics defaults are not set with FLAG_SET_ERGO
jmasa
parents: 1
diff changeset
   184
21561
c619b1cb4554 8016309: assert(eden_size > 0 && survivor_size > 0) failed: just checking
jwilhelm
parents: 21560
diff changeset
   185
size_t GenCollectorPolicy::young_gen_size_lower_bound() {
c619b1cb4554 8016309: assert(eden_size > 0 && survivor_size > 0) failed: just checking
jwilhelm
parents: 21560
diff changeset
   186
  // The young generation must be aligned and have room for eden + two survivors
46619
a3919f5e8d2b 8178499: Remove _ptr_ and _size_ infixes from align functions
stefank
parents: 46618
diff changeset
   187
  return align_up(3 * _space_alignment, _gen_alignment);
21561
c619b1cb4554 8016309: assert(eden_size > 0 && survivor_size > 0) failed: just checking
jwilhelm
parents: 21560
diff changeset
   188
}
c619b1cb4554 8016309: assert(eden_size > 0 && survivor_size > 0) failed: just checking
jwilhelm
parents: 21560
diff changeset
   189
32362
a487889ff52d 8133553: Running with -XX:+UseParallelGC -XX:OldSize=30k crashes jvm
david
parents: 31358
diff changeset
   190
size_t GenCollectorPolicy::old_gen_size_lower_bound() {
46619
a3919f5e8d2b 8178499: Remove _ptr_ and _size_ infixes from align functions
stefank
parents: 46618
diff changeset
   191
  return align_up(_space_alignment, _gen_alignment);
32362
a487889ff52d 8133553: Running with -XX:+UseParallelGC -XX:OldSize=30k crashes jvm
david
parents: 31358
diff changeset
   192
}
a487889ff52d 8133553: Running with -XX:+UseParallelGC -XX:OldSize=30k crashes jvm
david
parents: 31358
diff changeset
   193
21561
c619b1cb4554 8016309: assert(eden_size > 0 && survivor_size > 0) failed: just checking
jwilhelm
parents: 21560
diff changeset
   194
#ifdef ASSERT
c619b1cb4554 8016309: assert(eden_size > 0 && survivor_size > 0) failed: just checking
jwilhelm
parents: 21560
diff changeset
   195
void GenCollectorPolicy::assert_flags() {
c619b1cb4554 8016309: assert(eden_size > 0 && survivor_size > 0) failed: just checking
jwilhelm
parents: 21560
diff changeset
   196
  CollectorPolicy::assert_flags();
24941
4ebbe176a7b1 8042298: Remove the names gen0 and gen1 from the GC code
jwilhelm
parents: 24940
diff changeset
   197
  assert(NewSize >= _min_young_size, "Ergonomics decided on a too small young gen size");
21561
c619b1cb4554 8016309: assert(eden_size > 0 && survivor_size > 0) failed: just checking
jwilhelm
parents: 21560
diff changeset
   198
  assert(NewSize <= MaxNewSize, "Ergonomics decided on incompatible initial and maximum young gen sizes");
c619b1cb4554 8016309: assert(eden_size > 0 && survivor_size > 0) failed: just checking
jwilhelm
parents: 21560
diff changeset
   199
  assert(FLAG_IS_DEFAULT(MaxNewSize) || MaxNewSize < MaxHeapSize, "Ergonomics decided on incompatible maximum young gen and heap sizes");
c619b1cb4554 8016309: assert(eden_size > 0 && survivor_size > 0) failed: just checking
jwilhelm
parents: 21560
diff changeset
   200
  assert(NewSize % _gen_alignment == 0, "NewSize alignment");
c619b1cb4554 8016309: assert(eden_size > 0 && survivor_size > 0) failed: just checking
jwilhelm
parents: 21560
diff changeset
   201
  assert(FLAG_IS_DEFAULT(MaxNewSize) || MaxNewSize % _gen_alignment == 0, "MaxNewSize alignment");
c619b1cb4554 8016309: assert(eden_size > 0 && survivor_size > 0) failed: just checking
jwilhelm
parents: 21560
diff changeset
   202
  assert(OldSize + NewSize <= MaxHeapSize, "Ergonomics decided on incompatible generation and heap sizes");
c619b1cb4554 8016309: assert(eden_size > 0 && survivor_size > 0) failed: just checking
jwilhelm
parents: 21560
diff changeset
   203
  assert(OldSize % _gen_alignment == 0, "OldSize alignment");
c619b1cb4554 8016309: assert(eden_size > 0 && survivor_size > 0) failed: just checking
jwilhelm
parents: 21560
diff changeset
   204
}
c619b1cb4554 8016309: assert(eden_size > 0 && survivor_size > 0) failed: just checking
jwilhelm
parents: 21560
diff changeset
   205
c619b1cb4554 8016309: assert(eden_size > 0 && survivor_size > 0) failed: just checking
jwilhelm
parents: 21560
diff changeset
   206
void GenCollectorPolicy::assert_size_info() {
c619b1cb4554 8016309: assert(eden_size > 0 && survivor_size > 0) failed: just checking
jwilhelm
parents: 21560
diff changeset
   207
  CollectorPolicy::assert_size_info();
c619b1cb4554 8016309: assert(eden_size > 0 && survivor_size > 0) failed: just checking
jwilhelm
parents: 21560
diff changeset
   208
  // GenCollectorPolicy::initialize_size_info may update the MaxNewSize
c619b1cb4554 8016309: assert(eden_size > 0 && survivor_size > 0) failed: just checking
jwilhelm
parents: 21560
diff changeset
   209
  assert(MaxNewSize < MaxHeapSize, "Ergonomics decided on incompatible maximum young and heap sizes");
24941
4ebbe176a7b1 8042298: Remove the names gen0 and gen1 from the GC code
jwilhelm
parents: 24940
diff changeset
   210
  assert(NewSize == _initial_young_size, "Discrepancy between NewSize flag and local storage");
4ebbe176a7b1 8042298: Remove the names gen0 and gen1 from the GC code
jwilhelm
parents: 24940
diff changeset
   211
  assert(MaxNewSize == _max_young_size, "Discrepancy between MaxNewSize flag and local storage");
4ebbe176a7b1 8042298: Remove the names gen0 and gen1 from the GC code
jwilhelm
parents: 24940
diff changeset
   212
  assert(OldSize == _initial_old_size, "Discrepancy between OldSize flag and local storage");
4ebbe176a7b1 8042298: Remove the names gen0 and gen1 from the GC code
jwilhelm
parents: 24940
diff changeset
   213
  assert(_min_young_size <= _initial_young_size, "Ergonomics decided on incompatible minimum and initial young gen sizes");
4ebbe176a7b1 8042298: Remove the names gen0 and gen1 from the GC code
jwilhelm
parents: 24940
diff changeset
   214
  assert(_initial_young_size <= _max_young_size, "Ergonomics decided on incompatible initial and maximum young gen sizes");
4ebbe176a7b1 8042298: Remove the names gen0 and gen1 from the GC code
jwilhelm
parents: 24940
diff changeset
   215
  assert(_min_young_size % _gen_alignment == 0, "_min_young_size alignment");
4ebbe176a7b1 8042298: Remove the names gen0 and gen1 from the GC code
jwilhelm
parents: 24940
diff changeset
   216
  assert(_initial_young_size % _gen_alignment == 0, "_initial_young_size alignment");
4ebbe176a7b1 8042298: Remove the names gen0 and gen1 from the GC code
jwilhelm
parents: 24940
diff changeset
   217
  assert(_max_young_size % _gen_alignment == 0, "_max_young_size alignment");
4ebbe176a7b1 8042298: Remove the names gen0 and gen1 from the GC code
jwilhelm
parents: 24940
diff changeset
   218
  assert(_min_young_size <= bound_minus_alignment(_min_young_size, _min_heap_byte_size),
23851
60303358c862 8029186: regression-hotspot nightly failure: assert(FLAG_IS_DEFAULT(MaxNewSize) || MaxNewSize < MaxHeapSize) failed
sjohanss
parents: 23224
diff changeset
   219
      "Ergonomics made minimum young generation larger than minimum heap");
24941
4ebbe176a7b1 8042298: Remove the names gen0 and gen1 from the GC code
jwilhelm
parents: 24940
diff changeset
   220
  assert(_initial_young_size <=  bound_minus_alignment(_initial_young_size, _initial_heap_byte_size),
23851
60303358c862 8029186: regression-hotspot nightly failure: assert(FLAG_IS_DEFAULT(MaxNewSize) || MaxNewSize < MaxHeapSize) failed
sjohanss
parents: 23224
diff changeset
   221
      "Ergonomics made initial young generation larger than initial heap");
24941
4ebbe176a7b1 8042298: Remove the names gen0 and gen1 from the GC code
jwilhelm
parents: 24940
diff changeset
   222
  assert(_max_young_size <= bound_minus_alignment(_max_young_size, _max_heap_byte_size),
23851
60303358c862 8029186: regression-hotspot nightly failure: assert(FLAG_IS_DEFAULT(MaxNewSize) || MaxNewSize < MaxHeapSize) failed
sjohanss
parents: 23224
diff changeset
   223
      "Ergonomics made maximum young generation lager than maximum heap");
24941
4ebbe176a7b1 8042298: Remove the names gen0 and gen1 from the GC code
jwilhelm
parents: 24940
diff changeset
   224
  assert(_min_old_size <= _initial_old_size, "Ergonomics decided on incompatible minimum and initial old gen sizes");
4ebbe176a7b1 8042298: Remove the names gen0 and gen1 from the GC code
jwilhelm
parents: 24940
diff changeset
   225
  assert(_initial_old_size <= _max_old_size, "Ergonomics decided on incompatible initial and maximum old gen sizes");
4ebbe176a7b1 8042298: Remove the names gen0 and gen1 from the GC code
jwilhelm
parents: 24940
diff changeset
   226
  assert(_max_old_size % _gen_alignment == 0, "_max_old_size alignment");
4ebbe176a7b1 8042298: Remove the names gen0 and gen1 from the GC code
jwilhelm
parents: 24940
diff changeset
   227
  assert(_initial_old_size % _gen_alignment == 0, "_initial_old_size alignment");
4ebbe176a7b1 8042298: Remove the names gen0 and gen1 from the GC code
jwilhelm
parents: 24940
diff changeset
   228
  assert(_max_heap_byte_size <= (_max_young_size + _max_old_size), "Total maximum heap sizes must be sum of generation maximum sizes");
4ebbe176a7b1 8042298: Remove the names gen0 and gen1 from the GC code
jwilhelm
parents: 24940
diff changeset
   229
  assert(_min_young_size + _min_old_size <= _min_heap_byte_size, "Minimum generation sizes exceed minimum heap size");
4ebbe176a7b1 8042298: Remove the names gen0 and gen1 from the GC code
jwilhelm
parents: 24940
diff changeset
   230
  assert(_initial_young_size + _initial_old_size == _initial_heap_byte_size, "Initial generation sizes should match initial heap size");
4ebbe176a7b1 8042298: Remove the names gen0 and gen1 from the GC code
jwilhelm
parents: 24940
diff changeset
   231
  assert(_max_young_size + _max_old_size == _max_heap_byte_size, "Maximum generation sizes should match maximum heap size");
21561
c619b1cb4554 8016309: assert(eden_size > 0 && survivor_size > 0) failed: just checking
jwilhelm
parents: 21560
diff changeset
   232
}
c619b1cb4554 8016309: assert(eden_size > 0 && survivor_size > 0) failed: just checking
jwilhelm
parents: 21560
diff changeset
   233
#endif // ASSERT
c619b1cb4554 8016309: assert(eden_size > 0 && survivor_size > 0) failed: just checking
jwilhelm
parents: 21560
diff changeset
   234
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   235
void GenCollectorPolicy::initialize_flags() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   236
  CollectorPolicy::initialize_flags();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   237
21561
c619b1cb4554 8016309: assert(eden_size > 0 && survivor_size > 0) failed: just checking
jwilhelm
parents: 21560
diff changeset
   238
  assert(_gen_alignment != 0, "Generation alignment not set up properly");
c619b1cb4554 8016309: assert(eden_size > 0 && survivor_size > 0) failed: just checking
jwilhelm
parents: 21560
diff changeset
   239
  assert(_heap_alignment >= _gen_alignment,
33105
294e48b4f704 8080775: Better argument formatting for assert() and friends
david
parents: 32362
diff changeset
   240
         "heap_alignment: " SIZE_FORMAT " less than gen_alignment: " SIZE_FORMAT,
294e48b4f704 8080775: Better argument formatting for assert() and friends
david
parents: 32362
diff changeset
   241
         _heap_alignment, _gen_alignment);
21561
c619b1cb4554 8016309: assert(eden_size > 0 && survivor_size > 0) failed: just checking
jwilhelm
parents: 21560
diff changeset
   242
  assert(_gen_alignment % _space_alignment == 0,
33105
294e48b4f704 8080775: Better argument formatting for assert() and friends
david
parents: 32362
diff changeset
   243
         "gen_alignment: " SIZE_FORMAT " not aligned by space_alignment: " SIZE_FORMAT,
294e48b4f704 8080775: Better argument formatting for assert() and friends
david
parents: 32362
diff changeset
   244
         _gen_alignment, _space_alignment);
21561
c619b1cb4554 8016309: assert(eden_size > 0 && survivor_size > 0) failed: just checking
jwilhelm
parents: 21560
diff changeset
   245
  assert(_heap_alignment % _gen_alignment == 0,
33105
294e48b4f704 8080775: Better argument formatting for assert() and friends
david
parents: 32362
diff changeset
   246
         "heap_alignment: " SIZE_FORMAT " not aligned by gen_alignment: " SIZE_FORMAT,
294e48b4f704 8080775: Better argument formatting for assert() and friends
david
parents: 32362
diff changeset
   247
         _heap_alignment, _gen_alignment);
21561
c619b1cb4554 8016309: assert(eden_size > 0 && survivor_size > 0) failed: just checking
jwilhelm
parents: 21560
diff changeset
   248
39961
49fb257108d6 8024137: Flags should be set using the proper macro
jwilhelm
parents: 39960
diff changeset
   249
  // All generational heaps have a young gen; handle those flags here
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   250
21561
c619b1cb4554 8016309: assert(eden_size > 0 && survivor_size > 0) failed: just checking
jwilhelm
parents: 21560
diff changeset
   251
  // Make sure the heap is large enough for two generations
29697
92501504191b 8074459: Flags handling memory sizes should be of type size_t
jwilhelm
parents: 29684
diff changeset
   252
  size_t smallest_new_size = young_gen_size_lower_bound();
46619
a3919f5e8d2b 8178499: Remove _ptr_ and _size_ infixes from align functions
stefank
parents: 46618
diff changeset
   253
  size_t smallest_heap_size = align_up(smallest_new_size + old_gen_size_lower_bound(),
21561
c619b1cb4554 8016309: assert(eden_size > 0 && survivor_size > 0) failed: just checking
jwilhelm
parents: 21560
diff changeset
   254
                                           _heap_alignment);
c619b1cb4554 8016309: assert(eden_size > 0 && survivor_size > 0) failed: just checking
jwilhelm
parents: 21560
diff changeset
   255
  if (MaxHeapSize < smallest_heap_size) {
29697
92501504191b 8074459: Flags handling memory sizes should be of type size_t
jwilhelm
parents: 29684
diff changeset
   256
    FLAG_SET_ERGO(size_t, MaxHeapSize, smallest_heap_size);
21561
c619b1cb4554 8016309: assert(eden_size > 0 && survivor_size > 0) failed: just checking
jwilhelm
parents: 21560
diff changeset
   257
    _max_heap_byte_size = MaxHeapSize;
c619b1cb4554 8016309: assert(eden_size > 0 && survivor_size > 0) failed: just checking
jwilhelm
parents: 21560
diff changeset
   258
  }
c619b1cb4554 8016309: assert(eden_size > 0 && survivor_size > 0) failed: just checking
jwilhelm
parents: 21560
diff changeset
   259
  // If needed, synchronize _min_heap_byte size and _initial_heap_byte_size
c619b1cb4554 8016309: assert(eden_size > 0 && survivor_size > 0) failed: just checking
jwilhelm
parents: 21560
diff changeset
   260
  if (_min_heap_byte_size < smallest_heap_size) {
c619b1cb4554 8016309: assert(eden_size > 0 && survivor_size > 0) failed: just checking
jwilhelm
parents: 21560
diff changeset
   261
    _min_heap_byte_size = smallest_heap_size;
c619b1cb4554 8016309: assert(eden_size > 0 && survivor_size > 0) failed: just checking
jwilhelm
parents: 21560
diff changeset
   262
    if (InitialHeapSize < _min_heap_byte_size) {
29697
92501504191b 8074459: Flags handling memory sizes should be of type size_t
jwilhelm
parents: 29684
diff changeset
   263
      FLAG_SET_ERGO(size_t, InitialHeapSize, smallest_heap_size);
21561
c619b1cb4554 8016309: assert(eden_size > 0 && survivor_size > 0) failed: just checking
jwilhelm
parents: 21560
diff changeset
   264
      _initial_heap_byte_size = smallest_heap_size;
c619b1cb4554 8016309: assert(eden_size > 0 && survivor_size > 0) failed: just checking
jwilhelm
parents: 21560
diff changeset
   265
    }
c619b1cb4554 8016309: assert(eden_size > 0 && survivor_size > 0) failed: just checking
jwilhelm
parents: 21560
diff changeset
   266
  }
c619b1cb4554 8016309: assert(eden_size > 0 && survivor_size > 0) failed: just checking
jwilhelm
parents: 21560
diff changeset
   267
23851
60303358c862 8029186: regression-hotspot nightly failure: assert(FLAG_IS_DEFAULT(MaxNewSize) || MaxNewSize < MaxHeapSize) failed
sjohanss
parents: 23224
diff changeset
   268
  // Make sure NewSize allows an old generation to fit even if set on the command line
60303358c862 8029186: regression-hotspot nightly failure: assert(FLAG_IS_DEFAULT(MaxNewSize) || MaxNewSize < MaxHeapSize) failed
sjohanss
parents: 23224
diff changeset
   269
  if (FLAG_IS_CMDLINE(NewSize) && NewSize >= _initial_heap_byte_size) {
35521
3cb32806ed1d 8146990: Convert CollectorPolicy to use log_warning instead of warning
ehelin
parents: 35492
diff changeset
   270
    log_warning(gc, ergo)("NewSize was set larger than initial heap size, will use initial heap size.");
39961
49fb257108d6 8024137: Flags should be set using the proper macro
jwilhelm
parents: 39960
diff changeset
   271
    FLAG_SET_ERGO(size_t, NewSize, bound_minus_alignment(NewSize, _initial_heap_byte_size));
23851
60303358c862 8029186: regression-hotspot nightly failure: assert(FLAG_IS_DEFAULT(MaxNewSize) || MaxNewSize < MaxHeapSize) failed
sjohanss
parents: 23224
diff changeset
   272
  }
60303358c862 8029186: regression-hotspot nightly failure: assert(FLAG_IS_DEFAULT(MaxNewSize) || MaxNewSize < MaxHeapSize) failed
sjohanss
parents: 23224
diff changeset
   273
21561
c619b1cb4554 8016309: assert(eden_size > 0 && survivor_size > 0) failed: just checking
jwilhelm
parents: 21560
diff changeset
   274
  // Now take the actual NewSize into account. We will silently increase NewSize
23224
b156569bc190 8035057: NewSize ergonomics wrong when setting small or unaligned size on command line
sjohanss
parents: 22776
diff changeset
   275
  // if the user specified a smaller or unaligned value.
29697
92501504191b 8074459: Flags handling memory sizes should be of type size_t
jwilhelm
parents: 29684
diff changeset
   276
  size_t bounded_new_size = bound_minus_alignment(NewSize, MaxHeapSize);
46619
a3919f5e8d2b 8178499: Remove _ptr_ and _size_ infixes from align functions
stefank
parents: 46618
diff changeset
   277
  bounded_new_size = MAX2(smallest_new_size, align_down(bounded_new_size, _gen_alignment));
23851
60303358c862 8029186: regression-hotspot nightly failure: assert(FLAG_IS_DEFAULT(MaxNewSize) || MaxNewSize < MaxHeapSize) failed
sjohanss
parents: 23224
diff changeset
   278
  if (bounded_new_size != NewSize) {
39961
49fb257108d6 8024137: Flags should be set using the proper macro
jwilhelm
parents: 39960
diff changeset
   279
    FLAG_SET_ERGO(size_t, NewSize, bounded_new_size);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   280
  }
24941
4ebbe176a7b1 8042298: Remove the names gen0 and gen1 from the GC code
jwilhelm
parents: 24940
diff changeset
   281
  _min_young_size = smallest_new_size;
4ebbe176a7b1 8042298: Remove the names gen0 and gen1 from the GC code
jwilhelm
parents: 24940
diff changeset
   282
  _initial_young_size = NewSize;
21561
c619b1cb4554 8016309: assert(eden_size > 0 && survivor_size > 0) failed: just checking
jwilhelm
parents: 21560
diff changeset
   283
c619b1cb4554 8016309: assert(eden_size > 0 && survivor_size > 0) failed: just checking
jwilhelm
parents: 21560
diff changeset
   284
  if (!FLAG_IS_DEFAULT(MaxNewSize)) {
c619b1cb4554 8016309: assert(eden_size > 0 && survivor_size > 0) failed: just checking
jwilhelm
parents: 21560
diff changeset
   285
    if (MaxNewSize >= MaxHeapSize) {
c619b1cb4554 8016309: assert(eden_size > 0 && survivor_size > 0) failed: just checking
jwilhelm
parents: 21560
diff changeset
   286
      // Make sure there is room for an old generation
29697
92501504191b 8074459: Flags handling memory sizes should be of type size_t
jwilhelm
parents: 29684
diff changeset
   287
      size_t smaller_max_new_size = MaxHeapSize - _gen_alignment;
21561
c619b1cb4554 8016309: assert(eden_size > 0 && survivor_size > 0) failed: just checking
jwilhelm
parents: 21560
diff changeset
   288
      if (FLAG_IS_CMDLINE(MaxNewSize)) {
35521
3cb32806ed1d 8146990: Convert CollectorPolicy to use log_warning instead of warning
ehelin
parents: 35492
diff changeset
   289
        log_warning(gc, ergo)("MaxNewSize (" SIZE_FORMAT "k) is equal to or greater than the entire "
3cb32806ed1d 8146990: Convert CollectorPolicy to use log_warning instead of warning
ehelin
parents: 35492
diff changeset
   290
                              "heap (" SIZE_FORMAT "k).  A new max generation size of " SIZE_FORMAT "k will be used.",
3cb32806ed1d 8146990: Convert CollectorPolicy to use log_warning instead of warning
ehelin
parents: 35492
diff changeset
   291
                              MaxNewSize/K, MaxHeapSize/K, smaller_max_new_size/K);
21561
c619b1cb4554 8016309: assert(eden_size > 0 && survivor_size > 0) failed: just checking
jwilhelm
parents: 21560
diff changeset
   292
      }
29697
92501504191b 8074459: Flags handling memory sizes should be of type size_t
jwilhelm
parents: 29684
diff changeset
   293
      FLAG_SET_ERGO(size_t, MaxNewSize, smaller_max_new_size);
21561
c619b1cb4554 8016309: assert(eden_size > 0 && survivor_size > 0) failed: just checking
jwilhelm
parents: 21560
diff changeset
   294
      if (NewSize > MaxNewSize) {
29697
92501504191b 8074459: Flags handling memory sizes should be of type size_t
jwilhelm
parents: 29684
diff changeset
   295
        FLAG_SET_ERGO(size_t, NewSize, MaxNewSize);
24941
4ebbe176a7b1 8042298: Remove the names gen0 and gen1 from the GC code
jwilhelm
parents: 24940
diff changeset
   296
        _initial_young_size = NewSize;
21561
c619b1cb4554 8016309: assert(eden_size > 0 && survivor_size > 0) failed: just checking
jwilhelm
parents: 21560
diff changeset
   297
      }
24941
4ebbe176a7b1 8042298: Remove the names gen0 and gen1 from the GC code
jwilhelm
parents: 24940
diff changeset
   298
    } else if (MaxNewSize < _initial_young_size) {
29697
92501504191b 8074459: Flags handling memory sizes should be of type size_t
jwilhelm
parents: 29684
diff changeset
   299
      FLAG_SET_ERGO(size_t, MaxNewSize, _initial_young_size);
46619
a3919f5e8d2b 8178499: Remove _ptr_ and _size_ infixes from align functions
stefank
parents: 46618
diff changeset
   300
    } else if (!is_aligned(MaxNewSize, _gen_alignment)) {
a3919f5e8d2b 8178499: Remove _ptr_ and _size_ infixes from align functions
stefank
parents: 46618
diff changeset
   301
      FLAG_SET_ERGO(size_t, MaxNewSize, align_down(MaxNewSize, _gen_alignment));
21561
c619b1cb4554 8016309: assert(eden_size > 0 && survivor_size > 0) failed: just checking
jwilhelm
parents: 21560
diff changeset
   302
    }
24941
4ebbe176a7b1 8042298: Remove the names gen0 and gen1 from the GC code
jwilhelm
parents: 24940
diff changeset
   303
    _max_young_size = MaxNewSize;
21561
c619b1cb4554 8016309: assert(eden_size > 0 && survivor_size > 0) failed: just checking
jwilhelm
parents: 21560
diff changeset
   304
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   305
21561
c619b1cb4554 8016309: assert(eden_size > 0 && survivor_size > 0) failed: just checking
jwilhelm
parents: 21560
diff changeset
   306
  if (NewSize > MaxNewSize) {
c619b1cb4554 8016309: assert(eden_size > 0 && survivor_size > 0) failed: just checking
jwilhelm
parents: 21560
diff changeset
   307
    // At this point this should only happen if the user specifies a large NewSize and/or
c619b1cb4554 8016309: assert(eden_size > 0 && survivor_size > 0) failed: just checking
jwilhelm
parents: 21560
diff changeset
   308
    // a small (but not too small) MaxNewSize.
c619b1cb4554 8016309: assert(eden_size > 0 && survivor_size > 0) failed: just checking
jwilhelm
parents: 21560
diff changeset
   309
    if (FLAG_IS_CMDLINE(MaxNewSize)) {
35521
3cb32806ed1d 8146990: Convert CollectorPolicy to use log_warning instead of warning
ehelin
parents: 35492
diff changeset
   310
      log_warning(gc, ergo)("NewSize (" SIZE_FORMAT "k) is greater than the MaxNewSize (" SIZE_FORMAT "k). "
3cb32806ed1d 8146990: Convert CollectorPolicy to use log_warning instead of warning
ehelin
parents: 35492
diff changeset
   311
                            "A new max generation size of " SIZE_FORMAT "k will be used.",
3cb32806ed1d 8146990: Convert CollectorPolicy to use log_warning instead of warning
ehelin
parents: 35492
diff changeset
   312
                            NewSize/K, MaxNewSize/K, NewSize/K);
21561
c619b1cb4554 8016309: assert(eden_size > 0 && survivor_size > 0) failed: just checking
jwilhelm
parents: 21560
diff changeset
   313
    }
29697
92501504191b 8074459: Flags handling memory sizes should be of type size_t
jwilhelm
parents: 29684
diff changeset
   314
    FLAG_SET_ERGO(size_t, MaxNewSize, NewSize);
24941
4ebbe176a7b1 8042298: Remove the names gen0 and gen1 from the GC code
jwilhelm
parents: 24940
diff changeset
   315
    _max_young_size = MaxNewSize;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   316
  }
21560
b3ae3ba25ebb 8026853: Prepare GC code for collector policy regression fix
jwilhelm
parents: 21559
diff changeset
   317
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   318
  if (SurvivorRatio < 1 || NewRatio < 1) {
20399
d9bb551bf53d 8025854: Use "young gen" instead of "eden"
jwilhelm
parents: 20398
diff changeset
   319
    vm_exit_during_initialization("Invalid young gen ratio specified");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   320
  }
21561
c619b1cb4554 8016309: assert(eden_size > 0 && survivor_size > 0) failed: just checking
jwilhelm
parents: 21560
diff changeset
   321
39961
49fb257108d6 8024137: Flags should be set using the proper macro
jwilhelm
parents: 39960
diff changeset
   322
  if (OldSize < old_gen_size_lower_bound()) {
49fb257108d6 8024137: Flags should be set using the proper macro
jwilhelm
parents: 39960
diff changeset
   323
    FLAG_SET_ERGO(size_t, OldSize, old_gen_size_lower_bound());
49fb257108d6 8024137: Flags should be set using the proper macro
jwilhelm
parents: 39960
diff changeset
   324
  }
46619
a3919f5e8d2b 8178499: Remove _ptr_ and _size_ infixes from align functions
stefank
parents: 46618
diff changeset
   325
  if (!is_aligned(OldSize, _gen_alignment)) {
a3919f5e8d2b 8178499: Remove _ptr_ and _size_ infixes from align functions
stefank
parents: 46618
diff changeset
   326
    FLAG_SET_ERGO(size_t, OldSize, align_down(OldSize, _gen_alignment));
21561
c619b1cb4554 8016309: assert(eden_size > 0 && survivor_size > 0) failed: just checking
jwilhelm
parents: 21560
diff changeset
   327
  }
15494
b3a322a0bea5 6348447: Specifying -XX:OldSize crashes 64-bit VMs
jwilhelm
parents: 15091
diff changeset
   328
21561
c619b1cb4554 8016309: assert(eden_size > 0 && survivor_size > 0) failed: just checking
jwilhelm
parents: 21560
diff changeset
   329
  if (FLAG_IS_CMDLINE(OldSize) && FLAG_IS_DEFAULT(MaxHeapSize)) {
15494
b3a322a0bea5 6348447: Specifying -XX:OldSize crashes 64-bit VMs
jwilhelm
parents: 15091
diff changeset
   330
    // NewRatio will be used later to set the young generation size so we use
b3a322a0bea5 6348447: Specifying -XX:OldSize crashes 64-bit VMs
jwilhelm
parents: 15091
diff changeset
   331
    // it to calculate how big the heap should be based on the requested OldSize
b3a322a0bea5 6348447: Specifying -XX:OldSize crashes 64-bit VMs
jwilhelm
parents: 15091
diff changeset
   332
    // and NewRatio.
b3a322a0bea5 6348447: Specifying -XX:OldSize crashes 64-bit VMs
jwilhelm
parents: 15091
diff changeset
   333
    assert(NewRatio > 0, "NewRatio should have been set up earlier");
b3a322a0bea5 6348447: Specifying -XX:OldSize crashes 64-bit VMs
jwilhelm
parents: 15091
diff changeset
   334
    size_t calculated_heapsize = (OldSize / NewRatio) * (NewRatio + 1);
b3a322a0bea5 6348447: Specifying -XX:OldSize crashes 64-bit VMs
jwilhelm
parents: 15091
diff changeset
   335
46619
a3919f5e8d2b 8178499: Remove _ptr_ and _size_ infixes from align functions
stefank
parents: 46618
diff changeset
   336
    calculated_heapsize = align_up(calculated_heapsize, _heap_alignment);
29697
92501504191b 8074459: Flags handling memory sizes should be of type size_t
jwilhelm
parents: 29684
diff changeset
   337
    FLAG_SET_ERGO(size_t, MaxHeapSize, calculated_heapsize);
21561
c619b1cb4554 8016309: assert(eden_size > 0 && survivor_size > 0) failed: just checking
jwilhelm
parents: 21560
diff changeset
   338
    _max_heap_byte_size = MaxHeapSize;
29697
92501504191b 8074459: Flags handling memory sizes should be of type size_t
jwilhelm
parents: 29684
diff changeset
   339
    FLAG_SET_ERGO(size_t, InitialHeapSize, calculated_heapsize);
21561
c619b1cb4554 8016309: assert(eden_size > 0 && survivor_size > 0) failed: just checking
jwilhelm
parents: 21560
diff changeset
   340
    _initial_heap_byte_size = InitialHeapSize;
15494
b3a322a0bea5 6348447: Specifying -XX:OldSize crashes 64-bit VMs
jwilhelm
parents: 15091
diff changeset
   341
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   342
22551
9bf46d16dcc6 8025856: Fix typos in the GC code
jwilhelm
parents: 22548
diff changeset
   343
  // Adjust NewSize and OldSize or MaxHeapSize to match each other
17322
35c488005999 8006088: Incompatible heap size flags accepted by VM
tschatzl
parents: 17320
diff changeset
   344
  if (NewSize + OldSize > MaxHeapSize) {
39961
49fb257108d6 8024137: Flags should be set using the proper macro
jwilhelm
parents: 39960
diff changeset
   345
    if (FLAG_IS_CMDLINE(MaxHeapSize)) {
22551
9bf46d16dcc6 8025856: Fix typos in the GC code
jwilhelm
parents: 22548
diff changeset
   346
      // Somebody has set a maximum heap size with the intention that we should not
17322
35c488005999 8006088: Incompatible heap size flags accepted by VM
tschatzl
parents: 17320
diff changeset
   347
      // exceed it. Adjust New/OldSize as necessary.
29697
92501504191b 8074459: Flags handling memory sizes should be of type size_t
jwilhelm
parents: 29684
diff changeset
   348
      size_t calculated_size = NewSize + OldSize;
17322
35c488005999 8006088: Incompatible heap size flags accepted by VM
tschatzl
parents: 17320
diff changeset
   349
      double shrink_factor = (double) MaxHeapSize / calculated_size;
46619
a3919f5e8d2b 8178499: Remove _ptr_ and _size_ infixes from align functions
stefank
parents: 46618
diff changeset
   350
      size_t smaller_new_size = align_down((size_t)(NewSize * shrink_factor), _gen_alignment);
29697
92501504191b 8074459: Flags handling memory sizes should be of type size_t
jwilhelm
parents: 29684
diff changeset
   351
      FLAG_SET_ERGO(size_t, NewSize, MAX2(young_gen_size_lower_bound(), smaller_new_size));
24941
4ebbe176a7b1 8042298: Remove the names gen0 and gen1 from the GC code
jwilhelm
parents: 24940
diff changeset
   352
      _initial_young_size = NewSize;
21561
c619b1cb4554 8016309: assert(eden_size > 0 && survivor_size > 0) failed: just checking
jwilhelm
parents: 21560
diff changeset
   353
17322
35c488005999 8006088: Incompatible heap size flags accepted by VM
tschatzl
parents: 17320
diff changeset
   354
      // OldSize is already aligned because above we aligned MaxHeapSize to
21561
c619b1cb4554 8016309: assert(eden_size > 0 && survivor_size > 0) failed: just checking
jwilhelm
parents: 21560
diff changeset
   355
      // _heap_alignment, and we just made sure that NewSize is aligned to
c619b1cb4554 8016309: assert(eden_size > 0 && survivor_size > 0) failed: just checking
jwilhelm
parents: 21560
diff changeset
   356
      // _gen_alignment. In initialize_flags() we verified that _heap_alignment
c619b1cb4554 8016309: assert(eden_size > 0 && survivor_size > 0) failed: just checking
jwilhelm
parents: 21560
diff changeset
   357
      // is a multiple of _gen_alignment.
29697
92501504191b 8074459: Flags handling memory sizes should be of type size_t
jwilhelm
parents: 29684
diff changeset
   358
      FLAG_SET_ERGO(size_t, OldSize, MaxHeapSize - NewSize);
17322
35c488005999 8006088: Incompatible heap size flags accepted by VM
tschatzl
parents: 17320
diff changeset
   359
    } else {
46619
a3919f5e8d2b 8178499: Remove _ptr_ and _size_ infixes from align functions
stefank
parents: 46618
diff changeset
   360
      FLAG_SET_ERGO(size_t, MaxHeapSize, align_up(NewSize + OldSize, _heap_alignment));
21561
c619b1cb4554 8016309: assert(eden_size > 0 && survivor_size > 0) failed: just checking
jwilhelm
parents: 21560
diff changeset
   361
      _max_heap_byte_size = MaxHeapSize;
17322
35c488005999 8006088: Incompatible heap size flags accepted by VM
tschatzl
parents: 17320
diff changeset
   362
    }
35c488005999 8006088: Incompatible heap size flags accepted by VM
tschatzl
parents: 17320
diff changeset
   363
  }
17389
25ba661e4352 8014058: Regression tests for 8006088
tschatzl
parents: 17322
diff changeset
   364
24941
4ebbe176a7b1 8042298: Remove the names gen0 and gen1 from the GC code
jwilhelm
parents: 24940
diff changeset
   365
  // Update NewSize, if possible, to avoid sizing the young gen too small when only
23851
60303358c862 8029186: regression-hotspot nightly failure: assert(FLAG_IS_DEFAULT(MaxNewSize) || MaxNewSize < MaxHeapSize) failed
sjohanss
parents: 23224
diff changeset
   366
  // OldSize is set on the command line.
60303358c862 8029186: regression-hotspot nightly failure: assert(FLAG_IS_DEFAULT(MaxNewSize) || MaxNewSize < MaxHeapSize) failed
sjohanss
parents: 23224
diff changeset
   367
  if (FLAG_IS_CMDLINE(OldSize) && !FLAG_IS_CMDLINE(NewSize)) {
60303358c862 8029186: regression-hotspot nightly failure: assert(FLAG_IS_DEFAULT(MaxNewSize) || MaxNewSize < MaxHeapSize) failed
sjohanss
parents: 23224
diff changeset
   368
    if (OldSize < _initial_heap_byte_size) {
60303358c862 8029186: regression-hotspot nightly failure: assert(FLAG_IS_DEFAULT(MaxNewSize) || MaxNewSize < MaxHeapSize) failed
sjohanss
parents: 23224
diff changeset
   369
      size_t new_size = _initial_heap_byte_size - OldSize;
24941
4ebbe176a7b1 8042298: Remove the names gen0 and gen1 from the GC code
jwilhelm
parents: 24940
diff changeset
   370
      // Need to compare against the flag value for max since _max_young_size
23851
60303358c862 8029186: regression-hotspot nightly failure: assert(FLAG_IS_DEFAULT(MaxNewSize) || MaxNewSize < MaxHeapSize) failed
sjohanss
parents: 23224
diff changeset
   371
      // might not have been set yet.
24941
4ebbe176a7b1 8042298: Remove the names gen0 and gen1 from the GC code
jwilhelm
parents: 24940
diff changeset
   372
      if (new_size >= _min_young_size && new_size <= MaxNewSize) {
29697
92501504191b 8074459: Flags handling memory sizes should be of type size_t
jwilhelm
parents: 29684
diff changeset
   373
        FLAG_SET_ERGO(size_t, NewSize, new_size);
24941
4ebbe176a7b1 8042298: Remove the names gen0 and gen1 from the GC code
jwilhelm
parents: 24940
diff changeset
   374
        _initial_young_size = NewSize;
23851
60303358c862 8029186: regression-hotspot nightly failure: assert(FLAG_IS_DEFAULT(MaxNewSize) || MaxNewSize < MaxHeapSize) failed
sjohanss
parents: 23224
diff changeset
   375
      }
60303358c862 8029186: regression-hotspot nightly failure: assert(FLAG_IS_DEFAULT(MaxNewSize) || MaxNewSize < MaxHeapSize) failed
sjohanss
parents: 23224
diff changeset
   376
    }
60303358c862 8029186: regression-hotspot nightly failure: assert(FLAG_IS_DEFAULT(MaxNewSize) || MaxNewSize < MaxHeapSize) failed
sjohanss
parents: 23224
diff changeset
   377
  }
60303358c862 8029186: regression-hotspot nightly failure: assert(FLAG_IS_DEFAULT(MaxNewSize) || MaxNewSize < MaxHeapSize) failed
sjohanss
parents: 23224
diff changeset
   378
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   379
  always_do_update_barrier = UseConcMarkSweepGC;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   380
24353
148147d21135 8027643: Merge GenCollectorPolicy and TwoGenerationCollectorPolicy
jwilhelm
parents: 23851
diff changeset
   381
  DEBUG_ONLY(GenCollectorPolicy::assert_flags();)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   382
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   383
186
32e6c95f8d9b 6557851: CMS: ergonomics defaults are not set with FLAG_SET_ERGO
jmasa
parents: 1
diff changeset
   384
// Values set on the command line win over any ergonomically
32e6c95f8d9b 6557851: CMS: ergonomics defaults are not set with FLAG_SET_ERGO
jmasa
parents: 1
diff changeset
   385
// set command line parameters.
32e6c95f8d9b 6557851: CMS: ergonomics defaults are not set with FLAG_SET_ERGO
jmasa
parents: 1
diff changeset
   386
// Ergonomic choice of parameters are done before this
32e6c95f8d9b 6557851: CMS: ergonomics defaults are not set with FLAG_SET_ERGO
jmasa
parents: 1
diff changeset
   387
// method is called.  Values for command line parameters such as NewSize
32e6c95f8d9b 6557851: CMS: ergonomics defaults are not set with FLAG_SET_ERGO
jmasa
parents: 1
diff changeset
   388
// and MaxNewSize feed those ergonomic choices into this method.
32e6c95f8d9b 6557851: CMS: ergonomics defaults are not set with FLAG_SET_ERGO
jmasa
parents: 1
diff changeset
   389
// This method makes the final generation sizings consistent with
32e6c95f8d9b 6557851: CMS: ergonomics defaults are not set with FLAG_SET_ERGO
jmasa
parents: 1
diff changeset
   390
// themselves and with overall heap sizings.
32e6c95f8d9b 6557851: CMS: ergonomics defaults are not set with FLAG_SET_ERGO
jmasa
parents: 1
diff changeset
   391
// In the absence of explicitly set command line flags, policies
32e6c95f8d9b 6557851: CMS: ergonomics defaults are not set with FLAG_SET_ERGO
jmasa
parents: 1
diff changeset
   392
// such as the use of NewRatio are used to size the generation.
24353
148147d21135 8027643: Merge GenCollectorPolicy and TwoGenerationCollectorPolicy
jwilhelm
parents: 23851
diff changeset
   393
148147d21135 8027643: Merge GenCollectorPolicy and TwoGenerationCollectorPolicy
jwilhelm
parents: 23851
diff changeset
   394
// Minimum sizes of the generations may be different than
148147d21135 8027643: Merge GenCollectorPolicy and TwoGenerationCollectorPolicy
jwilhelm
parents: 23851
diff changeset
   395
// the initial sizes.  An inconsistency is permitted here
148147d21135 8027643: Merge GenCollectorPolicy and TwoGenerationCollectorPolicy
jwilhelm
parents: 23851
diff changeset
   396
// in the total size that can be specified explicitly by
148147d21135 8027643: Merge GenCollectorPolicy and TwoGenerationCollectorPolicy
jwilhelm
parents: 23851
diff changeset
   397
// command line specification of OldSize and NewSize and
148147d21135 8027643: Merge GenCollectorPolicy and TwoGenerationCollectorPolicy
jwilhelm
parents: 23851
diff changeset
   398
// also a command line specification of -Xms.  Issue a warning
148147d21135 8027643: Merge GenCollectorPolicy and TwoGenerationCollectorPolicy
jwilhelm
parents: 23851
diff changeset
   399
// but allow the values to pass.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   400
void GenCollectorPolicy::initialize_size_info() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   401
  CollectorPolicy::initialize_size_info();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   402
24941
4ebbe176a7b1 8042298: Remove the names gen0 and gen1 from the GC code
jwilhelm
parents: 24940
diff changeset
   403
  _initial_young_size = NewSize;
4ebbe176a7b1 8042298: Remove the names gen0 and gen1 from the GC code
jwilhelm
parents: 24940
diff changeset
   404
  _max_young_size = MaxNewSize;
4ebbe176a7b1 8042298: Remove the names gen0 and gen1 from the GC code
jwilhelm
parents: 24940
diff changeset
   405
  _initial_old_size = OldSize;
186
32e6c95f8d9b 6557851: CMS: ergonomics defaults are not set with FLAG_SET_ERGO
jmasa
parents: 1
diff changeset
   406
24941
4ebbe176a7b1 8042298: Remove the names gen0 and gen1 from the GC code
jwilhelm
parents: 24940
diff changeset
   407
  // Determine maximum size of the young generation.
186
32e6c95f8d9b 6557851: CMS: ergonomics defaults are not set with FLAG_SET_ERGO
jmasa
parents: 1
diff changeset
   408
24940
c2b4c8e32c2f 8026396: Remove information duplication in the collector policy
jwilhelm
parents: 24424
diff changeset
   409
  if (FLAG_IS_DEFAULT(MaxNewSize)) {
24941
4ebbe176a7b1 8042298: Remove the names gen0 and gen1 from the GC code
jwilhelm
parents: 24940
diff changeset
   410
    _max_young_size = scale_by_NewRatio_aligned(_max_heap_byte_size);
186
32e6c95f8d9b 6557851: CMS: ergonomics defaults are not set with FLAG_SET_ERGO
jmasa
parents: 1
diff changeset
   411
    // Bound the maximum size by NewSize below (since it historically
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   412
    // would have been NewSize and because the NewRatio calculation could
489c9b5090e2 Initial load
duke
parents:
diff changeset
   413
    // yield a size that is too small) and bound it by MaxNewSize above.
186
32e6c95f8d9b 6557851: CMS: ergonomics defaults are not set with FLAG_SET_ERGO
jmasa
parents: 1
diff changeset
   414
    // Ergonomics plays here by previously calculating the desired
32e6c95f8d9b 6557851: CMS: ergonomics defaults are not set with FLAG_SET_ERGO
jmasa
parents: 1
diff changeset
   415
    // NewSize and MaxNewSize.
24941
4ebbe176a7b1 8042298: Remove the names gen0 and gen1 from the GC code
jwilhelm
parents: 24940
diff changeset
   416
    _max_young_size = MIN2(MAX2(_max_young_size, _initial_young_size), MaxNewSize);
186
32e6c95f8d9b 6557851: CMS: ergonomics defaults are not set with FLAG_SET_ERGO
jmasa
parents: 1
diff changeset
   417
  }
32e6c95f8d9b 6557851: CMS: ergonomics defaults are not set with FLAG_SET_ERGO
jmasa
parents: 1
diff changeset
   418
24941
4ebbe176a7b1 8042298: Remove the names gen0 and gen1 from the GC code
jwilhelm
parents: 24940
diff changeset
   419
  // Given the maximum young size, determine the initial and
4ebbe176a7b1 8042298: Remove the names gen0 and gen1 from the GC code
jwilhelm
parents: 24940
diff changeset
   420
  // minimum young sizes.
186
32e6c95f8d9b 6557851: CMS: ergonomics defaults are not set with FLAG_SET_ERGO
jmasa
parents: 1
diff changeset
   421
23851
60303358c862 8029186: regression-hotspot nightly failure: assert(FLAG_IS_DEFAULT(MaxNewSize) || MaxNewSize < MaxHeapSize) failed
sjohanss
parents: 23224
diff changeset
   422
  if (_max_heap_byte_size == _initial_heap_byte_size) {
24940
c2b4c8e32c2f 8026396: Remove information duplication in the collector policy
jwilhelm
parents: 24424
diff changeset
   423
    // The maximum and initial heap sizes are the same so the generation's
23851
60303358c862 8029186: regression-hotspot nightly failure: assert(FLAG_IS_DEFAULT(MaxNewSize) || MaxNewSize < MaxHeapSize) failed
sjohanss
parents: 23224
diff changeset
   424
    // initial size must be the same as it maximum size. Use NewSize as the
60303358c862 8029186: regression-hotspot nightly failure: assert(FLAG_IS_DEFAULT(MaxNewSize) || MaxNewSize < MaxHeapSize) failed
sjohanss
parents: 23224
diff changeset
   425
    // size if set on command line.
24941
4ebbe176a7b1 8042298: Remove the names gen0 and gen1 from the GC code
jwilhelm
parents: 24940
diff changeset
   426
    _max_young_size = FLAG_IS_CMDLINE(NewSize) ? NewSize : _max_young_size;
4ebbe176a7b1 8042298: Remove the names gen0 and gen1 from the GC code
jwilhelm
parents: 24940
diff changeset
   427
    _initial_young_size = _max_young_size;
23851
60303358c862 8029186: regression-hotspot nightly failure: assert(FLAG_IS_DEFAULT(MaxNewSize) || MaxNewSize < MaxHeapSize) failed
sjohanss
parents: 23224
diff changeset
   428
60303358c862 8029186: regression-hotspot nightly failure: assert(FLAG_IS_DEFAULT(MaxNewSize) || MaxNewSize < MaxHeapSize) failed
sjohanss
parents: 23224
diff changeset
   429
    // Also update the minimum size if min == initial == max.
60303358c862 8029186: regression-hotspot nightly failure: assert(FLAG_IS_DEFAULT(MaxNewSize) || MaxNewSize < MaxHeapSize) failed
sjohanss
parents: 23224
diff changeset
   430
    if (_max_heap_byte_size == _min_heap_byte_size) {
24941
4ebbe176a7b1 8042298: Remove the names gen0 and gen1 from the GC code
jwilhelm
parents: 24940
diff changeset
   431
      _min_young_size = _max_young_size;
23851
60303358c862 8029186: regression-hotspot nightly failure: assert(FLAG_IS_DEFAULT(MaxNewSize) || MaxNewSize < MaxHeapSize) failed
sjohanss
parents: 23224
diff changeset
   432
    }
186
32e6c95f8d9b 6557851: CMS: ergonomics defaults are not set with FLAG_SET_ERGO
jmasa
parents: 1
diff changeset
   433
  } else {
22776
d99c54477401 8033426: Scale initial NewSize using NewRatio if not set on command line
sjohanss
parents: 22551
diff changeset
   434
    if (FLAG_IS_CMDLINE(NewSize)) {
23851
60303358c862 8029186: regression-hotspot nightly failure: assert(FLAG_IS_DEFAULT(MaxNewSize) || MaxNewSize < MaxHeapSize) failed
sjohanss
parents: 23224
diff changeset
   435
      // If NewSize is set on the command line, we should use it as
60303358c862 8029186: regression-hotspot nightly failure: assert(FLAG_IS_DEFAULT(MaxNewSize) || MaxNewSize < MaxHeapSize) failed
sjohanss
parents: 23224
diff changeset
   436
      // the initial size, but make sure it is within the heap bounds.
24941
4ebbe176a7b1 8042298: Remove the names gen0 and gen1 from the GC code
jwilhelm
parents: 24940
diff changeset
   437
      _initial_young_size =
4ebbe176a7b1 8042298: Remove the names gen0 and gen1 from the GC code
jwilhelm
parents: 24940
diff changeset
   438
        MIN2(_max_young_size, bound_minus_alignment(NewSize, _initial_heap_byte_size));
4ebbe176a7b1 8042298: Remove the names gen0 and gen1 from the GC code
jwilhelm
parents: 24940
diff changeset
   439
      _min_young_size = bound_minus_alignment(_initial_young_size, _min_heap_byte_size);
186
32e6c95f8d9b 6557851: CMS: ergonomics defaults are not set with FLAG_SET_ERGO
jmasa
parents: 1
diff changeset
   440
    } else {
23851
60303358c862 8029186: regression-hotspot nightly failure: assert(FLAG_IS_DEFAULT(MaxNewSize) || MaxNewSize < MaxHeapSize) failed
sjohanss
parents: 23224
diff changeset
   441
      // For the case where NewSize is not set on the command line, use
60303358c862 8029186: regression-hotspot nightly failure: assert(FLAG_IS_DEFAULT(MaxNewSize) || MaxNewSize < MaxHeapSize) failed
sjohanss
parents: 23224
diff changeset
   442
      // NewRatio to size the initial generation size. Use the current
60303358c862 8029186: regression-hotspot nightly failure: assert(FLAG_IS_DEFAULT(MaxNewSize) || MaxNewSize < MaxHeapSize) failed
sjohanss
parents: 23224
diff changeset
   443
      // NewSize as the floor, because if NewRatio is overly large, the resulting
60303358c862 8029186: regression-hotspot nightly failure: assert(FLAG_IS_DEFAULT(MaxNewSize) || MaxNewSize < MaxHeapSize) failed
sjohanss
parents: 23224
diff changeset
   444
      // size can be too small.
24941
4ebbe176a7b1 8042298: Remove the names gen0 and gen1 from the GC code
jwilhelm
parents: 24940
diff changeset
   445
      _initial_young_size =
4ebbe176a7b1 8042298: Remove the names gen0 and gen1 from the GC code
jwilhelm
parents: 24940
diff changeset
   446
        MIN2(_max_young_size, MAX2(scale_by_NewRatio_aligned(_initial_heap_byte_size), NewSize));
186
32e6c95f8d9b 6557851: CMS: ergonomics defaults are not set with FLAG_SET_ERGO
jmasa
parents: 1
diff changeset
   447
    }
21561
c619b1cb4554 8016309: assert(eden_size > 0 && survivor_size > 0) failed: just checking
jwilhelm
parents: 21560
diff changeset
   448
  }
c619b1cb4554 8016309: assert(eden_size > 0 && survivor_size > 0) failed: just checking
jwilhelm
parents: 21560
diff changeset
   449
35061
be6025ebffea 8145092: Use Unified Logging for the GC logging
brutisso
parents: 33212
diff changeset
   450
  log_trace(gc, heap)("1: Minimum young " SIZE_FORMAT "  Initial young " SIZE_FORMAT "  Maximum young " SIZE_FORMAT,
be6025ebffea 8145092: Use Unified Logging for the GC logging
brutisso
parents: 33212
diff changeset
   451
                      _min_young_size, _initial_young_size, _max_young_size);
21561
c619b1cb4554 8016309: assert(eden_size > 0 && survivor_size > 0) failed: just checking
jwilhelm
parents: 21560
diff changeset
   452
186
32e6c95f8d9b 6557851: CMS: ergonomics defaults are not set with FLAG_SET_ERGO
jmasa
parents: 1
diff changeset
   453
  // At this point the minimum, initial and maximum sizes
24941
4ebbe176a7b1 8042298: Remove the names gen0 and gen1 from the GC code
jwilhelm
parents: 24940
diff changeset
   454
  // of the overall heap and of the young generation have been determined.
4ebbe176a7b1 8042298: Remove the names gen0 and gen1 from the GC code
jwilhelm
parents: 24940
diff changeset
   455
  // The maximum old size can be determined from the maximum young
22551
9bf46d16dcc6 8025856: Fix typos in the GC code
jwilhelm
parents: 22548
diff changeset
   456
  // and maximum heap size since no explicit flags exist
24941
4ebbe176a7b1 8042298: Remove the names gen0 and gen1 from the GC code
jwilhelm
parents: 24940
diff changeset
   457
  // for setting the old generation maximum.
4ebbe176a7b1 8042298: Remove the names gen0 and gen1 from the GC code
jwilhelm
parents: 24940
diff changeset
   458
  _max_old_size = MAX2(_max_heap_byte_size - _max_young_size, _gen_alignment);
21561
c619b1cb4554 8016309: assert(eden_size > 0 && survivor_size > 0) failed: just checking
jwilhelm
parents: 21560
diff changeset
   459
186
32e6c95f8d9b 6557851: CMS: ergonomics defaults are not set with FLAG_SET_ERGO
jmasa
parents: 1
diff changeset
   460
  // If no explicit command line flag has been set for the
24941
4ebbe176a7b1 8042298: Remove the names gen0 and gen1 from the GC code
jwilhelm
parents: 24940
diff changeset
   461
  // old generation size, use what is left.
21561
c619b1cb4554 8016309: assert(eden_size > 0 && survivor_size > 0) failed: just checking
jwilhelm
parents: 21560
diff changeset
   462
  if (!FLAG_IS_CMDLINE(OldSize)) {
c619b1cb4554 8016309: assert(eden_size > 0 && survivor_size > 0) failed: just checking
jwilhelm
parents: 21560
diff changeset
   463
    // The user has not specified any value but the ergonomics
c619b1cb4554 8016309: assert(eden_size > 0 && survivor_size > 0) failed: just checking
jwilhelm
parents: 21560
diff changeset
   464
    // may have chosen a value (which may or may not be consistent
186
32e6c95f8d9b 6557851: CMS: ergonomics defaults are not set with FLAG_SET_ERGO
jmasa
parents: 1
diff changeset
   465
    // with the overall heap size).  In either case make
32e6c95f8d9b 6557851: CMS: ergonomics defaults are not set with FLAG_SET_ERGO
jmasa
parents: 1
diff changeset
   466
    // the minimum, maximum and initial sizes consistent
24941
4ebbe176a7b1 8042298: Remove the names gen0 and gen1 from the GC code
jwilhelm
parents: 24940
diff changeset
   467
    // with the young sizes and the overall heap sizes.
4ebbe176a7b1 8042298: Remove the names gen0 and gen1 from the GC code
jwilhelm
parents: 24940
diff changeset
   468
    _min_old_size = _gen_alignment;
4ebbe176a7b1 8042298: Remove the names gen0 and gen1 from the GC code
jwilhelm
parents: 24940
diff changeset
   469
    _initial_old_size = MIN2(_max_old_size, MAX2(_initial_heap_byte_size - _initial_young_size, _min_old_size));
4ebbe176a7b1 8042298: Remove the names gen0 and gen1 from the GC code
jwilhelm
parents: 24940
diff changeset
   470
    // _max_old_size has already been made consistent above.
186
32e6c95f8d9b 6557851: CMS: ergonomics defaults are not set with FLAG_SET_ERGO
jmasa
parents: 1
diff changeset
   471
  } else {
23851
60303358c862 8029186: regression-hotspot nightly failure: assert(FLAG_IS_DEFAULT(MaxNewSize) || MaxNewSize < MaxHeapSize) failed
sjohanss
parents: 23224
diff changeset
   472
    // OldSize has been explicitly set on the command line. Use it
60303358c862 8029186: regression-hotspot nightly failure: assert(FLAG_IS_DEFAULT(MaxNewSize) || MaxNewSize < MaxHeapSize) failed
sjohanss
parents: 23224
diff changeset
   473
    // for the initial size but make sure the minimum allow a young
60303358c862 8029186: regression-hotspot nightly failure: assert(FLAG_IS_DEFAULT(MaxNewSize) || MaxNewSize < MaxHeapSize) failed
sjohanss
parents: 23224
diff changeset
   474
    // generation to fit as well.
186
32e6c95f8d9b 6557851: CMS: ergonomics defaults are not set with FLAG_SET_ERGO
jmasa
parents: 1
diff changeset
   475
    // If the user has explicitly set an OldSize that is inconsistent
32e6c95f8d9b 6557851: CMS: ergonomics defaults are not set with FLAG_SET_ERGO
jmasa
parents: 1
diff changeset
   476
    // with other command line flags, issue a warning.
22551
9bf46d16dcc6 8025856: Fix typos in the GC code
jwilhelm
parents: 22548
diff changeset
   477
    // The generation minimums and the overall heap minimum should
21561
c619b1cb4554 8016309: assert(eden_size > 0 && survivor_size > 0) failed: just checking
jwilhelm
parents: 21560
diff changeset
   478
    // be within one generation alignment.
24941
4ebbe176a7b1 8042298: Remove the names gen0 and gen1 from the GC code
jwilhelm
parents: 24940
diff changeset
   479
    if (_initial_old_size > _max_old_size) {
35521
3cb32806ed1d 8146990: Convert CollectorPolicy to use log_warning instead of warning
ehelin
parents: 35492
diff changeset
   480
      log_warning(gc, ergo)("Inconsistency between maximum heap size and maximum "
3cb32806ed1d 8146990: Convert CollectorPolicy to use log_warning instead of warning
ehelin
parents: 35492
diff changeset
   481
                            "generation sizes: using maximum heap = " SIZE_FORMAT
3cb32806ed1d 8146990: Convert CollectorPolicy to use log_warning instead of warning
ehelin
parents: 35492
diff changeset
   482
                            ", -XX:OldSize flag is being ignored",
3cb32806ed1d 8146990: Convert CollectorPolicy to use log_warning instead of warning
ehelin
parents: 35492
diff changeset
   483
                            _max_heap_byte_size);
24941
4ebbe176a7b1 8042298: Remove the names gen0 and gen1 from the GC code
jwilhelm
parents: 24940
diff changeset
   484
      _initial_old_size = _max_old_size;
8687
264727307495 6896099: Integrate CMS heap ergo with default heap sizing ergo
ysr
parents: 7419
diff changeset
   485
    }
23851
60303358c862 8029186: regression-hotspot nightly failure: assert(FLAG_IS_DEFAULT(MaxNewSize) || MaxNewSize < MaxHeapSize) failed
sjohanss
parents: 23224
diff changeset
   486
24941
4ebbe176a7b1 8042298: Remove the names gen0 and gen1 from the GC code
jwilhelm
parents: 24940
diff changeset
   487
    _min_old_size = MIN2(_initial_old_size, _min_heap_byte_size - _min_young_size);
23851
60303358c862 8029186: regression-hotspot nightly failure: assert(FLAG_IS_DEFAULT(MaxNewSize) || MaxNewSize < MaxHeapSize) failed
sjohanss
parents: 23224
diff changeset
   488
  }
60303358c862 8029186: regression-hotspot nightly failure: assert(FLAG_IS_DEFAULT(MaxNewSize) || MaxNewSize < MaxHeapSize) failed
sjohanss
parents: 23224
diff changeset
   489
60303358c862 8029186: regression-hotspot nightly failure: assert(FLAG_IS_DEFAULT(MaxNewSize) || MaxNewSize < MaxHeapSize) failed
sjohanss
parents: 23224
diff changeset
   490
  // The initial generation sizes should match the initial heap size,
60303358c862 8029186: regression-hotspot nightly failure: assert(FLAG_IS_DEFAULT(MaxNewSize) || MaxNewSize < MaxHeapSize) failed
sjohanss
parents: 23224
diff changeset
   491
  // if not issue a warning and resize the generations. This behavior
60303358c862 8029186: regression-hotspot nightly failure: assert(FLAG_IS_DEFAULT(MaxNewSize) || MaxNewSize < MaxHeapSize) failed
sjohanss
parents: 23224
diff changeset
   492
  // differs from JDK8 where the generation sizes have higher priority
60303358c862 8029186: regression-hotspot nightly failure: assert(FLAG_IS_DEFAULT(MaxNewSize) || MaxNewSize < MaxHeapSize) failed
sjohanss
parents: 23224
diff changeset
   493
  // than the initial heap size.
24941
4ebbe176a7b1 8042298: Remove the names gen0 and gen1 from the GC code
jwilhelm
parents: 24940
diff changeset
   494
  if ((_initial_old_size + _initial_young_size) != _initial_heap_byte_size) {
35521
3cb32806ed1d 8146990: Convert CollectorPolicy to use log_warning instead of warning
ehelin
parents: 35492
diff changeset
   495
    log_warning(gc, ergo)("Inconsistency between generation sizes and heap size, resizing "
3cb32806ed1d 8146990: Convert CollectorPolicy to use log_warning instead of warning
ehelin
parents: 35492
diff changeset
   496
                          "the generations to fit the heap.");
23851
60303358c862 8029186: regression-hotspot nightly failure: assert(FLAG_IS_DEFAULT(MaxNewSize) || MaxNewSize < MaxHeapSize) failed
sjohanss
parents: 23224
diff changeset
   497
24941
4ebbe176a7b1 8042298: Remove the names gen0 and gen1 from the GC code
jwilhelm
parents: 24940
diff changeset
   498
    size_t desired_young_size = _initial_heap_byte_size - _initial_old_size;
4ebbe176a7b1 8042298: Remove the names gen0 and gen1 from the GC code
jwilhelm
parents: 24940
diff changeset
   499
    if (_initial_heap_byte_size < _initial_old_size) {
23851
60303358c862 8029186: regression-hotspot nightly failure: assert(FLAG_IS_DEFAULT(MaxNewSize) || MaxNewSize < MaxHeapSize) failed
sjohanss
parents: 23224
diff changeset
   500
      // Old want all memory, use minimum for young and rest for old
24941
4ebbe176a7b1 8042298: Remove the names gen0 and gen1 from the GC code
jwilhelm
parents: 24940
diff changeset
   501
      _initial_young_size = _min_young_size;
4ebbe176a7b1 8042298: Remove the names gen0 and gen1 from the GC code
jwilhelm
parents: 24940
diff changeset
   502
      _initial_old_size = _initial_heap_byte_size - _min_young_size;
4ebbe176a7b1 8042298: Remove the names gen0 and gen1 from the GC code
jwilhelm
parents: 24940
diff changeset
   503
    } else if (desired_young_size > _max_young_size) {
23851
60303358c862 8029186: regression-hotspot nightly failure: assert(FLAG_IS_DEFAULT(MaxNewSize) || MaxNewSize < MaxHeapSize) failed
sjohanss
parents: 23224
diff changeset
   504
      // Need to increase both young and old generation
24941
4ebbe176a7b1 8042298: Remove the names gen0 and gen1 from the GC code
jwilhelm
parents: 24940
diff changeset
   505
      _initial_young_size = _max_young_size;
4ebbe176a7b1 8042298: Remove the names gen0 and gen1 from the GC code
jwilhelm
parents: 24940
diff changeset
   506
      _initial_old_size = _initial_heap_byte_size - _max_young_size;
4ebbe176a7b1 8042298: Remove the names gen0 and gen1 from the GC code
jwilhelm
parents: 24940
diff changeset
   507
    } else if (desired_young_size < _min_young_size) {
23851
60303358c862 8029186: regression-hotspot nightly failure: assert(FLAG_IS_DEFAULT(MaxNewSize) || MaxNewSize < MaxHeapSize) failed
sjohanss
parents: 23224
diff changeset
   508
      // Need to decrease both young and old generation
24941
4ebbe176a7b1 8042298: Remove the names gen0 and gen1 from the GC code
jwilhelm
parents: 24940
diff changeset
   509
      _initial_young_size = _min_young_size;
4ebbe176a7b1 8042298: Remove the names gen0 and gen1 from the GC code
jwilhelm
parents: 24940
diff changeset
   510
      _initial_old_size = _initial_heap_byte_size - _min_young_size;
23851
60303358c862 8029186: regression-hotspot nightly failure: assert(FLAG_IS_DEFAULT(MaxNewSize) || MaxNewSize < MaxHeapSize) failed
sjohanss
parents: 23224
diff changeset
   511
    } else {
60303358c862 8029186: regression-hotspot nightly failure: assert(FLAG_IS_DEFAULT(MaxNewSize) || MaxNewSize < MaxHeapSize) failed
sjohanss
parents: 23224
diff changeset
   512
      // The young generation boundaries allow us to only update the
60303358c862 8029186: regression-hotspot nightly failure: assert(FLAG_IS_DEFAULT(MaxNewSize) || MaxNewSize < MaxHeapSize) failed
sjohanss
parents: 23224
diff changeset
   513
      // young generation.
24941
4ebbe176a7b1 8042298: Remove the names gen0 and gen1 from the GC code
jwilhelm
parents: 24940
diff changeset
   514
      _initial_young_size = desired_young_size;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   515
    }
23851
60303358c862 8029186: regression-hotspot nightly failure: assert(FLAG_IS_DEFAULT(MaxNewSize) || MaxNewSize < MaxHeapSize) failed
sjohanss
parents: 23224
diff changeset
   516
35061
be6025ebffea 8145092: Use Unified Logging for the GC logging
brutisso
parents: 33212
diff changeset
   517
    log_trace(gc, heap)("2: Minimum young " SIZE_FORMAT "  Initial young " SIZE_FORMAT "  Maximum young " SIZE_FORMAT,
be6025ebffea 8145092: Use Unified Logging for the GC logging
brutisso
parents: 33212
diff changeset
   518
                    _min_young_size, _initial_young_size, _max_young_size);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   519
  }
22551
9bf46d16dcc6 8025856: Fix typos in the GC code
jwilhelm
parents: 22548
diff changeset
   520
24941
4ebbe176a7b1 8042298: Remove the names gen0 and gen1 from the GC code
jwilhelm
parents: 24940
diff changeset
   521
  // Write back to flags if necessary.
4ebbe176a7b1 8042298: Remove the names gen0 and gen1 from the GC code
jwilhelm
parents: 24940
diff changeset
   522
  if (NewSize != _initial_young_size) {
29697
92501504191b 8074459: Flags handling memory sizes should be of type size_t
jwilhelm
parents: 29684
diff changeset
   523
    FLAG_SET_ERGO(size_t, NewSize, _initial_young_size);
21561
c619b1cb4554 8016309: assert(eden_size > 0 && survivor_size > 0) failed: just checking
jwilhelm
parents: 21560
diff changeset
   524
  }
c619b1cb4554 8016309: assert(eden_size > 0 && survivor_size > 0) failed: just checking
jwilhelm
parents: 21560
diff changeset
   525
24941
4ebbe176a7b1 8042298: Remove the names gen0 and gen1 from the GC code
jwilhelm
parents: 24940
diff changeset
   526
  if (MaxNewSize != _max_young_size) {
29697
92501504191b 8074459: Flags handling memory sizes should be of type size_t
jwilhelm
parents: 29684
diff changeset
   527
    FLAG_SET_ERGO(size_t, MaxNewSize, _max_young_size);
21561
c619b1cb4554 8016309: assert(eden_size > 0 && survivor_size > 0) failed: just checking
jwilhelm
parents: 21560
diff changeset
   528
  }
c619b1cb4554 8016309: assert(eden_size > 0 && survivor_size > 0) failed: just checking
jwilhelm
parents: 21560
diff changeset
   529
24941
4ebbe176a7b1 8042298: Remove the names gen0 and gen1 from the GC code
jwilhelm
parents: 24940
diff changeset
   530
  if (OldSize != _initial_old_size) {
29697
92501504191b 8074459: Flags handling memory sizes should be of type size_t
jwilhelm
parents: 29684
diff changeset
   531
    FLAG_SET_ERGO(size_t, OldSize, _initial_old_size);
21561
c619b1cb4554 8016309: assert(eden_size > 0 && survivor_size > 0) failed: just checking
jwilhelm
parents: 21560
diff changeset
   532
  }
c619b1cb4554 8016309: assert(eden_size > 0 && survivor_size > 0) failed: just checking
jwilhelm
parents: 21560
diff changeset
   533
35061
be6025ebffea 8145092: Use Unified Logging for the GC logging
brutisso
parents: 33212
diff changeset
   534
  log_trace(gc, heap)("Minimum old " SIZE_FORMAT "  Initial old " SIZE_FORMAT "  Maximum old " SIZE_FORMAT,
be6025ebffea 8145092: Use Unified Logging for the GC logging
brutisso
parents: 33212
diff changeset
   535
                  _min_old_size, _initial_old_size, _max_old_size);
21561
c619b1cb4554 8016309: assert(eden_size > 0 && survivor_size > 0) failed: just checking
jwilhelm
parents: 21560
diff changeset
   536
24353
148147d21135 8027643: Merge GenCollectorPolicy and TwoGenerationCollectorPolicy
jwilhelm
parents: 23851
diff changeset
   537
  DEBUG_ONLY(GenCollectorPolicy::assert_size_info();)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   538
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   539
489c9b5090e2 Initial load
duke
parents:
diff changeset
   540
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   541
// MarkSweepPolicy methods
489c9b5090e2 Initial load
duke
parents:
diff changeset
   542
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   543
21561
c619b1cb4554 8016309: assert(eden_size > 0 && survivor_size > 0) failed: just checking
jwilhelm
parents: 21560
diff changeset
   544
void MarkSweepPolicy::initialize_alignments() {
29697
92501504191b 8074459: Flags handling memory sizes should be of type size_t
jwilhelm
parents: 29684
diff changeset
   545
  _space_alignment = _gen_alignment = (size_t)Generation::GenGrain;
21561
c619b1cb4554 8016309: assert(eden_size > 0 && survivor_size > 0) failed: just checking
jwilhelm
parents: 21560
diff changeset
   546
  _heap_alignment = compute_heap_alignment();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   547
}