src/share/vm/memory/collectorPolicy.cpp

Mon, 08 Apr 2013 07:49:28 +0200

author
brutisso
date
Mon, 08 Apr 2013 07:49:28 +0200
changeset 4901
83f27710f5f7
parent 4853
2e093b564241
child 4962
6f817ce50129
permissions
-rw-r--r--

7197666: java -d64 -version core dumps in a box with lots of memory
Summary: Allow task queues to be mmapped instead of malloced on Solaris
Reviewed-by: coleenp, jmasa, johnc, tschatzl

duke@435 1 /*
jwilhelm@4554 2 * Copyright (c) 2001, 2013, Oracle and/or its affiliates. All rights reserved.
duke@435 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
duke@435 4 *
duke@435 5 * This code is free software; you can redistribute it and/or modify it
duke@435 6 * under the terms of the GNU General Public License version 2 only, as
duke@435 7 * published by the Free Software Foundation.
duke@435 8 *
duke@435 9 * This code is distributed in the hope that it will be useful, but WITHOUT
duke@435 10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
duke@435 11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
duke@435 12 * version 2 for more details (a copy is included in the LICENSE file that
duke@435 13 * accompanied this code).
duke@435 14 *
duke@435 15 * You should have received a copy of the GNU General Public License version
duke@435 16 * 2 along with this work; if not, write to the Free Software Foundation,
duke@435 17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
duke@435 18 *
trims@1907 19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
trims@1907 20 * or visit www.oracle.com if you need additional information or have any
trims@1907 21 * questions.
duke@435 22 *
duke@435 23 */
duke@435 24
stefank@2314 25 #include "precompiled.hpp"
stefank@2314 26 #include "gc_implementation/shared/adaptiveSizePolicy.hpp"
stefank@2314 27 #include "gc_implementation/shared/gcPolicyCounters.hpp"
stefank@2314 28 #include "gc_implementation/shared/vmGCOperations.hpp"
stefank@2314 29 #include "memory/cardTableRS.hpp"
stefank@2314 30 #include "memory/collectorPolicy.hpp"
stefank@2314 31 #include "memory/gcLocker.inline.hpp"
stefank@2314 32 #include "memory/genCollectedHeap.hpp"
stefank@2314 33 #include "memory/generationSpec.hpp"
stefank@2314 34 #include "memory/space.hpp"
stefank@2314 35 #include "memory/universe.hpp"
stefank@2314 36 #include "runtime/arguments.hpp"
stefank@2314 37 #include "runtime/globals_extension.hpp"
stefank@2314 38 #include "runtime/handles.inline.hpp"
stefank@2314 39 #include "runtime/java.hpp"
stefank@4299 40 #include "runtime/thread.inline.hpp"
stefank@2314 41 #include "runtime/vmThread.hpp"
jprovino@4542 42 #include "utilities/macros.hpp"
jprovino@4542 43 #if INCLUDE_ALL_GCS
stefank@2314 44 #include "gc_implementation/concurrentMarkSweep/cmsAdaptiveSizePolicy.hpp"
stefank@2314 45 #include "gc_implementation/concurrentMarkSweep/cmsGCAdaptivePolicyCounters.hpp"
jprovino@4542 46 #endif // INCLUDE_ALL_GCS
duke@435 47
duke@435 48 // CollectorPolicy methods.
duke@435 49
duke@435 50 void CollectorPolicy::initialize_flags() {
coleenp@4037 51 if (MetaspaceSize > MaxMetaspaceSize) {
coleenp@4037 52 MaxMetaspaceSize = MetaspaceSize;
duke@435 53 }
coleenp@4037 54 MetaspaceSize = MAX2(min_alignment(), align_size_down_(MetaspaceSize, min_alignment()));
coleenp@4037 55 // Don't increase Metaspace size limit above specified.
coleenp@4037 56 MaxMetaspaceSize = align_size_down(MaxMetaspaceSize, max_alignment());
coleenp@4037 57 if (MetaspaceSize > MaxMetaspaceSize) {
coleenp@4037 58 MetaspaceSize = MaxMetaspaceSize;
kvn@2150 59 }
duke@435 60
coleenp@4037 61 MinMetaspaceExpansion = MAX2(min_alignment(), align_size_down_(MinMetaspaceExpansion, min_alignment()));
coleenp@4037 62 MaxMetaspaceExpansion = MAX2(min_alignment(), align_size_down_(MaxMetaspaceExpansion, min_alignment()));
duke@435 63
duke@435 64 MinHeapDeltaBytes = align_size_up(MinHeapDeltaBytes, min_alignment());
duke@435 65
coleenp@4037 66 assert(MetaspaceSize % min_alignment() == 0, "metapace alignment");
coleenp@4037 67 assert(MaxMetaspaceSize % max_alignment() == 0, "maximum metaspace alignment");
coleenp@4037 68 if (MetaspaceSize < 256*K) {
coleenp@4037 69 vm_exit_during_initialization("Too small initial Metaspace size");
duke@435 70 }
duke@435 71 }
duke@435 72
duke@435 73 void CollectorPolicy::initialize_size_info() {
duke@435 74 // User inputs from -mx and ms are aligned
phh@1499 75 set_initial_heap_byte_size(InitialHeapSize);
jmasa@448 76 if (initial_heap_byte_size() == 0) {
jmasa@448 77 set_initial_heap_byte_size(NewSize + OldSize);
duke@435 78 }
ysr@777 79 set_initial_heap_byte_size(align_size_up(_initial_heap_byte_size,
ysr@777 80 min_alignment()));
ysr@777 81
ysr@777 82 set_min_heap_byte_size(Arguments::min_heap_size());
jmasa@448 83 if (min_heap_byte_size() == 0) {
jmasa@448 84 set_min_heap_byte_size(NewSize + OldSize);
duke@435 85 }
ysr@777 86 set_min_heap_byte_size(align_size_up(_min_heap_byte_size,
ysr@777 87 min_alignment()));
ysr@777 88
ysr@777 89 set_max_heap_byte_size(align_size_up(MaxHeapSize, max_alignment()));
duke@435 90
duke@435 91 // Check heap parameter properties
jmasa@448 92 if (initial_heap_byte_size() < M) {
duke@435 93 vm_exit_during_initialization("Too small initial heap");
duke@435 94 }
duke@435 95 // Check heap parameter properties
jmasa@448 96 if (min_heap_byte_size() < M) {
duke@435 97 vm_exit_during_initialization("Too small minimum heap");
duke@435 98 }
jmasa@448 99 if (initial_heap_byte_size() <= NewSize) {
duke@435 100 // make sure there is at least some room in old space
duke@435 101 vm_exit_during_initialization("Too small initial heap for new size specified");
duke@435 102 }
jmasa@448 103 if (max_heap_byte_size() < min_heap_byte_size()) {
duke@435 104 vm_exit_during_initialization("Incompatible minimum and maximum heap sizes specified");
duke@435 105 }
jmasa@448 106 if (initial_heap_byte_size() < min_heap_byte_size()) {
duke@435 107 vm_exit_during_initialization("Incompatible minimum and initial heap sizes specified");
duke@435 108 }
jmasa@448 109 if (max_heap_byte_size() < initial_heap_byte_size()) {
duke@435 110 vm_exit_during_initialization("Incompatible initial and maximum heap sizes specified");
duke@435 111 }
jmasa@448 112
jmasa@448 113 if (PrintGCDetails && Verbose) {
jmasa@448 114 gclog_or_tty->print_cr("Minimum heap " SIZE_FORMAT " Initial heap "
jmasa@448 115 SIZE_FORMAT " Maximum heap " SIZE_FORMAT,
jmasa@448 116 min_heap_byte_size(), initial_heap_byte_size(), max_heap_byte_size());
jmasa@448 117 }
duke@435 118 }
duke@435 119
jmasa@1822 120 bool CollectorPolicy::use_should_clear_all_soft_refs(bool v) {
jmasa@1822 121 bool result = _should_clear_all_soft_refs;
jmasa@1822 122 set_should_clear_all_soft_refs(false);
jmasa@1822 123 return result;
jmasa@1822 124 }
duke@435 125
duke@435 126 GenRemSet* CollectorPolicy::create_rem_set(MemRegion whole_heap,
duke@435 127 int max_covered_regions) {
duke@435 128 switch (rem_set_name()) {
duke@435 129 case GenRemSet::CardTable: {
duke@435 130 CardTableRS* res = new CardTableRS(whole_heap, max_covered_regions);
duke@435 131 return res;
duke@435 132 }
duke@435 133 default:
duke@435 134 guarantee(false, "unrecognized GenRemSet::Name");
duke@435 135 return NULL;
duke@435 136 }
duke@435 137 }
duke@435 138
jmasa@1822 139 void CollectorPolicy::cleared_all_soft_refs() {
jmasa@1822 140 // If near gc overhear limit, continue to clear SoftRefs. SoftRefs may
jmasa@1822 141 // have been cleared in the last collection but if the gc overhear
jmasa@1822 142 // limit continues to be near, SoftRefs should still be cleared.
jmasa@1822 143 if (size_policy() != NULL) {
jmasa@1822 144 _should_clear_all_soft_refs = size_policy()->gc_overhead_limit_near();
jmasa@1822 145 }
jmasa@1822 146 _all_soft_refs_clear = true;
jmasa@1822 147 }
jmasa@1822 148
jmasa@1822 149
duke@435 150 // GenCollectorPolicy methods.
duke@435 151
jmasa@448 152 size_t GenCollectorPolicy::scale_by_NewRatio_aligned(size_t base_size) {
jmasa@448 153 size_t x = base_size / (NewRatio+1);
jmasa@448 154 size_t new_gen_size = x > min_alignment() ?
jmasa@448 155 align_size_down(x, min_alignment()) :
jmasa@448 156 min_alignment();
jmasa@448 157 return new_gen_size;
jmasa@448 158 }
jmasa@448 159
jmasa@448 160 size_t GenCollectorPolicy::bound_minus_alignment(size_t desired_size,
jmasa@448 161 size_t maximum_size) {
jmasa@448 162 size_t alignment = min_alignment();
jmasa@448 163 size_t max_minus = maximum_size - alignment;
jmasa@448 164 return desired_size < max_minus ? desired_size : max_minus;
jmasa@448 165 }
jmasa@448 166
jmasa@448 167
duke@435 168 void GenCollectorPolicy::initialize_size_policy(size_t init_eden_size,
duke@435 169 size_t init_promo_size,
duke@435 170 size_t init_survivor_size) {
tamao@4613 171 const double max_gc_pause_sec = ((double) MaxGCPauseMillis)/1000.0;
duke@435 172 _size_policy = new AdaptiveSizePolicy(init_eden_size,
duke@435 173 init_promo_size,
duke@435 174 init_survivor_size,
tamao@4613 175 max_gc_pause_sec,
duke@435 176 GCTimeRatio);
duke@435 177 }
duke@435 178
duke@435 179 size_t GenCollectorPolicy::compute_max_alignment() {
duke@435 180 // The card marking array and the offset arrays for old generations are
duke@435 181 // committed in os pages as well. Make sure they are entirely full (to
duke@435 182 // avoid partial page problems), e.g. if 512 bytes heap corresponds to 1
duke@435 183 // byte entry and the os page size is 4096, the maximum heap size should
duke@435 184 // be 512*4096 = 2MB aligned.
duke@435 185 size_t alignment = GenRemSet::max_alignment_constraint(rem_set_name());
duke@435 186
duke@435 187 // Parallel GC does its own alignment of the generations to avoid requiring a
duke@435 188 // large page (256M on some platforms) for the permanent generation. The
duke@435 189 // other collectors should also be updated to do their own alignment and then
duke@435 190 // this use of lcm() should be removed.
duke@435 191 if (UseLargePages && !UseParallelGC) {
duke@435 192 // in presence of large pages we have to make sure that our
duke@435 193 // alignment is large page aware
duke@435 194 alignment = lcm(os::large_page_size(), alignment);
duke@435 195 }
duke@435 196
duke@435 197 return alignment;
duke@435 198 }
duke@435 199
duke@435 200 void GenCollectorPolicy::initialize_flags() {
duke@435 201 // All sizes must be multiples of the generation granularity.
duke@435 202 set_min_alignment((uintx) Generation::GenGrain);
duke@435 203 set_max_alignment(compute_max_alignment());
duke@435 204 assert(max_alignment() >= min_alignment() &&
duke@435 205 max_alignment() % min_alignment() == 0,
duke@435 206 "invalid alignment constraints");
duke@435 207
duke@435 208 CollectorPolicy::initialize_flags();
duke@435 209
duke@435 210 // All generational heaps have a youngest gen; handle those flags here.
duke@435 211
duke@435 212 // Adjust max size parameters
duke@435 213 if (NewSize > MaxNewSize) {
duke@435 214 MaxNewSize = NewSize;
duke@435 215 }
duke@435 216 NewSize = align_size_down(NewSize, min_alignment());
duke@435 217 MaxNewSize = align_size_down(MaxNewSize, min_alignment());
duke@435 218
duke@435 219 // Check validity of heap flags
duke@435 220 assert(NewSize % min_alignment() == 0, "eden space alignment");
duke@435 221 assert(MaxNewSize % min_alignment() == 0, "survivor space alignment");
duke@435 222
duke@435 223 if (NewSize < 3*min_alignment()) {
duke@435 224 // make sure there room for eden and two survivor spaces
duke@435 225 vm_exit_during_initialization("Too small new size specified");
duke@435 226 }
duke@435 227 if (SurvivorRatio < 1 || NewRatio < 1) {
duke@435 228 vm_exit_during_initialization("Invalid heap ratio specified");
duke@435 229 }
duke@435 230 }
duke@435 231
duke@435 232 void TwoGenerationCollectorPolicy::initialize_flags() {
duke@435 233 GenCollectorPolicy::initialize_flags();
duke@435 234
duke@435 235 OldSize = align_size_down(OldSize, min_alignment());
duke@435 236 if (NewSize + OldSize > MaxHeapSize) {
duke@435 237 MaxHeapSize = NewSize + OldSize;
duke@435 238 }
jwilhelm@4554 239
jwilhelm@4554 240 if (FLAG_IS_CMDLINE(OldSize) && FLAG_IS_DEFAULT(NewSize)) {
jwilhelm@4554 241 // NewRatio will be used later to set the young generation size so we use
jwilhelm@4554 242 // it to calculate how big the heap should be based on the requested OldSize
jwilhelm@4554 243 // and NewRatio.
jwilhelm@4554 244 assert(NewRatio > 0, "NewRatio should have been set up earlier");
jwilhelm@4554 245 size_t calculated_heapsize = (OldSize / NewRatio) * (NewRatio + 1);
jwilhelm@4554 246
jwilhelm@4554 247 calculated_heapsize = align_size_up(calculated_heapsize, max_alignment());
jwilhelm@4554 248 MaxHeapSize = calculated_heapsize;
jwilhelm@4554 249 InitialHeapSize = calculated_heapsize;
jwilhelm@4554 250 }
duke@435 251 MaxHeapSize = align_size_up(MaxHeapSize, max_alignment());
duke@435 252
duke@435 253 always_do_update_barrier = UseConcMarkSweepGC;
duke@435 254
duke@435 255 // Check validity of heap flags
duke@435 256 assert(OldSize % min_alignment() == 0, "old space alignment");
duke@435 257 assert(MaxHeapSize % max_alignment() == 0, "maximum heap alignment");
duke@435 258 }
duke@435 259
jmasa@448 260 // Values set on the command line win over any ergonomically
jmasa@448 261 // set command line parameters.
jmasa@448 262 // Ergonomic choice of parameters are done before this
jmasa@448 263 // method is called. Values for command line parameters such as NewSize
jmasa@448 264 // and MaxNewSize feed those ergonomic choices into this method.
jmasa@448 265 // This method makes the final generation sizings consistent with
jmasa@448 266 // themselves and with overall heap sizings.
jmasa@448 267 // In the absence of explicitly set command line flags, policies
jmasa@448 268 // such as the use of NewRatio are used to size the generation.
duke@435 269 void GenCollectorPolicy::initialize_size_info() {
duke@435 270 CollectorPolicy::initialize_size_info();
duke@435 271
jmasa@448 272 // min_alignment() is used for alignment within a generation.
jmasa@448 273 // There is additional alignment done down stream for some
jmasa@448 274 // collectors that sometimes causes unwanted rounding up of
jmasa@448 275 // generations sizes.
jmasa@448 276
jmasa@448 277 // Determine maximum size of gen0
jmasa@448 278
jmasa@448 279 size_t max_new_size = 0;
ysr@2650 280 if (FLAG_IS_CMDLINE(MaxNewSize) || FLAG_IS_ERGO(MaxNewSize)) {
jmasa@448 281 if (MaxNewSize < min_alignment()) {
jmasa@448 282 max_new_size = min_alignment();
ysr@2650 283 }
ysr@2650 284 if (MaxNewSize >= max_heap_byte_size()) {
jmasa@448 285 max_new_size = align_size_down(max_heap_byte_size() - min_alignment(),
jmasa@448 286 min_alignment());
jmasa@448 287 warning("MaxNewSize (" SIZE_FORMAT "k) is equal to or "
jmasa@448 288 "greater than the entire heap (" SIZE_FORMAT "k). A "
jmasa@448 289 "new generation size of " SIZE_FORMAT "k will be used.",
jmasa@448 290 MaxNewSize/K, max_heap_byte_size()/K, max_new_size/K);
jmasa@448 291 } else {
jmasa@448 292 max_new_size = align_size_down(MaxNewSize, min_alignment());
jmasa@448 293 }
jmasa@448 294
jmasa@448 295 // The case for FLAG_IS_ERGO(MaxNewSize) could be treated
jmasa@448 296 // specially at this point to just use an ergonomically set
jmasa@448 297 // MaxNewSize to set max_new_size. For cases with small
jmasa@448 298 // heaps such a policy often did not work because the MaxNewSize
jmasa@448 299 // was larger than the entire heap. The interpretation given
jmasa@448 300 // to ergonomically set flags is that the flags are set
jmasa@448 301 // by different collectors for their own special needs but
jmasa@448 302 // are not allowed to badly shape the heap. This allows the
jmasa@448 303 // different collectors to decide what's best for themselves
jmasa@448 304 // without having to factor in the overall heap shape. It
jmasa@448 305 // can be the case in the future that the collectors would
jmasa@448 306 // only make "wise" ergonomics choices and this policy could
jmasa@448 307 // just accept those choices. The choices currently made are
jmasa@448 308 // not always "wise".
duke@435 309 } else {
jmasa@448 310 max_new_size = scale_by_NewRatio_aligned(max_heap_byte_size());
jmasa@448 311 // Bound the maximum size by NewSize below (since it historically
duke@435 312 // would have been NewSize and because the NewRatio calculation could
duke@435 313 // yield a size that is too small) and bound it by MaxNewSize above.
jmasa@448 314 // Ergonomics plays here by previously calculating the desired
jmasa@448 315 // NewSize and MaxNewSize.
jmasa@448 316 max_new_size = MIN2(MAX2(max_new_size, NewSize), MaxNewSize);
jmasa@448 317 }
jmasa@448 318 assert(max_new_size > 0, "All paths should set max_new_size");
jmasa@448 319
jmasa@448 320 // Given the maximum gen0 size, determine the initial and
ysr@2650 321 // minimum gen0 sizes.
jmasa@448 322
jmasa@448 323 if (max_heap_byte_size() == min_heap_byte_size()) {
jmasa@448 324 // The maximum and minimum heap sizes are the same so
jmasa@448 325 // the generations minimum and initial must be the
jmasa@448 326 // same as its maximum.
jmasa@448 327 set_min_gen0_size(max_new_size);
jmasa@448 328 set_initial_gen0_size(max_new_size);
jmasa@448 329 set_max_gen0_size(max_new_size);
jmasa@448 330 } else {
jmasa@448 331 size_t desired_new_size = 0;
jmasa@448 332 if (!FLAG_IS_DEFAULT(NewSize)) {
jmasa@448 333 // If NewSize is set ergonomically (for example by cms), it
jmasa@448 334 // would make sense to use it. If it is used, also use it
jmasa@448 335 // to set the initial size. Although there is no reason
jmasa@448 336 // the minimum size and the initial size have to be the same,
jmasa@448 337 // the current implementation gets into trouble during the calculation
jmasa@448 338 // of the tenured generation sizes if they are different.
jmasa@448 339 // Note that this makes the initial size and the minimum size
jmasa@448 340 // generally small compared to the NewRatio calculation.
jmasa@448 341 _min_gen0_size = NewSize;
jmasa@448 342 desired_new_size = NewSize;
jmasa@448 343 max_new_size = MAX2(max_new_size, NewSize);
jmasa@448 344 } else {
jmasa@448 345 // For the case where NewSize is the default, use NewRatio
jmasa@448 346 // to size the minimum and initial generation sizes.
jmasa@448 347 // Use the default NewSize as the floor for these values. If
jmasa@448 348 // NewRatio is overly large, the resulting sizes can be too
jmasa@448 349 // small.
jmasa@448 350 _min_gen0_size = MAX2(scale_by_NewRatio_aligned(min_heap_byte_size()),
jmasa@448 351 NewSize);
jmasa@448 352 desired_new_size =
jmasa@448 353 MAX2(scale_by_NewRatio_aligned(initial_heap_byte_size()),
jmasa@448 354 NewSize);
jmasa@448 355 }
jmasa@448 356
jmasa@448 357 assert(_min_gen0_size > 0, "Sanity check");
jmasa@448 358 set_initial_gen0_size(desired_new_size);
jmasa@448 359 set_max_gen0_size(max_new_size);
jmasa@448 360
jmasa@448 361 // At this point the desirable initial and minimum sizes have been
jmasa@448 362 // determined without regard to the maximum sizes.
jmasa@448 363
jmasa@448 364 // Bound the sizes by the corresponding overall heap sizes.
jmasa@448 365 set_min_gen0_size(
jmasa@448 366 bound_minus_alignment(_min_gen0_size, min_heap_byte_size()));
jmasa@448 367 set_initial_gen0_size(
jmasa@448 368 bound_minus_alignment(_initial_gen0_size, initial_heap_byte_size()));
jmasa@448 369 set_max_gen0_size(
jmasa@448 370 bound_minus_alignment(_max_gen0_size, max_heap_byte_size()));
jmasa@448 371
jmasa@448 372 // At this point all three sizes have been checked against the
jmasa@448 373 // maximum sizes but have not been checked for consistency
ysr@777 374 // among the three.
jmasa@448 375
jmasa@448 376 // Final check min <= initial <= max
jmasa@448 377 set_min_gen0_size(MIN2(_min_gen0_size, _max_gen0_size));
jmasa@448 378 set_initial_gen0_size(
jmasa@448 379 MAX2(MIN2(_initial_gen0_size, _max_gen0_size), _min_gen0_size));
jmasa@448 380 set_min_gen0_size(MIN2(_min_gen0_size, _initial_gen0_size));
duke@435 381 }
duke@435 382
jmasa@448 383 if (PrintGCDetails && Verbose) {
ysr@2650 384 gclog_or_tty->print_cr("1: Minimum gen0 " SIZE_FORMAT " Initial gen0 "
jmasa@448 385 SIZE_FORMAT " Maximum gen0 " SIZE_FORMAT,
jmasa@448 386 min_gen0_size(), initial_gen0_size(), max_gen0_size());
jmasa@448 387 }
jmasa@448 388 }
duke@435 389
jmasa@448 390 // Call this method during the sizing of the gen1 to make
jmasa@448 391 // adjustments to gen0 because of gen1 sizing policy. gen0 initially has
jmasa@448 392 // the most freedom in sizing because it is done before the
jmasa@448 393 // policy for gen1 is applied. Once gen1 policies have been applied,
jmasa@448 394 // there may be conflicts in the shape of the heap and this method
jmasa@448 395 // is used to make the needed adjustments. The application of the
jmasa@448 396 // policies could be more sophisticated (iterative for example) but
jmasa@448 397 // keeping it simple also seems a worthwhile goal.
jmasa@448 398 bool TwoGenerationCollectorPolicy::adjust_gen0_sizes(size_t* gen0_size_ptr,
jmasa@448 399 size_t* gen1_size_ptr,
jwilhelm@4554 400 const size_t heap_size,
jwilhelm@4554 401 const size_t min_gen1_size) {
jmasa@448 402 bool result = false;
jwilhelm@4554 403
jmasa@448 404 if ((*gen1_size_ptr + *gen0_size_ptr) > heap_size) {
jwilhelm@4554 405 if ((heap_size < (*gen0_size_ptr + min_gen1_size)) &&
jwilhelm@4554 406 (heap_size >= min_gen1_size + min_alignment())) {
jwilhelm@4554 407 // Adjust gen0 down to accommodate min_gen1_size
jwilhelm@4554 408 *gen0_size_ptr = heap_size - min_gen1_size;
jmasa@448 409 *gen0_size_ptr =
jmasa@448 410 MAX2((uintx)align_size_down(*gen0_size_ptr, min_alignment()),
jmasa@448 411 min_alignment());
jmasa@448 412 assert(*gen0_size_ptr > 0, "Min gen0 is too large");
jmasa@448 413 result = true;
jmasa@448 414 } else {
jmasa@448 415 *gen1_size_ptr = heap_size - *gen0_size_ptr;
jmasa@448 416 *gen1_size_ptr =
jmasa@448 417 MAX2((uintx)align_size_down(*gen1_size_ptr, min_alignment()),
jmasa@448 418 min_alignment());
jmasa@448 419 }
jmasa@448 420 }
jmasa@448 421 return result;
jmasa@448 422 }
duke@435 423
jmasa@448 424 // Minimum sizes of the generations may be different than
jmasa@448 425 // the initial sizes. An inconsistently is permitted here
jmasa@448 426 // in the total size that can be specified explicitly by
jmasa@448 427 // command line specification of OldSize and NewSize and
jmasa@448 428 // also a command line specification of -Xms. Issue a warning
jmasa@448 429 // but allow the values to pass.
duke@435 430
duke@435 431 void TwoGenerationCollectorPolicy::initialize_size_info() {
duke@435 432 GenCollectorPolicy::initialize_size_info();
duke@435 433
jmasa@448 434 // At this point the minimum, initial and maximum sizes
jmasa@448 435 // of the overall heap and of gen0 have been determined.
jmasa@448 436 // The maximum gen1 size can be determined from the maximum gen0
ysr@2650 437 // and maximum heap size since no explicit flags exits
jmasa@448 438 // for setting the gen1 maximum.
jmasa@448 439 _max_gen1_size = max_heap_byte_size() - _max_gen0_size;
jmasa@448 440 _max_gen1_size =
jmasa@448 441 MAX2((uintx)align_size_down(_max_gen1_size, min_alignment()),
jmasa@448 442 min_alignment());
jmasa@448 443 // If no explicit command line flag has been set for the
jmasa@448 444 // gen1 size, use what is left for gen1.
jmasa@448 445 if (FLAG_IS_DEFAULT(OldSize) || FLAG_IS_ERGO(OldSize)) {
jmasa@448 446 // The user has not specified any value or ergonomics
jmasa@448 447 // has chosen a value (which may or may not be consistent
jmasa@448 448 // with the overall heap size). In either case make
jmasa@448 449 // the minimum, maximum and initial sizes consistent
jmasa@448 450 // with the gen0 sizes and the overall heap sizes.
jmasa@448 451 assert(min_heap_byte_size() > _min_gen0_size,
jmasa@448 452 "gen0 has an unexpected minimum size");
jmasa@448 453 set_min_gen1_size(min_heap_byte_size() - min_gen0_size());
jmasa@448 454 set_min_gen1_size(
jmasa@448 455 MAX2((uintx)align_size_down(_min_gen1_size, min_alignment()),
jmasa@448 456 min_alignment()));
jmasa@448 457 set_initial_gen1_size(initial_heap_byte_size() - initial_gen0_size());
jmasa@448 458 set_initial_gen1_size(
jmasa@448 459 MAX2((uintx)align_size_down(_initial_gen1_size, min_alignment()),
jmasa@448 460 min_alignment()));
jmasa@448 461
jmasa@448 462 } else {
jmasa@448 463 // It's been explicitly set on the command line. Use the
jmasa@448 464 // OldSize and then determine the consequences.
jmasa@448 465 set_min_gen1_size(OldSize);
jmasa@448 466 set_initial_gen1_size(OldSize);
jmasa@448 467
jmasa@448 468 // If the user has explicitly set an OldSize that is inconsistent
jmasa@448 469 // with other command line flags, issue a warning.
duke@435 470 // The generation minimums and the overall heap mimimum should
duke@435 471 // be within one heap alignment.
jmasa@448 472 if ((_min_gen1_size + _min_gen0_size + min_alignment()) <
jmasa@448 473 min_heap_byte_size()) {
duke@435 474 warning("Inconsistency between minimum heap size and minimum "
jmasa@448 475 "generation sizes: using minimum heap = " SIZE_FORMAT,
jmasa@448 476 min_heap_byte_size());
duke@435 477 }
jmasa@448 478 if ((OldSize > _max_gen1_size)) {
jmasa@448 479 warning("Inconsistency between maximum heap size and maximum "
jmasa@448 480 "generation sizes: using maximum heap = " SIZE_FORMAT
jmasa@448 481 " -XX:OldSize flag is being ignored",
jmasa@448 482 max_heap_byte_size());
ysr@2650 483 }
jmasa@448 484 // If there is an inconsistency between the OldSize and the minimum and/or
jmasa@448 485 // initial size of gen0, since OldSize was explicitly set, OldSize wins.
jmasa@448 486 if (adjust_gen0_sizes(&_min_gen0_size, &_min_gen1_size,
jmasa@448 487 min_heap_byte_size(), OldSize)) {
jmasa@448 488 if (PrintGCDetails && Verbose) {
ysr@2650 489 gclog_or_tty->print_cr("2: Minimum gen0 " SIZE_FORMAT " Initial gen0 "
jmasa@448 490 SIZE_FORMAT " Maximum gen0 " SIZE_FORMAT,
jmasa@448 491 min_gen0_size(), initial_gen0_size(), max_gen0_size());
jmasa@448 492 }
jmasa@448 493 }
jmasa@448 494 // Initial size
jmasa@448 495 if (adjust_gen0_sizes(&_initial_gen0_size, &_initial_gen1_size,
jmasa@448 496 initial_heap_byte_size(), OldSize)) {
jmasa@448 497 if (PrintGCDetails && Verbose) {
ysr@2650 498 gclog_or_tty->print_cr("3: Minimum gen0 " SIZE_FORMAT " Initial gen0 "
jmasa@448 499 SIZE_FORMAT " Maximum gen0 " SIZE_FORMAT,
jmasa@448 500 min_gen0_size(), initial_gen0_size(), max_gen0_size());
jmasa@448 501 }
jmasa@448 502 }
jmasa@448 503 }
jmasa@448 504 // Enforce the maximum gen1 size.
jmasa@448 505 set_min_gen1_size(MIN2(_min_gen1_size, _max_gen1_size));
duke@435 506
jmasa@448 507 // Check that min gen1 <= initial gen1 <= max gen1
jmasa@448 508 set_initial_gen1_size(MAX2(_initial_gen1_size, _min_gen1_size));
jmasa@448 509 set_initial_gen1_size(MIN2(_initial_gen1_size, _max_gen1_size));
jmasa@448 510
jmasa@448 511 if (PrintGCDetails && Verbose) {
jmasa@448 512 gclog_or_tty->print_cr("Minimum gen1 " SIZE_FORMAT " Initial gen1 "
jmasa@448 513 SIZE_FORMAT " Maximum gen1 " SIZE_FORMAT,
jmasa@448 514 min_gen1_size(), initial_gen1_size(), max_gen1_size());
jmasa@448 515 }
duke@435 516 }
duke@435 517
duke@435 518 HeapWord* GenCollectorPolicy::mem_allocate_work(size_t size,
duke@435 519 bool is_tlab,
duke@435 520 bool* gc_overhead_limit_was_exceeded) {
duke@435 521 GenCollectedHeap *gch = GenCollectedHeap::heap();
duke@435 522
duke@435 523 debug_only(gch->check_for_valid_allocation_state());
duke@435 524 assert(gch->no_gc_in_progress(), "Allocation during gc not allowed");
jmasa@1822 525
jmasa@1822 526 // In general gc_overhead_limit_was_exceeded should be false so
jmasa@1822 527 // set it so here and reset it to true only if the gc time
jmasa@1822 528 // limit is being exceeded as checked below.
jmasa@1822 529 *gc_overhead_limit_was_exceeded = false;
jmasa@1822 530
duke@435 531 HeapWord* result = NULL;
duke@435 532
duke@435 533 // Loop until the allocation is satisified,
duke@435 534 // or unsatisfied after GC.
mgerdin@4853 535 for (int try_count = 1, gclocker_stalled_count = 0; /* return or throw */; try_count += 1) {
duke@435 536 HandleMark hm; // discard any handles allocated in each iteration
duke@435 537
duke@435 538 // First allocation attempt is lock-free.
duke@435 539 Generation *gen0 = gch->get_gen(0);
duke@435 540 assert(gen0->supports_inline_contig_alloc(),
duke@435 541 "Otherwise, must do alloc within heap lock");
duke@435 542 if (gen0->should_allocate(size, is_tlab)) {
duke@435 543 result = gen0->par_allocate(size, is_tlab);
duke@435 544 if (result != NULL) {
duke@435 545 assert(gch->is_in_reserved(result), "result not in heap");
duke@435 546 return result;
duke@435 547 }
duke@435 548 }
duke@435 549 unsigned int gc_count_before; // read inside the Heap_lock locked region
duke@435 550 {
duke@435 551 MutexLocker ml(Heap_lock);
duke@435 552 if (PrintGC && Verbose) {
duke@435 553 gclog_or_tty->print_cr("TwoGenerationCollectorPolicy::mem_allocate_work:"
duke@435 554 " attempting locked slow path allocation");
duke@435 555 }
duke@435 556 // Note that only large objects get a shot at being
duke@435 557 // allocated in later generations.
duke@435 558 bool first_only = ! should_try_older_generation_allocation(size);
duke@435 559
duke@435 560 result = gch->attempt_allocation(size, is_tlab, first_only);
duke@435 561 if (result != NULL) {
duke@435 562 assert(gch->is_in_reserved(result), "result not in heap");
duke@435 563 return result;
duke@435 564 }
duke@435 565
duke@435 566 if (GC_locker::is_active_and_needs_gc()) {
duke@435 567 if (is_tlab) {
duke@435 568 return NULL; // Caller will retry allocating individual object
duke@435 569 }
duke@435 570 if (!gch->is_maximal_no_gc()) {
duke@435 571 // Try and expand heap to satisfy request
duke@435 572 result = expand_heap_and_allocate(size, is_tlab);
duke@435 573 // result could be null if we are out of space
duke@435 574 if (result != NULL) {
duke@435 575 return result;
duke@435 576 }
duke@435 577 }
duke@435 578
mgerdin@4853 579 if (gclocker_stalled_count > GCLockerRetryAllocationCount) {
mgerdin@4853 580 return NULL; // we didn't get to do a GC and we didn't get any memory
mgerdin@4853 581 }
mgerdin@4853 582
duke@435 583 // If this thread is not in a jni critical section, we stall
duke@435 584 // the requestor until the critical section has cleared and
duke@435 585 // GC allowed. When the critical section clears, a GC is
duke@435 586 // initiated by the last thread exiting the critical section; so
duke@435 587 // we retry the allocation sequence from the beginning of the loop,
duke@435 588 // rather than causing more, now probably unnecessary, GC attempts.
duke@435 589 JavaThread* jthr = JavaThread::current();
duke@435 590 if (!jthr->in_critical()) {
duke@435 591 MutexUnlocker mul(Heap_lock);
duke@435 592 // Wait for JNI critical section to be exited
duke@435 593 GC_locker::stall_until_clear();
mgerdin@4853 594 gclocker_stalled_count += 1;
duke@435 595 continue;
duke@435 596 } else {
duke@435 597 if (CheckJNICalls) {
duke@435 598 fatal("Possible deadlock due to allocating while"
duke@435 599 " in jni critical section");
duke@435 600 }
duke@435 601 return NULL;
duke@435 602 }
duke@435 603 }
duke@435 604
duke@435 605 // Read the gc count while the heap lock is held.
duke@435 606 gc_count_before = Universe::heap()->total_collections();
duke@435 607 }
duke@435 608
duke@435 609 VM_GenCollectForAllocation op(size,
duke@435 610 is_tlab,
duke@435 611 gc_count_before);
duke@435 612 VMThread::execute(&op);
duke@435 613 if (op.prologue_succeeded()) {
duke@435 614 result = op.result();
duke@435 615 if (op.gc_locked()) {
duke@435 616 assert(result == NULL, "must be NULL if gc_locked() is true");
duke@435 617 continue; // retry and/or stall as necessary
duke@435 618 }
jmasa@1822 619
jmasa@1822 620 // Allocation has failed and a collection
jmasa@1822 621 // has been done. If the gc time limit was exceeded the
jmasa@1822 622 // this time, return NULL so that an out-of-memory
jmasa@1822 623 // will be thrown. Clear gc_overhead_limit_exceeded
jmasa@1822 624 // so that the overhead exceeded does not persist.
jmasa@1822 625
jmasa@1822 626 const bool limit_exceeded = size_policy()->gc_overhead_limit_exceeded();
jmasa@1822 627 const bool softrefs_clear = all_soft_refs_clear();
jmasa@4743 628
jmasa@1822 629 if (limit_exceeded && softrefs_clear) {
jmasa@1822 630 *gc_overhead_limit_was_exceeded = true;
jmasa@1822 631 size_policy()->set_gc_overhead_limit_exceeded(false);
jmasa@1822 632 if (op.result() != NULL) {
jmasa@1822 633 CollectedHeap::fill_with_object(op.result(), size);
jmasa@1822 634 }
jmasa@1822 635 return NULL;
jmasa@1822 636 }
duke@435 637 assert(result == NULL || gch->is_in_reserved(result),
duke@435 638 "result not in heap");
duke@435 639 return result;
duke@435 640 }
duke@435 641
duke@435 642 // Give a warning if we seem to be looping forever.
duke@435 643 if ((QueuedAllocationWarningCount > 0) &&
duke@435 644 (try_count % QueuedAllocationWarningCount == 0)) {
duke@435 645 warning("TwoGenerationCollectorPolicy::mem_allocate_work retries %d times \n\t"
duke@435 646 " size=%d %s", try_count, size, is_tlab ? "(TLAB)" : "");
duke@435 647 }
duke@435 648 }
duke@435 649 }
duke@435 650
duke@435 651 HeapWord* GenCollectorPolicy::expand_heap_and_allocate(size_t size,
duke@435 652 bool is_tlab) {
duke@435 653 GenCollectedHeap *gch = GenCollectedHeap::heap();
duke@435 654 HeapWord* result = NULL;
duke@435 655 for (int i = number_of_generations() - 1; i >= 0 && result == NULL; i--) {
duke@435 656 Generation *gen = gch->get_gen(i);
duke@435 657 if (gen->should_allocate(size, is_tlab)) {
duke@435 658 result = gen->expand_and_allocate(size, is_tlab);
duke@435 659 }
duke@435 660 }
duke@435 661 assert(result == NULL || gch->is_in_reserved(result), "result not in heap");
duke@435 662 return result;
duke@435 663 }
duke@435 664
duke@435 665 HeapWord* GenCollectorPolicy::satisfy_failed_allocation(size_t size,
duke@435 666 bool is_tlab) {
duke@435 667 GenCollectedHeap *gch = GenCollectedHeap::heap();
duke@435 668 GCCauseSetter x(gch, GCCause::_allocation_failure);
duke@435 669 HeapWord* result = NULL;
duke@435 670
duke@435 671 assert(size != 0, "Precondition violated");
duke@435 672 if (GC_locker::is_active_and_needs_gc()) {
duke@435 673 // GC locker is active; instead of a collection we will attempt
duke@435 674 // to expand the heap, if there's room for expansion.
duke@435 675 if (!gch->is_maximal_no_gc()) {
duke@435 676 result = expand_heap_and_allocate(size, is_tlab);
duke@435 677 }
duke@435 678 return result; // could be null if we are out of space
ysr@2336 679 } else if (!gch->incremental_collection_will_fail(false /* don't consult_young */)) {
duke@435 680 // Do an incremental collection.
duke@435 681 gch->do_collection(false /* full */,
duke@435 682 false /* clear_all_soft_refs */,
duke@435 683 size /* size */,
duke@435 684 is_tlab /* is_tlab */,
duke@435 685 number_of_generations() - 1 /* max_level */);
duke@435 686 } else {
ysr@2336 687 if (Verbose && PrintGCDetails) {
ysr@2336 688 gclog_or_tty->print(" :: Trying full because partial may fail :: ");
ysr@2336 689 }
duke@435 690 // Try a full collection; see delta for bug id 6266275
duke@435 691 // for the original code and why this has been simplified
duke@435 692 // with from-space allocation criteria modified and
duke@435 693 // such allocation moved out of the safepoint path.
duke@435 694 gch->do_collection(true /* full */,
duke@435 695 false /* clear_all_soft_refs */,
duke@435 696 size /* size */,
duke@435 697 is_tlab /* is_tlab */,
duke@435 698 number_of_generations() - 1 /* max_level */);
duke@435 699 }
duke@435 700
duke@435 701 result = gch->attempt_allocation(size, is_tlab, false /*first_only*/);
duke@435 702
duke@435 703 if (result != NULL) {
duke@435 704 assert(gch->is_in_reserved(result), "result not in heap");
duke@435 705 return result;
duke@435 706 }
duke@435 707
duke@435 708 // OK, collection failed, try expansion.
duke@435 709 result = expand_heap_and_allocate(size, is_tlab);
duke@435 710 if (result != NULL) {
duke@435 711 return result;
duke@435 712 }
duke@435 713
duke@435 714 // If we reach this point, we're really out of memory. Try every trick
duke@435 715 // we can to reclaim memory. Force collection of soft references. Force
duke@435 716 // a complete compaction of the heap. Any additional methods for finding
duke@435 717 // free memory should be here, especially if they are expensive. If this
duke@435 718 // attempt fails, an OOM exception will be thrown.
duke@435 719 {
duke@435 720 IntFlagSetting flag_change(MarkSweepAlwaysCompactCount, 1); // Make sure the heap is fully compacted
duke@435 721
duke@435 722 gch->do_collection(true /* full */,
duke@435 723 true /* clear_all_soft_refs */,
duke@435 724 size /* size */,
duke@435 725 is_tlab /* is_tlab */,
duke@435 726 number_of_generations() - 1 /* max_level */);
duke@435 727 }
duke@435 728
duke@435 729 result = gch->attempt_allocation(size, is_tlab, false /* first_only */);
duke@435 730 if (result != NULL) {
duke@435 731 assert(gch->is_in_reserved(result), "result not in heap");
duke@435 732 return result;
duke@435 733 }
duke@435 734
jmasa@1822 735 assert(!should_clear_all_soft_refs(),
jmasa@1822 736 "Flag should have been handled and cleared prior to this point");
jmasa@1822 737
duke@435 738 // What else? We might try synchronous finalization later. If the total
duke@435 739 // space available is large enough for the allocation, then a more
duke@435 740 // complete compaction phase than we've tried so far might be
duke@435 741 // appropriate.
duke@435 742 return NULL;
duke@435 743 }
duke@435 744
coleenp@4037 745 MetaWord* CollectorPolicy::satisfy_failed_metadata_allocation(
coleenp@4037 746 ClassLoaderData* loader_data,
coleenp@4037 747 size_t word_size,
coleenp@4037 748 Metaspace::MetadataType mdtype) {
coleenp@4037 749 uint loop_count = 0;
coleenp@4037 750 uint gc_count = 0;
coleenp@4037 751 uint full_gc_count = 0;
coleenp@4037 752
jmasa@4234 753 assert(!Heap_lock->owned_by_self(), "Should not be holding the Heap_lock");
jmasa@4234 754
coleenp@4037 755 do {
jmasa@4064 756 MetaWord* result = NULL;
jmasa@4064 757 if (GC_locker::is_active_and_needs_gc()) {
jmasa@4064 758 // If the GC_locker is active, just expand and allocate.
jmasa@4064 759 // If that does not succeed, wait if this thread is not
jmasa@4064 760 // in a critical section itself.
jmasa@4064 761 result =
jmasa@4064 762 loader_data->metaspace_non_null()->expand_and_allocate(word_size,
jmasa@4064 763 mdtype);
jmasa@4064 764 if (result != NULL) {
jmasa@4064 765 return result;
jmasa@4064 766 }
jmasa@4064 767 JavaThread* jthr = JavaThread::current();
jmasa@4064 768 if (!jthr->in_critical()) {
jmasa@4064 769 // Wait for JNI critical section to be exited
jmasa@4064 770 GC_locker::stall_until_clear();
jmasa@4064 771 // The GC invoked by the last thread leaving the critical
jmasa@4064 772 // section will be a young collection and a full collection
jmasa@4064 773 // is (currently) needed for unloading classes so continue
jmasa@4064 774 // to the next iteration to get a full GC.
jmasa@4064 775 continue;
jmasa@4064 776 } else {
jmasa@4064 777 if (CheckJNICalls) {
jmasa@4064 778 fatal("Possible deadlock due to allocating while"
jmasa@4064 779 " in jni critical section");
jmasa@4064 780 }
jmasa@4064 781 return NULL;
jmasa@4064 782 }
jmasa@4064 783 }
jmasa@4064 784
coleenp@4037 785 { // Need lock to get self consistent gc_count's
coleenp@4037 786 MutexLocker ml(Heap_lock);
coleenp@4037 787 gc_count = Universe::heap()->total_collections();
coleenp@4037 788 full_gc_count = Universe::heap()->total_full_collections();
coleenp@4037 789 }
coleenp@4037 790
coleenp@4037 791 // Generate a VM operation
coleenp@4037 792 VM_CollectForMetadataAllocation op(loader_data,
coleenp@4037 793 word_size,
coleenp@4037 794 mdtype,
coleenp@4037 795 gc_count,
coleenp@4037 796 full_gc_count,
coleenp@4037 797 GCCause::_metadata_GC_threshold);
coleenp@4037 798 VMThread::execute(&op);
jmasa@4382 799
jmasa@4382 800 // If GC was locked out, try again. Check
jmasa@4382 801 // before checking success because the prologue
jmasa@4382 802 // could have succeeded and the GC still have
jmasa@4382 803 // been locked out.
jmasa@4382 804 if (op.gc_locked()) {
jmasa@4382 805 continue;
jmasa@4382 806 }
jmasa@4382 807
coleenp@4037 808 if (op.prologue_succeeded()) {
coleenp@4037 809 return op.result();
coleenp@4037 810 }
coleenp@4037 811 loop_count++;
coleenp@4037 812 if ((QueuedAllocationWarningCount > 0) &&
coleenp@4037 813 (loop_count % QueuedAllocationWarningCount == 0)) {
coleenp@4037 814 warning("satisfy_failed_metadata_allocation() retries %d times \n\t"
coleenp@4037 815 " size=%d", loop_count, word_size);
coleenp@4037 816 }
coleenp@4037 817 } while (true); // Until a GC is done
coleenp@4037 818 }
coleenp@4037 819
duke@435 820 // Return true if any of the following is true:
duke@435 821 // . the allocation won't fit into the current young gen heap
duke@435 822 // . gc locker is occupied (jni critical section)
duke@435 823 // . heap memory is tight -- the most recent previous collection
duke@435 824 // was a full collection because a partial collection (would
duke@435 825 // have) failed and is likely to fail again
duke@435 826 bool GenCollectorPolicy::should_try_older_generation_allocation(
duke@435 827 size_t word_size) const {
duke@435 828 GenCollectedHeap* gch = GenCollectedHeap::heap();
duke@435 829 size_t gen0_capacity = gch->get_gen(0)->capacity_before_gc();
duke@435 830 return (word_size > heap_word_size(gen0_capacity))
ysr@2243 831 || GC_locker::is_active_and_needs_gc()
ysr@2243 832 || gch->incremental_collection_failed();
duke@435 833 }
duke@435 834
duke@435 835
duke@435 836 //
duke@435 837 // MarkSweepPolicy methods
duke@435 838 //
duke@435 839
duke@435 840 MarkSweepPolicy::MarkSweepPolicy() {
duke@435 841 initialize_all();
duke@435 842 }
duke@435 843
duke@435 844 void MarkSweepPolicy::initialize_generations() {
duke@435 845 _generations = new GenerationSpecPtr[number_of_generations()];
duke@435 846 if (_generations == NULL)
duke@435 847 vm_exit_during_initialization("Unable to allocate gen spec");
duke@435 848
brutisso@4387 849 if (UseParNewGC) {
duke@435 850 _generations[0] = new GenerationSpec(Generation::ParNew, _initial_gen0_size, _max_gen0_size);
duke@435 851 } else {
duke@435 852 _generations[0] = new GenerationSpec(Generation::DefNew, _initial_gen0_size, _max_gen0_size);
duke@435 853 }
duke@435 854 _generations[1] = new GenerationSpec(Generation::MarkSweepCompact, _initial_gen1_size, _max_gen1_size);
duke@435 855
duke@435 856 if (_generations[0] == NULL || _generations[1] == NULL)
duke@435 857 vm_exit_during_initialization("Unable to allocate gen spec");
duke@435 858 }
duke@435 859
duke@435 860 void MarkSweepPolicy::initialize_gc_policy_counters() {
duke@435 861 // initialize the policy counters - 2 collectors, 3 generations
brutisso@4387 862 if (UseParNewGC) {
duke@435 863 _gc_policy_counters = new GCPolicyCounters("ParNew:MSC", 2, 3);
brutisso@4387 864 } else {
duke@435 865 _gc_policy_counters = new GCPolicyCounters("Copy:MSC", 2, 3);
duke@435 866 }
duke@435 867 }

mercurial