hotspot/src/share/vm/gc_implementation/parallelScavenge/parallelScavengeHeap.hpp
author duke
Sat, 01 Dec 2007 00:00:00 +0000
changeset 1 489c9b5090e2
child 186 32e6c95f8d9b
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
class AdjoiningGenerations;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    26
class GCTaskManager;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    27
class PSAdaptiveSizePolicy;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    28
489c9b5090e2 Initial load
duke
parents:
diff changeset
    29
class ParallelScavengeHeap : public CollectedHeap {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    30
  friend class VMStructs;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    31
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
  static PSYoungGen* _young_gen;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
  static PSOldGen*   _old_gen;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
  static PSPermGen*  _perm_gen;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
  // Sizing policy for entire heap
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
  static PSAdaptiveSizePolicy* _size_policy;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
  static PSGCAdaptivePolicyCounters*   _gc_policy_counters;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
  static ParallelScavengeHeap* _psh;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
  size_t _perm_gen_alignment;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
  size_t _young_gen_alignment;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
  size_t _old_gen_alignment;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
  inline size_t set_alignment(size_t& var, size_t val);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
  // Collection of generations that are adjacent in the
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
  // space reserved for the heap.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
  AdjoiningGenerations* _gens;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
  static GCTaskManager*          _gc_task_manager;      // The task manager.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
 protected:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
  static inline size_t total_invocations();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
  HeapWord* allocate_new_tlab(size_t size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
  void fill_all_tlabs(bool retire);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
  ParallelScavengeHeap() : CollectedHeap() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
    set_alignment(_perm_gen_alignment, intra_generation_alignment());
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
    set_alignment(_young_gen_alignment, intra_generation_alignment());
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
    set_alignment(_old_gen_alignment, intra_generation_alignment());
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
  // For use by VM operations
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
  enum CollectionType {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
    Scavenge,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
    MarkSweep
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
  };
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
  ParallelScavengeHeap::Name kind() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
    return CollectedHeap::ParallelScavengeHeap;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
  static PSYoungGen* young_gen()     { return _young_gen; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
  static PSOldGen* old_gen()         { return _old_gen; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
  static PSPermGen* perm_gen()       { return _perm_gen; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
  virtual PSAdaptiveSizePolicy* size_policy() { return _size_policy; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
  static PSGCAdaptivePolicyCounters* gc_policy_counters() { return _gc_policy_counters; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
  static ParallelScavengeHeap* heap();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
  static GCTaskManager* const gc_task_manager() { return _gc_task_manager; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
  AdjoiningGenerations* gens() { return _gens; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
  // Returns JNI_OK on success
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
  virtual jint initialize();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
  void post_initialize();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
  void update_counters();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
  // The alignment used for the various generations.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
  size_t perm_gen_alignment()  const { return _perm_gen_alignment; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
  size_t young_gen_alignment() const { return _young_gen_alignment; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
  size_t old_gen_alignment()  const { return _old_gen_alignment; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
  // The alignment used for eden and survivors within the young gen.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
  size_t intra_generation_alignment() const { return 64 * K; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
  size_t capacity() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
  size_t used() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
  // Return "true" if all generations (but perm) have reached the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
  // maximal committed limit that they can reach, without a garbage
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
  // collection.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
  virtual bool is_maximal_no_gc() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
  // Does this heap support heap inspection? (+PrintClassHistogram)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
  bool supports_heap_inspection() const { return true; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
  size_t permanent_capacity() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
  size_t permanent_used() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
  size_t max_capacity() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
  // Whether p is in the allocated part of the heap
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
  bool is_in(const void* p) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
  bool is_in_reserved(const void* p) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
  bool is_in_permanent(const void *p) const {    // reserved part
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
    return perm_gen()->reserved().contains(p);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
  bool is_permanent(const void *p) const {    // committed part
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
    return perm_gen()->is_in(p);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
  static bool is_in_young(oop *p);        // reserved part
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
  static bool is_in_old_or_perm(oop *p);  // reserved part
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
  // Memory allocation.   "gc_time_limit_was_exceeded" will
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
  // be set to true if the adaptive size policy determine that
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
  // an excessive amount of time is being spent doing collections
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
  // and caused a NULL to be returned.  If a NULL is not returned,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
  // "gc_time_limit_was_exceeded" has an undefined meaning.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
  HeapWord* mem_allocate(size_t size,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
                         bool is_noref,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
                         bool is_tlab,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
                         bool* gc_overhead_limit_was_exceeded);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
  HeapWord* failed_mem_allocate(size_t size, bool is_tlab);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
  HeapWord* permanent_mem_allocate(size_t size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
  HeapWord* failed_permanent_mem_allocate(size_t size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
  // Support for System.gc()
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
  void collect(GCCause::Cause cause);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
  // This interface assumes that it's being called by the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
  // vm thread. It collects the heap assuming that the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
  // heap lock is already held and that we are executing in
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
  // the context of the vm thread.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
  void collect_as_vm_thread(GCCause::Cause cause);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
  // These also should be called by the vm thread at a safepoint (e.g., from a
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
  // VM operation).
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
  // The first collects the young generation only, unless the scavenge fails; it
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
  // will then attempt a full gc.  The second collects the entire heap; if
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
  // maximum_compaction is true, it will compact everything and clear all soft
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
  // references.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
  inline void invoke_scavenge();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
  inline void invoke_full_gc(bool maximum_compaction);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
  size_t large_typearray_limit() { return FastAllocateSizeLimit; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
  bool supports_inline_contig_alloc() const { return !UseNUMA; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
  HeapWord** top_addr() const { return !UseNUMA ? young_gen()->top_addr() : NULL; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
  HeapWord** end_addr() const { return !UseNUMA ? young_gen()->end_addr() : NULL; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
  void ensure_parsability(bool retire_tlabs);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
  void accumulate_statistics_all_tlabs();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
  void resize_all_tlabs();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
  size_t unsafe_max_alloc();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
  bool supports_tlab_allocation() const { return true; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
  size_t tlab_capacity(Thread* thr) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
  size_t unsafe_max_tlab_alloc(Thread* thr) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
  void oop_iterate(OopClosure* cl);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
  void object_iterate(ObjectClosure* cl);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
  void permanent_oop_iterate(OopClosure* cl);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
  void permanent_object_iterate(ObjectClosure* cl);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
  HeapWord* block_start(const void* addr) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
  size_t block_size(const HeapWord* addr) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
  bool block_is_obj(const HeapWord* addr) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
  jlong millis_since_last_gc();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
  void prepare_for_verify();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
  void print() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
  void print_on(outputStream* st) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
  virtual void print_gc_threads_on(outputStream* st) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
  virtual void gc_threads_do(ThreadClosure* tc) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
  virtual void print_tracing_info() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
  void verify(bool allow_dirty, bool silent);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
  void print_heap_change(size_t prev_used);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
  // Resize the young generation.  The reserved space for the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
  // generation may be expanded in preparation for the resize.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
  void resize_young_gen(size_t eden_size, size_t survivor_size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   211
489c9b5090e2 Initial load
duke
parents:
diff changeset
   212
  // Resize the old generation.  The reserved space for the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
  // generation may be expanded in preparation for the resize.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
  void resize_old_gen(size_t desired_free_space);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
inline size_t ParallelScavengeHeap::set_alignment(size_t& var, size_t val)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   218
{
489c9b5090e2 Initial load
duke
parents:
diff changeset
   219
  assert(is_power_of_2((intptr_t)val), "must be a power of 2");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   220
  var = round_to(val, intra_generation_alignment());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   221
  return var;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
}