src/hotspot/share/gc/cms/cmsHeap.hpp
author stefank
Mon, 07 May 2018 14:42:08 +0200
changeset 50034 01a88f825a84
parent 50033 000c697c81db
child 50445 bd6b78feb6a3
permissions -rw-r--r--
8202641: Replace OOP_SINCE_SAVE_MARKS with templates Reviewed-by: eosterlund, sjohanss
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
47622
817f2a7019e4 8179387: Factor out CMS specific code from GenCollectedHeap into its own subclass
rkennke
parents:
diff changeset
     1
/*
48961
120b61d50f85 8195103: Refactor out card table from CardTableModRefBS to flatten the BarrierSet hierarchy
eosterlund
parents: 48168
diff changeset
     2
 * Copyright (c) 2017, 2018, Oracle and/or its affiliates. All rights reserved.
47622
817f2a7019e4 8179387: Factor out CMS specific code from GenCollectedHeap into its own subclass
rkennke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
817f2a7019e4 8179387: Factor out CMS specific code from GenCollectedHeap into its own subclass
rkennke
parents:
diff changeset
     4
 *
817f2a7019e4 8179387: Factor out CMS specific code from GenCollectedHeap into its own subclass
rkennke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
817f2a7019e4 8179387: Factor out CMS specific code from GenCollectedHeap into its own subclass
rkennke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
817f2a7019e4 8179387: Factor out CMS specific code from GenCollectedHeap into its own subclass
rkennke
parents:
diff changeset
     7
 * published by the Free Software Foundation.
817f2a7019e4 8179387: Factor out CMS specific code from GenCollectedHeap into its own subclass
rkennke
parents:
diff changeset
     8
 *
817f2a7019e4 8179387: Factor out CMS specific code from GenCollectedHeap into its own subclass
rkennke
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
817f2a7019e4 8179387: Factor out CMS specific code from GenCollectedHeap into its own subclass
rkennke
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
817f2a7019e4 8179387: Factor out CMS specific code from GenCollectedHeap into its own subclass
rkennke
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
817f2a7019e4 8179387: Factor out CMS specific code from GenCollectedHeap into its own subclass
rkennke
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
817f2a7019e4 8179387: Factor out CMS specific code from GenCollectedHeap into its own subclass
rkennke
parents:
diff changeset
    13
 * accompanied this code).
817f2a7019e4 8179387: Factor out CMS specific code from GenCollectedHeap into its own subclass
rkennke
parents:
diff changeset
    14
 *
817f2a7019e4 8179387: Factor out CMS specific code from GenCollectedHeap into its own subclass
rkennke
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
817f2a7019e4 8179387: Factor out CMS specific code from GenCollectedHeap into its own subclass
rkennke
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
817f2a7019e4 8179387: Factor out CMS specific code from GenCollectedHeap into its own subclass
rkennke
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
817f2a7019e4 8179387: Factor out CMS specific code from GenCollectedHeap into its own subclass
rkennke
parents:
diff changeset
    18
 *
817f2a7019e4 8179387: Factor out CMS specific code from GenCollectedHeap into its own subclass
rkennke
parents:
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
817f2a7019e4 8179387: Factor out CMS specific code from GenCollectedHeap into its own subclass
rkennke
parents:
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
817f2a7019e4 8179387: Factor out CMS specific code from GenCollectedHeap into its own subclass
rkennke
parents:
diff changeset
    21
 * questions.
817f2a7019e4 8179387: Factor out CMS specific code from GenCollectedHeap into its own subclass
rkennke
parents:
diff changeset
    22
 *
817f2a7019e4 8179387: Factor out CMS specific code from GenCollectedHeap into its own subclass
rkennke
parents:
diff changeset
    23
 */
817f2a7019e4 8179387: Factor out CMS specific code from GenCollectedHeap into its own subclass
rkennke
parents:
diff changeset
    24
817f2a7019e4 8179387: Factor out CMS specific code from GenCollectedHeap into its own subclass
rkennke
parents:
diff changeset
    25
#ifndef SHARE_VM_GC_CMS_CMSHEAP_HPP
817f2a7019e4 8179387: Factor out CMS specific code from GenCollectedHeap into its own subclass
rkennke
parents:
diff changeset
    26
