hotspot/src/share/vm/gc_interface/collectedHeap.hpp
author brutisso
Mon, 16 Apr 2012 08:57:18 +0200
changeset 12379 2cf45b79ce3a
parent 12236 51d6463cfd9d
child 13195 be27e1b6a4b9
permissions -rw-r--r--
4988100: oop_verify_old_oop appears to be dead Summary: removed oop_verify_old_oop and allow_dirty. Also reviewed by: alexlamsl@gmail.com Reviewed-by: jmasa, jwilhelm
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
11636
3c07b54482a5 7141200: log some interesting information in ring buffers for crashes
never
parents: 11396
diff changeset
     2
 * Copyright (c) 2001, 2012, Oracle and/or its affiliates. All rights reserved.
1
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
 *
5547
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 5343
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 5343
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 5343
diff changeset
    21
 * questions.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    22
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    23
 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    24
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6759
diff changeset
    25
#ifndef SHARE_VM_GC_INTERFACE_COLLECTEDHEAP_HPP
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6759
diff changeset
    26
#define SHARE_VM_GC_INTERFACE_COLLECTEDHEAP_HPP
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6759
diff changeset
    27
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6759
diff changeset
    28
#include "gc_interface/gcCause.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6759
diff changeset
    29
#include "memory/allocation.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6759
diff changeset
    30
#include "memory/barrierSet.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6759
diff changeset
    31
#include "runtime/handles.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6759
diff changeset
    32
#include "runtime/perfData.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6759
diff changeset
    33
#include "runtime/safepoint.hpp"
11636
3c07b54482a5 7141200: log some interesting information in ring buffers for crashes
never
parents: 11396
diff changeset
    34
#include "utilities/events.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6759
diff changeset
    35
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
// A "CollectedHeap" is an implementation of a java heap for HotSpot.  This
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
// is an abstract class: there may be many different kinds of heaps.  This
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
// class defines the functions that a heap must implement, and contains
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
// infrastructure common to all heaps.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
class BarrierSet;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
class ThreadClosure;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
class AdaptiveSizePolicy;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
class Thread;
5343
95a5c4b89273 6858496: Clear all SoftReferences before an out-of-memory due to GC overhead limit.
jmasa
parents: 4637
diff changeset
    45
class CollectorPolicy;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
11636
3c07b54482a5 7141200: log some interesting information in ring buffers for crashes
never
parents: 11396
diff changeset
    47
class GCMessage : public FormatBuffer<1024> {
3c07b54482a5 7141200: log some interesting information in ring buffers for crashes
never
parents: 11396
diff changeset
    48
 public:
3c07b54482a5 7141200: log some interesting information in ring buffers for crashes
never
parents: 11396
diff changeset
    49
  bool is_before;
3c07b54482a5 7141200: log some interesting information in ring buffers for crashes
never
parents: 11396
diff changeset
    50
3c07b54482a5 7141200: log some interesting information in ring buffers for crashes
never
parents: 11396
diff changeset
    51
 public:
3c07b54482a5 7141200: log some interesting information in ring buffers for crashes
never
parents: 11396
diff changeset
    52
  GCMessage() {}
3c07b54482a5 7141200: log some interesting information in ring buffers for crashes
never
parents: 11396
diff changeset
    53
};
3c07b54482a5 7141200: log some interesting information in ring buffers for crashes
never
parents: 11396
diff changeset
    54
3c07b54482a5 7141200: log some interesting information in ring buffers for crashes
never
parents: 11396
diff changeset
    55
