hotspot/src/share/vm/gc_implementation/parallelScavenge/parallelScavengeHeap.hpp
author brutisso
Mon, 27 Jan 2014 13:14:53 +0100
changeset 22552 a29022212180
parent 22203 d748cd0e8b1e
child 28940 c314cf1db3fa
permissions -rw-r--r--
8030177: G1: Enable TLAB resizing Reviewed-by: tschatzl, stefank, jmasa
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17851
diff changeset
     2
 * Copyright (c) 2001, 2013, 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: 5547
diff changeset
    25
#ifndef SHARE_VM_GC_IMPLEMENTATION_PARALLELSCAVENGE_PARALLELSCAVENGEHEAP_HPP
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    26
#define SHARE_VM_GC_IMPLEMENTATION_PARALLELSCAVENGE_PARALLELSCAVENGEHEAP_HPP
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    27
21561
c619b1cb4554 8016309: assert(eden_size > 0 && survivor_size > 0) failed: just checking
jwilhelm
parents: 21560
diff changeset
    28
#include "gc_implementation/parallelScavenge/generationSizer.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    29
#include "gc_implementation/parallelScavenge/objectStartArray.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    30
#include "gc_implementation/parallelScavenge/psGCAdaptivePolicyCounters.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    31
#include "gc_implementation/parallelScavenge/psOldGen.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    32
#include "gc_implementation/parallelScavenge/psYoungGen.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    33
#include "gc_implementation/shared/gcPolicyCounters.hpp"
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17851
diff changeset
    34
#include "gc_implementation/shared/gcWhen.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    35
#include "gc_interface/collectedHeap.inline.hpp"
21561
c619b1cb4554 8016309: assert(eden_size > 0 && survivor_size > 0) failed: just checking
jwilhelm
parents: 21560
diff changeset
    36
#include "memory/collectorPolicy.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    37
#include "utilities/ostream.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    38
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
class AdjoiningGenerations;
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17851
diff changeset
    40
class GCHeapSummary;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
class GCTaskManager;
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17851
diff changeset
    42
class PSAdaptiveSizePolicy;
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17851
diff changeset
    43
