hotspot/src/share/vm/gc_implementation/parallelScavenge/parallelScavengeHeap.hpp
author stefank
Tue, 23 Nov 2010 13:22:55 -0800
changeset 7397 5b173b4ca846
parent 5547 f4b087cbb361
child 9935 51267b5e1a3d
permissions -rw-r--r--
6989984: Use standard include model for Hospot Summary: Replaced MakeDeps and the includeDB files with more standardized solutions. Reviewed-by: coleenp, kvn, kamg
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
5547
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 5343
diff changeset
     2
 * Copyright (c) 2001, 2010, 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
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    28
#include "gc_implementation/parallelScavenge/objectStartArray.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    29
#include "gc_implementation/parallelScavenge/psGCAdaptivePolicyCounters.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    30
#include "gc_implementation/parallelScavenge/psOldGen.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    31
#include "gc_implementation/parallelScavenge/psPermGen.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"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    34
#include "gc_interface/collectedHeap.inline.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    35
#include "utilities/ostream.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    36
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
class AdjoiningGenerations;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
class GCTaskManager;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
class PSAdaptiveSizePolicy;
5343
95a5c4b89273 6858496: Clear all SoftReferences before an out-of-memory due to GC overhead limit.
jmasa
parents: 4637
diff changeset
    40
class GenerationSizer;
95a5c4b89273 6858496: Clear all SoftReferences before an out-of-memory due to GC overhead limit.
jmasa
parents: 4637
diff changeset
    41
