src/hotspot/share/gc/shared/gcArguments.cpp
author kbarrett
Tue, 05 Mar 2019 19:54:33 -0500
changeset 54006 a421bdf22394
parent 53119 375b10185c40
child 54678 93f09ca4a7f8
permissions -rw-r--r--
8219613: Use NonJavaThread PtrQueues Summary: Init and use NJT queues, remove shared SATB queue. Reviewed-by: shade, zgu, pliden, tschatzl Contributed-by: kim.barrett@oracle.com, shade@redhat.com
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
47901
4c42aa431f40 8189171: Move GC argument processing into GC specific classes
rkennke
parents:
diff changeset
     1
/*
49602
db050c11c3b5 8199850: Move parsing of VerifyGCType to G1
pliden
parents: 48179
diff changeset
     2
 * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved.
47901
4c42aa431f40 8189171: Move GC argument processing into GC specific classes
rkennke
parents:
diff changeset
     3
 * Copyright (c) 2017, Red Hat, Inc. and/or its affiliates.
4c42aa431f40 8189171: Move GC argument processing into GC specific classes
rkennke
parents:
diff changeset
     4
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4c42aa431f40 8189171: Move GC argument processing into GC specific classes
rkennke
parents:
diff changeset
     5
 *
4c42aa431f40 8189171: Move GC argument processing into GC specific classes
rkennke
parents:
diff changeset
     6
 * This code is free software; you can redistribute it and/or modify it
4c42aa431f40 8189171: Move GC argument processing into GC specific classes
rkennke
parents:
diff changeset
     7
 * under the terms of the GNU General Public License version 2 only, as
4c42aa431f40 8189171: Move GC argument processing into GC specific classes
rkennke
parents:
diff changeset
     8
 * published by the Free Software Foundation.
4c42aa431f40 8189171: Move GC argument processing into GC specific classes
rkennke
parents:
diff changeset
     9
 *
4c42aa431f40 8189171: Move GC argument processing into GC specific classes
rkennke
parents:
diff changeset
    10
 * This code is distributed in the hope that it will be useful, but WITHOUT
4c42aa431f40 8189171: Move GC argument processing into GC specific classes
rkennke
parents:
diff changeset
    11
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
4c42aa431f40 8189171: Move GC argument processing into GC specific classes
rkennke
parents:
diff changeset
    12
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
4c42aa431f40 8189171: Move GC argument processing into GC specific classes
rkennke
parents:
diff changeset
    13
 * version 2 for more details (a copy is included in the LICENSE file that
4c42aa431f40 8189171: Move GC argument processing into GC specific classes
rkennke
parents:
diff changeset
    14
 * accompanied this code).
4c42aa431f40 8189171: Move GC argument processing into GC specific classes
rkennke
parents:
diff changeset
    15
 *
4c42aa431f40 8189171: Move GC argument processing into GC specific classes
rkennke
parents:
diff changeset
    16
 * You should have received a copy of the GNU General Public License version
4c42aa431f40 8189171: Move GC argument processing into GC specific classes
rkennke
parents:
diff changeset
    17
 * 2 along with this work; if not, write to the Free Software Foundation,
4c42aa431f40 8189171: Move GC argument processing into GC specific classes
rkennke
parents:
diff changeset
    18
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
4c42aa431f40 8189171: Move GC argument processing into GC specific classes
rkennke
parents:
diff changeset
    19
 *
4c42aa431f40 8189171: Move GC argument processing into GC specific classes
rkennke
parents:
diff changeset
    20
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
4c42aa431f40 8189171: Move GC argument processing into GC specific classes
rkennke
parents:
diff changeset
    21
 * or visit www.oracle.com if you need additional information or have any
4c42aa431f40 8189171: Move GC argument processing into GC specific classes
rkennke
parents:
diff changeset
    22
 * questions.
4c42aa431f40 8189171: Move GC argument processing into GC specific classes
rkennke
parents:
diff changeset
    23
 *
4c42aa431f40 8189171: Move GC argument processing into GC specific classes
rkennke
parents:
diff changeset
    24
 */
4c42aa431f40 8189171: Move GC argument processing into GC specific classes
rkennke
parents:
diff changeset
    25
4c42aa431f40 8189171: Move GC argument processing into GC specific classes
rkennke
parents:
diff changeset
    26
#include "precompiled.hpp"
4c42aa431f40 8189171: Move GC argument processing into GC specific classes
rkennke
parents:
diff changeset
    27
#include "gc/shared/gcArguments.hpp"
48012
90bb2706e6b4 8191562: Missing include in gcArguments.cpp breaks minimal JVM build
rkennke
parents: 47996
diff changeset
    28
#include "runtime/arguments.hpp"
47901
4c42aa431f40 8189171: Move GC argument processing into GC specific classes
rkennke
parents:
diff changeset
    29
#include "runtime/globals.hpp"
4c42aa431f40 8189171: Move GC argument processing into GC specific classes
rkennke
parents:
diff changeset
    30
