hotspot/src/share/vm/gc_interface/collectedHeap.hpp
author duke
Sat, 01 Dec 2007 00:00:00 +0000
changeset 1 489c9b5090e2
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 2001-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
// A "CollectedHeap" is an implementation of a java heap for HotSpot.  This
489c9b5090e2 Initial load
duke
parents:
diff changeset
    26
// is an abstract class: there may be many different kinds of heaps.  This
489c9b5090e2 Initial load
duke
parents:
diff changeset
    27
// class defines the functions that a heap must implement, and contains
489c9b5090e2 Initial load
duke
parents:
diff changeset
    28
// infrastructure common to all heaps.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    29
489c9b5090e2 Initial load
duke
parents:
diff changeset
    30
class BarrierSet;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    31
class ThreadClosure;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
class AdaptiveSizePolicy;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
class Thread;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
// CollectedHeap
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
//   SharedHeap
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
//     GenCollectedHeap
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
//     G1CollectedHeap
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
//   ParallelScavengeHeap
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
class CollectedHeap : public CHeapObj {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
  friend class VMStructs;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
  friend class IsGCActiveMark; // Block structured external access to _is_gc_active
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
  static int       _fire_out_of_memory_count;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
 protected:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
  MemRegion _reserved;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
  BarrierSet* _barrier_set;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
  bool _is_gc_active;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
  unsigned int _total_collections;          // ... started
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
  unsigned int _total_full_collections;     // ... started
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
  size_t _max_heap_capacity;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
  NOT_PRODUCT(volatile size_t _promotion_failure_alot_count;)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
  NOT_PRODUCT(volatile size_t _promotion_failure_alot_gc_number;)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
  // Reason for current garbage collection.  Should be set to
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
  // a value reflecting no collection between collections.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
  GCCause::Cause _gc_cause;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
  GCCause::Cause _gc_lastcause;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
  PerfStringVariable* _perf_gc_cause;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
  PerfStringVariable* _perf_gc_lastcause;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
  // Constructor
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
  CollectedHeap();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
  // Create a new tlab
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
  virtual HeapWord* allocate_new_tlab(size_t size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
  // Fix up tlabs to make the heap well-formed again,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
  // optionally retiring the tlabs.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
  virtual void fill_all_tlabs(bool retire);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
  // Accumulate statistics on all tlabs.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
  virtual void accumulate_statistics_all_tlabs();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
  // Reinitialize tlabs before resuming mutators.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
  virtual void resize_all_tlabs();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
  debug_only(static void check_for_valid_allocation_state();)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
 protected:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
  // Allocate from the current thread's TLAB, with broken-out slow path.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
  inline static HeapWord* allocate_from_tlab(Thread* thread, size_t size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
  static HeapWord* allocate_from_tlab_slow(Thread* thread, size_t size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
  // Allocate an uninitialized block of the given size, or returns NULL if
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
  // this is impossible.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
  inline static HeapWord* common_mem_allocate_noinit(size_t size, bool is_noref, TRAPS);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
  // Like allocate_init, but the block returned by a successful allocation
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
  // is guaranteed initialized to zeros.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
  inline static HeapWord* common_mem_allocate_init(size_t size, bool is_noref, TRAPS);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
  // Same as common_mem version, except memory is allocated in the permanent area
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
  // If there is no permanent area, revert to common_mem_allocate_noinit
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
  inline static HeapWord* common_permanent_mem_allocate_noinit(size_t size, TRAPS);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
  // Same as common_mem version, except memory is allocated in the permanent area
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
  // If there is no permanent area, revert to common_mem_allocate_init
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
  inline static HeapWord* common_permanent_mem_allocate_init(size_t size, TRAPS);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
  // Helper functions for (VM) allocation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
  inline static void post_allocation_setup_common(KlassHandle klass,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
                                                  HeapWord* obj, size_t size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
  inline static void post_allocation_setup_no_klass_install(KlassHandle klass,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
                                                            HeapWord* objPtr,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
                                                            size_t size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
  inline static void post_allocation_setup_obj(KlassHandle klass,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
                                               HeapWord* obj, size_t size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
  inline static void post_allocation_setup_array(KlassHandle klass,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
                                                 HeapWord* obj, size_t size,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
                                                 int length);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
  // Clears an allocated object.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
  inline static void init_obj(HeapWord* obj, size_t size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
  // Verification functions
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
  virtual void check_for_bad_heap_word_value(HeapWord* addr, size_t size)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
    PRODUCT_RETURN;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
  virtual void check_for_non_bad_heap_word_value(HeapWord* addr, size_t size)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
    PRODUCT_RETURN;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
  enum Name {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
    Abstract,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
    SharedHeap,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
    GenCollectedHeap,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
    ParallelScavengeHeap,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
    G1CollectedHeap
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
  };
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
  virtual CollectedHeap::Name kind() const { return CollectedHeap::Abstract; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
  /**
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
   * Returns JNI error code JNI_ENOMEM if memory could not be allocated,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
   * and JNI_OK on success.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
   */
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
  virtual jint initialize() = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
  // In many heaps, there will be a need to perform some initialization activities
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
  // after the Universe is fully formed, but before general heap allocation is allowed.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
  // This is the correct place to place such initialization methods.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
  virtual void post_initialize() = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
  MemRegion reserved_region() const { return _reserved; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
  // Return the number of bytes currently reserved, committed, and used,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
  // respectively, for holding objects.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
  size_t reserved_obj_bytes() const { return _reserved.byte_size(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
  // Future cleanup here. The following functions should specify bytes or
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
  // heapwords as part of their signature.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
  virtual size_t capacity() const = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
  virtual size_t used() const = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
  // Return "true" if the part of the heap that allocates Java
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
  // objects has reached the maximal committed limit that it can
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
  // reach, without a garbage collection.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
  virtual bool is_maximal_no_gc() const = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
  virtual size_t permanent_capacity() const = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
  virtual size_t permanent_used() const = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
  // Support for java.lang.Runtime.maxMemory():  return the maximum amount of
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
  // memory that the vm could make available for storing 'normal' java objects.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
  // This is based on the reserved address space, but should not include space
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
  // that the vm uses internally for bookkeeping or temporary storage (e.g.,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
  // perm gen space or, in the case of the young gen, one of the survivor
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
  // spaces).
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
  virtual size_t max_capacity() const = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
  // Returns "TRUE" if "p" points into the reserved area of the heap.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
  bool is_in_reserved(const void* p) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
    return _reserved.contains(p);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
  bool is_in_reserved_or_null(const void* p) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
    return p == NULL || is_in_reserved(p);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
  // Returns "TRUE" if "p" points to the head of an allocated object in the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
  // heap. Since this method can be expensive in general, we restrict its
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
  // use to assertion checking only.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
  virtual bool is_in(const void* p) const = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
  bool is_in_or_null(const void* p) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
    return p == NULL || is_in(p);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
  // Let's define some terms: a "closed" subset of a heap is one that
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
  // 1) contains all currently-allocated objects, and
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
  // 2) is closed under reference: no object in the closed subset
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
  //    references one outside the closed subset.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
  // Membership in a heap's closed subset is useful for assertions.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
  // Clearly, the entire heap is a closed subset, so the default
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
  // implementation is to use "is_in_reserved".  But this may not be too
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
  // liberal to perform useful checking.  Also, the "is_in" predicate
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
  // defines a closed subset, but may be too expensive, since "is_in"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
  // verifies that its argument points to an object head.  The
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
  // "closed_subset" method allows a heap to define an intermediate
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
  // predicate, allowing more precise checking than "is_in_reserved" at
489c9b5090e2 Initial load
duke
parents:
diff changeset
   211
  // lower cost than "is_in."
489c9b5090e2 Initial load
duke
parents:
diff changeset
   212
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
  // One important case is a heap composed of disjoint contiguous spaces,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
  // such as the Garbage-First collector.  Such heaps have a convenient
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
  // closed subset consisting of the allocated portions of those
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
  // contiguous spaces.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
489c9b5090e2 Initial load
duke
parents:
diff changeset
   218
  // Return "TRUE" iff the given pointer points into the heap's defined
489c9b5090e2 Initial load
duke
parents:
diff changeset
   219
  // closed subset (which defaults to the entire heap).
489c9b5090e2 Initial load
duke
parents:
diff changeset
   220
  virtual bool is_in_closed_subset(const void* p) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   221
    return is_in_reserved(p);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
  bool is_in_closed_subset_or_null(const void* p) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
    return p == NULL || is_in_closed_subset(p);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   226
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   227
489c9b5090e2 Initial load
duke
parents:
diff changeset
   228
  // Returns "TRUE" if "p" is allocated as "permanent" data.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   229
  // If the heap does not use "permanent" data, returns the same
489c9b5090e2 Initial load
duke
parents:
diff changeset
   230
  // value is_in_reserved() would return.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   231
  // NOTE: this actually returns true if "p" is in reserved space
489c9b5090e2 Initial load
duke
parents:
diff changeset
   232
  // for the space not that it is actually allocated (i.e. in committed
489c9b5090e2 Initial load
duke
parents:
diff changeset
   233
  // space). If you need the more conservative answer use is_permanent().
489c9b5090e2 Initial load
duke
parents:
diff changeset
   234
  virtual bool is_in_permanent(const void *p) const = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   235
489c9b5090e2 Initial load
duke
parents:
diff changeset
   236
  // Returns "TRUE" if "p" is in the committed area of  "permanent" data.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   237
  // If the heap does not use "permanent" data, returns the same
489c9b5090e2 Initial load
duke
parents:
diff changeset
   238
  // value is_in() would return.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   239
  virtual bool is_permanent(const void *p) const = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   240
489c9b5090e2 Initial load
duke
parents:
diff changeset
   241
  bool is_in_permanent_or_null(const void *p) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   242
    return p == NULL || is_in_permanent(p);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   243
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   244
489c9b5090e2 Initial load
duke
parents:
diff changeset
   245
  // Returns "TRUE" if "p" is a method oop in the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   246
  // current heap, with high probability. This predicate
489c9b5090e2 Initial load
duke
parents:
diff changeset
   247
  // is not stable, in general.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   248
  bool is_valid_method(oop p) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   249
489c9b5090e2 Initial load
duke
parents:
diff changeset
   250
  void set_gc_cause(GCCause::Cause v) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   251
     if (UsePerfData) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   252
       _gc_lastcause = _gc_cause;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   253
       _perf_gc_lastcause->set_value(GCCause::to_string(_gc_lastcause));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   254
       _perf_gc_cause->set_value(GCCause::to_string(v));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   255
     }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   256
    _gc_cause = v;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   257
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   258
  GCCause::Cause gc_cause() { return _gc_cause; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   259
489c9b5090e2 Initial load
duke
parents:
diff changeset
   260
  // Preload classes into the shared portion of the heap, and then dump
489c9b5090e2 Initial load
duke
parents:
diff changeset
   261
  // that data to a file so that it can be loaded directly by another
489c9b5090e2 Initial load
duke
parents:
diff changeset
   262
  // VM (then terminate).
489c9b5090e2 Initial load
duke
parents:
diff changeset
   263
  virtual void preload_and_dump(TRAPS) { ShouldNotReachHere(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   264
489c9b5090e2 Initial load
duke
parents:
diff changeset
   265
  // General obj/array allocation facilities.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   266
  inline static oop obj_allocate(KlassHandle klass, int size, TRAPS);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   267
  inline static oop array_allocate(KlassHandle klass, int size, int length, TRAPS);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   268
  inline static oop large_typearray_allocate(KlassHandle klass, int size, int length, TRAPS);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   269
489c9b5090e2 Initial load
duke
parents:
diff changeset
   270
  // Special obj/array allocation facilities.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   271
  // Some heaps may want to manage "permanent" data uniquely. These default
489c9b5090e2 Initial load
duke
parents:
diff changeset
   272
  // to the general routines if the heap does not support such handling.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   273
  inline static oop permanent_obj_allocate(KlassHandle klass, int size, TRAPS);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   274
  // permanent_obj_allocate_no_klass_install() does not do the installation of
489c9b5090e2 Initial load
duke
parents:
diff changeset
   275
  // the klass pointer in the newly created object (as permanent_obj_allocate()
489c9b5090e2 Initial load
duke
parents:
diff changeset
   276
  // above does).  This allows for a delay in the installation of the klass
489c9b5090e2 Initial load
duke
parents:
diff changeset
   277
  // pointer that is needed during the create of klassKlass's.  The
489c9b5090e2 Initial load
duke
parents:
diff changeset
   278
  // method post_allocation_install_obj_klass() is used to install the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   279
  // klass pointer.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   280
  inline static oop permanent_obj_allocate_no_klass_install(KlassHandle klass,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   281
                                                            int size,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   282
                                                            TRAPS);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   283
  inline static void post_allocation_install_obj_klass(KlassHandle klass,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   284
                                                       oop obj,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   285
                                                       int size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   286
  inline static oop permanent_array_allocate(KlassHandle klass, int size, int length, TRAPS);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   287
489c9b5090e2 Initial load
duke
parents:
diff changeset
   288
  // Raw memory allocation facilities
489c9b5090e2 Initial load
duke
parents:
diff changeset
   289
  // The obj and array allocate methods are covers for these methods.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   290
  // The permanent allocation method should default to mem_allocate if
489c9b5090e2 Initial load
duke
parents:
diff changeset
   291
  // permanent memory isn't supported.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   292
  virtual HeapWord* mem_allocate(size_t size,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   293
                                 bool is_noref,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   294
                                 bool is_tlab,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   295
                                 bool* gc_overhead_limit_was_exceeded) = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   296
  virtual HeapWord* permanent_mem_allocate(size_t size) = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   297
489c9b5090e2 Initial load
duke
parents:
diff changeset
   298
  // The boundary between a "large" and "small" array of primitives, in words.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   299
  virtual size_t large_typearray_limit() = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   300
489c9b5090e2 Initial load
duke
parents:
diff changeset
   301
  // Some heaps may offer a contiguous region for shared non-blocking
489c9b5090e2 Initial load
duke
parents:
diff changeset
   302
  // allocation, via inlined code (by exporting the address of the top and
489c9b5090e2 Initial load
duke
parents:
diff changeset
   303
  // end fields defining the extent of the contiguous allocation region.)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   304
489c9b5090e2 Initial load
duke
parents:
diff changeset
   305
  // This function returns "true" iff the heap supports this kind of
489c9b5090e2 Initial load
duke
parents:
diff changeset
   306
  // allocation.  (Default is "no".)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   307
  virtual bool supports_inline_contig_alloc() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   308
    return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   309
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   310
  // These functions return the addresses of the fields that define the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   311
  // boundaries of the contiguous allocation area.  (These fields should be
489c9b5090e2 Initial load
duke
parents:
diff changeset
   312
  // physically near to one another.)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   313
  virtual HeapWord** top_addr() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   314
    guarantee(false, "inline contiguous allocation not supported");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   315
    return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   316
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   317
  virtual HeapWord** end_addr() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   318
    guarantee(false, "inline contiguous allocation not supported");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   319
    return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   320
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   321
489c9b5090e2 Initial load
duke
parents:
diff changeset
   322
  // Some heaps may be in an unparseable state at certain times between
489c9b5090e2 Initial load
duke
parents:
diff changeset
   323
  // collections. This may be necessary for efficient implementation of
489c9b5090e2 Initial load
duke
parents:
diff changeset
   324
  // certain allocation-related activities. Calling this function before
489c9b5090e2 Initial load
duke
parents:
diff changeset
   325
  // attempting to parse a heap ensures that the heap is in a parsable
489c9b5090e2 Initial load
duke
parents:
diff changeset
   326
  // state (provided other concurrent activity does not introduce
489c9b5090e2 Initial load
duke
parents:
diff changeset
   327
  // unparsability). It is normally expected, therefore, that this
489c9b5090e2 Initial load
duke
parents:
diff changeset
   328
  // method is invoked with the world stopped.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   329
  // NOTE: if you override this method, make sure you call
489c9b5090e2 Initial load
duke
parents:
diff changeset
   330
  // super::ensure_parsability so that the non-generational
489c9b5090e2 Initial load
duke
parents:
diff changeset
   331
  // part of the work gets done. See implementation of
489c9b5090e2 Initial load
duke
parents:
diff changeset
   332
  // CollectedHeap::ensure_parsability and, for instance,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   333
  // that of GenCollectedHeap::ensure_parsability().
489c9b5090e2 Initial load
duke
parents:
diff changeset
   334
  // The argument "retire_tlabs" controls whether existing TLABs
489c9b5090e2 Initial load
duke
parents:
diff changeset
   335
  // are merely filled or also retired, thus preventing further
489c9b5090e2 Initial load
duke
parents:
diff changeset
   336
  // allocation from them and necessitating allocation of new TLABs.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   337
  virtual void ensure_parsability(bool retire_tlabs);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   338
489c9b5090e2 Initial load
duke
parents:
diff changeset
   339
  // Return an estimate of the maximum allocation that could be performed
489c9b5090e2 Initial load
duke
parents:
diff changeset
   340
  // without triggering any collection or expansion activity.  In a
489c9b5090e2 Initial load
duke
parents:
diff changeset
   341
  // generational collector, for example, this is probably the largest
489c9b5090e2 Initial load
duke
parents:
diff changeset
   342
  // allocation that could be supported (without expansion) in the youngest
489c9b5090e2 Initial load
duke
parents:
diff changeset
   343
  // generation.  It is "unsafe" because no locks are taken; the result
489c9b5090e2 Initial load
duke
parents:
diff changeset
   344
  // should be treated as an approximation, not a guarantee, for use in
489c9b5090e2 Initial load
duke
parents:
diff changeset
   345
  // heuristic resizing decisions.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   346
  virtual size_t unsafe_max_alloc() = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   347
489c9b5090e2 Initial load
duke
parents:
diff changeset
   348
  // Section on thread-local allocation buffers (TLABs)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   349
  // If the heap supports thread-local allocation buffers, it should override
489c9b5090e2 Initial load
duke
parents:
diff changeset
   350
  // the following methods:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   351
  // Returns "true" iff the heap supports thread-local allocation buffers.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   352
  // The default is "no".
489c9b5090e2 Initial load
duke
parents:
diff changeset
   353
  virtual bool supports_tlab_allocation() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   354
    return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   355
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   356
  // The amount of space available for thread-local allocation buffers.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   357
  virtual size_t tlab_capacity(Thread *thr) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   358
    guarantee(false, "thread-local allocation buffers not supported");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   359
    return 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   360
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   361
  // An estimate of the maximum allocation that could be performed
489c9b5090e2 Initial load
duke
parents:
diff changeset
   362
  // for thread-local allocation buffers without triggering any
489c9b5090e2 Initial load
duke
parents:
diff changeset
   363
  // collection or expansion activity.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   364
  virtual size_t unsafe_max_tlab_alloc(Thread *thr) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   365
    guarantee(false, "thread-local allocation buffers not supported");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   366
    return 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   367
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   368
  // Can a compiler initialize a new object without store barriers?
489c9b5090e2 Initial load
duke
parents:
diff changeset
   369
  // This permission only extends from the creation of a new object
489c9b5090e2 Initial load
duke
parents:
diff changeset
   370
  // via a TLAB up to the first subsequent safepoint.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   371
  virtual bool can_elide_tlab_store_barriers() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   372
    guarantee(kind() < CollectedHeap::G1CollectedHeap, "else change or refactor this");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   373
    return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   374
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   375
  // If a compiler is eliding store barriers for TLAB-allocated objects,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   376
  // there is probably a corresponding slow path which can produce
489c9b5090e2 Initial load
duke
parents:
diff changeset
   377
  // an object allocated anywhere.  The compiler's runtime support
489c9b5090e2 Initial load
duke
parents:
diff changeset
   378
  // promises to call this function on such a slow-path-allocated
489c9b5090e2 Initial load
duke
parents:
diff changeset
   379
  // object before performing initializations that have elided
489c9b5090e2 Initial load
duke
parents:
diff changeset
   380
  // store barriers.  Returns new_obj, or maybe a safer copy thereof.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   381
  virtual oop new_store_barrier(oop new_obj);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   382
489c9b5090e2 Initial load
duke
parents:
diff changeset
   383
  // Can a compiler elide a store barrier when it writes
489c9b5090e2 Initial load
duke
parents:
diff changeset
   384
  // a permanent oop into the heap?  Applies when the compiler
489c9b5090e2 Initial load
duke
parents:
diff changeset
   385
  // is storing x to the heap, where x->is_perm() is true.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   386
  virtual bool can_elide_permanent_oop_store_barriers() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   387
489c9b5090e2 Initial load
duke
parents:
diff changeset
   388
  // Does this heap support heap inspection (+PrintClassHistogram?)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   389
  virtual bool supports_heap_inspection() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   390
    return false;   // Until RFE 5023697 is implemented
489c9b5090e2 Initial load
duke
parents:
diff changeset
   391
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   392
489c9b5090e2 Initial load
duke
parents:
diff changeset
   393
  // Perform a collection of the heap; intended for use in implementing
489c9b5090e2 Initial load
duke
parents:
diff changeset
   394
  // "System.gc".  This probably implies as full a collection as the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   395
  // "CollectedHeap" supports.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   396
  virtual void collect(GCCause::Cause cause) = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   397
489c9b5090e2 Initial load
duke
parents:
diff changeset
   398
  // This interface assumes that it's being called by the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   399
  // vm thread. It collects the heap assuming that the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   400
  // heap lock is already held and that we are executing in
489c9b5090e2 Initial load
duke
parents:
diff changeset
   401
  // the context of the vm thread.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   402
  virtual void collect_as_vm_thread(GCCause::Cause cause) = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   403
489c9b5090e2 Initial load
duke
parents:
diff changeset
   404
  // Returns the barrier set for this heap
489c9b5090e2 Initial load
duke
parents:
diff changeset
   405
  BarrierSet* barrier_set() { return _barrier_set; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   406
489c9b5090e2 Initial load
duke
parents:
diff changeset
   407
  // Returns "true" iff there is a stop-world GC in progress.  (I assume
489c9b5090e2 Initial load
duke
parents:
diff changeset
   408
  // that it should answer "false" for the concurrent part of a concurrent
489c9b5090e2 Initial load
duke
parents:
diff changeset
   409
  // collector -- dld).
489c9b5090e2 Initial load
duke
parents:
diff changeset
   410
  bool is_gc_active() const { return _is_gc_active; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   411
489c9b5090e2 Initial load
duke
parents:
diff changeset
   412
  // Total number of GC collections (started)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   413
  unsigned int total_collections() const { return _total_collections; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   414
  unsigned int total_full_collections() const { return _total_full_collections;}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   415
489c9b5090e2 Initial load
duke
parents:
diff changeset
   416
  // Increment total number of GC collections (started)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   417
  // Should be protected but used by PSMarkSweep - cleanup for 1.4.2
489c9b5090e2 Initial load
duke
parents:
diff changeset
   418
  void increment_total_collections(bool full = false) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   419
    _total_collections++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   420
    if (full) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   421
      increment_total_full_collections();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   422
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   423
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   424
489c9b5090e2 Initial load
duke
parents:
diff changeset
   425
  void increment_total_full_collections() { _total_full_collections++; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   426
489c9b5090e2 Initial load
duke
parents:
diff changeset
   427
  // Return the AdaptiveSizePolicy for the heap.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   428
  virtual AdaptiveSizePolicy* size_policy() = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   429
489c9b5090e2 Initial load
duke
parents:
diff changeset
   430
  // Iterate over all the ref-containing fields of all objects, calling
489c9b5090e2 Initial load
duke
parents:
diff changeset
   431
  // "cl.do_oop" on each. This includes objects in permanent memory.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   432
  virtual void oop_iterate(OopClosure* cl) = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   433
489c9b5090e2 Initial load
duke
parents:
diff changeset
   434
  // Iterate over all objects, calling "cl.do_object" on each.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   435
  // This includes objects in permanent memory.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   436
  virtual void object_iterate(ObjectClosure* cl) = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   437
489c9b5090e2 Initial load
duke
parents:
diff changeset
   438
  // Behaves the same as oop_iterate, except only traverses
489c9b5090e2 Initial load
duke
parents:
diff changeset
   439
  // interior pointers contained in permanent memory. If there
489c9b5090e2 Initial load
duke
parents:
diff changeset
   440
  // is no permanent memory, does nothing.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   441
  virtual void permanent_oop_iterate(OopClosure* cl) = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   442
489c9b5090e2 Initial load
duke
parents:
diff changeset
   443
  // Behaves the same as object_iterate, except only traverses
489c9b5090e2 Initial load
duke
parents:
diff changeset
   444
  // object contained in permanent memory. If there is no
489c9b5090e2 Initial load
duke
parents:
diff changeset
   445
  // permanent memory, does nothing.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   446
  virtual void permanent_object_iterate(ObjectClosure* cl) = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   447
489c9b5090e2 Initial load
duke
parents:
diff changeset
   448
  // NOTE! There is no requirement that a collector implement these
489c9b5090e2 Initial load
duke
parents:
diff changeset
   449
  // functions.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   450
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   451
  // A CollectedHeap is divided into a dense sequence of "blocks"; that is,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   452
  // each address in the (reserved) heap is a member of exactly
489c9b5090e2 Initial load
duke
parents:
diff changeset
   453
  // one block.  The defining characteristic of a block is that it is
489c9b5090e2 Initial load
duke
parents:
diff changeset
   454
  // possible to find its size, and thus to progress forward to the next
489c9b5090e2 Initial load
duke
parents:
diff changeset
   455
  // block.  (Blocks may be of different sizes.)  Thus, blocks may
489c9b5090e2 Initial load
duke
parents:
diff changeset
   456
  // represent Java objects, or they might be free blocks in a
489c9b5090e2 Initial load
duke
parents:
diff changeset
   457
  // free-list-based heap (or subheap), as long as the two kinds are
489c9b5090e2 Initial load
duke
parents:
diff changeset
   458
  // distinguishable and the size of each is determinable.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   459
489c9b5090e2 Initial load
duke
parents:
diff changeset
   460
  // Returns the address of the start of the "block" that contains the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   461
  // address "addr".  We say "blocks" instead of "object" since some heaps
489c9b5090e2 Initial load
duke
parents:
diff changeset
   462
  // may not pack objects densely; a chunk may either be an object or a
489c9b5090e2 Initial load
duke
parents:
diff changeset
   463
  // non-object.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   464
  virtual HeapWord* block_start(const void* addr) const = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   465
489c9b5090e2 Initial load
duke
parents:
diff changeset
   466
  // Requires "addr" to be the start of a chunk, and returns its size.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   467
  // "addr + size" is required to be the start of a new chunk, or the end
489c9b5090e2 Initial load
duke
parents:
diff changeset
   468
  // of the active area of the heap.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   469
  virtual size_t block_size(const HeapWord* addr) const = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   470
489c9b5090e2 Initial load
duke
parents:
diff changeset
   471
  // Requires "addr" to be the start of a block, and returns "TRUE" iff
489c9b5090e2 Initial load
duke
parents:
diff changeset
   472
  // the block is an object.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   473
  virtual bool block_is_obj(const HeapWord* addr) const = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   474
489c9b5090e2 Initial load
duke
parents:
diff changeset
   475
  // Returns the longest time (in ms) that has elapsed since the last
489c9b5090e2 Initial load
duke
parents:
diff changeset
   476
  // time that any part of the heap was examined by a garbage collection.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   477
  virtual jlong millis_since_last_gc() = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   478
489c9b5090e2 Initial load
duke
parents:
diff changeset
   479
  // Perform any cleanup actions necessary before allowing a verification.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   480
  virtual void prepare_for_verify() = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   481
489c9b5090e2 Initial load
duke
parents:
diff changeset
   482
  virtual void print() const = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   483
  virtual void print_on(outputStream* st) const = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   484
489c9b5090e2 Initial load
duke
parents:
diff changeset
   485
  // Print all GC threads (other than the VM thread)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   486
  // used by this heap.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   487
  virtual void print_gc_threads_on(outputStream* st) const = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   488
  void print_gc_threads() { print_gc_threads_on(tty); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   489
  // Iterator for all GC threads (other than VM thread)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   490
  virtual void gc_threads_do(ThreadClosure* tc) const = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   491
489c9b5090e2 Initial load
duke
parents:
diff changeset
   492
  // Print any relevant tracing info that flags imply.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   493
  // Default implementation does nothing.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   494
  virtual void print_tracing_info() const = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   495
489c9b5090e2 Initial load
duke
parents:
diff changeset
   496
  // Heap verification
489c9b5090e2 Initial load
duke
parents:
diff changeset
   497
  virtual void verify(bool allow_dirty, bool silent) = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   498
489c9b5090e2 Initial load
duke
parents:
diff changeset
   499
  // Non product verification and debugging.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   500
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   501
  // Support for PromotionFailureALot.  Return true if it's time to cause a
489c9b5090e2 Initial load
duke
parents:
diff changeset
   502
  // promotion failure.  The no-argument version uses
489c9b5090e2 Initial load
duke
parents:
diff changeset
   503
  // this->_promotion_failure_alot_count as the counter.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   504
  inline bool promotion_should_fail(volatile size_t* count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   505
  inline bool promotion_should_fail();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   506
489c9b5090e2 Initial load
duke
parents:
diff changeset
   507
  // Reset the PromotionFailureALot counters.  Should be called at the end of a
489c9b5090e2 Initial load
duke
parents:
diff changeset
   508
  // GC in which promotion failure ocurred.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   509
  inline void reset_promotion_should_fail(volatile size_t* count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   510
  inline void reset_promotion_should_fail();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   511
#endif  // #ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   512
489c9b5090e2 Initial load
duke
parents:
diff changeset
   513
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   514
  static int fired_fake_oom() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   515
    return (CIFireOOMAt > 1 && _fire_out_of_memory_count >= CIFireOOMAt);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   516
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   517
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   518
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   519
489c9b5090e2 Initial load
duke
parents:
diff changeset
   520
// Class to set and reset the GC cause for a CollectedHeap.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   521
489c9b5090e2 Initial load
duke
parents:
diff changeset
   522
class GCCauseSetter : StackObj {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   523
  CollectedHeap* _heap;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   524
  GCCause::Cause _previous_cause;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   525
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   526
  GCCauseSetter(CollectedHeap* heap, GCCause::Cause cause) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   527
    assert(SafepointSynchronize::is_at_safepoint(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   528
           "This method manipulates heap state without locking");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   529
    _heap = heap;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   530
    _previous_cause = _heap->gc_cause();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   531
    _heap->set_gc_cause(cause);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   532
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   533
489c9b5090e2 Initial load
duke
parents:
diff changeset
   534
  ~GCCauseSetter() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   535
    assert(SafepointSynchronize::is_at_safepoint(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   536
          "This method manipulates heap state without locking");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   537
    _heap->set_gc_cause(_previous_cause);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   538
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   539
};