class PSHeapSummary;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
class ParallelScavengeHeap : public CollectedHeap {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
  friend class VMStructs;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
  static PSYoungGen* _young_gen;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
  static PSOldGen*   _old_gen;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
  // Sizing policy for entire heap
21560
b3ae3ba25ebb 8026853: Prepare GC code for collector policy regression fix
jwilhelm
parents: 19986
diff changeset
    52
  static PSAdaptiveSizePolicy*       _size_policy;
b3ae3ba25ebb 8026853: Prepare GC code for collector policy regression fix
jwilhelm
parents: 19986
diff changeset
    53
  static PSGCAdaptivePolicyCounters* _gc_policy_counters;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
  static ParallelScavengeHeap* _psh;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
5343
95a5c4b89273 6858496: Clear all SoftReferences before an out-of-memory due to GC overhead limit.
jmasa
parents: 4637
diff changeset
    57
  GenerationSizer* _collector_policy;
95a5c4b89273 6858496: Clear all SoftReferences before an out-of-memory due to GC overhead limit.
jmasa
parents: 4637
diff changeset
    58
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
  // Collection of generations that are adjacent in the
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
  // space reserved for the heap.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
  AdjoiningGenerations* _gens;
11758
b1a0089f89d2 6330863: vm/gc/InfiniteList.java fails intermittently due to timeout
jcoomes
parents: 10997
diff changeset
    62
  unsigned int _death_march_count;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
21560
b3ae3ba25ebb 8026853: Prepare GC code for collector policy regression fix
jwilhelm
parents: 19986
diff changeset
    64
  // The task manager
b3ae3ba25ebb 8026853: Prepare GC code for collector policy regression fix
jwilhelm
parents: 19986
diff changeset
    65
  static GCTaskManager* _gc_task_manager;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17851
diff changeset
    67
  void trace_heap(GCWhen::Type when, GCTracer* tracer);
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17851
diff changeset
    68
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
 protected:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
  static inline size_t total_invocations();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
  HeapWord* allocate_new_tlab(size_t size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
11758
b1a0089f89d2 6330863: vm/gc/InfiniteList.java fails intermittently due to timeout
jcoomes
parents: 10997
diff changeset
    73
  inline bool should_alloc_in_eden(size_t size) const;
b1a0089f89d2 6330863: vm/gc/InfiniteList.java fails intermittently due to timeout
jcoomes
parents: 10997
diff changeset
    74
  inline void death_march_check(HeapWord* const result, size_t size);
b1a0089f89d2 6330863: vm/gc/InfiniteList.java fails intermittently due to timeout
jcoomes
parents: 10997
diff changeset
    75
  HeapWord* mem_allocate_old_gen(size_t size);
b1a0089f89d2 6330863: vm/gc/InfiniteList.java fails intermittently due to timeout
jcoomes
parents: 10997
diff changeset
    76
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
 public:
21561
c619b1cb4554 8016309: assert(eden_size > 0 && survivor_size > 0) failed: just checking
jwilhelm
parents: 21560
diff changeset
    78
  ParallelScavengeHeap() : CollectedHeap(), _death_march_count(0) { }
19986
33d188c66ed9 8010722: assert: failed: heap size is too big for compressed oops
tschatzl
parents: 18025
diff changeset
    79
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
  // For use by VM operations
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
  enum CollectionType {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
    Scavenge,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
    MarkSweep
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
  };
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
  ParallelScavengeHeap::Name kind() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
    return CollectedHeap::ParallelScavengeHeap;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
    90
  virtual CollectorPolicy* collector_policy() const { return (CollectorPolicy*) _collector_policy; }
5343
95a5c4b89273 6858496: Clear all SoftReferences before an out-of-memory due to GC overhead limit.
jmasa
parents: 4637
diff changeset
    91
21560
b3ae3ba25ebb 8026853: Prepare GC code for collector policy regression fix
jwilhelm
parents: 19986
diff changeset
    92
  static PSYoungGen* young_gen() { return _young_gen; }
b3ae3ba25ebb 8026853: Prepare GC code for collector policy regression fix
jwilhelm
parents: 19986
diff changeset
    93
  static PSOldGen* old_gen()     { return _old_gen; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
  virtual PSAdaptiveSizePolicy* size_policy() { return _size_policy; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
  static PSGCAdaptivePolicyCounters* gc_policy_counters() { return _gc_policy_counters; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
  static ParallelScavengeHeap* heap();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
  static GCTaskManager* const gc_task_manager() { return _gc_task_manager; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
  AdjoiningGenerations* gens() { return _gens; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
  // Returns JNI_OK on success
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
  virtual jint initialize();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
  void post_initialize();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
  void update_counters();
21561
c619b1cb4554 8016309: assert(eden_size > 0 && survivor_size > 0) failed: just checking
jwilhelm
parents: 21560
diff changeset
   110
c619b1cb4554 8016309: assert(eden_size > 0 && survivor_size > 0) failed: just checking
jwilhelm
parents: 21560
diff changeset
   111
  // The alignment used for the various areas
c619b1cb4554 8016309: assert(eden_size > 0 && survivor_size > 0) failed: just checking
jwilhelm
parents: 21560
diff changeset
   112
  size_t space_alignment()      { return _collector_policy->space_alignment(); }
c619b1cb4554 8016309: assert(eden_size > 0 && survivor_size > 0) failed: just checking
jwilhelm
parents: 21560
diff changeset
   113
  size_t generation_alignment() { return _collector_policy->gen_alignment(); }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
21561
c619b1cb4554 8016309: assert(eden_size > 0 && survivor_size > 0) failed: just checking
jwilhelm
parents: 21560
diff changeset
   115
  // Return the (conservative) maximum heap alignment
c619b1cb4554 8016309: assert(eden_size > 0 && survivor_size > 0) failed: just checking
jwilhelm
parents: 21560
diff changeset
   116
  static size_t conservative_max_heap_alignment() {
c619b1cb4554 8016309: assert(eden_size > 0 && survivor_size > 0) failed: just checking
jwilhelm
parents: 21560
diff changeset
   117
    return CollectorPolicy::compute_heap_alignment();
c619b1cb4554 8016309: assert(eden_size > 0 && survivor_size > 0) failed: just checking
jwilhelm
parents: 21560
diff changeset
   118
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
  size_t capacity() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
  size_t used() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   123
  // Return "true" if all generations have reached the
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
  // maximal committed limit that they can reach, without a garbage
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
  // collection.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
  virtual bool is_maximal_no_gc() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
9935
51267b5e1a3d 7041789: 30% perf regression with c2/arm following 7017732
jmasa
parents: 7397
diff changeset
   128
  // Return true if the reference points to an object that
51267b5e1a3d 7041789: 30% perf regression with c2/arm following 7017732
jmasa
parents: 7397
diff changeset
   129
  // can be moved in a partial collection.  For currently implemented
51267b5e1a3d 7041789: 30% perf regression with c2/arm following 7017732
jmasa
parents: 7397
diff changeset
   130
  // generational collectors that means during a collection of
51267b5e1a3d 7041789: 30% perf regression with c2/arm following 7017732
jmasa
parents: 7397
diff changeset
   131
  // the young gen.
51267b5e1a3d 7041789: 30% perf regression with c2/arm following 7017732
jmasa
parents: 7397
diff changeset
   132
  virtual bool is_scavengable(const void* addr);
51267b5e1a3d 7041789: 30% perf regression with c2/arm following 7017732
jmasa
parents: 7397
diff changeset
   133
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
  // Does this heap support heap inspection? (+PrintClassHistogram)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
  bool supports_heap_inspection() const { return true; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
  size_t max_capacity() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
  // Whether p is in the allocated part of the heap
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
  bool is_in(const void* p) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
  bool is_in_reserved(const void* p) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
9935
51267b5e1a3d 7041789: 30% perf regression with c2/arm following 7017732
jmasa
parents: 7397
diff changeset
   144
#ifdef ASSERT
51267b5e1a3d 7041789: 30% perf regression with c2/arm following 7017732
jmasa
parents: 7397
diff changeset
   145
  virtual bool is_in_partial_collection(const void *p);
51267b5e1a3d 7041789: 30% perf regression with c2/arm following 7017732
jmasa
parents: 7397
diff changeset
   146
#endif
51267b5e1a3d 7041789: 30% perf regression with c2/arm following 7017732
jmasa
parents: 7397
diff changeset
   147
21560
b3ae3ba25ebb 8026853: Prepare GC code for collector policy regression fix
jwilhelm
parents: 19986
diff changeset
   148
  bool is_in_young(oop p);  // reserved part
b3ae3ba25ebb 8026853: Prepare GC code for collector policy regression fix
jwilhelm
parents: 19986
diff changeset
   149
  bool is_in_old(oop p);    // reserved part
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
  // Memory allocation.   "gc_time_limit_was_exceeded" will
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
  // be set to true if the adaptive size policy determine that
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
  // an excessive amount of time is being spent doing collections
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
  // and caused a NULL to be returned.  If a NULL is not returned,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
  // "gc_time_limit_was_exceeded" has an undefined meaning.
21560
b3ae3ba25ebb 8026853: Prepare GC code for collector policy regression fix
jwilhelm
parents: 19986
diff changeset
   156
  HeapWord* mem_allocate(size_t size, bool* gc_overhead_limit_was_exceeded);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
9997
b75b7939f448 6994322: Remove the is_tlab and is_noref / is_large_noref parameters from the CollectedHeap
tonyp
parents: 9995
diff changeset
   158
  // Allocation attempt(s) during a safepoint. It should never be called
b75b7939f448 6994322: Remove the is_tlab and is_noref / is_large_noref parameters from the CollectedHeap
tonyp
parents: 9995
diff changeset
   159
  // to allocate a new TLAB as this allocation might be satisfied out
b75b7939f448 6994322: Remove the is_tlab and is_noref / is_large_noref parameters from the CollectedHeap
tonyp
parents: 9995
diff changeset
   160
  // of the old generation.
b75b7939f448 6994322: Remove the is_tlab and is_noref / is_large_noref parameters from the CollectedHeap
tonyp
parents: 9995
diff changeset
   161
  HeapWord* failed_mem_allocate(size_t size);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
  // Support for System.gc()
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
  void collect(GCCause::Cause cause);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
  // These also should be called by the vm thread at a safepoint (e.g., from a
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
  // VM operation).
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
  // The first collects the young generation only, unless the scavenge fails; it
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
  // will then attempt a full gc.  The second collects the entire heap; if
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
  // maximum_compaction is true, it will compact everything and clear all soft
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
  // references.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
  inline void invoke_scavenge();
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   174
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   175
  // Perform a full collection
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   176
  virtual void do_full_collection(bool clear_all_soft_refs);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
  bool supports_inline_contig_alloc() const { return !UseNUMA; }
388
bcc631c5bbec 6684395: Port NUMA-aware allocator to linux
iveresov
parents: 186
diff changeset
   179
bcc631c5bbec 6684395: Port NUMA-aware allocator to linux
iveresov
parents: 186
diff changeset
   180
  HeapWord** top_addr() const { return !UseNUMA ? young_gen()->top_addr() : (HeapWord**)-1; }
bcc631c5bbec 6684395: Port NUMA-aware allocator to linux
iveresov
parents: 186
diff changeset
   181
  HeapWord** end_addr() const { return !UseNUMA ? young_gen()->end_addr() : (HeapWord**)-1; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
  void ensure_parsability(bool retire_tlabs);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
  void accumulate_statistics_all_tlabs();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
  void resize_all_tlabs();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
  bool supports_tlab_allocation() const { return true; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
  size_t tlab_capacity(Thread* thr) const;
22552
a29022212180 8030177: G1: Enable TLAB resizing
brutisso
parents: 22203
diff changeset
   190
  size_t tlab_used(Thread* thr) const;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
  size_t unsafe_max_tlab_alloc(Thread* thr) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 388
diff changeset
   193
  // Can a compiler initialize a new object without store barriers?
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 388
diff changeset
   194
  // This permission only extends from the creation of a new object
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 388
diff changeset
   195
  // via a TLAB up to the first subsequent safepoint.
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 388
diff changeset
   196
  virtual bool can_elide_tlab_store_barriers() const {
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 388
diff changeset
   197
    return true;
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 388
diff changeset
   198
  }
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 388
diff changeset
   199
4637
af4d405aacc1 6896647: card marks can be deferred too long
ysr
parents: 4030
diff changeset
   200
  virtual bool card_mark_must_follow_store() const {
af4d405aacc1 6896647: card marks can be deferred too long
ysr
parents: 4030
diff changeset
   201
    return false;
af4d405aacc1 6896647: card marks can be deferred too long
ysr
parents: 4030
diff changeset
   202
  }
af4d405aacc1 6896647: card marks can be deferred too long
ysr
parents: 4030
diff changeset
   203
4030
4c471254865e 6888898: CMS: ReduceInitialCardMarks unsafe in the presence of cms precleaning
ysr
parents: 3908
diff changeset
   204
  // Return true if we don't we need a store barrier for
4c471254865e 6888898: CMS: ReduceInitialCardMarks unsafe in the presence of cms precleaning
ysr
parents: 3908
diff changeset
   205
  // initializing stores to an object at this address.
4c471254865e 6888898: CMS: ReduceInitialCardMarks unsafe in the presence of cms precleaning
ysr
parents: 3908
diff changeset
   206
  virtual bool can_elide_initializing_store_barrier(oop new_obj);
4c471254865e 6888898: CMS: ReduceInitialCardMarks unsafe in the presence of cms precleaning
ysr
parents: 3908
diff changeset
   207
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 12379
diff changeset
   208
  void oop_iterate(ExtendedOopClosure* cl);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
  void object_iterate(ObjectClosure* cl);
1893
c82e388e17c5 6689653: JMapPerm fails with UseConcMarkSweepIncGC and compressed oops off
jmasa
parents: 1388
diff changeset
   210
  void safe_object_iterate(ObjectClosure* cl) { object_iterate(cl); }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   211
489c9b5090e2 Initial load
duke
parents:
diff changeset
   212
  HeapWord* block_start(const void* addr) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
  size_t block_size(const HeapWord* addr) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
  bool block_is_obj(const HeapWord* addr) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
  jlong millis_since_last_gc();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
489c9b5090e2 Initial load
duke
parents:
diff changeset
   218
  void prepare_for_verify();
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17851
diff changeset
   219
  PSHeapSummary create_ps_heap_summary();
10997
0be4b3be7197 7099849: G1: include heap region information in hs_err files
tonyp
parents: 9997
diff changeset
   220
  virtual void print_on(outputStream* st) const;
16685
41c34debcde0 8011872: Include Bit Map addresses in the hs_err files
stefank
parents: 13728
diff changeset
   221
  virtual void print_on_error(outputStream* st) const;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
  virtual void print_gc_threads_on(outputStream* st) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
  virtual void gc_threads_do(ThreadClosure* tc) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
  virtual void print_tracing_info() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
12379
2cf45b79ce3a 4988100: oop_verify_old_oop appears to be dead
brutisso
parents: 11758
diff changeset
   226
  void verify(bool silent, VerifyOption option /* ignored */);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   227
489c9b5090e2 Initial load
duke
parents:
diff changeset
   228
  void print_heap_change(size_t prev_used);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   229
489c9b5090e2 Initial load
duke
parents:
diff changeset
   230
  // Resize the young generation.  The reserved space for the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   231
  // generation may be expanded in preparation for the resize.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   232
  void resize_young_gen(size_t eden_size, size_t survivor_size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   233
489c9b5090e2 Initial load
duke
parents:
diff changeset
   234
  // Resize the old generation.  The reserved space for the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   235
  // generation may be expanded in preparation for the resize.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   236
  void resize_old_gen(size_t desired_free_space);
971
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 388
diff changeset
   237
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 388
diff changeset
   238
  // Save the tops of the spaces in all generations
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 388
diff changeset
   239
  void record_gen_tops_before_GC() PRODUCT_RETURN;
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 388
diff changeset
   240
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 388
diff changeset
   241
  // Mangle the unused parts of all spaces in the heap
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 388
diff changeset
   242
  void gen_mangle_unused_area() PRODUCT_RETURN;
3908
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 3262
diff changeset
   243
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 3262
diff changeset
   244
  // Call these in sequential code around the processing of strong roots.
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 3262
diff changeset
   245
  class ParStrongRootsScope : public MarkingCodeBlobClosure::MarkScope {
21560
b3ae3ba25ebb 8026853: Prepare GC code for collector policy regression fix
jwilhelm
parents: 19986
diff changeset
   246
   public:
3908
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 3262
diff changeset
   247
    ParStrongRootsScope();
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 3262
diff changeset
   248
    ~ParStrongRootsScope();
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 3262
diff changeset
   249
  };
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   250
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   251
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
   252
#endif // SHARE_VM_GC_IMPLEMENTATION_PARALLELSCAVENGE_PARALLELSCAVENGEHEAP_HPP