#define SHARE_VM_GC_CMS_CMSHEAP_HPP
817f2a7019e4 8179387: Factor out CMS specific code from GenCollectedHeap into its own subclass
rkennke
parents:
diff changeset
    27
817f2a7019e4 8179387: Factor out CMS specific code from GenCollectedHeap into its own subclass
rkennke
parents:
diff changeset
    28
#include "gc/cms/concurrentMarkSweepGeneration.hpp"
50033
000c697c81db 8202639: Use concrete Generation classes in SerialHeap and CMSHeap
stefank
parents: 49733
diff changeset
    29
#include "gc/cms/parNewGeneration.hpp"
47622
817f2a7019e4 8179387: Factor out CMS specific code from GenCollectedHeap into its own subclass
rkennke
parents:
diff changeset
    30
#include "gc/shared/collectedHeap.hpp"
817f2a7019e4 8179387: Factor out CMS specific code from GenCollectedHeap into its own subclass
rkennke
parents:
diff changeset
    31
#include "gc/shared/gcCause.hpp"
817f2a7019e4 8179387: Factor out CMS specific code from GenCollectedHeap into its own subclass
rkennke
parents:
diff changeset
    32
#include "gc/shared/genCollectedHeap.hpp"
48168
cb5d2d4453d0 8191564: Refactor GC related servicability code into GC specific subclasses
rkennke
parents: 47819
diff changeset
    33
#include "utilities/growableArray.hpp"
47622
817f2a7019e4 8179387: Factor out CMS specific code from GenCollectedHeap into its own subclass
rkennke
parents:
diff changeset
    34
817f2a7019e4 8179387: Factor out CMS specific code from GenCollectedHeap into its own subclass
rkennke
parents:
diff changeset
    35
class CLDClosure;
817f2a7019e4 8179387: Factor out CMS specific code from GenCollectedHeap into its own subclass
rkennke
parents:
diff changeset
    36
class GenCollectorPolicy;
48168
cb5d2d4453d0 8191564: Refactor GC related servicability code into GC specific subclasses
rkennke
parents: 47819
diff changeset
    37
class GCMemoryManager;
cb5d2d4453d0 8191564: Refactor GC related servicability code into GC specific subclasses
rkennke
parents: 47819
diff changeset
    38
class MemoryPool;
47622
817f2a7019e4 8179387: Factor out CMS specific code from GenCollectedHeap into its own subclass
rkennke
parents:
diff changeset
    39
class OopsInGenClosure;
817f2a7019e4 8179387: Factor out CMS specific code from GenCollectedHeap into its own subclass
rkennke
parents:
diff changeset
    40
class outputStream;
817f2a7019e4 8179387: Factor out CMS specific code from GenCollectedHeap into its own subclass
rkennke
parents:
diff changeset
    41
class StrongRootsScope;
817f2a7019e4 8179387: Factor out CMS specific code from GenCollectedHeap into its own subclass
rkennke
parents:
diff changeset
    42
class ThreadClosure;
817f2a7019e4 8179387: Factor out CMS specific code from GenCollectedHeap into its own subclass
rkennke
parents:
diff changeset
    43
class WorkGang;
817f2a7019e4 8179387: Factor out CMS specific code from GenCollectedHeap into its own subclass
rkennke
parents:
diff changeset
    44
817f2a7019e4 8179387: Factor out CMS specific code from GenCollectedHeap into its own subclass
rkennke
parents:
diff changeset
    45