#include "runtime/globals_extension.hpp"
53116
bb03098c4dde 8211425: Allocation of old generation of java heap on alternate memory devices - G1 GC
sangheki
parents: 49710
diff changeset
    31
#include "utilities/defaultStream.hpp"
47901
4c42aa431f40 8189171: Move GC argument processing into GC specific classes
rkennke
parents:
diff changeset
    32
#include "utilities/macros.hpp"
4c42aa431f40 8189171: Move GC argument processing into GC specific classes
rkennke
parents:
diff changeset
    33
49629
b786280276dc 8199925: Break out GC selection logic from GCArguments to GCConfig
pliden
parents: 49602
diff changeset
    34
void GCArguments::initialize() {
49710
f67333fc42bd 8200737: Move GC code out of Arguments::check_vm_args_consistency into GCArguments
stefank
parents: 49629
diff changeset
    35
  if (FullGCALot && FLAG_IS_DEFAULT(MarkSweepAlwaysCompactCount)) {
f67333fc42bd 8200737: Move GC code out of Arguments::check_vm_args_consistency into GCArguments
stefank
parents: 49629
diff changeset
    36
    MarkSweepAlwaysCompactCount = 1;  // Move objects every gc.
f67333fc42bd 8200737: Move GC code out of Arguments::check_vm_args_consistency into GCArguments
stefank
parents: 49629
diff changeset
    37
  }
f67333fc42bd 8200737: Move GC code out of Arguments::check_vm_args_consistency into GCArguments
stefank
parents: 49629
diff changeset
    38
f67333fc42bd 8200737: Move GC code out of Arguments::check_vm_args_consistency into GCArguments
stefank
parents: 49629
diff changeset
    39
  if (!(UseParallelGC || UseParallelOldGC) && FLAG_IS_DEFAULT(ScavengeBeforeFullGC)) {
f67333fc42bd 8200737: Move GC code out of Arguments::check_vm_args_consistency into GCArguments
stefank
parents: 49629
diff changeset
    40
    FLAG_SET_DEFAULT(ScavengeBeforeFullGC, false);
f67333fc42bd 8200737: Move GC code out of Arguments::check_vm_args_consistency into GCArguments
stefank
parents: 49629
diff changeset
    41
  }
f67333fc42bd 8200737: Move GC code out of Arguments::check_vm_args_consistency into GCArguments
stefank
parents: 49629
diff changeset
    42
f67333fc42bd 8200737: Move GC code out of Arguments::check_vm_args_consistency into GCArguments
stefank
parents: 49629
diff changeset
    43
  if (GCTimeLimit == 100) {
f67333fc42bd 8200737: Move GC code out of Arguments::check_vm_args_consistency into GCArguments
stefank
parents: 49629
diff changeset
    44
    // Turn off gc-overhead-limit-exceeded checks
f67333fc42bd 8200737: Move GC code out of Arguments::check_vm_args_consistency into GCArguments
stefank
parents: 49629
diff changeset
    45
    FLAG_SET_DEFAULT(UseGCOverheadLimit, false);
f67333fc42bd 8200737: Move GC code out of Arguments::check_vm_args_consistency into GCArguments
stefank
parents: 49629
diff changeset
    46
  }
f67333fc42bd 8200737: Move GC code out of Arguments::check_vm_args_consistency into GCArguments
stefank
parents: 49629
diff changeset
    47
47901
4c42aa431f40 8189171: Move GC argument processing into GC specific classes
rkennke
parents:
diff changeset
    48
  if (MinHeapFreeRatio == 100) {
4c42aa431f40 8189171: Move GC argument processing into GC specific classes
rkennke
parents:
diff changeset
    49
    // Keeping the heap 100% free is hard ;-) so limit it to 99%.
4c42aa431f40 8189171: Move GC argument processing into GC specific classes
rkennke
parents:
diff changeset
    50
    FLAG_SET_ERGO(uintx, MinHeapFreeRatio, 99);
4c42aa431f40 8189171: Move GC argument processing into GC specific classes
rkennke
parents:
diff changeset
    51
  }
4c42aa431f40 8189171: Move GC argument processing into GC specific classes
rkennke
parents:
diff changeset
    52
4c42aa431f40 8189171: Move GC argument processing into GC specific classes
rkennke
parents:
diff changeset
    53
  if (!ClassUnloading) {
49710
f67333fc42bd 8200737: Move GC code out of Arguments::check_vm_args_consistency into GCArguments
stefank
parents: 49629
diff changeset
    54
    // If class unloading is disabled, also disable concurrent class unloading.
47901
4c42aa431f40 8189171: Move GC argument processing into GC specific classes
rkennke
parents:
diff changeset
    55
    FLAG_SET_CMDLINE(bool, ClassUnloadingWithConcurrentMark, false);
4c42aa431f40 8189171: Move GC argument processing into GC specific classes
rkennke
parents:
diff changeset
    56
  }
53116
bb03098c4dde 8211425: Allocation of old generation of java heap on alternate memory devices - G1 GC
sangheki
parents: 49710
diff changeset
    57
bb03098c4dde 8211425: Allocation of old generation of java heap on alternate memory devices - G1 GC
sangheki
parents: 49710
diff changeset
    58
  if (!FLAG_IS_DEFAULT(AllocateOldGenAt)) {
bb03098c4dde 8211425: Allocation of old generation of java heap on alternate memory devices - G1 GC
sangheki
parents: 49710
diff changeset
    59
    // CompressedOops not supported when AllocateOldGenAt is set.
53119
375b10185c40 8215898: Build broken on 32-bit after JDK-8211425
sjohanss
parents: 53116
diff changeset
    60
    LP64_ONLY(FLAG_SET_DEFAULT(UseCompressedOops, false));
375b10185c40 8215898: Build broken on 32-bit after JDK-8211425
sjohanss
parents: 53116
diff changeset
    61
    LP64_ONLY(FLAG_SET_DEFAULT(UseCompressedClassPointers, false));
53116
bb03098c4dde 8211425: Allocation of old generation of java heap on alternate memory devices - G1 GC
sangheki
parents: 49710
diff changeset
    62
    // When AllocateOldGenAt is set, we cannot use largepages for entire heap memory.
bb03098c4dde 8211425: Allocation of old generation of java heap on alternate memory devices - G1 GC
sangheki
parents: 49710
diff changeset
    63
    // Only young gen which is allocated in dram can use large pages, but we currently don't support that.
bb03098c4dde 8211425: Allocation of old generation of java heap on alternate memory devices - G1 GC
sangheki
parents: 49710
diff changeset
    64
    FLAG_SET_DEFAULT(UseLargePages, false);
bb03098c4dde 8211425: Allocation of old generation of java heap on alternate memory devices - G1 GC
sangheki
parents: 49710
diff changeset
    65
  }
47901
4c42aa431f40 8189171: Move GC argument processing into GC specific classes
rkennke
parents:
diff changeset
    66
}
53116
bb03098c4dde 8211425: Allocation of old generation of java heap on alternate memory devices - G1 GC
sangheki
parents: 49710
diff changeset
    67