class CollectorPolicy;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
class ParallelScavengeHeap : public CollectedHeap {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
  friend class VMStructs;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
  static PSYoungGen* _young_gen;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
  static PSOldGen*   _old_gen;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
  static PSPermGen*  _perm_gen;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
  // Sizing policy for entire heap
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
  static PSAdaptiveSizePolicy* _size_policy;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
  static PSGCAdaptivePolicyCounters*   _gc_policy_counters;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
  static ParallelScavengeHeap* _psh;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
  size_t _perm_gen_alignment;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
  size_t _young_gen_alignment;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
  size_t _old_gen_alignment;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
5343
95a5c4b89273 6858496: Clear all SoftReferences before an out-of-memory due to GC overhead limit.
jmasa
parents: 4637
diff changeset
    60
  GenerationSizer* _collector_policy;
95a5c4b89273 6858496: Clear all SoftReferences before an out-of-memory due to GC overhead limit.
jmasa
parents: 4637
diff changeset
    61
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
  inline size_t set_alignment(size_t& var, size_t val);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
  // Collection of generations that are adjacent in the
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
  // space reserved for the heap.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
  AdjoiningGenerations* _gens;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
  static GCTaskManager*          _gc_task_manager;      // The task manager.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
 protected:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
  static inline size_t total_invocations();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
  HeapWord* allocate_new_tlab(size_t size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
  ParallelScavengeHeap() : CollectedHeap() {
186
32e6c95f8d9b 6557851: CMS: ergonomics defaults are not set with FLAG_SET_ERGO
jmasa
parents: 1
diff changeset
    76
    set_alignment(_perm_gen_alignment, intra_heap_alignment());
32e6c95f8d9b 6557851: CMS: ergonomics defaults are not set with FLAG_SET_ERGO
jmasa
parents: 1
diff changeset
    77
    set_alignment(_young_gen_alignment, intra_heap_alignment());
32e6c95f8d9b 6557851: CMS: ergonomics defaults are not set with FLAG_SET_ERGO
jmasa
parents: 1
diff changeset
    78
    set_alignment(_old_gen_alignment, intra_heap_alignment());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
  // For use by VM operations
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
  enum CollectionType {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
    Scavenge,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
    MarkSweep
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
  };
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
  ParallelScavengeHeap::Name kind() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
    return CollectedHeap::ParallelScavengeHeap;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
5343
95a5c4b89273 6858496: Clear all SoftReferences before an out-of-memory due to GC overhead limit.
jmasa
parents: 4637
diff changeset
    91
CollectorPolicy* collector_policy() const { return (CollectorPolicy*) _collector_policy; }
95a5c4b89273 6858496: Clear all SoftReferences before an out-of-memory due to GC overhead limit.
jmasa
parents: 4637
diff changeset
    92
  // GenerationSizer* collector_policy() const { return _collector_policy; }
95a5c4b89273 6858496: Clear all SoftReferences before an out-of-memory due to GC overhead limit.
jmasa
parents: 4637
diff changeset
    93
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
  static PSYoungGen* young_gen()     { return _young_gen; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
  static PSOldGen* old_gen()         { return _old_gen; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
  static PSPermGen* perm_gen()       { return _perm_gen; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
  virtual PSAdaptiveSizePolicy* size_policy() { return _size_policy; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
  static PSGCAdaptivePolicyCounters* gc_policy_counters() { return _gc_policy_counters; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
  static ParallelScavengeHeap* heap();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
  static GCTaskManager* const gc_task_manager() { return _gc_task_manager; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
  AdjoiningGenerations* gens() { return _gens; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
  // Returns JNI_OK on success
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
  virtual jint initialize();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
  void post_initialize();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
  void update_counters();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
  // The alignment used for the various generations.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
  size_t perm_gen_alignment()  const { return _perm_gen_alignment; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
  size_t young_gen_alignment() const { return _young_gen_alignment; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
  size_t old_gen_alignment()  const { return _old_gen_alignment; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
186
32e6c95f8d9b 6557851: CMS: ergonomics defaults are not set with FLAG_SET_ERGO
jmasa
parents: 1
diff changeset
   118
  // The alignment used for eden and survivors within the young gen
32e6c95f8d9b 6557851: CMS: ergonomics defaults are not set with FLAG_SET_ERGO
jmasa
parents: 1
diff changeset
   119
  // and for boundary between young gen and old gen.
32e6c95f8d9b 6557851: CMS: ergonomics defaults are not set with FLAG_SET_ERGO
jmasa
parents: 1
diff changeset
   120
  size_t intra_heap_alignment() const { return 64 * K; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
  size_t capacity() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
  size_t used() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
  // Return "true" if all generations (but perm) have reached the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
  // maximal committed limit that they can reach, without a garbage
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
  // collection.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
  virtual bool is_maximal_no_gc() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
  // Does this heap support heap inspection? (+PrintClassHistogram)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
  bool supports_heap_inspection() const { return true; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
  size_t permanent_capacity() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
  size_t permanent_used() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
  size_t max_capacity() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
  // Whether p is in the allocated part of the heap
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
  bool is_in(const void* p) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
  bool is_in_reserved(const void* p) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
  bool is_in_permanent(const void *p) const {    // reserved part
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
    return perm_gen()->reserved().contains(p);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
  bool is_permanent(const void *p) const {    // committed part
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
    return perm_gen()->is_in(p);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
4030
4c471254865e 6888898: CMS: ReduceInitialCardMarks unsafe in the presence of cms precleaning
ysr
parents: 3908
diff changeset
   150
  inline bool is_in_young(oop p);        // reserved part
4c471254865e 6888898: CMS: ReduceInitialCardMarks unsafe in the presence of cms precleaning
ysr
parents: 3908
diff changeset
   151
  inline bool is_in_old_or_perm(oop p);  // reserved part
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
  // Memory allocation.   "gc_time_limit_was_exceeded" will
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
  // be set to true if the adaptive size policy determine that
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
  // an excessive amount of time is being spent doing collections
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
  // and caused a NULL to be returned.  If a NULL is not returned,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
  // "gc_time_limit_was_exceeded" has an undefined meaning.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
  HeapWord* mem_allocate(size_t size,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
                         bool is_noref,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
                         bool is_tlab,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
                         bool* gc_overhead_limit_was_exceeded);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
  HeapWord* failed_mem_allocate(size_t size, bool is_tlab);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
  HeapWord* permanent_mem_allocate(size_t size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
  HeapWord* failed_permanent_mem_allocate(size_t size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
  // Support for System.gc()
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
  void collect(GCCause::Cause cause);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
  // This interface assumes that it's being called by the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
  // vm thread. It collects the heap assuming that the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
  // heap lock is already held and that we are executing in
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
  // the context of the vm thread.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
  void collect_as_vm_thread(GCCause::Cause cause);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
  // These also should be called by the vm thread at a safepoint (e.g., from a
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
  // VM operation).
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
  // The first collects the young generation only, unless the scavenge fails; it
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
  // will then attempt a full gc.  The second collects the entire heap; if
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
  // maximum_compaction is true, it will compact everything and clear all soft
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
  // references.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
  inline void invoke_scavenge();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
  inline void invoke_full_gc(bool maximum_compaction);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
  size_t large_typearray_limit() { return FastAllocateSizeLimit; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
  bool supports_inline_contig_alloc() const { return !UseNUMA; }
388
bcc631c5bbec 6684395: Port NUMA-aware allocator to linux
iveresov
parents: 186
diff changeset
   190
bcc631c5bbec 6684395: Port NUMA-aware allocator to linux
iveresov
parents: 186
diff changeset
   191
  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
   192
  HeapWord** end_addr() const { return !UseNUMA ? young_gen()->end_addr() : (HeapWord**)-1; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
  void ensure_parsability(bool retire_tlabs);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
  void accumulate_statistics_all_tlabs();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
  void resize_all_tlabs();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
  size_t unsafe_max_alloc();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
  bool supports_tlab_allocation() const { return true; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
  size_t tlab_capacity(Thread* thr) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
  size_t unsafe_max_tlab_alloc(Thread* thr) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 388
diff changeset
   205
  // Can a compiler initialize a new object without store barriers?
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 388
diff changeset
   206
  // 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
   207
  // via a TLAB up to the first subsequent safepoint.
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 388
diff changeset
   208
  virtual bool can_elide_tlab_store_barriers() const {
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 388
diff changeset
   209
    return true;
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 388
diff changeset
   210
  }
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 388
diff changeset
   211
4637
af4d405aacc1 6896647: card marks can be deferred too long
ysr
parents: 4030
diff changeset
   212
  virtual bool card_mark_must_follow_store() const {
af4d405aacc1 6896647: card marks can be deferred too long
ysr
parents: 4030
diff changeset
   213
    return false;
af4d405aacc1 6896647: card marks can be deferred too long
ysr
parents: 4030
diff changeset
   214
  }
af4d405aacc1 6896647: card marks can be deferred too long
ysr
parents: 4030
diff changeset
   215
4030
4c471254865e 6888898: CMS: ReduceInitialCardMarks unsafe in the presence of cms precleaning
ysr
parents: 3908
diff changeset
   216
  // 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
   217
  // initializing stores to an object at this address.
4c471254865e 6888898: CMS: ReduceInitialCardMarks unsafe in the presence of cms precleaning
ysr
parents: 3908
diff changeset
   218
  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
   219
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 388
diff changeset
   220
  // Can a compiler elide a store barrier when it writes
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 388
diff changeset
   221
  // a permanent oop into the heap?  Applies when the compiler
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 388
diff changeset
   222
  // is storing x to the heap, where x->is_perm() is true.
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 388
diff changeset
   223
  virtual bool can_elide_permanent_oop_store_barriers() const {
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 388
diff changeset
   224
    return true;
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 388
diff changeset
   225
  }
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 388
diff changeset
   226
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   227
  void oop_iterate(OopClosure* cl);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   228
  void object_iterate(ObjectClosure* cl);
1893
c82e388e17c5 6689653: JMapPerm fails with UseConcMarkSweepIncGC and compressed oops off
jmasa
parents: 1388
diff changeset
   229
  void safe_object_iterate(ObjectClosure* cl) { object_iterate(cl); }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   230
  void permanent_oop_iterate(OopClosure* cl);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   231
  void permanent_object_iterate(ObjectClosure* cl);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   232
489c9b5090e2 Initial load
duke
parents:
diff changeset
   233
  HeapWord* block_start(const void* addr) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   234
  size_t block_size(const HeapWord* addr) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   235
  bool block_is_obj(const HeapWord* addr) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   236
489c9b5090e2 Initial load
duke
parents:
diff changeset
   237
  jlong millis_since_last_gc();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   238
489c9b5090e2 Initial load
duke
parents:
diff changeset
   239
  void prepare_for_verify();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   240
  void print() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   241
  void print_on(outputStream* st) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   242
  virtual void print_gc_threads_on(outputStream* st) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   243
  virtual void gc_threads_do(ThreadClosure* tc) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   244
  virtual void print_tracing_info() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   245
3262
30d1c247fc25 6700789: G1: Enable use of compressed oops with G1 heaps
ysr
parents: 2105
diff changeset
   246
  void verify(bool allow_dirty, bool silent, bool /* option */);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   247
489c9b5090e2 Initial load
duke
parents:
diff changeset
   248
  void print_heap_change(size_t prev_used);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   249
489c9b5090e2 Initial load
duke
parents:
diff changeset
   250
  // Resize the young generation.  The reserved space for the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   251
  // generation may be expanded in preparation for the resize.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   252
  void resize_young_gen(size_t eden_size, size_t survivor_size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   253
489c9b5090e2 Initial load
duke
parents:
diff changeset
   254
  // Resize the old generation.  The reserved space for the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   255
  // generation may be expanded in preparation for the resize.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   256
  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
   257
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 388
diff changeset
   258
  // 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
   259
  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
   260
f0b20be4165d 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 388
diff changeset
   261
  // 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
   262
  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
   263
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 3262
diff changeset
   264
  // 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
   265
  class ParStrongRootsScope : public MarkingCodeBlobClosure::MarkScope {
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 3262
diff changeset
   266
  public:
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 3262
diff changeset
   267
    ParStrongRootsScope();
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 3262
diff changeset
   268
    ~ParStrongRootsScope();
24b55ad4c228 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 3262
diff changeset
   269
  };
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   270
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   271
489c9b5090e2 Initial load
duke
parents:
diff changeset
   272
inline size_t ParallelScavengeHeap::set_alignment(size_t& var, size_t val)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   273
{
489c9b5090e2 Initial load
duke
parents:
diff changeset
   274
  assert(is_power_of_2((intptr_t)val), "must be a power of 2");
186
32e6c95f8d9b 6557851: CMS: ergonomics defaults are not set with FLAG_SET_ERGO
jmasa
parents: 1
diff changeset
   275
  var = round_to(val, intra_heap_alignment());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   276
  return var;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   277
}
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
   278
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
   279
#endif // SHARE_VM_GC_IMPLEMENTATION_PARALLELSCAVENGE_PARALLELSCAVENGEHEAP_HPP