hotspot/src/share/vm/memory/genCollectedHeap.hpp
author duke
Sat, 01 Dec 2007 00:00:00 +0000
changeset 1 489c9b5090e2
child 386 7f121b1192f2
child 360 21d113ecbf6a
permissions -rw-r--r--
Initial load
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
489c9b5090e2 Initial load
duke
parents:
diff changeset
     2
 * Copyright 2000-2007 Sun Microsystems, Inc.  All Rights Reserved.
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
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    19
 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    20
 * CA 95054 USA or visit www.sun.com if you need additional information or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    21
 * have any questions.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    22
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    23
 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    24
489c9b5090e2 Initial load
duke
parents:
diff changeset
    25
class SubTasksDone;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    26
489c9b5090e2 Initial load
duke
parents:
diff changeset
    27
// A "GenCollectedHeap" is a SharedHeap that uses generational
489c9b5090e2 Initial load
duke
parents:
diff changeset
    28
// collection.  It is represented with a sequence of Generation's.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    29
class GenCollectedHeap : public SharedHeap {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    30
  friend class GenCollectorPolicy;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    31
  friend class Generation;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
  friend class DefNewGeneration;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
  friend class TenuredGeneration;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
  friend class ConcurrentMarkSweepGeneration;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
  friend class CMSCollector;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
  friend class GenMarkSweep;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
  friend class VM_GenCollectForAllocation;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
  friend class VM_GenCollectFull;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
  friend class VM_GenCollectFullConcurrent;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
  friend class VM_GC_HeapInspection;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
  friend class VM_HeapDumper;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
  friend class HeapInspection;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
  friend class GCCauseSetter;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
  friend class VMStructs;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
  enum SomeConstants {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
    max_gens = 10
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
  };
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
  friend class VM_PopulateDumpSharedSpace;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
 protected:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
  // Fields:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
  static GenCollectedHeap* _gch;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
  int _n_gens;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
  Generation* _gens[max_gens];
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
  GenerationSpec** _gen_specs;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
  // The generational collector policy.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
  GenCollectorPolicy* _gen_policy;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
  // If a generation would bail out of an incremental collection,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
  // it sets this flag.  If the flag is set, satisfy_failed_allocation
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
  // will attempt allocating in all generations before doing a full GC.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
  bool _incremental_collection_will_fail;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
  bool _last_incremental_collection_failed;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
  // In support of ExplicitGCInvokesConcurrent functionality
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
  unsigned int _full_collections_completed;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
  // Data structure for claiming the (potentially) parallel tasks in
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
  // (gen-specific) strong roots processing.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
  SubTasksDone* _gen_process_strong_tasks;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
  // In block contents verification, the number of header words to skip
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
  NOT_PRODUCT(static size_t _skip_header_HeapWords;)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
  // GC is not allowed during the dump of the shared classes.  Keep track
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
  // of this in order to provide an reasonable error message when terminating.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
  bool _preloading_shared_classes;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
protected:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
  // Directs each generation up to and including "collectedGen" to recompute
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
  // its desired size.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
  void compute_new_generation_sizes(int collectedGen);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
  // Helper functions for allocation
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
  HeapWord* attempt_allocation(size_t size,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
                               bool   is_tlab,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
                               bool   first_only);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
  // Helper function for two callbacks below.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
  // Considers collection of the first max_level+1 generations.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
  void do_collection(bool   full,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
                     bool   clear_all_soft_refs,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
                     size_t size,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
                     bool   is_tlab,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
                     int    max_level);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
  // Callback from VM_GenCollectForAllocation operation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
  // This function does everything necessary/possible to satisfy an
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
  // allocation request that failed in the youngest generation that should
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
  // have handled it (including collection, expansion, etc.)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
  HeapWord* satisfy_failed_allocation(size_t size, bool is_tlab);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
  // Callback from VM_GenCollectFull operation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
  // Perform a full collection of the first max_level+1 generations.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
  void do_full_collection(bool clear_all_soft_refs, int max_level);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
  // Does the "cause" of GC indicate that
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
  // we absolutely __must__ clear soft refs?
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
  bool must_clear_all_soft_refs();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
  GenCollectedHeap(GenCollectorPolicy *policy);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
  GCStats* gc_stats(int level) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
  // Returns JNI_OK on success
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
  virtual jint initialize();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
  char* allocate(size_t alignment, PermanentGenerationSpec* perm_gen_spec,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
                 size_t* _total_reserved, int* _n_covered_regions,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
                 ReservedSpace* heap_rs);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
  // Does operations required after initialization has been done.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
  void post_initialize();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
  // Initialize ("weak") refs processing support
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
  virtual void ref_processing_init();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
  virtual CollectedHeap::Name kind() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
    return CollectedHeap::GenCollectedHeap;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
  // The generational collector policy.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
  GenCollectorPolicy* gen_policy() const { return _gen_policy; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
  // Adaptive size policy
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
  virtual AdaptiveSizePolicy* size_policy() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
    return gen_policy()->size_policy();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
  size_t capacity() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
  size_t used() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
  // Save the "used_region" for generations level and lower,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
  // and, if perm is true, for perm gen.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
  void save_used_regions(int level, bool perm);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
  size_t max_capacity() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
  HeapWord* mem_allocate(size_t size,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
                         bool   is_large_noref,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
                         bool   is_tlab,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
                         bool*  gc_overhead_limit_was_exceeded);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
  // We may support a shared contiguous allocation area, if the youngest
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
  // generation does.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
  bool supports_inline_contig_alloc() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
  HeapWord** top_addr() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
  HeapWord** end_addr() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
  // Return an estimate of the maximum allocation that could be performed
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
  // without triggering any collection activity.  In a generational
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
  // collector, for example, this is probably the largest allocation that
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
  // could be supported in the youngest generation.  It is "unsafe" because
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
  // no locks are taken; the result should be treated as an approximation,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
  // not a guarantee.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
  size_t unsafe_max_alloc();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
  // Does this heap support heap inspection? (+PrintClassHistogram)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
  virtual bool supports_heap_inspection() const { return true; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
  // Perform a full collection of the heap; intended for use in implementing
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
  // "System.gc". This implies as full a collection as the CollectedHeap
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
  // supports. Caller does not hold the Heap_lock on entry.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
  void collect(GCCause::Cause cause);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
  // This interface assumes that it's being called by the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
  // vm thread. It collects the heap assuming that the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
  // heap lock is already held and that we are executing in
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
  // the context of the vm thread.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
  void collect_as_vm_thread(GCCause::Cause cause);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
  // The same as above but assume that the caller holds the Heap_lock.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
  void collect_locked(GCCause::Cause cause);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
  // Perform a full collection of the first max_level+1 generations.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
  // Mostly used for testing purposes. Caller does not hold the Heap_lock on entry.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
  void collect(GCCause::Cause cause, int max_level);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
  // Returns "TRUE" iff "p" points into the allocated area of the heap.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
  // The methods is_in(), is_in_closed_subset() and is_in_youngest() may
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
  // be expensive to compute in general, so, to prevent
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
  // their inadvertent use in product jvm's, we restrict their use to
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
  // assertion checking or verification only.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
  bool is_in(const void* p) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
  // override
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
  bool is_in_closed_subset(const void* p) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
    if (UseConcMarkSweepGC) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
      return is_in_reserved(p);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
      return is_in(p);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
  // Returns "TRUE" iff "p" points into the youngest generation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   211
  bool is_in_youngest(void* p);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   212
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
  // Iteration functions.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
  void oop_iterate(OopClosure* cl);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
  void oop_iterate(MemRegion mr, OopClosure* cl);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
  void object_iterate(ObjectClosure* cl);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
  void object_iterate_since_last_GC(ObjectClosure* cl);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   218
  Space* space_containing(const void* addr) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   219
489c9b5090e2 Initial load
duke
parents:
diff changeset
   220
  // A CollectedHeap is divided into a dense sequence of "blocks"; that is,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   221
  // each address in the (reserved) heap is a member of exactly
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
  // one block.  The defining characteristic of a block is that it is
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
  // possible to find its size, and thus to progress forward to the next
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
  // block.  (Blocks may be of different sizes.)  Thus, blocks may
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
  // represent Java objects, or they might be free blocks in a
489c9b5090e2 Initial load
duke
parents:
diff changeset
   226
  // free-list-based heap (or subheap), as long as the two kinds are
489c9b5090e2 Initial load
duke
parents:
diff changeset
   227
  // distinguishable and the size of each is determinable.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   228
489c9b5090e2 Initial load
duke
parents:
diff changeset
   229
  // Returns the address of the start of the "block" that contains the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   230
  // address "addr".  We say "blocks" instead of "object" since some heaps
489c9b5090e2 Initial load
duke
parents:
diff changeset
   231
  // may not pack objects densely; a chunk may either be an object or a
489c9b5090e2 Initial load
duke
parents:
diff changeset
   232
  // non-object.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   233
  virtual HeapWord* block_start(const void* addr) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   234
489c9b5090e2 Initial load
duke
parents:
diff changeset
   235
  // Requires "addr" to be the start of a chunk, and returns its size.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   236
  // "addr + size" is required to be the start of a new chunk, or the end
489c9b5090e2 Initial load
duke
parents:
diff changeset
   237
  // of the active area of the heap. Assumes (and verifies in non-product
489c9b5090e2 Initial load
duke
parents:
diff changeset
   238
  // builds) that addr is in the allocated part of the heap and is
489c9b5090e2 Initial load
duke
parents:
diff changeset
   239
  // the start of a chunk.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   240
  virtual size_t block_size(const HeapWord* addr) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   241
489c9b5090e2 Initial load
duke
parents:
diff changeset
   242
  // Requires "addr" to be the start of a block, and returns "TRUE" iff
489c9b5090e2 Initial load
duke
parents:
diff changeset
   243
  // the block is an object. Assumes (and verifies in non-product
489c9b5090e2 Initial load
duke
parents:
diff changeset
   244
  // builds) that addr is in the allocated part of the heap and is
489c9b5090e2 Initial load
duke
parents:
diff changeset
   245
  // the start of a chunk.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   246
  virtual bool block_is_obj(const HeapWord* addr) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   247
489c9b5090e2 Initial load
duke
parents:
diff changeset
   248
  // Section on TLAB's.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   249
  virtual bool supports_tlab_allocation() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   250
  virtual size_t tlab_capacity(Thread* thr) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   251
  virtual size_t unsafe_max_tlab_alloc(Thread* thr) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   252
  virtual HeapWord* allocate_new_tlab(size_t size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   253
489c9b5090e2 Initial load
duke
parents:
diff changeset
   254
  // The "requestor" generation is performing some garbage collection
489c9b5090e2 Initial load
duke
parents:
diff changeset
   255
  // action for which it would be useful to have scratch space.  The
489c9b5090e2 Initial load
duke
parents:
diff changeset
   256
  // requestor promises to allocate no more than "max_alloc_words" in any
489c9b5090e2 Initial load
duke
parents:
diff changeset
   257
  // older generation (via promotion say.)   Any blocks of space that can
489c9b5090e2 Initial load
duke
parents:
diff changeset
   258
  // be provided are returned as a list of ScratchBlocks, sorted by
489c9b5090e2 Initial load
duke
parents:
diff changeset
   259
  // decreasing size.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   260
  ScratchBlock* gather_scratch(Generation* requestor, size_t max_alloc_words);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   261
489c9b5090e2 Initial load
duke
parents:
diff changeset
   262
  size_t large_typearray_limit();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   263
489c9b5090e2 Initial load
duke
parents:
diff changeset
   264
  // Ensure parsability: override
489c9b5090e2 Initial load
duke
parents:
diff changeset
   265
  virtual void ensure_parsability(bool retire_tlabs);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   266
489c9b5090e2 Initial load
duke
parents:
diff changeset
   267
  // Time in ms since the longest time a collector ran in
489c9b5090e2 Initial load
duke
parents:
diff changeset
   268
  // in any generation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   269
  virtual jlong millis_since_last_gc();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   270
489c9b5090e2 Initial load
duke
parents:
diff changeset
   271
  // Total number of full collections completed.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   272
  unsigned int total_full_collections_completed() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   273
    assert(_full_collections_completed <= _total_full_collections,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   274
           "Can't complete more collections than were started");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   275
    return _full_collections_completed;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   276
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   277
489c9b5090e2 Initial load
duke
parents:
diff changeset
   278
  // Update above counter, as appropriate, at the end of a stop-world GC cycle
489c9b5090e2 Initial load
duke
parents:
diff changeset
   279
  unsigned int update_full_collections_completed();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   280
  // Update above counter, as appropriate, at the end of a concurrent GC cycle
489c9b5090e2 Initial load
duke
parents:
diff changeset
   281
  unsigned int update_full_collections_completed(unsigned int count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   282
489c9b5090e2 Initial load
duke
parents:
diff changeset
   283
  // Update "time of last gc" for all constituent generations
489c9b5090e2 Initial load
duke
parents:
diff changeset
   284
  // to "now".
489c9b5090e2 Initial load
duke
parents:
diff changeset
   285
  void update_time_of_last_gc(jlong now) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   286
    for (int i = 0; i < _n_gens; i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   287
      _gens[i]->update_time_of_last_gc(now);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   288
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   289
    perm_gen()->update_time_of_last_gc(now);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   290
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   291
489c9b5090e2 Initial load
duke
parents:
diff changeset
   292
  // Update the gc statistics for each generation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   293
  // "level" is the level of the lastest collection
489c9b5090e2 Initial load
duke
parents:
diff changeset
   294
  void update_gc_stats(int current_level, bool full) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   295
    for (int i = 0; i < _n_gens; i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   296
      _gens[i]->update_gc_stats(current_level, full);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   297
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   298
    perm_gen()->update_gc_stats(current_level, full);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   299
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   300
489c9b5090e2 Initial load
duke
parents:
diff changeset
   301
  // Override.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   302
  bool no_gc_in_progress() { return !is_gc_active(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   303
489c9b5090e2 Initial load
duke
parents:
diff changeset
   304
  // Override.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   305
  void prepare_for_verify();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   306
489c9b5090e2 Initial load
duke
parents:
diff changeset
   307
  // Override.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   308
  void verify(bool allow_dirty, bool silent);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   309
489c9b5090e2 Initial load
duke
parents:
diff changeset
   310
  // Override.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   311
  void print() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   312
  void print_on(outputStream* st) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   313
  virtual void print_gc_threads_on(outputStream* st) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   314
  virtual void gc_threads_do(ThreadClosure* tc) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   315
  virtual void print_tracing_info() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   316
489c9b5090e2 Initial load
duke
parents:
diff changeset
   317
  // PrintGC, PrintGCDetails support
489c9b5090e2 Initial load
duke
parents:
diff changeset
   318
  void print_heap_change(size_t prev_used) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   319
  void print_perm_heap_change(size_t perm_prev_used) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   320
489c9b5090e2 Initial load
duke
parents:
diff changeset
   321
  // The functions below are helper functions that a subclass of
489c9b5090e2 Initial load
duke
parents:
diff changeset
   322
  // "CollectedHeap" can use in the implementation of its virtual
489c9b5090e2 Initial load
duke
parents:
diff changeset
   323
  // functions.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   324
489c9b5090e2 Initial load
duke
parents:
diff changeset
   325
  class GenClosure : public StackObj {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   326
   public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   327
    virtual void do_generation(Generation* gen) = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   328
  };
489c9b5090e2 Initial load
duke
parents:
diff changeset
   329
489c9b5090e2 Initial load
duke
parents:
diff changeset
   330
  // Apply "cl.do_generation" to all generations in the heap (not including
489c9b5090e2 Initial load
duke
parents:
diff changeset
   331
  // the permanent generation).  If "old_to_young" determines the order.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   332
  void generation_iterate(GenClosure* cl, bool old_to_young);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   333
489c9b5090e2 Initial load
duke
parents:
diff changeset
   334
  void space_iterate(SpaceClosure* cl);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   335
489c9b5090e2 Initial load
duke
parents:
diff changeset
   336
  // Return "true" if all generations (but perm) have reached the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   337
  // maximal committed limit that they can reach, without a garbage
489c9b5090e2 Initial load
duke
parents:
diff changeset
   338
  // collection.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   339
  virtual bool is_maximal_no_gc() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   340
489c9b5090e2 Initial load
duke
parents:
diff changeset
   341
  // Return the generation before "gen", or else NULL.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   342
  Generation* prev_gen(Generation* gen) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   343
    int l = gen->level();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   344
    if (l == 0) return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   345
    else return _gens[l-1];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   346
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   347
489c9b5090e2 Initial load
duke
parents:
diff changeset
   348
  // Return the generation after "gen", or else NULL.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   349
  Generation* next_gen(Generation* gen) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   350
    int l = gen->level() + 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   351
    if (l == _n_gens) return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   352
    else return _gens[l];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   353
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   354
489c9b5090e2 Initial load
duke
parents:
diff changeset
   355
  Generation* get_gen(int i) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   356
    if (i >= 0 && i < _n_gens)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   357
      return _gens[i];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   358
    else
489c9b5090e2 Initial load
duke
parents:
diff changeset
   359
      return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   360
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   361
489c9b5090e2 Initial load
duke
parents:
diff changeset
   362
  int n_gens() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   363
    assert(_n_gens == gen_policy()->number_of_generations(), "Sanity");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   364
    return _n_gens;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   365
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   366
489c9b5090e2 Initial load
duke
parents:
diff changeset
   367
  // Convenience function to be used in situations where the heap type can be
489c9b5090e2 Initial load
duke
parents:
diff changeset
   368
  // asserted to be this type.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   369
  static GenCollectedHeap* heap();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   370
489c9b5090e2 Initial load
duke
parents:
diff changeset
   371
  void set_par_threads(int t);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   372
489c9b5090e2 Initial load
duke
parents:
diff changeset
   373
489c9b5090e2 Initial load
duke
parents:
diff changeset
   374
  // Invoke the "do_oop" method of one of the closures "not_older_gens"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   375
  // or "older_gens" on root locations for the generation at
489c9b5090e2 Initial load
duke
parents:
diff changeset
   376
  // "level".  (The "older_gens" closure is used for scanning references
489c9b5090e2 Initial load
duke
parents:
diff changeset
   377
  // from older generations; "not_older_gens" is used everywhere else.)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   378
  // If "younger_gens_as_roots" is false, younger generations are
489c9b5090e2 Initial load
duke
parents:
diff changeset
   379
  // not scanned as roots; in this case, the caller must be arranging to
489c9b5090e2 Initial load
duke
parents:
diff changeset
   380
  // scan the younger generations itself.  (For example, a generation might
489c9b5090e2 Initial load
duke
parents:
diff changeset
   381
  // explicitly mark reachable objects in younger generations, to avoid
489c9b5090e2 Initial load
duke
parents:
diff changeset
   382
  // excess storage retention.)  If "collecting_perm_gen" is false, then
489c9b5090e2 Initial load
duke
parents:
diff changeset
   383
  // roots that may only contain references to permGen objects are not
489c9b5090e2 Initial load
duke
parents:
diff changeset
   384
  // scanned. The "so" argument determines which of the roots
489c9b5090e2 Initial load
duke
parents:
diff changeset
   385
  // the closure is applied to:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   386
  // "SO_None" does none;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   387
  // "SO_AllClasses" applies the closure to all entries in the SystemDictionary;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   388
  // "SO_SystemClasses" to all the "system" classes and loaders;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   389
  // "SO_Symbols_and_Strings" applies the closure to all entries in
489c9b5090e2 Initial load
duke
parents:
diff changeset
   390
  // SymbolsTable and StringTable.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   391
  void gen_process_strong_roots(int level, bool younger_gens_as_roots,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   392
                                bool collecting_perm_gen,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   393
                                SharedHeap::ScanningOption so,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   394
                                OopsInGenClosure* older_gens,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   395
                                OopsInGenClosure* not_older_gens);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   396
489c9b5090e2 Initial load
duke
parents:
diff changeset
   397
  // Apply "blk" to all the weak roots of the system.  These include
489c9b5090e2 Initial load
duke
parents:
diff changeset
   398
  // JNI weak roots, the code cache, system dictionary, symbol table,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   399
  // string table, and referents of reachable weak refs.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   400
  void gen_process_weak_roots(OopClosure* root_closure,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   401
                              OopClosure* non_root_closure);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   402
489c9b5090e2 Initial load
duke
parents:
diff changeset
   403
  // Set the saved marks of generations, if that makes sense.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   404
  // In particular, if any generation might iterate over the oops
489c9b5090e2 Initial load
duke
parents:
diff changeset
   405
  // in other generations, it should call this method.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   406
  void save_marks();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   407
489c9b5090e2 Initial load
duke
parents:
diff changeset
   408
  // Apply "cur->do_oop" or "older->do_oop" to all the oops in objects
489c9b5090e2 Initial load
duke
parents:
diff changeset
   409
  // allocated since the last call to save_marks in generations at or above
489c9b5090e2 Initial load
duke
parents:
diff changeset
   410
  // "level" (including the permanent generation.)  The "cur" closure is
489c9b5090e2 Initial load
duke
parents:
diff changeset
   411
  // applied to references in the generation at "level", and the "older"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   412
  // closure to older (and permanent) generations.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   413
#define GCH_SINCE_SAVE_MARKS_ITERATE_DECL(OopClosureType, nv_suffix)    \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   414
  void oop_since_save_marks_iterate(int level,                          \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   415
                                    OopClosureType* cur,                \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   416
                                    OopClosureType* older);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   417
489c9b5090e2 Initial load
duke
parents:
diff changeset
   418
  ALL_SINCE_SAVE_MARKS_CLOSURES(GCH_SINCE_SAVE_MARKS_ITERATE_DECL)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   419
489c9b5090e2 Initial load
duke
parents:
diff changeset
   420
#undef GCH_SINCE_SAVE_MARKS_ITERATE_DECL
489c9b5090e2 Initial load
duke
parents:
diff changeset
   421
489c9b5090e2 Initial load
duke
parents:
diff changeset
   422
  // Returns "true" iff no allocations have occurred in any generation at
489c9b5090e2 Initial load
duke
parents:
diff changeset
   423
  // "level" or above (including the permanent generation) since the last
489c9b5090e2 Initial load
duke
parents:
diff changeset
   424
  // call to "save_marks".
489c9b5090e2 Initial load
duke
parents:
diff changeset
   425
  bool no_allocs_since_save_marks(int level);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   426
489c9b5090e2 Initial load
duke
parents:
diff changeset
   427
  // If a generation bails out of an incremental collection,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   428
  // it sets this flag.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   429
  bool incremental_collection_will_fail() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   430
    return _incremental_collection_will_fail;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   431
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   432
  void set_incremental_collection_will_fail() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   433
    _incremental_collection_will_fail = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   434
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   435
  void clear_incremental_collection_will_fail() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   436
    _incremental_collection_will_fail = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   437
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   438
489c9b5090e2 Initial load
duke
parents:
diff changeset
   439
  bool last_incremental_collection_failed() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   440
    return _last_incremental_collection_failed;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   441
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   442
  void set_last_incremental_collection_failed() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   443
    _last_incremental_collection_failed = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   444
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   445
  void clear_last_incremental_collection_failed() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   446
    _last_incremental_collection_failed = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   447
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   448
489c9b5090e2 Initial load
duke
parents:
diff changeset
   449
  // Promotion of obj into gen failed.  Try to promote obj to higher non-perm
489c9b5090e2 Initial load
duke
parents:
diff changeset
   450
  // gens in ascending order; return the new location of obj if successful.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   451
  // Otherwise, try expand-and-allocate for obj in each generation starting at
489c9b5090e2 Initial load
duke
parents:
diff changeset
   452
  // gen; return the new location of obj if successful.  Otherwise, return NULL.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   453
  oop handle_failed_promotion(Generation* gen,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   454
                              oop obj,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   455
                              size_t obj_size,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   456
                              oop* ref);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   457
489c9b5090e2 Initial load
duke
parents:
diff changeset
   458
private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   459
  // Accessor for memory state verification support
489c9b5090e2 Initial load
duke
parents:
diff changeset
   460
  NOT_PRODUCT(
489c9b5090e2 Initial load
duke
parents:
diff changeset
   461
    static size_t skip_header_HeapWords() { return _skip_header_HeapWords; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   462
  )
489c9b5090e2 Initial load
duke
parents:
diff changeset
   463
489c9b5090e2 Initial load
duke
parents:
diff changeset
   464
  // Override
489c9b5090e2 Initial load
duke
parents:
diff changeset
   465
  void check_for_non_bad_heap_word_value(HeapWord* addr,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   466
    size_t size) PRODUCT_RETURN;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   467
489c9b5090e2 Initial load
duke
parents:
diff changeset
   468
  // For use by mark-sweep.  As implemented, mark-sweep-compact is global
489c9b5090e2 Initial load
duke
parents:
diff changeset
   469
  // in an essential way: compaction is performed across generations, by
489c9b5090e2 Initial load
duke
parents:
diff changeset
   470
  // iterating over spaces.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   471
  void prepare_for_compaction();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   472
489c9b5090e2 Initial load
duke
parents:
diff changeset
   473
  // Perform a full collection of the first max_level+1 generations.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   474
  // This is the low level interface used by the public versions of
489c9b5090e2 Initial load
duke
parents:
diff changeset
   475
  // collect() and collect_locked(). Caller holds the Heap_lock on entry.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   476
  void collect_locked(GCCause::Cause cause, int max_level);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   477
489c9b5090e2 Initial load
duke
parents:
diff changeset
   478
  // Returns success or failure.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   479
  bool create_cms_collector();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   480
489c9b5090e2 Initial load
duke
parents:
diff changeset
   481
  // In support of ExplicitGCInvokesConcurrent functionality
489c9b5090e2 Initial load
duke
parents:
diff changeset
   482
  bool should_do_concurrent_full_gc(GCCause::Cause cause);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   483
  void collect_mostly_concurrent(GCCause::Cause cause);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   484
489c9b5090e2 Initial load
duke
parents:
diff changeset
   485
protected:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   486
  virtual void gc_prologue(bool full);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   487
  virtual void gc_epilogue(bool full);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   488
489c9b5090e2 Initial load
duke
parents:
diff changeset
   489
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   490
  virtual void preload_and_dump(TRAPS) KERNEL_RETURN;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   491
};