class GCHeapLog : public EventLogBase<GCMessage> {
3c07b54482a5 7141200: log some interesting information in ring buffers for crashes
never
parents: 11396
diff changeset
    56
 private:
3c07b54482a5 7141200: log some interesting information in ring buffers for crashes
never
parents: 11396
diff changeset
    57
  void log_heap(bool before);
3c07b54482a5 7141200: log some interesting information in ring buffers for crashes
never
parents: 11396
diff changeset
    58
3c07b54482a5 7141200: log some interesting information in ring buffers for crashes
never
parents: 11396
diff changeset
    59
 public:
3c07b54482a5 7141200: log some interesting information in ring buffers for crashes
never
parents: 11396
diff changeset
    60
  GCHeapLog() : EventLogBase<GCMessage>("GC Heap History") {}
3c07b54482a5 7141200: log some interesting information in ring buffers for crashes
never
parents: 11396
diff changeset
    61
3c07b54482a5 7141200: log some interesting information in ring buffers for crashes
never
parents: 11396
diff changeset
    62
  void log_heap_before() {
3c07b54482a5 7141200: log some interesting information in ring buffers for crashes
never
parents: 11396
diff changeset
    63
    log_heap(true);
3c07b54482a5 7141200: log some interesting information in ring buffers for crashes
never
parents: 11396
diff changeset
    64
  }
3c07b54482a5 7141200: log some interesting information in ring buffers for crashes
never
parents: 11396
diff changeset
    65
  void log_heap_after() {
3c07b54482a5 7141200: log some interesting information in ring buffers for crashes
never
parents: 11396
diff changeset
    66
    log_heap(false);
3c07b54482a5 7141200: log some interesting information in ring buffers for crashes
never
parents: 11396
diff changeset
    67
  }
3c07b54482a5 7141200: log some interesting information in ring buffers for crashes
never
parents: 11396
diff changeset
    68
};
3c07b54482a5 7141200: log some interesting information in ring buffers for crashes
never
parents: 11396
diff changeset
    69
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
// CollectedHeap
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
//   SharedHeap
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
//     GenCollectedHeap
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
//     G1CollectedHeap
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
//   ParallelScavengeHeap
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
class CollectedHeap : public CHeapObj {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
  friend class VMStructs;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
  friend class IsGCActiveMark; // Block structured external access to _is_gc_active
2006
f2d2f0f20063 6792421: assert(_bitMap->isMarked(addr+size-1),inconsistent Printezis mark)
jmasa
parents: 1893
diff changeset
    80
  friend class constantPoolCacheKlass; // allocate() method inserts is_conc_safe
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
  static int       _fire_out_of_memory_count;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
1668
8ec481b8f514 6578152: fill_region_with_object has usability and safety issues
jcoomes
parents: 1388
diff changeset
    86
  // Used for filler objects (static, but initialized in ctor).
8ec481b8f514 6578152: fill_region_with_object has usability and safety issues
jcoomes
parents: 1388
diff changeset
    87
  static size_t _filler_array_max_size;
8ec481b8f514 6578152: fill_region_with_object has usability and safety issues
jcoomes
parents: 1388
diff changeset
    88
11636
3c07b54482a5 7141200: log some interesting information in ring buffers for crashes
never
parents: 11396
diff changeset
    89
  GCHeapLog* _gc_heap_log;
3c07b54482a5 7141200: log some interesting information in ring buffers for crashes
never
parents: 11396
diff changeset
    90
4637
af4d405aacc1 6896647: card marks can be deferred too long
ysr
parents: 4636
diff changeset
    91
  // Used in support of ReduceInitialCardMarks; only consulted if COMPILER2 is being used
af4d405aacc1 6896647: card marks can be deferred too long
ysr
parents: 4636
diff changeset
    92
  bool _defer_initial_card_mark;
af4d405aacc1 6896647: card marks can be deferred too long
ysr
parents: 4636
diff changeset
    93
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
 protected:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
  MemRegion _reserved;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
  BarrierSet* _barrier_set;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
  bool _is_gc_active;
11396
917d8673b5ef 7121618: Change type of number of GC workers to unsigned int.
jmasa
parents: 11247
diff changeset
    98
  uint _n_par_threads;
6759
67b1a69ef5aa 6984287: Regularize how GC parallel workers are specified.
jmasa
parents: 5547
diff changeset
    99
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
  unsigned int _total_collections;          // ... started
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
  unsigned int _total_full_collections;     // ... started
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
  NOT_PRODUCT(volatile size_t _promotion_failure_alot_count;)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
  NOT_PRODUCT(volatile size_t _promotion_failure_alot_gc_number;)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
  // Reason for current garbage collection.  Should be set to
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
  // a value reflecting no collection between collections.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
  GCCause::Cause _gc_cause;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
  GCCause::Cause _gc_lastcause;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
  PerfStringVariable* _perf_gc_cause;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
  PerfStringVariable* _perf_gc_lastcause;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
  // Constructor
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
  CollectedHeap();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
4637
af4d405aacc1 6896647: card marks can be deferred too long
ysr
parents: 4636
diff changeset
   115
  // Do common initializations that must follow instance construction,
af4d405aacc1 6896647: card marks can be deferred too long
ysr
parents: 4636
diff changeset
   116
  // for example, those needing virtual calls.
af4d405aacc1 6896647: card marks can be deferred too long
ysr
parents: 4636
diff changeset
   117
  // This code could perhaps be moved into initialize() but would
af4d405aacc1 6896647: card marks can be deferred too long
ysr
parents: 4636
diff changeset
   118
  // be slightly more awkward because we want the latter to be a
af4d405aacc1 6896647: card marks can be deferred too long
ysr
parents: 4636
diff changeset
   119
  // pure virtual.
af4d405aacc1 6896647: card marks can be deferred too long
ysr
parents: 4636
diff changeset
   120
  void pre_initialize();
af4d405aacc1 6896647: card marks can be deferred too long
ysr
parents: 4636
diff changeset
   121
9997
b75b7939f448 6994322: Remove the is_tlab and is_noref / is_large_noref parameters from the CollectedHeap
tonyp
parents: 9995
diff changeset
   122
  // Create a new tlab. All TLAB allocations must go through this.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
  virtual HeapWord* allocate_new_tlab(size_t size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
  // Accumulate statistics on all tlabs.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
  virtual void accumulate_statistics_all_tlabs();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
  // Reinitialize tlabs before resuming mutators.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
  virtual void resize_all_tlabs();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
  // Allocate from the current thread's TLAB, with broken-out slow path.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
  inline static HeapWord* allocate_from_tlab(Thread* thread, size_t size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
  static HeapWord* allocate_from_tlab_slow(Thread* thread, size_t size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
  // Allocate an uninitialized block of the given size, or returns NULL if
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
  // this is impossible.
9997
b75b7939f448 6994322: Remove the is_tlab and is_noref / is_large_noref parameters from the CollectedHeap
tonyp
parents: 9995
diff changeset
   137
  inline static HeapWord* common_mem_allocate_noinit(size_t size, TRAPS);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
  // Like allocate_init, but the block returned by a successful allocation
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
  // is guaranteed initialized to zeros.
9997
b75b7939f448 6994322: Remove the is_tlab and is_noref / is_large_noref parameters from the CollectedHeap
tonyp
parents: 9995
diff changeset
   141
  inline static HeapWord* common_mem_allocate_init(size_t size, TRAPS);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
  // Same as common_mem version, except memory is allocated in the permanent area
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
  // If there is no permanent area, revert to common_mem_allocate_noinit
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
  inline static HeapWord* common_permanent_mem_allocate_noinit(size_t size, TRAPS);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
  // Same as common_mem version, except memory is allocated in the permanent area
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
  // If there is no permanent area, revert to common_mem_allocate_init
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
  inline static HeapWord* common_permanent_mem_allocate_init(size_t size, TRAPS);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
  // Helper functions for (VM) allocation.
12236
51d6463cfd9d 7156764: Remove unused size parameter from some CollectedHeap methods
brutisso
parents: 12229
diff changeset
   152
  inline static void post_allocation_setup_common(KlassHandle klass, HeapWord* obj);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
  inline static void post_allocation_setup_no_klass_install(KlassHandle klass,
12236
51d6463cfd9d 7156764: Remove unused size parameter from some CollectedHeap methods
brutisso
parents: 12229
diff changeset
   154
                                                            HeapWord* objPtr);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
12236
51d6463cfd9d 7156764: Remove unused size parameter from some CollectedHeap methods
brutisso
parents: 12229
diff changeset
   156
  inline static void post_allocation_setup_obj(KlassHandle klass, HeapWord* obj);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
  inline static void post_allocation_setup_array(KlassHandle klass,
12236
51d6463cfd9d 7156764: Remove unused size parameter from some CollectedHeap methods
brutisso
parents: 12229
diff changeset
   159
                                                 HeapWord* obj, int length);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
  // Clears an allocated object.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
  inline static void init_obj(HeapWord* obj, size_t size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
1668
8ec481b8f514 6578152: fill_region_with_object has usability and safety issues
jcoomes
parents: 1388
diff changeset
   164
  // Filler object utilities.
8ec481b8f514 6578152: fill_region_with_object has usability and safety issues
jcoomes
parents: 1388
diff changeset
   165
  static inline size_t filler_array_hdr_size();
8ec481b8f514 6578152: fill_region_with_object has usability and safety issues
jcoomes
parents: 1388
diff changeset
   166
  static inline size_t filler_array_min_size();
8ec481b8f514 6578152: fill_region_with_object has usability and safety issues
jcoomes
parents: 1388
diff changeset
   167
8ec481b8f514 6578152: fill_region_with_object has usability and safety issues
jcoomes
parents: 1388
diff changeset
   168
  DEBUG_ONLY(static void fill_args_check(HeapWord* start, size_t words);)
4636
90e004691873 6902115: G1:assert(ignore_max_completed||thread->is_Java_thread()||SafepointSynchronize::is_at_safepoint())
johnc
parents: 4030
diff changeset
   169
  DEBUG_ONLY(static void zap_filler_array(HeapWord* start, size_t words, bool zap = true);)
1668
8ec481b8f514 6578152: fill_region_with_object has usability and safety issues
jcoomes
parents: 1388
diff changeset
   170
8ec481b8f514 6578152: fill_region_with_object has usability and safety issues
jcoomes
parents: 1388
diff changeset
   171
  // Fill with a single array; caller must ensure filler_array_min_size() <=
8ec481b8f514 6578152: fill_region_with_object has usability and safety issues
jcoomes
parents: 1388
diff changeset
   172
  // words <= filler_array_max_size().
4636
90e004691873 6902115: G1:assert(ignore_max_completed||thread->is_Java_thread()||SafepointSynchronize::is_at_safepoint())
johnc
parents: 4030
diff changeset
   173
  static inline void fill_with_array(HeapWord* start, size_t words, bool zap = true);
1668
8ec481b8f514 6578152: fill_region_with_object has usability and safety issues
jcoomes
parents: 1388
diff changeset
   174
8ec481b8f514 6578152: fill_region_with_object has usability and safety issues
jcoomes
parents: 1388
diff changeset
   175
  // Fill with a single object (either an int array or a java.lang.Object).
4636
90e004691873 6902115: G1:assert(ignore_max_completed||thread->is_Java_thread()||SafepointSynchronize::is_at_safepoint())
johnc
parents: 4030
diff changeset
   176
  static inline void fill_with_object_impl(HeapWord* start, size_t words, bool zap = true);
1668
8ec481b8f514 6578152: fill_region_with_object has usability and safety issues
jcoomes
parents: 1388
diff changeset
   177
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
  // Verification functions
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
  virtual void check_for_bad_heap_word_value(HeapWord* addr, size_t size)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
    PRODUCT_RETURN;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
  virtual void check_for_non_bad_heap_word_value(HeapWord* addr, size_t size)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
    PRODUCT_RETURN;
2006
f2d2f0f20063 6792421: assert(_bitMap->isMarked(addr+size-1),inconsistent Printezis mark)
jmasa
parents: 1893
diff changeset
   183
  debug_only(static void check_for_valid_allocation_state();)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
  enum Name {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
    Abstract,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
    SharedHeap,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
    GenCollectedHeap,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
    ParallelScavengeHeap,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
    G1CollectedHeap
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
  };
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
12229
c34a85c8f5aa 7103665: HeapWord*ParallelScavengeHeap::failed_mem_allocate(unsigned long,bool)+0x97
brutisso
parents: 11636
diff changeset
   194
  static inline size_t filler_array_max_size() {
c34a85c8f5aa 7103665: HeapWord*ParallelScavengeHeap::failed_mem_allocate(unsigned long,bool)+0x97
brutisso
parents: 11636
diff changeset
   195
    return _filler_array_max_size;
c34a85c8f5aa 7103665: HeapWord*ParallelScavengeHeap::failed_mem_allocate(unsigned long,bool)+0x97
brutisso
parents: 11636
diff changeset
   196
  }
c34a85c8f5aa 7103665: HeapWord*ParallelScavengeHeap::failed_mem_allocate(unsigned long,bool)+0x97
brutisso
parents: 11636
diff changeset
   197
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
  virtual CollectedHeap::Name kind() const { return CollectedHeap::Abstract; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
  /**
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
   * Returns JNI error code JNI_ENOMEM if memory could not be allocated,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
   * and JNI_OK on success.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
   */
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
  virtual jint initialize() = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
  // In many heaps, there will be a need to perform some initialization activities
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
  // after the Universe is fully formed, but before general heap allocation is allowed.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
  // This is the correct place to place such initialization methods.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
  virtual void post_initialize() = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
489c9b5090e2 Initial load
duke
parents:
diff changeset
   211
  MemRegion reserved_region() const { return _reserved; }
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   212
  address base() const { return (address)reserved_region().start(); }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
  // Future cleanup here. The following functions should specify bytes or
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
  // heapwords as part of their signature.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
  virtual size_t capacity() const = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
  virtual size_t used() const = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   218
489c9b5090e2 Initial load
duke
parents:
diff changeset
   219
  // Return "true" if the part of the heap that allocates Java
489c9b5090e2 Initial load
duke
parents:
diff changeset
   220
  // objects has reached the maximal committed limit that it can
489c9b5090e2 Initial load
duke
parents:
diff changeset
   221
  // reach, without a garbage collection.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
  virtual bool is_maximal_no_gc() const = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
  virtual size_t permanent_capacity() const = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
  virtual size_t permanent_used() const = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   226
489c9b5090e2 Initial load
duke
parents:
diff changeset
   227
  // Support for java.lang.Runtime.maxMemory():  return the maximum amount of
489c9b5090e2 Initial load
duke
parents:
diff changeset
   228
  // memory that the vm could make available for storing 'normal' java objects.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   229
  // This is based on the reserved address space, but should not include space
489c9b5090e2 Initial load
duke
parents:
diff changeset
   230
  // that the vm uses internally for bookkeeping or temporary storage (e.g.,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   231
  // perm gen space or, in the case of the young gen, one of the survivor
489c9b5090e2 Initial load
duke
parents:
diff changeset
   232
  // spaces).
489c9b5090e2 Initial load
duke
parents:
diff changeset
   233
  virtual size_t max_capacity() const = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   234
489c9b5090e2 Initial load
duke
parents:
diff changeset
   235
  // Returns "TRUE" if "p" points into the reserved area of the heap.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   236
  bool is_in_reserved(const void* p) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   237
    return _reserved.contains(p);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   238
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   239
489c9b5090e2 Initial load
duke
parents:
diff changeset
   240
  bool is_in_reserved_or_null(const void* p) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   241
    return p == NULL || is_in_reserved(p);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   242
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   243
11247
d6faa02b3802 7121373: Clean up CollectedHeap::is_in
stefank
parents: 10997
diff changeset
   244
  // Returns "TRUE" iff "p" points into the committed areas of the heap.
d6faa02b3802 7121373: Clean up CollectedHeap::is_in
stefank
parents: 10997
diff changeset
   245
  // Since this method can be expensive in general, we restrict its
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   246
  // use to assertion checking only.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   247
  virtual bool is_in(const void* p) const = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   248
489c9b5090e2 Initial load
duke
parents:
diff changeset
   249
  bool is_in_or_null(const void* p) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   250
    return p == NULL || is_in(p);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   251
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   252
489c9b5090e2 Initial load
duke
parents:
diff changeset
   253
  // Let's define some terms: a "closed" subset of a heap is one that
489c9b5090e2 Initial load
duke
parents:
diff changeset
   254
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   255
  // 1) contains all currently-allocated objects, and
489c9b5090e2 Initial load
duke
parents:
diff changeset
   256
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   257
  // 2) is closed under reference: no object in the closed subset
489c9b5090e2 Initial load
duke
parents:
diff changeset
   258
  //    references one outside the closed subset.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   259
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   260
  // Membership in a heap's closed subset is useful for assertions.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   261
  // Clearly, the entire heap is a closed subset, so the default
489c9b5090e2 Initial load
duke
parents:
diff changeset
   262
  // implementation is to use "is_in_reserved".  But this may not be too
489c9b5090e2 Initial load
duke
parents:
diff changeset
   263
  // liberal to perform useful checking.  Also, the "is_in" predicate
489c9b5090e2 Initial load
duke
parents:
diff changeset
   264
  // defines a closed subset, but may be too expensive, since "is_in"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   265
  // verifies that its argument points to an object head.  The
489c9b5090e2 Initial load
duke
parents:
diff changeset
   266
  // "closed_subset" method allows a heap to define an intermediate
489c9b5090e2 Initial load
duke
parents:
diff changeset
   267
  // predicate, allowing more precise checking than "is_in_reserved" at
489c9b5090e2 Initial load
duke
parents:
diff changeset
   268
  // lower cost than "is_in."
489c9b5090e2 Initial load
duke
parents:
diff changeset
   269
489c9b5090e2 Initial load
duke
parents:
diff changeset
   270
  // One important case is a heap composed of disjoint contiguous spaces,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   271
  // such as the Garbage-First collector.  Such heaps have a convenient
489c9b5090e2 Initial load
duke
parents:
diff changeset
   272
  // closed subset consisting of the allocated portions of those
489c9b5090e2 Initial load
duke
parents:
diff changeset
   273
  // contiguous spaces.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   274
489c9b5090e2 Initial load
duke
parents:
diff changeset
   275
  // Return "TRUE" iff the given pointer points into the heap's defined
489c9b5090e2 Initial load
duke
parents:
diff changeset
   276
  // closed subset (which defaults to the entire heap).
489c9b5090e2 Initial load
duke
parents:
diff changeset
   277
  virtual bool is_in_closed_subset(const void* p) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   278
    return is_in_reserved(p);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   279
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   280
489c9b5090e2 Initial load
duke
parents:
diff changeset
   281
  bool is_in_closed_subset_or_null(const void* p) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   282
    return p == NULL || is_in_closed_subset(p);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   283
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   284
3696
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 3262
diff changeset
   285
  // XXX is_permanent() and is_in_permanent() should be better named
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 3262
diff changeset
   286
  // to distinguish one from the other.
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 3262
diff changeset
   287
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   288
  // Returns "TRUE" if "p" is allocated as "permanent" data.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   289
  // If the heap does not use "permanent" data, returns the same
489c9b5090e2 Initial load
duke
parents:
diff changeset
   290
  // value is_in_reserved() would return.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   291
  // NOTE: this actually returns true if "p" is in reserved space
489c9b5090e2 Initial load
duke
parents:
diff changeset
   292
  // for the space not that it is actually allocated (i.e. in committed
489c9b5090e2 Initial load
duke
parents:
diff changeset
   293
  // space). If you need the more conservative answer use is_permanent().
489c9b5090e2 Initial load
duke
parents:
diff changeset
   294
  virtual bool is_in_permanent(const void *p) const = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   295
9935
51267b5e1a3d 7041789: 30% perf regression with c2/arm following 7017732
jmasa
parents: 7397
diff changeset
   296
51267b5e1a3d 7041789: 30% perf regression with c2/arm following 7017732
jmasa
parents: 7397
diff changeset
   297
#ifdef ASSERT
51267b5e1a3d 7041789: 30% perf regression with c2/arm following 7017732
jmasa
parents: 7397
diff changeset
   298
  // Returns true if "p" is in the part of the
51267b5e1a3d 7041789: 30% perf regression with c2/arm following 7017732
jmasa
parents: 7397
diff changeset
   299
  // heap being collected.
51267b5e1a3d 7041789: 30% perf regression with c2/arm following 7017732
jmasa
parents: 7397
diff changeset
   300
  virtual bool is_in_partial_collection(const void *p) = 0;
51267b5e1a3d 7041789: 30% perf regression with c2/arm following 7017732
jmasa
parents: 7397
diff changeset
   301
#endif
51267b5e1a3d 7041789: 30% perf regression with c2/arm following 7017732
jmasa
parents: 7397
diff changeset
   302
3696
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 3262
diff changeset
   303
  bool is_in_permanent_or_null(const void *p) const {
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 3262
diff changeset
   304
    return p == NULL || is_in_permanent(p);
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 3262
diff changeset
   305
  }
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 3262
diff changeset
   306
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   307
  // Returns "TRUE" if "p" is in the committed area of  "permanent" data.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   308
  // If the heap does not use "permanent" data, returns the same
489c9b5090e2 Initial load
duke
parents:
diff changeset
   309
  // value is_in() would return.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   310
  virtual bool is_permanent(const void *p) const = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   311
3696
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 3262
diff changeset
   312
  bool is_permanent_or_null(const void *p) const {
9e5d9b5e1049 4957990: Perm heap bloat in JVM
ysr
parents: 3262
diff changeset
   313
    return p == NULL || is_permanent(p);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   314
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   315
3908
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 3262
diff changeset
   316
  // An object is scavengable if its location may move during a scavenge.
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 3262
diff changeset
   317
  // (A scavenge is a GC which is not a full GC.)
9935
51267b5e1a3d 7041789: 30% perf regression with c2/arm following 7017732
jmasa
parents: 7397
diff changeset
   318
  virtual bool is_scavengable(const void *p) = 0;
3908
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 3262
diff changeset
   319
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   320
  // Returns "TRUE" if "p" is a method oop in the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   321
  // current heap, with high probability. This predicate
489c9b5090e2 Initial load
duke
parents:
diff changeset
   322
  // is not stable, in general.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   323
  bool is_valid_method(oop p) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   324
489c9b5090e2 Initial load
duke
parents:
diff changeset
   325
  void set_gc_cause(GCCause::Cause v) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   326
     if (UsePerfData) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   327
       _gc_lastcause = _gc_cause;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   328
       _perf_gc_lastcause->set_value(GCCause::to_string(_gc_lastcause));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   329
       _perf_gc_cause->set_value(GCCause::to_string(v));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   330
     }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   331
    _gc_cause = v;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   332
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   333
  GCCause::Cause gc_cause() { return _gc_cause; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   334
6759
67b1a69ef5aa 6984287: Regularize how GC parallel workers are specified.
jmasa
parents: 5547
diff changeset
   335
  // Number of threads currently working on GC tasks.
11396
917d8673b5ef 7121618: Change type of number of GC workers to unsigned int.
jmasa
parents: 11247
diff changeset
   336
  uint n_par_threads() { return _n_par_threads; }
6759
67b1a69ef5aa 6984287: Regularize how GC parallel workers are specified.
jmasa
parents: 5547
diff changeset
   337
67b1a69ef5aa 6984287: Regularize how GC parallel workers are specified.
jmasa
parents: 5547
diff changeset
   338
  // May be overridden to set additional parallelism.
11396
917d8673b5ef 7121618: Change type of number of GC workers to unsigned int.
jmasa
parents: 11247
diff changeset
   339
  virtual void set_par_threads(uint t) { _n_par_threads = t; };
6759
67b1a69ef5aa 6984287: Regularize how GC parallel workers are specified.
jmasa
parents: 5547
diff changeset
   340
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   341
  // Preload classes into the shared portion of the heap, and then dump
489c9b5090e2 Initial load
duke
parents:
diff changeset
   342
  // that data to a file so that it can be loaded directly by another
489c9b5090e2 Initial load
duke
parents:
diff changeset
   343
  // VM (then terminate).
489c9b5090e2 Initial load
duke
parents:
diff changeset
   344
  virtual void preload_and_dump(TRAPS) { ShouldNotReachHere(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   345
10742
a64c942e4e6b 7098528: crash with java -XX:+ExtendedDTraceProbes
never
parents: 10566
diff changeset
   346
  // Allocate and initialize instances of Class
a64c942e4e6b 7098528: crash with java -XX:+ExtendedDTraceProbes
never
parents: 10566
diff changeset
   347
  static oop Class_obj_allocate(KlassHandle klass, int size, KlassHandle real_klass, TRAPS);
a64c942e4e6b 7098528: crash with java -XX:+ExtendedDTraceProbes
never
parents: 10566
diff changeset
   348
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   349
  // General obj/array allocation facilities.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   350
  inline static oop obj_allocate(KlassHandle klass, int size, TRAPS);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   351
  inline static oop array_allocate(KlassHandle klass, int size, int length, TRAPS);
10566
630c177ec580 7081933: Use zeroing elimination optimization for large array
kvn
parents: 9997
diff changeset
   352
  inline static oop array_allocate_nozero(KlassHandle klass, int size, int length, TRAPS);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   353
489c9b5090e2 Initial load
duke
parents:
diff changeset
   354
  // Special obj/array allocation facilities.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   355
  // Some heaps may want to manage "permanent" data uniquely. These default
489c9b5090e2 Initial load
duke
parents:
diff changeset
   356
  // to the general routines if the heap does not support such handling.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   357
  inline static oop permanent_obj_allocate(KlassHandle klass, int size, TRAPS);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   358
  // permanent_obj_allocate_no_klass_install() does not do the installation of
489c9b5090e2 Initial load
duke
parents:
diff changeset
   359
  // the klass pointer in the newly created object (as permanent_obj_allocate()
489c9b5090e2 Initial load
duke
parents:
diff changeset
   360
  // above does).  This allows for a delay in the installation of the klass
489c9b5090e2 Initial load
duke
parents:
diff changeset
   361
  // pointer that is needed during the create of klassKlass's.  The
489c9b5090e2 Initial load
duke
parents:
diff changeset
   362
  // method post_allocation_install_obj_klass() is used to install the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   363
  // klass pointer.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   364
  inline static oop permanent_obj_allocate_no_klass_install(KlassHandle klass,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   365
                                                            int size,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   366
                                                            TRAPS);
12236
51d6463cfd9d 7156764: Remove unused size parameter from some CollectedHeap methods
brutisso
parents: 12229
diff changeset
   367
  inline static void post_allocation_install_obj_klass(KlassHandle klass, oop obj);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   368
  inline static oop permanent_array_allocate(KlassHandle klass, int size, int length, TRAPS);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   369
489c9b5090e2 Initial load
duke
parents:
diff changeset
   370
  // Raw memory allocation facilities
489c9b5090e2 Initial load
duke
parents:
diff changeset
   371
  // The obj and array allocate methods are covers for these methods.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   372
  // The permanent allocation method should default to mem_allocate if
9997
b75b7939f448 6994322: Remove the is_tlab and is_noref / is_large_noref parameters from the CollectedHeap
tonyp
parents: 9995
diff changeset
   373
  // permanent memory isn't supported. mem_allocate() should never be
b75b7939f448 6994322: Remove the is_tlab and is_noref / is_large_noref parameters from the CollectedHeap
tonyp
parents: 9995
diff changeset
   374
  // called to allocate TLABs, only individual objects.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   375
  virtual HeapWord* mem_allocate(size_t size,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   376
                                 bool* gc_overhead_limit_was_exceeded) = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   377
  virtual HeapWord* permanent_mem_allocate(size_t size) = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   378
1668
8ec481b8f514 6578152: fill_region_with_object has usability and safety issues
jcoomes
parents: 1388
diff changeset
   379
  // Utilities for turning raw memory into filler objects.
8ec481b8f514 6578152: fill_region_with_object has usability and safety issues
jcoomes
parents: 1388
diff changeset
   380
  //
8ec481b8f514 6578152: fill_region_with_object has usability and safety issues
jcoomes
parents: 1388
diff changeset
   381
  // min_fill_size() is the smallest region that can be filled.
8ec481b8f514 6578152: fill_region_with_object has usability and safety issues
jcoomes
parents: 1388
diff changeset
   382
  // fill_with_objects() can fill arbitrary-sized regions of the heap using
8ec481b8f514 6578152: fill_region_with_object has usability and safety issues
jcoomes
parents: 1388
diff changeset
   383
  // multiple objects.  fill_with_object() is for regions known to be smaller
8ec481b8f514 6578152: fill_region_with_object has usability and safety issues
jcoomes
parents: 1388
diff changeset
   384
  // than the largest array of integers; it uses a single object to fill the
8ec481b8f514 6578152: fill_region_with_object has usability and safety issues
jcoomes
parents: 1388
diff changeset
   385
  // region and has slightly less overhead.
8ec481b8f514 6578152: fill_region_with_object has usability and safety issues
jcoomes
parents: 1388
diff changeset
   386
  static size_t min_fill_size() {
8ec481b8f514 6578152: fill_region_with_object has usability and safety issues
jcoomes
parents: 1388
diff changeset
   387
    return size_t(align_object_size(oopDesc::header_size()));
8ec481b8f514 6578152: fill_region_with_object has usability and safety issues
jcoomes
parents: 1388
diff changeset
   388
  }
8ec481b8f514 6578152: fill_region_with_object has usability and safety issues
jcoomes
parents: 1388
diff changeset
   389
4636
90e004691873 6902115: G1:assert(ignore_max_completed||thread->is_Java_thread()||SafepointSynchronize::is_at_safepoint())
johnc
parents: 4030
diff changeset
   390
  static void fill_with_objects(HeapWord* start, size_t words, bool zap = true);
1668
8ec481b8f514 6578152: fill_region_with_object has usability and safety issues
jcoomes
parents: 1388
diff changeset
   391
4636
90e004691873 6902115: G1:assert(ignore_max_completed||thread->is_Java_thread()||SafepointSynchronize::is_at_safepoint())
johnc
parents: 4030
diff changeset
   392
  static void fill_with_object(HeapWord* start, size_t words, bool zap = true);
90e004691873 6902115: G1:assert(ignore_max_completed||thread->is_Java_thread()||SafepointSynchronize::is_at_safepoint())
johnc
parents: 4030
diff changeset
   393
  static void fill_with_object(MemRegion region, bool zap = true) {
90e004691873 6902115: G1:assert(ignore_max_completed||thread->is_Java_thread()||SafepointSynchronize::is_at_safepoint())
johnc
parents: 4030
diff changeset
   394
    fill_with_object(region.start(), region.word_size(), zap);
1668
8ec481b8f514 6578152: fill_region_with_object has usability and safety issues
jcoomes
parents: 1388
diff changeset
   395
  }
4636
90e004691873 6902115: G1:assert(ignore_max_completed||thread->is_Java_thread()||SafepointSynchronize::is_at_safepoint())
johnc
parents: 4030
diff changeset
   396
  static void fill_with_object(HeapWord* start, HeapWord* end, bool zap = true) {
90e004691873 6902115: G1:assert(ignore_max_completed||thread->is_Java_thread()||SafepointSynchronize::is_at_safepoint())
johnc
parents: 4030
diff changeset
   397
    fill_with_object(start, pointer_delta(end, start), zap);
1668
8ec481b8f514 6578152: fill_region_with_object has usability and safety issues
jcoomes
parents: 1388
diff changeset
   398
  }
8ec481b8f514 6578152: fill_region_with_object has usability and safety issues
jcoomes
parents: 1388
diff changeset
   399
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   400
  // Some heaps may offer a contiguous region for shared non-blocking
489c9b5090e2 Initial load
duke
parents:
diff changeset
   401
  // allocation, via inlined code (by exporting the address of the top and
489c9b5090e2 Initial load
duke
parents:
diff changeset
   402
  // end fields defining the extent of the contiguous allocation region.)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   403
489c9b5090e2 Initial load
duke
parents:
diff changeset
   404
  // This function returns "true" iff the heap supports this kind of
489c9b5090e2 Initial load
duke
parents:
diff changeset
   405
  // allocation.  (Default is "no".)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   406
  virtual bool supports_inline_contig_alloc() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   407
    return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   408
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   409
  // These functions return the addresses of the fields that define the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   410
  // boundaries of the contiguous allocation area.  (These fields should be
489c9b5090e2 Initial load
duke
parents:
diff changeset
   411
  // physically near to one another.)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   412
  virtual HeapWord** top_addr() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   413
    guarantee(false, "inline contiguous allocation not supported");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   414
    return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   415
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   416
  virtual HeapWord** end_addr() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   417
    guarantee(false, "inline contiguous allocation not supported");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   418
    return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   419
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   420
489c9b5090e2 Initial load
duke
parents:
diff changeset
   421
  // Some heaps may be in an unparseable state at certain times between
489c9b5090e2 Initial load
duke
parents:
diff changeset
   422
  // collections. This may be necessary for efficient implementation of
489c9b5090e2 Initial load
duke
parents:
diff changeset
   423
  // certain allocation-related activities. Calling this function before
489c9b5090e2 Initial load
duke
parents:
diff changeset
   424
  // attempting to parse a heap ensures that the heap is in a parsable
489c9b5090e2 Initial load
duke
parents:
diff changeset
   425
  // state (provided other concurrent activity does not introduce
489c9b5090e2 Initial load
duke
parents:
diff changeset
   426
  // unparsability). It is normally expected, therefore, that this
489c9b5090e2 Initial load
duke
parents:
diff changeset
   427
  // method is invoked with the world stopped.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   428
  // NOTE: if you override this method, make sure you call
489c9b5090e2 Initial load
duke
parents:
diff changeset
   429
  // super::ensure_parsability so that the non-generational
489c9b5090e2 Initial load
duke
parents:
diff changeset
   430
  // part of the work gets done. See implementation of
489c9b5090e2 Initial load
duke
parents:
diff changeset
   431
  // CollectedHeap::ensure_parsability and, for instance,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   432
  // that of GenCollectedHeap::ensure_parsability().
489c9b5090e2 Initial load
duke
parents:
diff changeset
   433
  // The argument "retire_tlabs" controls whether existing TLABs
489c9b5090e2 Initial load
duke
parents:
diff changeset
   434
  // are merely filled or also retired, thus preventing further
489c9b5090e2 Initial load
duke
parents:
diff changeset
   435
  // allocation from them and necessitating allocation of new TLABs.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   436
  virtual void ensure_parsability(bool retire_tlabs);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   437
489c9b5090e2 Initial load
duke
parents:
diff changeset
   438
  // Return an estimate of the maximum allocation that could be performed
489c9b5090e2 Initial load
duke
parents:
diff changeset
   439
  // without triggering any collection or expansion activity.  In a
489c9b5090e2 Initial load
duke
parents:
diff changeset
   440
  // generational collector, for example, this is probably the largest
489c9b5090e2 Initial load
duke
parents:
diff changeset
   441
  // allocation that could be supported (without expansion) in the youngest
489c9b5090e2 Initial load
duke
parents:
diff changeset
   442
  // generation.  It is "unsafe" because no locks are taken; the result
489c9b5090e2 Initial load
duke
parents:
diff changeset
   443
  // should be treated as an approximation, not a guarantee, for use in
489c9b5090e2 Initial load
duke
parents:
diff changeset
   444
  // heuristic resizing decisions.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   445
  virtual size_t unsafe_max_alloc() = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   446
489c9b5090e2 Initial load
duke
parents:
diff changeset
   447
  // Section on thread-local allocation buffers (TLABs)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   448
  // If the heap supports thread-local allocation buffers, it should override
489c9b5090e2 Initial load
duke
parents:
diff changeset
   449
  // the following methods:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   450
  // Returns "true" iff the heap supports thread-local allocation buffers.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   451
  // The default is "no".
489c9b5090e2 Initial load
duke
parents:
diff changeset
   452
  virtual bool supports_tlab_allocation() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   453
    return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   454
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   455
  // The amount of space available for thread-local allocation buffers.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   456
  virtual size_t tlab_capacity(Thread *thr) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   457
    guarantee(false, "thread-local allocation buffers not supported");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   458
    return 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   459
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   460
  // An estimate of the maximum allocation that could be performed
489c9b5090e2 Initial load
duke
parents:
diff changeset
   461
  // for thread-local allocation buffers without triggering any
489c9b5090e2 Initial load
duke
parents:
diff changeset
   462
  // collection or expansion activity.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   463
  virtual size_t unsafe_max_tlab_alloc(Thread *thr) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   464
    guarantee(false, "thread-local allocation buffers not supported");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   465
    return 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   466
  }
4030
4c471254865e 6888898: CMS: ReduceInitialCardMarks unsafe in the presence of cms precleaning
ysr
parents: 3912
diff changeset
   467
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   468
  // Can a compiler initialize a new object without store barriers?
489c9b5090e2 Initial load
duke
parents:
diff changeset
   469
  // This permission only extends from the creation of a new object
4030
4c471254865e 6888898: CMS: ReduceInitialCardMarks unsafe in the presence of cms precleaning
ysr
parents: 3912
diff changeset
   470
  // via a TLAB up to the first subsequent safepoint. If such permission
4c471254865e 6888898: CMS: ReduceInitialCardMarks unsafe in the presence of cms precleaning
ysr
parents: 3912
diff changeset
   471
  // is granted for this heap type, the compiler promises to call
4c471254865e 6888898: CMS: ReduceInitialCardMarks unsafe in the presence of cms precleaning
ysr
parents: 3912
diff changeset
   472
  // defer_store_barrier() below on any slow path allocation of
4c471254865e 6888898: CMS: ReduceInitialCardMarks unsafe in the presence of cms precleaning
ysr
parents: 3912
diff changeset
   473
  // a new object for which such initializing store barriers will
4c471254865e 6888898: CMS: ReduceInitialCardMarks unsafe in the presence of cms precleaning
ysr
parents: 3912
diff changeset
   474
  // have been elided.
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   475
  virtual bool can_elide_tlab_store_barriers() const = 0;
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   476
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   477
  // If a compiler is eliding store barriers for TLAB-allocated objects,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   478
  // there is probably a corresponding slow path which can produce
489c9b5090e2 Initial load
duke
parents:
diff changeset
   479
  // an object allocated anywhere.  The compiler's runtime support
489c9b5090e2 Initial load
duke
parents:
diff changeset
   480
  // promises to call this function on such a slow-path-allocated
489c9b5090e2 Initial load
duke
parents:
diff changeset
   481
  // object before performing initializations that have elided
4030
4c471254865e 6888898: CMS: ReduceInitialCardMarks unsafe in the presence of cms precleaning
ysr
parents: 3912
diff changeset
   482
  // store barriers. Returns new_obj, or maybe a safer copy thereof.
4637
af4d405aacc1 6896647: card marks can be deferred too long
ysr
parents: 4636
diff changeset
   483
  virtual oop new_store_pre_barrier(JavaThread* thread, oop new_obj);
4030
4c471254865e 6888898: CMS: ReduceInitialCardMarks unsafe in the presence of cms precleaning
ysr
parents: 3912
diff changeset
   484
4c471254865e 6888898: CMS: ReduceInitialCardMarks unsafe in the presence of cms precleaning
ysr
parents: 3912
diff changeset
   485
  // Answers whether an initializing store to a new object currently
4637
af4d405aacc1 6896647: card marks can be deferred too long
ysr
parents: 4636
diff changeset
   486
  // allocated at the given address doesn't need a store
4030
4c471254865e 6888898: CMS: ReduceInitialCardMarks unsafe in the presence of cms precleaning
ysr
parents: 3912
diff changeset
   487
  // barrier. Returns "true" if it doesn't need an initializing
4c471254865e 6888898: CMS: ReduceInitialCardMarks unsafe in the presence of cms precleaning
ysr
parents: 3912
diff changeset
   488
  // store barrier; answers "false" if it does.
4c471254865e 6888898: CMS: ReduceInitialCardMarks unsafe in the presence of cms precleaning
ysr
parents: 3912
diff changeset
   489
  virtual bool can_elide_initializing_store_barrier(oop new_obj) = 0;
4c471254865e 6888898: CMS: ReduceInitialCardMarks unsafe in the presence of cms precleaning
ysr
parents: 3912
diff changeset
   490
4637
af4d405aacc1 6896647: card marks can be deferred too long
ysr
parents: 4636
diff changeset
   491
  // If a compiler is eliding store barriers for TLAB-allocated objects,
af4d405aacc1 6896647: card marks can be deferred too long
ysr
parents: 4636
diff changeset
   492
  // we will be informed of a slow-path allocation by a call
af4d405aacc1 6896647: card marks can be deferred too long
ysr
parents: 4636
diff changeset
   493
  // to new_store_pre_barrier() above. Such a call precedes the
af4d405aacc1 6896647: card marks can be deferred too long
ysr
parents: 4636
diff changeset
   494
  // initialization of the object itself, and no post-store-barriers will
af4d405aacc1 6896647: card marks can be deferred too long
ysr
parents: 4636
diff changeset
   495
  // be issued. Some heap types require that the barrier strictly follows
af4d405aacc1 6896647: card marks can be deferred too long
ysr
parents: 4636
diff changeset
   496
  // the initializing stores. (This is currently implemented by deferring the
af4d405aacc1 6896647: card marks can be deferred too long
ysr
parents: 4636
diff changeset
   497
  // barrier until the next slow-path allocation or gc-related safepoint.)
af4d405aacc1 6896647: card marks can be deferred too long
ysr
parents: 4636
diff changeset
   498
  // This interface answers whether a particular heap type needs the card
af4d405aacc1 6896647: card marks can be deferred too long
ysr
parents: 4636
diff changeset
   499
  // mark to be thus strictly sequenced after the stores.
af4d405aacc1 6896647: card marks can be deferred too long
ysr
parents: 4636
diff changeset
   500
  virtual bool card_mark_must_follow_store() const = 0;
af4d405aacc1 6896647: card marks can be deferred too long
ysr
parents: 4636
diff changeset
   501
4030
4c471254865e 6888898: CMS: ReduceInitialCardMarks unsafe in the presence of cms precleaning
ysr
parents: 3912
diff changeset
   502
  // If the CollectedHeap was asked to defer a store barrier above,
4c471254865e 6888898: CMS: ReduceInitialCardMarks unsafe in the presence of cms precleaning
ysr
parents: 3912
diff changeset
   503
  // this informs it to flush such a deferred store barrier to the
4c471254865e 6888898: CMS: ReduceInitialCardMarks unsafe in the presence of cms precleaning
ysr
parents: 3912
diff changeset
   504
  // remembered set.
4c471254865e 6888898: CMS: ReduceInitialCardMarks unsafe in the presence of cms precleaning
ysr
parents: 3912
diff changeset
   505
  virtual void flush_deferred_store_barrier(JavaThread* thread);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   506
489c9b5090e2 Initial load
duke
parents:
diff changeset
   507
  // Can a compiler elide a store barrier when it writes
489c9b5090e2 Initial load
duke
parents:
diff changeset
   508
  // a permanent oop into the heap?  Applies when the compiler
489c9b5090e2 Initial load
duke
parents:
diff changeset
   509
  // is storing x to the heap, where x->is_perm() is true.
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   510
  virtual bool can_elide_permanent_oop_store_barriers() const = 0;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   511
489c9b5090e2 Initial load
duke
parents:
diff changeset
   512
  // Does this heap support heap inspection (+PrintClassHistogram?)
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 360
diff changeset
   513
  virtual bool supports_heap_inspection() const = 0;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   514
489c9b5090e2 Initial load
duke
parents:
diff changeset
   515
  // Perform a collection of the heap; intended for use in implementing
489c9b5090e2 Initial load
duke
parents:
diff changeset
   516
  // "System.gc".  This probably implies as full a collection as the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   517
  // "CollectedHeap" supports.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   518
  virtual void collect(GCCause::Cause cause) = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   519
489c9b5090e2 Initial load
duke
parents:
diff changeset
   520
  // This interface assumes that it's being called by the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   521
  // vm thread. It collects the heap assuming that the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   522
  // heap lock is already held and that we are executing in
489c9b5090e2 Initial load
duke
parents:
diff changeset
   523
  // the context of the vm thread.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   524
  virtual void collect_as_vm_thread(GCCause::Cause cause) = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   525
489c9b5090e2 Initial load
duke
parents:
diff changeset
   526
  // Returns the barrier set for this heap
489c9b5090e2 Initial load
duke
parents:
diff changeset
   527
  BarrierSet* barrier_set() { return _barrier_set; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   528
489c9b5090e2 Initial load
duke
parents:
diff changeset
   529
  // Returns "true" iff there is a stop-world GC in progress.  (I assume
489c9b5090e2 Initial load
duke
parents:
diff changeset
   530
  // that it should answer "false" for the concurrent part of a concurrent
489c9b5090e2 Initial load
duke
parents:
diff changeset
   531
  // collector -- dld).
489c9b5090e2 Initial load
duke
parents:
diff changeset
   532
  bool is_gc_active() const { return _is_gc_active; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   533
489c9b5090e2 Initial load
duke
parents:
diff changeset
   534
  // Total number of GC collections (started)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   535
  unsigned int total_collections() const { return _total_collections; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   536
  unsigned int total_full_collections() const { return _total_full_collections;}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   537
489c9b5090e2 Initial load
duke
parents:
diff changeset
   538
  // Increment total number of GC collections (started)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   539
  // Should be protected but used by PSMarkSweep - cleanup for 1.4.2
489c9b5090e2 Initial load
duke
parents:
diff changeset
   540
  void increment_total_collections(bool full = false) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   541
    _total_collections++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   542
    if (full) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   543
      increment_total_full_collections();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   544
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   545
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   546
489c9b5090e2 Initial load
duke
parents:
diff changeset
   547
  void increment_total_full_collections() { _total_full_collections++; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   548
489c9b5090e2 Initial load
duke
parents:
diff changeset
   549
  // Return the AdaptiveSizePolicy for the heap.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   550
  virtual AdaptiveSizePolicy* size_policy() = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   551
5343
95a5c4b89273 6858496: Clear all SoftReferences before an out-of-memory due to GC overhead limit.
jmasa
parents: 4637
diff changeset
   552
  // Return the CollectorPolicy for the heap
95a5c4b89273 6858496: Clear all SoftReferences before an out-of-memory due to GC overhead limit.
jmasa
parents: 4637
diff changeset
   553
  virtual CollectorPolicy* collector_policy() const = 0;
95a5c4b89273 6858496: Clear all SoftReferences before an out-of-memory due to GC overhead limit.
jmasa
parents: 4637
diff changeset
   554
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   555
  // Iterate over all the ref-containing fields of all objects, calling
489c9b5090e2 Initial load
duke
parents:
diff changeset
   556
  // "cl.do_oop" on each. This includes objects in permanent memory.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   557
  virtual void oop_iterate(OopClosure* cl) = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   558
489c9b5090e2 Initial load
duke
parents:
diff changeset
   559
  // Iterate over all objects, calling "cl.do_object" on each.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   560
  // This includes objects in permanent memory.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   561
  virtual void object_iterate(ObjectClosure* cl) = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   562
1893
c82e388e17c5 6689653: JMapPerm fails with UseConcMarkSweepIncGC and compressed oops off
jmasa
parents: 1668
diff changeset
   563
  // Similar to object_iterate() except iterates only
c82e388e17c5 6689653: JMapPerm fails with UseConcMarkSweepIncGC and compressed oops off
jmasa
parents: 1668
diff changeset
   564
  // over live objects.
c82e388e17c5 6689653: JMapPerm fails with UseConcMarkSweepIncGC and compressed oops off
jmasa
parents: 1668
diff changeset
   565
  virtual void safe_object_iterate(ObjectClosure* cl) = 0;
c82e388e17c5 6689653: JMapPerm fails with UseConcMarkSweepIncGC and compressed oops off
jmasa
parents: 1668
diff changeset
   566
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   567
  // Behaves the same as oop_iterate, except only traverses
489c9b5090e2 Initial load
duke
parents:
diff changeset
   568
  // interior pointers contained in permanent memory. If there
489c9b5090e2 Initial load
duke
parents:
diff changeset
   569
  // is no permanent memory, does nothing.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   570
  virtual void permanent_oop_iterate(OopClosure* cl) = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   571
489c9b5090e2 Initial load
duke
parents:
diff changeset
   572
  // Behaves the same as object_iterate, except only traverses
489c9b5090e2 Initial load
duke
parents:
diff changeset
   573
  // object contained in permanent memory. If there is no
489c9b5090e2 Initial load
duke
parents:
diff changeset
   574
  // permanent memory, does nothing.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   575
  virtual void permanent_object_iterate(ObjectClosure* cl) = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   576
489c9b5090e2 Initial load
duke
parents:
diff changeset
   577
  // NOTE! There is no requirement that a collector implement these
489c9b5090e2 Initial load
duke
parents:
diff changeset
   578
  // functions.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   579
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   580
  // A CollectedHeap is divided into a dense sequence of "blocks"; that is,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   581
  // each address in the (reserved) heap is a member of exactly
489c9b5090e2 Initial load
duke
parents:
diff changeset
   582
  // one block.  The defining characteristic of a block is that it is
489c9b5090e2 Initial load
duke
parents:
diff changeset
   583
  // possible to find its size, and thus to progress forward to the next
489c9b5090e2 Initial load
duke
parents:
diff changeset
   584
  // block.  (Blocks may be of different sizes.)  Thus, blocks may
489c9b5090e2 Initial load
duke
parents:
diff changeset
   585
  // represent Java objects, or they might be free blocks in a
489c9b5090e2 Initial load
duke
parents:
diff changeset
   586
  // free-list-based heap (or subheap), as long as the two kinds are
489c9b5090e2 Initial load
duke
parents:
diff changeset
   587
  // distinguishable and the size of each is determinable.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   588
489c9b5090e2 Initial load
duke
parents:
diff changeset
   589
  // Returns the address of the start of the "block" that contains the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   590
  // address "addr".  We say "blocks" instead of "object" since some heaps
489c9b5090e2 Initial load
duke
parents:
diff changeset
   591
  // may not pack objects densely; a chunk may either be an object or a
489c9b5090e2 Initial load
duke
parents:
diff changeset
   592
  // non-object.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   593
  virtual HeapWord* block_start(const void* addr) const = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   594
489c9b5090e2 Initial load
duke
parents:
diff changeset
   595
  // Requires "addr" to be the start of a chunk, and returns its size.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   596
  // "addr + size" is required to be the start of a new chunk, or the end
489c9b5090e2 Initial load
duke
parents:
diff changeset
   597
  // of the active area of the heap.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   598
  virtual size_t block_size(const HeapWord* addr) const = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   599
489c9b5090e2 Initial load
duke
parents:
diff changeset
   600
  // Requires "addr" to be the start of a block, and returns "TRUE" iff
489c9b5090e2 Initial load
duke
parents:
diff changeset
   601
  // the block is an object.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   602
  virtual bool block_is_obj(const HeapWord* addr) const = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   603
489c9b5090e2 Initial load
duke
parents:
diff changeset
   604
  // Returns the longest time (in ms) that has elapsed since the last
489c9b5090e2 Initial load
duke
parents:
diff changeset
   605
  // time that any part of the heap was examined by a garbage collection.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   606
  virtual jlong millis_since_last_gc() = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   607
489c9b5090e2 Initial load
duke
parents:
diff changeset
   608
  // Perform any cleanup actions necessary before allowing a verification.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   609
  virtual void prepare_for_verify() = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   610
2141
e9a644aaff87 6797870: Add -XX:+{HeapDump,PrintClassHistogram}{Before,After}FullGC
ysr
parents: 2006
diff changeset
   611
  // Generate any dumps preceding or following a full gc
e9a644aaff87 6797870: Add -XX:+{HeapDump,PrintClassHistogram}{Before,After}FullGC
ysr
parents: 2006
diff changeset
   612
  void pre_full_gc_dump();
e9a644aaff87 6797870: Add -XX:+{HeapDump,PrintClassHistogram}{Before,After}FullGC
ysr
parents: 2006
diff changeset
   613
  void post_full_gc_dump();
e9a644aaff87 6797870: Add -XX:+{HeapDump,PrintClassHistogram}{Before,After}FullGC
ysr
parents: 2006
diff changeset
   614
10997
0be4b3be7197 7099849: G1: include heap region information in hs_err files
tonyp
parents: 10742
diff changeset
   615
  // Print heap information on the given outputStream.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   616
  virtual void print_on(outputStream* st) const = 0;
10997
0be4b3be7197 7099849: G1: include heap region information in hs_err files
tonyp
parents: 10742
diff changeset
   617
  // The default behavior is to call print_on() on tty.
0be4b3be7197 7099849: G1: include heap region information in hs_err files
tonyp
parents: 10742
diff changeset
   618
  virtual void print() const {
0be4b3be7197 7099849: G1: include heap region information in hs_err files
tonyp
parents: 10742
diff changeset
   619
    print_on(tty);
0be4b3be7197 7099849: G1: include heap region information in hs_err files
tonyp
parents: 10742
diff changeset
   620
  }
0be4b3be7197 7099849: G1: include heap region information in hs_err files
tonyp
parents: 10742
diff changeset
   621
  // Print more detailed heap information on the given
0be4b3be7197 7099849: G1: include heap region information in hs_err files
tonyp
parents: 10742
diff changeset
   622
  // outputStream. The default behaviour is to call print_on(). It is
0be4b3be7197 7099849: G1: include heap region information in hs_err files
tonyp
parents: 10742
diff changeset
   623
  // up to each subclass to override it and add any additional output
0be4b3be7197 7099849: G1: include heap region information in hs_err files
tonyp
parents: 10742
diff changeset
   624
  // it needs.
0be4b3be7197 7099849: G1: include heap region information in hs_err files
tonyp
parents: 10742
diff changeset
   625
  virtual void print_extended_on(outputStream* st) const {
0be4b3be7197 7099849: G1: include heap region information in hs_err files
tonyp
parents: 10742
diff changeset
   626
    print_on(st);
0be4b3be7197 7099849: G1: include heap region information in hs_err files
tonyp
parents: 10742
diff changeset
   627
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   628
489c9b5090e2 Initial load
duke
parents:
diff changeset
   629
  // Print all GC threads (other than the VM thread)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   630
  // used by this heap.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   631
  virtual void print_gc_threads_on(outputStream* st) const = 0;
10997
0be4b3be7197 7099849: G1: include heap region information in hs_err files
tonyp
parents: 10742
diff changeset
   632
  // The default behavior is to call print_gc_threads_on() on tty.
0be4b3be7197 7099849: G1: include heap region information in hs_err files
tonyp
parents: 10742
diff changeset
   633
  void print_gc_threads() {
0be4b3be7197 7099849: G1: include heap region information in hs_err files
tonyp
parents: 10742
diff changeset
   634
    print_gc_threads_on(tty);
0be4b3be7197 7099849: G1: include heap region information in hs_err files
tonyp
parents: 10742
diff changeset
   635
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   636
  // Iterator for all GC threads (other than VM thread)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   637
  virtual void gc_threads_do(ThreadClosure* tc) const = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   638
489c9b5090e2 Initial load
duke
parents:
diff changeset
   639
  // Print any relevant tracing info that flags imply.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   640
  // Default implementation does nothing.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   641
  virtual void print_tracing_info() const = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   642
11636
3c07b54482a5 7141200: log some interesting information in ring buffers for crashes
never
parents: 11396
diff changeset
   643
  // If PrintHeapAtGC is set call the appropriate routi
3c07b54482a5 7141200: log some interesting information in ring buffers for crashes
never
parents: 11396
diff changeset
   644
  void print_heap_before_gc() {
3c07b54482a5 7141200: log some interesting information in ring buffers for crashes
never
parents: 11396
diff changeset
   645
    if (PrintHeapAtGC) {
3c07b54482a5 7141200: log some interesting information in ring buffers for crashes
never
parents: 11396
diff changeset
   646
      Universe::print_heap_before_gc();
3c07b54482a5 7141200: log some interesting information in ring buffers for crashes
never
parents: 11396
diff changeset
   647
    }
3c07b54482a5 7141200: log some interesting information in ring buffers for crashes
never
parents: 11396
diff changeset
   648
    if (_gc_heap_log != NULL) {
3c07b54482a5 7141200: log some interesting information in ring buffers for crashes
never
parents: 11396
diff changeset
   649
      _gc_heap_log->log_heap_before();
3c07b54482a5 7141200: log some interesting information in ring buffers for crashes
never
parents: 11396
diff changeset
   650
    }
3c07b54482a5 7141200: log some interesting information in ring buffers for crashes
never
parents: 11396
diff changeset
   651
  }
3c07b54482a5 7141200: log some interesting information in ring buffers for crashes
never
parents: 11396
diff changeset
   652
  void print_heap_after_gc() {
3c07b54482a5 7141200: log some interesting information in ring buffers for crashes
never
parents: 11396
diff changeset
   653
    if (PrintHeapAtGC) {
3c07b54482a5 7141200: log some interesting information in ring buffers for crashes
never
parents: 11396
diff changeset
   654
      Universe::print_heap_after_gc();
3c07b54482a5 7141200: log some interesting information in ring buffers for crashes
never
parents: 11396
diff changeset
   655
    }
3c07b54482a5 7141200: log some interesting information in ring buffers for crashes
never
parents: 11396
diff changeset
   656
    if (_gc_heap_log != NULL) {
3c07b54482a5 7141200: log some interesting information in ring buffers for crashes
never
parents: 11396
diff changeset
   657
      _gc_heap_log->log_heap_after();
3c07b54482a5 7141200: log some interesting information in ring buffers for crashes
never
parents: 11396
diff changeset
   658
    }
3c07b54482a5 7141200: log some interesting information in ring buffers for crashes
never
parents: 11396
diff changeset
   659
  }
3c07b54482a5 7141200: log some interesting information in ring buffers for crashes
never
parents: 11396
diff changeset
   660
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   661
  // Heap verification
12379
2cf45b79ce3a 4988100: oop_verify_old_oop appears to be dead
brutisso
parents: 12236
diff changeset
   662
  virtual void verify(bool silent, VerifyOption option) = 0;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   663
489c9b5090e2 Initial load
duke
parents:
diff changeset
   664
  // Non product verification and debugging.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   665
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   666
  // Support for PromotionFailureALot.  Return true if it's time to cause a
489c9b5090e2 Initial load
duke
parents:
diff changeset
   667
  // promotion failure.  The no-argument version uses
489c9b5090e2 Initial load
duke
parents:
diff changeset
   668
  // this->_promotion_failure_alot_count as the counter.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   669
  inline bool promotion_should_fail(volatile size_t* count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   670
  inline bool promotion_should_fail();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   671
489c9b5090e2 Initial load
duke
parents:
diff changeset
   672
  // Reset the PromotionFailureALot counters.  Should be called at the end of a
489c9b5090e2 Initial load
duke
parents:
diff changeset
   673
  // GC in which promotion failure ocurred.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   674
  inline void reset_promotion_should_fail(volatile size_t* count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   675
  inline void reset_promotion_should_fail();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   676
#endif  // #ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   677
489c9b5090e2 Initial load
duke
parents:
diff changeset
   678
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   679
  static int fired_fake_oom() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   680
    return (CIFireOOMAt > 1 && _fire_out_of_memory_count >= CIFireOOMAt);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   681
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   682
#endif
6759
67b1a69ef5aa 6984287: Regularize how GC parallel workers are specified.
jmasa
parents: 5547
diff changeset
   683
67b1a69ef5aa 6984287: Regularize how GC parallel workers are specified.
jmasa
parents: 5547
diff changeset
   684
 public:
67b1a69ef5aa 6984287: Regularize how GC parallel workers are specified.
jmasa
parents: 5547
diff changeset
   685
  // This is a convenience method that is used in cases where
67b1a69ef5aa 6984287: Regularize how GC parallel workers are specified.
jmasa
parents: 5547
diff changeset
   686
  // the actual number of GC worker threads is not pertinent but
67b1a69ef5aa 6984287: Regularize how GC parallel workers are specified.
jmasa
parents: 5547
diff changeset
   687
  // only whether there more than 0.  Use of this method helps
67b1a69ef5aa 6984287: Regularize how GC parallel workers are specified.
jmasa
parents: 5547
diff changeset
   688
  // reduce the occurrence of ParallelGCThreads to uses where the
67b1a69ef5aa 6984287: Regularize how GC parallel workers are specified.
jmasa
parents: 5547
diff changeset
   689
  // actual number may be germane.
67b1a69ef5aa 6984287: Regularize how GC parallel workers are specified.
jmasa
parents: 5547
diff changeset
   690
  static bool use_parallel_gc_threads() { return ParallelGCThreads > 0; }
11247
d6faa02b3802 7121373: Clean up CollectedHeap::is_in
stefank
parents: 10997
diff changeset
   691
d6faa02b3802 7121373: Clean up CollectedHeap::is_in
stefank
parents: 10997
diff changeset
   692
  /////////////// Unit tests ///////////////
d6faa02b3802 7121373: Clean up CollectedHeap::is_in
stefank
parents: 10997
diff changeset
   693
d6faa02b3802 7121373: Clean up CollectedHeap::is_in
stefank
parents: 10997
diff changeset
   694
  NOT_PRODUCT(static void test_is_in();)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   695
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   696
489c9b5090e2 Initial load
duke
parents:
diff changeset
   697
// Class to set and reset the GC cause for a CollectedHeap.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   698
489c9b5090e2 Initial load
duke
parents:
diff changeset
   699
class GCCauseSetter : StackObj {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   700
  CollectedHeap* _heap;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   701
  GCCause::Cause _previous_cause;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   702
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   703
  GCCauseSetter(CollectedHeap* heap, GCCause::Cause cause) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   704
    assert(SafepointSynchronize::is_at_safepoint(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   705
           "This method manipulates heap state without locking");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   706
    _heap = heap;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   707
    _previous_cause = _heap->gc_cause();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   708
    _heap->set_gc_cause(cause);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   709
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   710
489c9b5090e2 Initial load
duke
parents:
diff changeset
   711
  ~GCCauseSetter() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   712
    assert(SafepointSynchronize::is_at_safepoint(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   713
          "This method manipulates heap state without locking");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   714
    _heap->set_gc_cause(_previous_cause);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   715
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   716
};
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6759
diff changeset
   717
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6759
diff changeset
   718
#endif // SHARE_VM_GC_INTERFACE_COLLECTEDHEAP_HPP