bb03098c4dde 8211425: Allocation of old generation of java heap on alternate memory devices - G1 GC
sangheki
parents: 49710
diff changeset
    68
bool GCArguments::check_args_consistency() {
bb03098c4dde 8211425: Allocation of old generation of java heap on alternate memory devices - G1 GC
sangheki
parents: 49710
diff changeset
    69
  bool status = true;
bb03098c4dde 8211425: Allocation of old generation of java heap on alternate memory devices - G1 GC
sangheki
parents: 49710
diff changeset
    70
  if (!FLAG_IS_DEFAULT(AllocateHeapAt) && !FLAG_IS_DEFAULT(AllocateOldGenAt)) {
bb03098c4dde 8211425: Allocation of old generation of java heap on alternate memory devices - G1 GC
sangheki
parents: 49710
diff changeset
    71
    jio_fprintf(defaultStream::error_stream(),
bb03098c4dde 8211425: Allocation of old generation of java heap on alternate memory devices - G1 GC
sangheki
parents: 49710
diff changeset
    72
      "AllocateHeapAt and AllocateOldGenAt cannot be used together.\n");
bb03098c4dde 8211425: Allocation of old generation of java heap on alternate memory devices - G1 GC
sangheki
parents: 49710
diff changeset
    73
    status = false;
bb03098c4dde 8211425: Allocation of old generation of java heap on alternate memory devices - G1 GC
sangheki
parents: 49710
diff changeset
    74
  }
bb03098c4dde 8211425: Allocation of old generation of java heap on alternate memory devices - G1 GC
sangheki
parents: 49710
diff changeset
    75
  if (!FLAG_IS_DEFAULT(AllocateOldGenAt) && (UseSerialGC || UseConcMarkSweepGC || UseEpsilonGC || UseZGC)) {
bb03098c4dde 8211425: Allocation of old generation of java heap on alternate memory devices - G1 GC
sangheki
parents: 49710
diff changeset
    76
    jio_fprintf(defaultStream::error_stream(),
bb03098c4dde 8211425: Allocation of old generation of java heap on alternate memory devices - G1 GC
sangheki
parents: 49710
diff changeset
    77
      "AllocateOldGenAt is not supported for selected GC.\n");
bb03098c4dde 8211425: Allocation of old generation of java heap on alternate memory devices - G1 GC
sangheki
parents: 49710
diff changeset
    78
    status = false;
bb03098c4dde 8211425: Allocation of old generation of java heap on alternate memory devices - G1 GC
sangheki
parents: 49710
diff changeset
    79
  }
bb03098c4dde 8211425: Allocation of old generation of java heap on alternate memory devices - G1 GC
sangheki
parents: 49710
diff changeset
    80
  return status;
bb03098c4dde 8211425: Allocation of old generation of java heap on alternate memory devices - G1 GC
sangheki
parents: 49710
diff changeset
    81
}