class CMSHeap : public GenCollectedHeap {
817f2a7019e4 8179387: Factor out CMS specific code from GenCollectedHeap into its own subclass
rkennke
parents:
diff changeset
    46
public:
817f2a7019e4 8179387: Factor out CMS specific code from GenCollectedHeap into its own subclass
rkennke
parents:
diff changeset
    47
  CMSHeap(GenCollectorPolicy *policy);
817f2a7019e4 8179387: Factor out CMS specific code from GenCollectedHeap into its own subclass
rkennke
parents:
diff changeset
    48
817f2a7019e4 8179387: Factor out CMS specific code from GenCollectedHeap into its own subclass
rkennke
parents:
diff changeset
    49
  // Returns JNI_OK on success
817f2a7019e4 8179387: Factor out CMS specific code from GenCollectedHeap into its own subclass
rkennke
parents:
diff changeset
    50
  virtual jint initialize();
49733
6f0a3ea5ab75 8201209: Separate out CMS specific functions into CMSCardTable
stefank
parents: 49628
diff changeset
    51
  virtual CardTableRS* create_rem_set(const MemRegion& reserved_region);
47622
817f2a7019e4 8179387: Factor out CMS specific code from GenCollectedHeap into its own subclass
rkennke
parents:
diff changeset
    52
817f2a7019e4 8179387: Factor out CMS specific code from GenCollectedHeap into its own subclass
rkennke
parents:
diff changeset
    53
  // Convenience function to be used in situations where the heap type can be
817f2a7019e4 8179387: Factor out CMS specific code from GenCollectedHeap into its own subclass
rkennke
parents:
diff changeset
    54
  // asserted to be this type.
817f2a7019e4 8179387: Factor out CMS specific code from GenCollectedHeap into its own subclass
rkennke
parents:
diff changeset
    55
  static CMSHeap* heap();
817f2a7019e4 8179387: Factor out CMS specific code from GenCollectedHeap into its own subclass
rkennke
parents:
diff changeset
    56
817f2a7019e4 8179387: Factor out CMS specific code from GenCollectedHeap into its own subclass
rkennke
parents:
diff changeset
    57
  virtual Name kind() const {
49628
88478047bc8f 8199918: Shorten names of CollectedHeap::Name members
pliden
parents: 48961
diff changeset
    58
    return CollectedHeap::CMS;
47622
817f2a7019e4 8179387: Factor out CMS specific code from GenCollectedHeap into its own subclass
rkennke
parents:
diff changeset
    59
  }
817f2a7019e4 8179387: Factor out CMS specific code from GenCollectedHeap into its own subclass
rkennke
parents:
diff changeset
    60
817f2a7019e4 8179387: Factor out CMS specific code from GenCollectedHeap into its own subclass
rkennke
parents:
diff changeset
    61
  virtual const char* name() const {
817f2a7019e4 8179387: Factor out CMS specific code from GenCollectedHeap into its own subclass
rkennke
parents:
diff changeset
    62
    return "Concurrent Mark Sweep";
817f2a7019e4 8179387: Factor out CMS specific code from GenCollectedHeap into its own subclass
rkennke
parents:
diff changeset
    63
  }
817f2a7019e4 8179387: Factor out CMS specific code from GenCollectedHeap into its own subclass
rkennke
parents:
diff changeset
    64
817f2a7019e4 8179387: Factor out CMS specific code from GenCollectedHeap into its own subclass
rkennke
parents:
diff changeset
    65
  WorkGang* workers() const { return _workers; }
817f2a7019e4 8179387: Factor out CMS specific code from GenCollectedHeap into its own subclass
rkennke
parents:
diff changeset
    66
817f2a7019e4 8179387: Factor out CMS specific code from GenCollectedHeap into its own subclass
rkennke
parents:
diff changeset
    67
  virtual void print_gc_threads_on(outputStream* st) const;
817f2a7019e4 8179387: Factor out CMS specific code from GenCollectedHeap into its own subclass
rkennke
parents:
diff changeset
    68
  virtual void gc_threads_do(ThreadClosure* tc) const;
817f2a7019e4 8179387: Factor out CMS specific code from GenCollectedHeap into its own subclass
rkennke
parents:
diff changeset
    69
  virtual void print_on_error(outputStream* st) const;
817f2a7019e4 8179387: Factor out CMS specific code from GenCollectedHeap into its own subclass
rkennke
parents:
diff changeset
    70
817f2a7019e4 8179387: Factor out CMS specific code from GenCollectedHeap into its own subclass
rkennke
parents:
diff changeset
    71
  // Perform a full collection of the heap; intended for use in implementing
817f2a7019e4 8179387: Factor out CMS specific code from GenCollectedHeap into its own subclass
rkennke
parents:
diff changeset
    72
  // "System.gc". This implies as full a collection as the CollectedHeap
817f2a7019e4 8179387: Factor out CMS specific code from GenCollectedHeap into its own subclass
rkennke
parents:
diff changeset
    73
  // supports. Caller does not hold the Heap_lock on entry.
817f2a7019e4 8179387: Factor out CMS specific code from GenCollectedHeap into its own subclass
rkennke
parents:
diff changeset
    74
  void collect(GCCause::Cause cause);
817f2a7019e4 8179387: Factor out CMS specific code from GenCollectedHeap into its own subclass
rkennke
parents:
diff changeset
    75
817f2a7019e4 8179387: Factor out CMS specific code from GenCollectedHeap into its own subclass
rkennke
parents:
diff changeset
    76
  void stop();
47636
52d46d7e3454 8188919: Generalize GC thread suspend/resume at safepoints
eosterlund
parents: 47622
diff changeset
    77
  void safepoint_synchronize_begin();
52d46d7e3454 8188919: Generalize GC thread suspend/resume at safepoints
eosterlund
parents: 47622
diff changeset
    78
  void safepoint_synchronize_end();
47622
817f2a7019e4 8179387: Factor out CMS specific code from GenCollectedHeap into its own subclass
rkennke
parents:
diff changeset
    79
48168
cb5d2d4453d0 8191564: Refactor GC related servicability code into GC specific subclasses
rkennke
parents: 47819
diff changeset
    80
  virtual GrowableArray<GCMemoryManager*> memory_managers();
cb5d2d4453d0 8191564: Refactor GC related servicability code into GC specific subclasses
rkennke
parents: 47819
diff changeset
    81
  virtual GrowableArray<MemoryPool*> memory_pools();
cb5d2d4453d0 8191564: Refactor GC related servicability code into GC specific subclasses
rkennke
parents: 47819
diff changeset
    82
47622
817f2a7019e4 8179387: Factor out CMS specific code from GenCollectedHeap into its own subclass
rkennke
parents:
diff changeset
    83
  // If "young_gen_as_roots" is false, younger generations are
817f2a7019e4 8179387: Factor out CMS specific code from GenCollectedHeap into its own subclass
rkennke
parents:
diff changeset
    84
  // not scanned as roots; in this case, the caller must be arranging to
817f2a7019e4 8179387: Factor out CMS specific code from GenCollectedHeap into its own subclass
rkennke
parents:
diff changeset
    85
  // scan the younger generations itself.  (For example, a generation might
817f2a7019e4 8179387: Factor out CMS specific code from GenCollectedHeap into its own subclass
rkennke
parents:
diff changeset
    86
  // explicitly mark reachable objects in younger generations, to avoid
817f2a7019e4 8179387: Factor out CMS specific code from GenCollectedHeap into its own subclass
rkennke
parents:
diff changeset
    87
  // excess storage retention.)
817f2a7019e4 8179387: Factor out CMS specific code from GenCollectedHeap into its own subclass
rkennke
parents:
diff changeset
    88
  void cms_process_roots(StrongRootsScope* scope,
817f2a7019e4 8179387: Factor out CMS specific code from GenCollectedHeap into its own subclass
rkennke
parents:
diff changeset
    89
                         bool young_gen_as_roots,
817f2a7019e4 8179387: Factor out CMS specific code from GenCollectedHeap into its own subclass
rkennke
parents:
diff changeset
    90
                         ScanningOption so,
817f2a7019e4 8179387: Factor out CMS specific code from GenCollectedHeap into its own subclass
rkennke
parents:
diff changeset
    91
                         bool only_strong_roots,
817f2a7019e4 8179387: Factor out CMS specific code from GenCollectedHeap into its own subclass
rkennke
parents:
diff changeset
    92
                         OopsInGenClosure* root_closure,
817f2a7019e4 8179387: Factor out CMS specific code from GenCollectedHeap into its own subclass
rkennke
parents:
diff changeset
    93
                         CLDClosure* cld_closure);
817f2a7019e4 8179387: Factor out CMS specific code from GenCollectedHeap into its own subclass
rkennke
parents:
diff changeset
    94
48168
cb5d2d4453d0 8191564: Refactor GC related servicability code into GC specific subclasses
rkennke
parents: 47819
diff changeset
    95
  GCMemoryManager* old_manager() const { return _old_manager; }
cb5d2d4453d0 8191564: Refactor GC related servicability code into GC specific subclasses
rkennke
parents: 47819
diff changeset
    96
50033
000c697c81db 8202639: Use concrete Generation classes in SerialHeap and CMSHeap
stefank
parents: 49733
diff changeset
    97
  ParNewGeneration* young_gen() const {
000c697c81db 8202639: Use concrete Generation classes in SerialHeap and CMSHeap
stefank
parents: 49733
diff changeset
    98
    assert(_young_gen->kind() == Generation::ParNew, "Wrong generation type");
000c697c81db 8202639: Use concrete Generation classes in SerialHeap and CMSHeap
stefank
parents: 49733
diff changeset
    99
    return static_cast<ParNewGeneration*>(_young_gen);
000c697c81db 8202639: Use concrete Generation classes in SerialHeap and CMSHeap
stefank
parents: 49733
diff changeset
   100
  }
000c697c81db 8202639: Use concrete Generation classes in SerialHeap and CMSHeap
stefank
parents: 49733
diff changeset
   101
000c697c81db 8202639: Use concrete Generation classes in SerialHeap and CMSHeap
stefank
parents: 49733
diff changeset
   102
  ConcurrentMarkSweepGeneration* old_gen() const {
000c697c81db 8202639: Use concrete Generation classes in SerialHeap and CMSHeap
stefank
parents: 49733
diff changeset
   103
    assert(_old_gen->kind() == Generation::ConcurrentMarkSweep, "Wrong generation kind");
000c697c81db 8202639: Use concrete Generation classes in SerialHeap and CMSHeap
stefank
parents: 49733
diff changeset
   104
    return static_cast<ConcurrentMarkSweepGeneration*>(_old_gen);
000c697c81db 8202639: Use concrete Generation classes in SerialHeap and CMSHeap
stefank
parents: 49733
diff changeset
   105
  }
000c697c81db 8202639: Use concrete Generation classes in SerialHeap and CMSHeap
stefank
parents: 49733
diff changeset
   106
50034
01a88f825a84 8202641: Replace OOP_SINCE_SAVE_MARKS with templates
stefank
parents: 50033
diff changeset
   107
  // Apply "cur->do_oop" or "older->do_oop" to all the oops in objects
01a88f825a84 8202641: Replace OOP_SINCE_SAVE_MARKS with templates
stefank
parents: 50033
diff changeset
   108
  // allocated since the last call to save_marks in the young generation.
01a88f825a84 8202641: Replace OOP_SINCE_SAVE_MARKS with templates
stefank
parents: 50033
diff changeset
   109
  // The "cur" closure is applied to references in the younger generation
01a88f825a84 8202641: Replace OOP_SINCE_SAVE_MARKS with templates
stefank
parents: 50033
diff changeset
   110
  // at "level", and the "older" closure to older generations.
01a88f825a84 8202641: Replace OOP_SINCE_SAVE_MARKS with templates
stefank
parents: 50033
diff changeset
   111
  template <typename OopClosureType1, typename OopClosureType2>
01a88f825a84 8202641: Replace OOP_SINCE_SAVE_MARKS with templates
stefank
parents: 50033
diff changeset
   112
  void oop_since_save_marks_iterate(OopClosureType1* cur,
01a88f825a84 8202641: Replace OOP_SINCE_SAVE_MARKS with templates
stefank
parents: 50033
diff changeset
   113
                                    OopClosureType2* older);
01a88f825a84 8202641: Replace OOP_SINCE_SAVE_MARKS with templates
stefank
parents: 50033
diff changeset
   114
47622
817f2a7019e4 8179387: Factor out CMS specific code from GenCollectedHeap into its own subclass
rkennke
parents:
diff changeset
   115
private:
817f2a7019e4 8179387: Factor out CMS specific code from GenCollectedHeap into its own subclass
rkennke
parents:
diff changeset
   116
  WorkGang* _workers;
48168
cb5d2d4453d0 8191564: Refactor GC related servicability code into GC specific subclasses
rkennke
parents: 47819
diff changeset
   117
  MemoryPool* _eden_pool;
cb5d2d4453d0 8191564: Refactor GC related servicability code into GC specific subclasses
rkennke
parents: 47819
diff changeset
   118
  MemoryPool* _survivor_pool;
cb5d2d4453d0 8191564: Refactor GC related servicability code into GC specific subclasses
rkennke
parents: 47819
diff changeset
   119
  MemoryPool* _old_pool;
47622
817f2a7019e4 8179387: Factor out CMS specific code from GenCollectedHeap into its own subclass
rkennke
parents:
diff changeset
   120
817f2a7019e4 8179387: Factor out CMS specific code from GenCollectedHeap into its own subclass
rkennke
parents:
diff changeset
   121
  virtual void gc_prologue(bool full);
817f2a7019e4 8179387: Factor out CMS specific code from GenCollectedHeap into its own subclass
rkennke
parents:
diff changeset
   122
  virtual void gc_epilogue(bool full);
817f2a7019e4 8179387: Factor out CMS specific code from GenCollectedHeap into its own subclass
rkennke
parents:
diff changeset
   123
48168
cb5d2d4453d0 8191564: Refactor GC related servicability code into GC specific subclasses
rkennke
parents: 47819
diff changeset
   124
  virtual void initialize_serviceability();
cb5d2d4453d0 8191564: Refactor GC related servicability code into GC specific subclasses
rkennke
parents: 47819
diff changeset
   125
47622
817f2a7019e4 8179387: Factor out CMS specific code from GenCollectedHeap into its own subclass
rkennke
parents:
diff changeset
   126
  // Accessor for memory state verification support
817f2a7019e4 8179387: Factor out CMS specific code from GenCollectedHeap into its own subclass
rkennke
parents:
diff changeset
   127
  NOT_PRODUCT(
817f2a7019e4 8179387: Factor out CMS specific code from GenCollectedHeap into its own subclass
rkennke
parents:
diff changeset
   128
    virtual size_t skip_header_HeapWords() { return CMSCollector::skip_header_HeapWords(); }
817f2a7019e4 8179387: Factor out CMS specific code from GenCollectedHeap into its own subclass
rkennke
parents:
diff changeset
   129
  )
817f2a7019e4 8179387: Factor out CMS specific code from GenCollectedHeap into its own subclass
rkennke
parents:
diff changeset
   130
817f2a7019e4 8179387: Factor out CMS specific code from GenCollectedHeap into its own subclass
rkennke
parents:
diff changeset
   131
  // Returns success or failure.
47657
28b2dbe488f1 8189390: Assert in TestOptionsWithRanges.java
sangheki
parents: 47636
diff changeset
   132
  bool create_cms_collector();
47622
817f2a7019e4 8179387: Factor out CMS specific code from GenCollectedHeap into its own subclass
rkennke
parents:
diff changeset
   133
817f2a7019e4 8179387: Factor out CMS specific code from GenCollectedHeap into its own subclass
rkennke
parents:
diff changeset
   134
  // In support of ExplicitGCInvokesConcurrent functionality
817f2a7019e4 8179387: Factor out CMS specific code from GenCollectedHeap into its own subclass
rkennke
parents:
diff changeset
   135
  bool should_do_concurrent_full_gc(GCCause::Cause cause);
817f2a7019e4 8179387: Factor out CMS specific code from GenCollectedHeap into its own subclass
rkennke
parents:
diff changeset
   136
817f2a7019e4 8179387: Factor out CMS specific code from GenCollectedHeap into its own subclass
rkennke
parents:
diff changeset
   137
  void collect_mostly_concurrent(GCCause::Cause cause);
817f2a7019e4 8179387: Factor out CMS specific code from GenCollectedHeap into its own subclass
rkennke
parents:
diff changeset
   138
};
817f2a7019e4 8179387: Factor out CMS specific code from GenCollectedHeap into its own subclass
rkennke
parents:
diff changeset
   139
817f2a7019e4 8179387: Factor out CMS specific code from GenCollectedHeap into its own subclass
rkennke
parents:
diff changeset
   140
#endif // SHARE_VM_GC_CMS_CMSHEAP_HPP