1 /*
   2  * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved.
   3  * Copyright (c) 2017, Red Hat, Inc. and/or its affiliates.
   4  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   5  *
   6  * This code is free software; you can redistribute it and/or modify it
   7  * under the terms of the GNU General Public License version 2 only, as
   8  * published by the Free Software Foundation.
   9  *
  10  * This code is distributed in the hope that it will be useful, but WITHOUT
  11  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  12  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  13  * version 2 for more details (a copy is included in the LICENSE file that
  14  * accompanied this code).
  15  *
  16  * You should have received a copy of the GNU General Public License version
  17  * 2 along with this work; if not, write to the Free Software Foundation,
  18  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  19  *
  20  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  21  * or visit www.oracle.com if you need additional information or have any
  22  * questions.
  23  *
  24  */
  25 
  26 #include "precompiled.hpp"
  27 #include "gc/g1/g1Arguments.hpp"
  28 #include "gc/g1/g1CollectedHeap.inline.hpp"
  29 #include "gc/g1/g1CollectorPolicy.hpp"
  30 #include "gc/g1/g1HeapVerifier.hpp"
  31 #include "gc/g1/heapRegion.hpp"
  32 #include "gc/shared/gcArguments.inline.hpp"
  33 #include "gc/shared/workerPolicy.hpp"
  34 #include "runtime/globals.hpp"
  35 #include "runtime/globals_extension.hpp"
  36 
  37 size_t G1Arguments::conservative_max_heap_alignment() {
  38   return HeapRegion::max_region_size();
  39 }
  40 
  41 void G1Arguments::initialize_verification_types() {
  42   if (strlen(VerifyGCType) > 0) {
  43     const char delimiter[] = " ,\n";
  44     size_t length = strlen(VerifyGCType);
  45     char* type_list = NEW_C_HEAP_ARRAY(char, length + 1, mtInternal);
  46     strncpy(type_list, VerifyGCType, length + 1);
  47     char* token = strtok(type_list, delimiter);
  48     while (token != NULL) {
  49       parse_verification_type(token);
  50       token = strtok(NULL, delimiter);
  51     }
  52     FREE_C_HEAP_ARRAY(char, type_list);
  53   }
  54 }
  55 
  56 void G1Arguments::parse_verification_type(const char* type) {
  57   if (strcmp(type, "young-normal") == 0) {
  58     G1HeapVerifier::enable_verification_type(G1HeapVerifier::G1VerifyYoungNormal);
  59   } else if (strcmp(type, "concurrent-start") == 0) {
  60     G1HeapVerifier::enable_verification_type(G1HeapVerifier::G1VerifyConcurrentStart);
  61   } else if (strcmp(type, "mixed") == 0) {
  62     G1HeapVerifier::enable_verification_type(G1HeapVerifier::G1VerifyMixed);
  63   } else if (strcmp(type, "remark") == 0) {
  64     G1HeapVerifier::enable_verification_type(G1HeapVerifier::G1VerifyRemark);
  65   } else if (strcmp(type, "cleanup") == 0) {
  66     G1HeapVerifier::enable_verification_type(G1HeapVerifier::G1VerifyCleanup);
  67   } else if (strcmp(type, "full") == 0) {
  68     G1HeapVerifier::enable_verification_type(G1HeapVerifier::G1VerifyFull);
  69   } else {
  70     log_warning(gc, verify)("VerifyGCType: '%s' is unknown. Available types are: "
  71                             "young-normal, concurrent-start, mixed, remark, cleanup and full", type);
  72   }
  73 }
  74 
  75 void G1Arguments::initialize() {
  76   GCArguments::initialize();
  77   assert(UseG1GC, "Error");
  78   FLAG_SET_DEFAULT(ParallelGCThreads, WorkerPolicy::parallel_worker_threads());
  79   if (ParallelGCThreads == 0) {
  80     assert(!FLAG_IS_DEFAULT(ParallelGCThreads), "The default value for ParallelGCThreads should not be 0.");
  81     vm_exit_during_initialization("The flag -XX:+UseG1GC can not be combined with -XX:ParallelGCThreads=0", NULL);
  82   }
  83 
  84   if (FLAG_IS_DEFAULT(G1ConcRefinementThreads)) {
  85     FLAG_SET_ERGO(uint, G1ConcRefinementThreads, ParallelGCThreads);
  86   }
  87 
  88   // MarkStackSize will be set (if it hasn't been set by the user)
  89   // when concurrent marking is initialized.
  90   // Its value will be based upon the number of parallel marking threads.
  91   // But we do set the maximum mark stack size here.
  92   if (FLAG_IS_DEFAULT(MarkStackSizeMax)) {
  93     FLAG_SET_DEFAULT(MarkStackSizeMax, 128 * TASKQUEUE_SIZE);
  94   }
  95 
  96   if (FLAG_IS_DEFAULT(GCTimeRatio) || GCTimeRatio == 0) {
  97     // In G1, we want the default GC overhead goal to be higher than
  98     // it is for PS, or the heap might be expanded too aggressively.
  99     // We set it here to ~8%.
 100     FLAG_SET_DEFAULT(GCTimeRatio, 12);
 101   }
 102 
 103   // Below, we might need to calculate the pause time interval based on
 104   // the pause target. When we do so we are going to give G1 maximum
 105   // flexibility and allow it to do pauses when it needs to. So, we'll
 106   // arrange that the pause interval to be pause time target + 1 to
 107   // ensure that a) the pause time target is maximized with respect to
 108   // the pause interval and b) we maintain the invariant that pause
 109   // time target < pause interval. If the user does not want this
 110   // maximum flexibility, they will have to set the pause interval
 111   // explicitly.
 112 
 113   if (FLAG_IS_DEFAULT(MaxGCPauseMillis)) {
 114     // The default pause time target in G1 is 200ms
 115     FLAG_SET_DEFAULT(MaxGCPauseMillis, 200);
 116   }
 117 
 118   // Then, if the interval parameter was not set, set it according to
 119   // the pause time target (this will also deal with the case when the
 120   // pause time target is the default value).
 121   if (FLAG_IS_DEFAULT(GCPauseIntervalMillis)) {
 122     FLAG_SET_DEFAULT(GCPauseIntervalMillis, MaxGCPauseMillis + 1);
 123   }
 124 
 125   if (FLAG_IS_DEFAULT(ParallelRefProcEnabled) && ParallelGCThreads > 1) {
 126     FLAG_SET_DEFAULT(ParallelRefProcEnabled, true);
 127   }
 128 
 129   log_trace(gc)("MarkStackSize: %uk  MarkStackSizeMax: %uk", (unsigned int) (MarkStackSize / K), (uint) (MarkStackSizeMax / K));
 130 
 131   // By default do not let the target stack size to be more than 1/4 of the entries
 132   if (FLAG_IS_DEFAULT(GCDrainStackTargetSize)) {
 133     FLAG_SET_ERGO(uintx, GCDrainStackTargetSize, MIN2(GCDrainStackTargetSize, (uintx)TASKQUEUE_SIZE / 4));
 134   }
 135 
 136 #ifdef COMPILER2
 137   // Enable loop strip mining to offer better pause time guarantees
 138   if (FLAG_IS_DEFAULT(UseCountedLoopSafepoints)) {
 139     FLAG_SET_DEFAULT(UseCountedLoopSafepoints, true);
 140     if (FLAG_IS_DEFAULT(LoopStripMiningIter)) {
 141       FLAG_SET_DEFAULT(LoopStripMiningIter, 1000);
 142     }
 143   }
 144 #endif
 145 
 146   initialize_verification_types();
 147 }
 148 
 149 CollectedHeap* G1Arguments::create_heap() {
 150   return create_heap_with_policy<G1CollectedHeap, G1CollectorPolicy>();
 151 }