author | stefank |
Mon, 07 May 2018 14:42:05 +0200 | |
changeset 50033 | 000c697c81db |
parent 49982 | 9042ffe5b7fe |
child 50034 | 01a88f825a84 |
permissions | -rw-r--r-- |
1 | 1 |
/* |
48961
120b61d50f85
8195103: Refactor out card table from CardTableModRefBS to flatten the BarrierSet hierarchy
eosterlund
parents:
48168
diff
changeset
|
2 |
* Copyright (c) 2000, 2018, Oracle and/or its affiliates. All rights reserved. |
1 | 3 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
4 |
* |
|
5 |
* This code is free software; you can redistribute it and/or modify it |
|
6 |
* under the terms of the GNU General Public License version 2 only, as |
|
7 |
* published by the Free Software Foundation. |
|
8 |
* |
|
9 |
* This code is distributed in the hope that it will be useful, but WITHOUT |
|
10 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
11 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
12 |
* version 2 for more details (a copy is included in the LICENSE file that |
|
13 |
* accompanied this code). |
|
14 |
* |
|
15 |
* You should have received a copy of the GNU General Public License version |
|
16 |
* 2 along with this work; if not, write to the Free Software Foundation, |
|
17 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
|
18 |
* |
|
5547
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
4637
diff
changeset
|
19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
4637
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:
4637
diff
changeset
|
21 |
* questions. |
1 | 22 |
* |
23 |
*/ |
|
24 |
||
30764 | 25 |
#ifndef SHARE_VM_GC_SHARED_GENCOLLECTEDHEAP_HPP |
26 |
#define SHARE_VM_GC_SHARED_GENCOLLECTEDHEAP_HPP |
|
7397 | 27 |
|
30764 | 28 |
#include "gc/shared/collectedHeap.hpp" |
29 |
#include "gc/shared/collectorPolicy.hpp" |
|
30 |
#include "gc/shared/generation.hpp" |
|
49047
8f004146e407
8198515: Extract SoftReferencePolicy code out of CollectorPolicy
stefank
parents:
49046
diff
changeset
|
31 |
#include "gc/shared/softRefGenPolicy.hpp" |
7397 | 32 |
|
49048
4e8c86b75428
8198525: Move _size_policy out of GenCollectorPolicy into GenCollectedHeap
stefank
parents:
49047
diff
changeset
|
33 |
class AdaptiveSizePolicy; |
49050
170c7b36aea6
8198530: Move _gc_policy_counters from GenCollectorPolicy to GenCollectedHeap
stefank
parents:
49049
diff
changeset
|
34 |
class GCPolicyCounters; |
49049
effb50eeea4e
8198528: Move GenerationSpecs from GenCollectorPolicy to GenCollectedHeap
stefank
parents:
49048
diff
changeset
|
35 |
class GenerationSpec; |
30868
c1b24f26deed
8080110: Remove usage of CollectedHeap::n_par_threads() from root processing
stefank
parents:
30764
diff
changeset
|
36 |
class StrongRootsScope; |
1 | 37 |
class SubTasksDone; |
32361
3de9a2e1e2d0
8087324: Use semaphores when starting and stopping GC task threads
stefank
parents:
32360
diff
changeset
|
38 |
class WorkGang; |
1 | 39 |
|
30154 | 40 |
// A "GenCollectedHeap" is a CollectedHeap that uses generational |
29200 | 41 |
// collection. It has two generations, young and old. |
30154 | 42 |
class GenCollectedHeap : public CollectedHeap { |
1 | 43 |
friend class GenCollectorPolicy; |
44 |
friend class Generation; |
|
45 |
friend class DefNewGeneration; |
|
46 |
friend class TenuredGeneration; |
|
47 |
friend class ConcurrentMarkSweepGeneration; |
|
48 |
friend class CMSCollector; |
|
49 |
friend class GenMarkSweep; |
|
50 |
friend class VM_GenCollectForAllocation; |
|
51 |
friend class VM_GenCollectFull; |
|
52 |
friend class VM_GenCollectFullConcurrent; |
|
53 |
friend class VM_GC_HeapInspection; |
|
54 |
friend class VM_HeapDumper; |
|
55 |
friend class HeapInspection; |
|
56 |
friend class GCCauseSetter; |
|
57 |
friend class VMStructs; |
|
58 |
public: |
|
59 |
friend class VM_PopulateDumpSharedSpace; |
|
60 |
||
31358
693058672cc6
8077842: Remove the level parameter passed around in GenCollectedHeap
jwilhelm
parents:
30871
diff
changeset
|
61 |
enum GenerationType { |
693058672cc6
8077842: Remove the level parameter passed around in GenCollectedHeap
jwilhelm
parents:
30871
diff
changeset
|
62 |
YoungGen, |
693058672cc6
8077842: Remove the level parameter passed around in GenCollectedHeap
jwilhelm
parents:
30871
diff
changeset
|
63 |
OldGen |
693058672cc6
8077842: Remove the level parameter passed around in GenCollectedHeap
jwilhelm
parents:
30871
diff
changeset
|
64 |
}; |
693058672cc6
8077842: Remove the level parameter passed around in GenCollectedHeap
jwilhelm
parents:
30871
diff
changeset
|
65 |
|
50033
000c697c81db
8202639: Use concrete Generation classes in SerialHeap and CMSHeap
stefank
parents:
49982
diff
changeset
|
66 |
protected: |
29200 | 67 |
Generation* _young_gen; |
68 |
Generation* _old_gen; |
|
69 |
||
50033
000c697c81db
8202639: Use concrete Generation classes in SerialHeap and CMSHeap
stefank
parents:
49982
diff
changeset
|
70 |
private: |
49049
effb50eeea4e
8198528: Move GenerationSpecs from GenCollectorPolicy to GenCollectedHeap
stefank
parents:
49048
diff
changeset
|
71 |
GenerationSpec* _young_gen_spec; |
effb50eeea4e
8198528: Move GenerationSpecs from GenCollectorPolicy to GenCollectedHeap
stefank
parents:
49048
diff
changeset
|
72 |
GenerationSpec* _old_gen_spec; |
effb50eeea4e
8198528: Move GenerationSpecs from GenCollectorPolicy to GenCollectedHeap
stefank
parents:
49048
diff
changeset
|
73 |
|
33212 | 74 |
// The singleton CardTable Remembered Set. |
75 |
CardTableRS* _rem_set; |
|
28217
57791914628c
8067499: G1SATBCardTableModRefBS should not inherit from CardTableModRefBSForCTRS
kbarrett
parents:
27898
diff
changeset
|
76 |
|
1 | 77 |
// The generational collector policy. |
78 |
GenCollectorPolicy* _gen_policy; |
|
79 |
||
49047
8f004146e407
8198515: Extract SoftReferencePolicy code out of CollectorPolicy
stefank
parents:
49046
diff
changeset
|
80 |
SoftRefGenPolicy _soft_ref_gen_policy; |
8f004146e407
8198515: Extract SoftReferencePolicy code out of CollectorPolicy
stefank
parents:
49046
diff
changeset
|
81 |
|
49048
4e8c86b75428
8198525: Move _size_policy out of GenCollectorPolicy into GenCollectedHeap
stefank
parents:
49047
diff
changeset
|
82 |
// The sizing of the heap is controlled by a sizing policy. |
4e8c86b75428
8198525: Move _size_policy out of GenCollectorPolicy into GenCollectedHeap
stefank
parents:
49047
diff
changeset
|
83 |
AdaptiveSizePolicy* _size_policy; |
4e8c86b75428
8198525: Move _size_policy out of GenCollectorPolicy into GenCollectedHeap
stefank
parents:
49047
diff
changeset
|
84 |
|
49050
170c7b36aea6
8198530: Move _gc_policy_counters from GenCollectorPolicy to GenCollectedHeap
stefank
parents:
49049
diff
changeset
|
85 |
GCPolicyCounters* _gc_policy_counters; |
170c7b36aea6
8198530: Move _gc_policy_counters from GenCollectorPolicy to GenCollectedHeap
stefank
parents:
49049
diff
changeset
|
86 |
|
6985
e9364ec299ac
6896603: CMS/GCH: collection_attempt_is_safe() ergo should use more recent data
ysr
parents:
6759
diff
changeset
|
87 |
// Indicates that the most recent previous incremental collection failed. |
e9364ec299ac
6896603: CMS/GCH: collection_attempt_is_safe() ergo should use more recent data
ysr
parents:
6759
diff
changeset
|
88 |
// The flag is cleared when an action is taken that might clear the |
e9364ec299ac
6896603: CMS/GCH: collection_attempt_is_safe() ergo should use more recent data
ysr
parents:
6759
diff
changeset
|
89 |
// condition that caused that incremental collection to fail. |
e9364ec299ac
6896603: CMS/GCH: collection_attempt_is_safe() ergo should use more recent data
ysr
parents:
6759
diff
changeset
|
90 |
bool _incremental_collection_failed; |
1 | 91 |
|
92 |
// In support of ExplicitGCInvokesConcurrent functionality |
|
93 |
unsigned int _full_collections_completed; |
|
94 |
||
29200 | 95 |
// Collects the given generation. |
96 |
void collect_generation(Generation* gen, bool full, size_t size, bool is_tlab, |
|
97 |
bool run_verification, bool clear_soft_refs, |
|
98 |
bool restore_marks_for_biased_locking); |
|
99 |
||
47819
ee36a8e36561
8183542: Factor out serial GC specific code from GenCollectedHeap into its own subclass
rkennke
parents:
47624
diff
changeset
|
100 |
// Reserve aligned space for the heap as needed by the contained generations. |
ee36a8e36561
8183542: Factor out serial GC specific code from GenCollectedHeap into its own subclass
rkennke
parents:
47624
diff
changeset
|
101 |
char* allocate(size_t alignment, ReservedSpace* heap_rs); |
ee36a8e36561
8183542: Factor out serial GC specific code from GenCollectedHeap into its own subclass
rkennke
parents:
47624
diff
changeset
|
102 |
|
ee36a8e36561
8183542: Factor out serial GC specific code from GenCollectedHeap into its own subclass
rkennke
parents:
47624
diff
changeset
|
103 |
// Initialize ("weak") refs processing support |
ee36a8e36561
8183542: Factor out serial GC specific code from GenCollectedHeap into its own subclass
rkennke
parents:
47624
diff
changeset
|
104 |
void ref_processing_init(); |
ee36a8e36561
8183542: Factor out serial GC specific code from GenCollectedHeap into its own subclass
rkennke
parents:
47624
diff
changeset
|
105 |
|
47622
817f2a7019e4
8179387: Factor out CMS specific code from GenCollectedHeap into its own subclass
rkennke
parents:
47216
diff
changeset
|
106 |
protected: |
1 | 107 |
|
47622
817f2a7019e4
8179387: Factor out CMS specific code from GenCollectedHeap into its own subclass
rkennke
parents:
47216
diff
changeset
|
108 |
// The set of potentially parallel tasks in root scanning. |
817f2a7019e4
8179387: Factor out CMS specific code from GenCollectedHeap into its own subclass
rkennke
parents:
47216
diff
changeset
|
109 |
enum GCH_strong_roots_tasks { |
817f2a7019e4
8179387: Factor out CMS specific code from GenCollectedHeap into its own subclass
rkennke
parents:
47216
diff
changeset
|
110 |
GCH_PS_Universe_oops_do, |
817f2a7019e4
8179387: Factor out CMS specific code from GenCollectedHeap into its own subclass
rkennke
parents:
47216
diff
changeset
|
111 |
GCH_PS_JNIHandles_oops_do, |
817f2a7019e4
8179387: Factor out CMS specific code from GenCollectedHeap into its own subclass
rkennke
parents:
47216
diff
changeset
|
112 |
GCH_PS_ObjectSynchronizer_oops_do, |
817f2a7019e4
8179387: Factor out CMS specific code from GenCollectedHeap into its own subclass
rkennke
parents:
47216
diff
changeset
|
113 |
GCH_PS_FlatProfiler_oops_do, |
817f2a7019e4
8179387: Factor out CMS specific code from GenCollectedHeap into its own subclass
rkennke
parents:
47216
diff
changeset
|
114 |
GCH_PS_Management_oops_do, |
817f2a7019e4
8179387: Factor out CMS specific code from GenCollectedHeap into its own subclass
rkennke
parents:
47216
diff
changeset
|
115 |
GCH_PS_SystemDictionary_oops_do, |
817f2a7019e4
8179387: Factor out CMS specific code from GenCollectedHeap into its own subclass
rkennke
parents:
47216
diff
changeset
|
116 |
GCH_PS_ClassLoaderDataGraph_oops_do, |
817f2a7019e4
8179387: Factor out CMS specific code from GenCollectedHeap into its own subclass
rkennke
parents:
47216
diff
changeset
|
117 |
GCH_PS_jvmti_oops_do, |
817f2a7019e4
8179387: Factor out CMS specific code from GenCollectedHeap into its own subclass
rkennke
parents:
47216
diff
changeset
|
118 |
GCH_PS_CodeCache_oops_do, |
817f2a7019e4
8179387: Factor out CMS specific code from GenCollectedHeap into its own subclass
rkennke
parents:
47216
diff
changeset
|
119 |
GCH_PS_aot_oops_do, |
817f2a7019e4
8179387: Factor out CMS specific code from GenCollectedHeap into its own subclass
rkennke
parents:
47216
diff
changeset
|
120 |
GCH_PS_younger_gens, |
817f2a7019e4
8179387: Factor out CMS specific code from GenCollectedHeap into its own subclass
rkennke
parents:
47216
diff
changeset
|
121 |
// Leave this one last. |
817f2a7019e4
8179387: Factor out CMS specific code from GenCollectedHeap into its own subclass
rkennke
parents:
47216
diff
changeset
|
122 |
GCH_PS_NumElements |
817f2a7019e4
8179387: Factor out CMS specific code from GenCollectedHeap into its own subclass
rkennke
parents:
47216
diff
changeset
|
123 |
}; |
30152 | 124 |
|
47622
817f2a7019e4
8179387: Factor out CMS specific code from GenCollectedHeap into its own subclass
rkennke
parents:
47216
diff
changeset
|
125 |
// Data structure for claiming the (potentially) parallel tasks in |
817f2a7019e4
8179387: Factor out CMS specific code from GenCollectedHeap into its own subclass
rkennke
parents:
47216
diff
changeset
|
126 |
// (gen-specific) roots processing. |
817f2a7019e4
8179387: Factor out CMS specific code from GenCollectedHeap into its own subclass
rkennke
parents:
47216
diff
changeset
|
127 |
SubTasksDone* _process_strong_tasks; |
817f2a7019e4
8179387: Factor out CMS specific code from GenCollectedHeap into its own subclass
rkennke
parents:
47216
diff
changeset
|
128 |
|
48168
cb5d2d4453d0
8191564: Refactor GC related servicability code into GC specific subclasses
rkennke
parents:
47819
diff
changeset
|
129 |
GCMemoryManager* _young_manager; |
cb5d2d4453d0
8191564: Refactor GC related servicability code into GC specific subclasses
rkennke
parents:
47819
diff
changeset
|
130 |
GCMemoryManager* _old_manager; |
cb5d2d4453d0
8191564: Refactor GC related servicability code into GC specific subclasses
rkennke
parents:
47819
diff
changeset
|
131 |
|
1 | 132 |
// Helper functions for allocation |
133 |
HeapWord* attempt_allocation(size_t size, |
|
134 |
bool is_tlab, |
|
135 |
bool first_only); |
|
136 |
||
137 |
// Helper function for two callbacks below. |
|
138 |
// Considers collection of the first max_level+1 generations. |
|
31358
693058672cc6
8077842: Remove the level parameter passed around in GenCollectedHeap
jwilhelm
parents:
30871
diff
changeset
|
139 |
void do_collection(bool full, |
693058672cc6
8077842: Remove the level parameter passed around in GenCollectedHeap
jwilhelm
parents:
30871
diff
changeset
|
140 |
bool clear_all_soft_refs, |
693058672cc6
8077842: Remove the level parameter passed around in GenCollectedHeap
jwilhelm
parents:
30871
diff
changeset
|
141 |
size_t size, |
693058672cc6
8077842: Remove the level parameter passed around in GenCollectedHeap
jwilhelm
parents:
30871
diff
changeset
|
142 |
bool is_tlab, |
693058672cc6
8077842: Remove the level parameter passed around in GenCollectedHeap
jwilhelm
parents:
30871
diff
changeset
|
143 |
GenerationType max_generation); |
1 | 144 |
|
145 |
// Callback from VM_GenCollectForAllocation operation. |
|
146 |
// This function does everything necessary/possible to satisfy an |
|
147 |
// allocation request that failed in the youngest generation that should |
|
148 |
// have handled it (including collection, expansion, etc.) |
|
149 |
HeapWord* satisfy_failed_allocation(size_t size, bool is_tlab); |
|
150 |
||
151 |
// Callback from VM_GenCollectFull operation. |
|
152 |
// Perform a full collection of the first max_level+1 generations. |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
153 |
virtual void do_full_collection(bool clear_all_soft_refs); |
31358
693058672cc6
8077842: Remove the level parameter passed around in GenCollectedHeap
jwilhelm
parents:
30871
diff
changeset
|
154 |
void do_full_collection(bool clear_all_soft_refs, GenerationType max_generation); |
1 | 155 |
|
156 |
// Does the "cause" of GC indicate that |
|
157 |
// we absolutely __must__ clear soft refs? |
|
158 |
bool must_clear_all_soft_refs(); |
|
159 |
||
49049
effb50eeea4e
8198528: Move GenerationSpecs from GenCollectorPolicy to GenCollectedHeap
stefank
parents:
49048
diff
changeset
|
160 |
GenCollectedHeap(GenCollectorPolicy *policy, |
effb50eeea4e
8198528: Move GenerationSpecs from GenCollectorPolicy to GenCollectedHeap
stefank
parents:
49048
diff
changeset
|
161 |
Generation::Name young, |
49050
170c7b36aea6
8198530: Move _gc_policy_counters from GenCollectorPolicy to GenCollectedHeap
stefank
parents:
49049
diff
changeset
|
162 |
Generation::Name old, |
170c7b36aea6
8198530: Move _gc_policy_counters from GenCollectorPolicy to GenCollectedHeap
stefank
parents:
49049
diff
changeset
|
163 |
const char* policy_counters_name); |
47819
ee36a8e36561
8183542: Factor out serial GC specific code from GenCollectedHeap into its own subclass
rkennke
parents:
47624
diff
changeset
|
164 |
|
1 | 165 |
public: |
166 |
||
167 |
// Returns JNI_OK on success |
|
168 |
virtual jint initialize(); |
|
49733
6f0a3ea5ab75
8201209: Separate out CMS specific functions into CMSCardTable
stefank
parents:
49050
diff
changeset
|
169 |
virtual CardTableRS* create_rem_set(const MemRegion& reserved_region); |
28939 | 170 |
|
49048
4e8c86b75428
8198525: Move _size_policy out of GenCollectorPolicy into GenCollectedHeap
stefank
parents:
49047
diff
changeset
|
171 |
void initialize_size_policy(size_t init_eden_size, |
4e8c86b75428
8198525: Move _size_policy out of GenCollectorPolicy into GenCollectedHeap
stefank
parents:
49047
diff
changeset
|
172 |
size_t init_promo_size, |
4e8c86b75428
8198525: Move _size_policy out of GenCollectorPolicy into GenCollectedHeap
stefank
parents:
49047
diff
changeset
|
173 |
size_t init_survivor_size); |
4e8c86b75428
8198525: Move _size_policy out of GenCollectorPolicy into GenCollectedHeap
stefank
parents:
49047
diff
changeset
|
174 |
|
1 | 175 |
// Does operations required after initialization has been done. |
176 |
void post_initialize(); |
|
177 |
||
29794 | 178 |
Generation* young_gen() const { return _young_gen; } |
179 |
Generation* old_gen() const { return _old_gen; } |
|
29200 | 180 |
|
31358
693058672cc6
8077842: Remove the level parameter passed around in GenCollectedHeap
jwilhelm
parents:
30871
diff
changeset
|
181 |
bool is_young_gen(const Generation* gen) const { return gen == _young_gen; } |
693058672cc6
8077842: Remove the level parameter passed around in GenCollectedHeap
jwilhelm
parents:
30871
diff
changeset
|
182 |
bool is_old_gen(const Generation* gen) const { return gen == _old_gen; } |
693058672cc6
8077842: Remove the level parameter passed around in GenCollectedHeap
jwilhelm
parents:
30871
diff
changeset
|
183 |
|
49049
effb50eeea4e
8198528: Move GenerationSpecs from GenCollectorPolicy to GenCollectedHeap
stefank
parents:
49048
diff
changeset
|
184 |
GenerationSpec* young_gen_spec() const; |
effb50eeea4e
8198528: Move GenerationSpecs from GenCollectorPolicy to GenCollectedHeap
stefank
parents:
49048
diff
changeset
|
185 |
GenerationSpec* old_gen_spec() const; |
effb50eeea4e
8198528: Move GenerationSpecs from GenCollectorPolicy to GenCollectedHeap
stefank
parents:
49048
diff
changeset
|
186 |
|
1 | 187 |
// The generational collector policy. |
188 |
GenCollectorPolicy* gen_policy() const { return _gen_policy; } |
|
29200 | 189 |
|
32735
c6063d028c3c
8134797: Remove explicit casts in CollectorPolicy hierarchy
kbarrett
parents:
32623
diff
changeset
|
190 |
virtual CollectorPolicy* collector_policy() const { return gen_policy(); } |
1 | 191 |
|
49047
8f004146e407
8198515: Extract SoftReferencePolicy code out of CollectorPolicy
stefank
parents:
49046
diff
changeset
|
192 |
virtual SoftRefPolicy* soft_ref_policy() { return &_soft_ref_gen_policy; } |
8f004146e407
8198515: Extract SoftReferencePolicy code out of CollectorPolicy
stefank
parents:
49046
diff
changeset
|
193 |
|
1 | 194 |
// Adaptive size policy |
195 |
virtual AdaptiveSizePolicy* size_policy() { |
|
49048
4e8c86b75428
8198525: Move _size_policy out of GenCollectorPolicy into GenCollectedHeap
stefank
parents:
49047
diff
changeset
|
196 |
return _size_policy; |
1 | 197 |
} |
198 |
||
49050
170c7b36aea6
8198530: Move _gc_policy_counters from GenCollectorPolicy to GenCollectedHeap
stefank
parents:
49049
diff
changeset
|
199 |
// Performance Counter support |
170c7b36aea6
8198530: Move _gc_policy_counters from GenCollectorPolicy to GenCollectedHeap
stefank
parents:
49049
diff
changeset
|
200 |
GCPolicyCounters* counters() { return _gc_policy_counters; } |
170c7b36aea6
8198530: Move _gc_policy_counters from GenCollectorPolicy to GenCollectedHeap
stefank
parents:
49049
diff
changeset
|
201 |
|
19986
33d188c66ed9
8010722: assert: failed: heap size is too big for compressed oops
tschatzl
parents:
19286
diff
changeset
|
202 |
// Return the (conservative) maximum heap alignment |
33d188c66ed9
8010722: assert: failed: heap size is too big for compressed oops
tschatzl
parents:
19286
diff
changeset
|
203 |
static size_t conservative_max_heap_alignment() { |
33d188c66ed9
8010722: assert: failed: heap size is too big for compressed oops
tschatzl
parents:
19286
diff
changeset
|
204 |
return Generation::GenGrain; |
33d188c66ed9
8010722: assert: failed: heap size is too big for compressed oops
tschatzl
parents:
19286
diff
changeset
|
205 |
} |
33d188c66ed9
8010722: assert: failed: heap size is too big for compressed oops
tschatzl
parents:
19286
diff
changeset
|
206 |
|
1 | 207 |
size_t capacity() const; |
208 |
size_t used() const; |
|
209 |
||
31358
693058672cc6
8077842: Remove the level parameter passed around in GenCollectedHeap
jwilhelm
parents:
30871
diff
changeset
|
210 |
// Save the "used_region" for both generations. |
693058672cc6
8077842: Remove the level parameter passed around in GenCollectedHeap
jwilhelm
parents:
30871
diff
changeset
|
211 |
void save_used_regions(); |
1 | 212 |
|
213 |
size_t max_capacity() const; |
|
214 |
||
32623
390a27af5657
8134626: Misc cleanups after generation array removal
jwilhelm
parents:
32361
diff
changeset
|
215 |
HeapWord* mem_allocate(size_t size, bool* gc_overhead_limit_was_exceeded); |
1 | 216 |
|
217 |
// We may support a shared contiguous allocation area, if the youngest |
|
218 |
// generation does. |
|
219 |
bool supports_inline_contig_alloc() const; |
|
41283
2615c024f3eb
8033552: Fix missing missing volatile specifiers in CAS operations in GC code
eosterlund
parents:
40892
diff
changeset
|
220 |
HeapWord* volatile* top_addr() const; |
1 | 221 |
HeapWord** end_addr() const; |
222 |
||
223 |
// Perform a full collection of the heap; intended for use in implementing |
|
224 |
// "System.gc". This implies as full a collection as the CollectedHeap |
|
225 |
// supports. Caller does not hold the Heap_lock on entry. |
|
47622
817f2a7019e4
8179387: Factor out CMS specific code from GenCollectedHeap into its own subclass
rkennke
parents:
47216
diff
changeset
|
226 |
virtual void collect(GCCause::Cause cause); |
1 | 227 |
|
228 |
// The same as above but assume that the caller holds the Heap_lock. |
|
229 |
void collect_locked(GCCause::Cause cause); |
|
230 |
||
31358
693058672cc6
8077842: Remove the level parameter passed around in GenCollectedHeap
jwilhelm
parents:
30871
diff
changeset
|
231 |
// Perform a full collection of generations up to and including max_generation. |
1 | 232 |
// Mostly used for testing purposes. Caller does not hold the Heap_lock on entry. |
31358
693058672cc6
8077842: Remove the level parameter passed around in GenCollectedHeap
jwilhelm
parents:
30871
diff
changeset
|
233 |
void collect(GCCause::Cause cause, GenerationType max_generation); |
1 | 234 |
|
11247 | 235 |
// Returns "TRUE" iff "p" points into the committed areas of the heap. |
1 | 236 |
// The methods is_in(), is_in_closed_subset() and is_in_youngest() may |
237 |
// be expensive to compute in general, so, to prevent |
|
238 |
// their inadvertent use in product jvm's, we restrict their use to |
|
239 |
// assertion checking or verification only. |
|
240 |
bool is_in(const void* p) const; |
|
241 |
||
9935
51267b5e1a3d
7041789: 30% perf regression with c2/arm following 7017732
jmasa
parents:
9342
diff
changeset
|
242 |
// Returns true if the reference is to an object in the reserved space |
51267b5e1a3d
7041789: 30% perf regression with c2/arm following 7017732
jmasa
parents:
9342
diff
changeset
|
243 |
// for the young generation. |
51267b5e1a3d
7041789: 30% perf regression with c2/arm following 7017732
jmasa
parents:
9342
diff
changeset
|
244 |
// Assumes the the young gen address range is less than that of the old gen. |
51267b5e1a3d
7041789: 30% perf regression with c2/arm following 7017732
jmasa
parents:
9342
diff
changeset
|
245 |
bool is_in_young(oop p); |
51267b5e1a3d
7041789: 30% perf regression with c2/arm following 7017732
jmasa
parents:
9342
diff
changeset
|
246 |
|
51267b5e1a3d
7041789: 30% perf regression with c2/arm following 7017732
jmasa
parents:
9342
diff
changeset
|
247 |
#ifdef ASSERT |
29803 | 248 |
bool is_in_partial_collection(const void* p); |
9935
51267b5e1a3d
7041789: 30% perf regression with c2/arm following 7017732
jmasa
parents:
9342
diff
changeset
|
249 |
#endif |
51267b5e1a3d
7041789: 30% perf regression with c2/arm following 7017732
jmasa
parents:
9342
diff
changeset
|
250 |
|
47624
b055cb5170f5
8185141: Generalize scavengeable nmethod root handling
eosterlund
parents:
47622
diff
changeset
|
251 |
virtual bool is_scavengable(oop obj) { |
b055cb5170f5
8185141: Generalize scavengeable nmethod root handling
eosterlund
parents:
47622
diff
changeset
|
252 |
return is_in_young(obj); |
9935
51267b5e1a3d
7041789: 30% perf regression with c2/arm following 7017732
jmasa
parents:
9342
diff
changeset
|
253 |
} |
1 | 254 |
|
47624
b055cb5170f5
8185141: Generalize scavengeable nmethod root handling
eosterlund
parents:
47622
diff
changeset
|
255 |
// Optimized nmethod scanning support routines |
b055cb5170f5
8185141: Generalize scavengeable nmethod root handling
eosterlund
parents:
47622
diff
changeset
|
256 |
virtual void register_nmethod(nmethod* nm); |
b055cb5170f5
8185141: Generalize scavengeable nmethod root handling
eosterlund
parents:
47622
diff
changeset
|
257 |
virtual void verify_nmethod(nmethod* nmethod); |
b055cb5170f5
8185141: Generalize scavengeable nmethod root handling
eosterlund
parents:
47622
diff
changeset
|
258 |
|
1 | 259 |
// Iteration functions. |
30152 | 260 |
void oop_iterate_no_header(OopClosure* cl); |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
261 |
void oop_iterate(ExtendedOopClosure* cl); |
1 | 262 |
void object_iterate(ObjectClosure* cl); |
1893
c82e388e17c5
6689653: JMapPerm fails with UseConcMarkSweepIncGC and compressed oops off
jmasa
parents:
1388
diff
changeset
|
263 |
void safe_object_iterate(ObjectClosure* cl); |
1 | 264 |
Space* space_containing(const void* addr) const; |
265 |
||
266 |
// A CollectedHeap is divided into a dense sequence of "blocks"; that is, |
|
267 |
// each address in the (reserved) heap is a member of exactly |
|
268 |
// one block. The defining characteristic of a block is that it is |
|
269 |
// possible to find its size, and thus to progress forward to the next |
|
270 |
// block. (Blocks may be of different sizes.) Thus, blocks may |
|
271 |
// represent Java objects, or they might be free blocks in a |
|
272 |
// free-list-based heap (or subheap), as long as the two kinds are |
|
273 |
// distinguishable and the size of each is determinable. |
|
274 |
||
275 |
// Returns the address of the start of the "block" that contains the |
|
276 |
// address "addr". We say "blocks" instead of "object" since some heaps |
|
277 |
// may not pack objects densely; a chunk may either be an object or a |
|
278 |
// non-object. |
|
279 |
virtual HeapWord* block_start(const void* addr) const; |
|
280 |
||
281 |
// Requires "addr" to be the start of a chunk, and returns its size. |
|
282 |
// "addr + size" is required to be the start of a new chunk, or the end |
|
283 |
// of the active area of the heap. Assumes (and verifies in non-product |
|
284 |
// builds) that addr is in the allocated part of the heap and is |
|
285 |
// the start of a chunk. |
|
286 |
virtual size_t block_size(const HeapWord* addr) const; |
|
287 |
||
288 |
// Requires "addr" to be the start of a block, and returns "TRUE" iff |
|
289 |
// the block is an object. Assumes (and verifies in non-product |
|
290 |
// builds) that addr is in the allocated part of the heap and is |
|
291 |
// the start of a chunk. |
|
292 |
virtual bool block_is_obj(const HeapWord* addr) const; |
|
293 |
||
294 |
// Section on TLAB's. |
|
295 |
virtual bool supports_tlab_allocation() const; |
|
296 |
virtual size_t tlab_capacity(Thread* thr) const; |
|
22552 | 297 |
virtual size_t tlab_used(Thread* thr) const; |
1 | 298 |
virtual size_t unsafe_max_tlab_alloc(Thread* thr) const; |
49945 | 299 |
virtual HeapWord* allocate_new_tlab(size_t min_size, |
300 |
size_t requested_size, |
|
301 |
size_t* actual_size); |
|
1 | 302 |
|
303 |
// The "requestor" generation is performing some garbage collection |
|
304 |
// action for which it would be useful to have scratch space. The |
|
305 |
// requestor promises to allocate no more than "max_alloc_words" in any |
|
306 |
// older generation (via promotion say.) Any blocks of space that can |
|
307 |
// be provided are returned as a list of ScratchBlocks, sorted by |
|
308 |
// decreasing size. |
|
309 |
ScratchBlock* gather_scratch(Generation* requestor, size_t max_alloc_words); |
|
971
f0b20be4165d
6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents:
389
diff
changeset
|
310 |
// Allow each generation to reset any scratch space that it has |
f0b20be4165d
6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents:
389
diff
changeset
|
311 |
// contributed as it needs. |
f0b20be4165d
6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents:
389
diff
changeset
|
312 |
void release_scratch(); |
1 | 313 |
|
314 |
// Ensure parsability: override |
|
315 |
virtual void ensure_parsability(bool retire_tlabs); |
|
316 |
||
317 |
// Time in ms since the longest time a collector ran in |
|
318 |
// in any generation. |
|
319 |
virtual jlong millis_since_last_gc(); |
|
320 |
||
321 |
// Total number of full collections completed. |
|
322 |
unsigned int total_full_collections_completed() { |
|
323 |
assert(_full_collections_completed <= _total_full_collections, |
|
324 |
"Can't complete more collections than were started"); |
|
325 |
return _full_collections_completed; |
|
326 |
} |
|
327 |
||
328 |
// Update above counter, as appropriate, at the end of a stop-world GC cycle |
|
329 |
unsigned int update_full_collections_completed(); |
|
330 |
// Update above counter, as appropriate, at the end of a concurrent GC cycle |
|
331 |
unsigned int update_full_collections_completed(unsigned int count); |
|
332 |
||
29200 | 333 |
// Update "time of last gc" for all generations to "now". |
1 | 334 |
void update_time_of_last_gc(jlong now) { |
29200 | 335 |
_young_gen->update_time_of_last_gc(now); |
336 |
_old_gen->update_time_of_last_gc(now); |
|
1 | 337 |
} |
338 |
||
339 |
// Update the gc statistics for each generation. |
|
31358
693058672cc6
8077842: Remove the level parameter passed around in GenCollectedHeap
jwilhelm
parents:
30871
diff
changeset
|
340 |
void update_gc_stats(Generation* current_generation, bool full) { |
693058672cc6
8077842: Remove the level parameter passed around in GenCollectedHeap
jwilhelm
parents:
30871
diff
changeset
|
341 |
_old_gen->update_gc_stats(current_generation, full); |
1 | 342 |
} |
343 |
||
344 |
bool no_gc_in_progress() { return !is_gc_active(); } |
|
345 |
||
346 |
// Override. |
|
347 |
void prepare_for_verify(); |
|
348 |
||
349 |
// Override. |
|
35061 | 350 |
void verify(VerifyOption option); |
1 | 351 |
|
352 |
// Override. |
|
10997
0be4b3be7197
7099849: G1: include heap region information in hs_err files
tonyp
parents:
9997
diff
changeset
|
353 |
virtual void print_on(outputStream* st) const; |
1 | 354 |
virtual void print_gc_threads_on(outputStream* st) const; |
355 |
virtual void gc_threads_do(ThreadClosure* tc) const; |
|
356 |
virtual void print_tracing_info() const; |
|
357 |
||
35061 | 358 |
void print_heap_change(size_t young_prev_used, size_t old_prev_used) const; |
1 | 359 |
|
360 |
// The functions below are helper functions that a subclass of |
|
361 |
// "CollectedHeap" can use in the implementation of its virtual |
|
362 |
// functions. |
|
363 |
||
364 |
class GenClosure : public StackObj { |
|
365 |
public: |
|
366 |
virtual void do_generation(Generation* gen) = 0; |
|
367 |
}; |
|
368 |
||
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
369 |
// Apply "cl.do_generation" to all generations in the heap |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
370 |
// If "old_to_young" determines the order. |
1 | 371 |
void generation_iterate(GenClosure* cl, bool old_to_young); |
372 |
||
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
373 |
// Return "true" if all generations have reached the |
1 | 374 |
// maximal committed limit that they can reach, without a garbage |
375 |
// collection. |
|
376 |
virtual bool is_maximal_no_gc() const; |
|
377 |
||
33212 | 378 |
// This function returns the CardTableRS object that allows us to scan |
28217
57791914628c
8067499: G1SATBCardTableModRefBS should not inherit from CardTableModRefBSForCTRS
kbarrett
parents:
27898
diff
changeset
|
379 |
// generations in a fully generational heap. |
33212 | 380 |
CardTableRS* rem_set() { return _rem_set; } |
28217
57791914628c
8067499: G1SATBCardTableModRefBS should not inherit from CardTableModRefBSForCTRS
kbarrett
parents:
27898
diff
changeset
|
381 |
|
1 | 382 |
// Convenience function to be used in situations where the heap type can be |
383 |
// asserted to be this type. |
|
384 |
static GenCollectedHeap* heap(); |
|
385 |
||
41682
b63330180476
8166276: Refactor gen_process_roots to allow simpler fix for 8165949
jwilhelm
parents:
41283
diff
changeset
|
386 |
// The ScanningOption determines which of the roots |
1 | 387 |
// the closure is applied to: |
388 |
// "SO_None" does none; |
|
29693
fac175f7a466
8075210: Refactor strong root processing in order to allow G1 to evolve separately from GenCollectedHeap
mgerdin
parents:
29684
diff
changeset
|
389 |
enum ScanningOption { |
fac175f7a466
8075210: Refactor strong root processing in order to allow G1 to evolve separately from GenCollectedHeap
mgerdin
parents:
29684
diff
changeset
|
390 |
SO_None = 0x0, |
fac175f7a466
8075210: Refactor strong root processing in order to allow G1 to evolve separately from GenCollectedHeap
mgerdin
parents:
29684
diff
changeset
|
391 |
SO_AllCodeCache = 0x8, |
fac175f7a466
8075210: Refactor strong root processing in order to allow G1 to evolve separately from GenCollectedHeap
mgerdin
parents:
29684
diff
changeset
|
392 |
SO_ScavengeCodeCache = 0x10 |
fac175f7a466
8075210: Refactor strong root processing in order to allow G1 to evolve separately from GenCollectedHeap
mgerdin
parents:
29684
diff
changeset
|
393 |
}; |
fac175f7a466
8075210: Refactor strong root processing in order to allow G1 to evolve separately from GenCollectedHeap
mgerdin
parents:
29684
diff
changeset
|
394 |
|
47622
817f2a7019e4
8179387: Factor out CMS specific code from GenCollectedHeap into its own subclass
rkennke
parents:
47216
diff
changeset
|
395 |
protected: |
30868
c1b24f26deed
8080110: Remove usage of CollectedHeap::n_par_threads() from root processing
stefank
parents:
30764
diff
changeset
|
396 |
void process_roots(StrongRootsScope* scope, |
29693
fac175f7a466
8075210: Refactor strong root processing in order to allow G1 to evolve separately from GenCollectedHeap
mgerdin
parents:
29684
diff
changeset
|
397 |
ScanningOption so, |
fac175f7a466
8075210: Refactor strong root processing in order to allow G1 to evolve separately from GenCollectedHeap
mgerdin
parents:
29684
diff
changeset
|
398 |
OopClosure* strong_roots, |
fac175f7a466
8075210: Refactor strong root processing in order to allow G1 to evolve separately from GenCollectedHeap
mgerdin
parents:
29684
diff
changeset
|
399 |
OopClosure* weak_roots, |
fac175f7a466
8075210: Refactor strong root processing in order to allow G1 to evolve separately from GenCollectedHeap
mgerdin
parents:
29684
diff
changeset
|
400 |
CLDClosure* strong_cld_closure, |
fac175f7a466
8075210: Refactor strong root processing in order to allow G1 to evolve separately from GenCollectedHeap
mgerdin
parents:
29684
diff
changeset
|
401 |
CLDClosure* weak_cld_closure, |
36591
d0622cab5983
8150013: ParNew: Prune nmethods scavengable list.
cvarming
parents:
35061
diff
changeset
|
402 |
CodeBlobToOopClosure* code_roots); |
29693
fac175f7a466
8075210: Refactor strong root processing in order to allow G1 to evolve separately from GenCollectedHeap
mgerdin
parents:
29684
diff
changeset
|
403 |
|
41683
cd5d2527e163
8165949: Serial and ConcMarkSweep do not unload strings when class unloading is disabled
sjohanss
parents:
41682
diff
changeset
|
404 |
void process_string_table_roots(StrongRootsScope* scope, |
cd5d2527e163
8165949: Serial and ConcMarkSweep do not unload strings when class unloading is disabled
sjohanss
parents:
41682
diff
changeset
|
405 |
OopClosure* root_closure); |
cd5d2527e163
8165949: Serial and ConcMarkSweep do not unload strings when class unloading is disabled
sjohanss
parents:
41682
diff
changeset
|
406 |
|
47622
817f2a7019e4
8179387: Factor out CMS specific code from GenCollectedHeap into its own subclass
rkennke
parents:
47216
diff
changeset
|
407 |
// Accessor for memory state verification support |
817f2a7019e4
8179387: Factor out CMS specific code from GenCollectedHeap into its own subclass
rkennke
parents:
47216
diff
changeset
|
408 |
NOT_PRODUCT( |
817f2a7019e4
8179387: Factor out CMS specific code from GenCollectedHeap into its own subclass
rkennke
parents:
47216
diff
changeset
|
409 |
virtual size_t skip_header_HeapWords() { return 0; } |
817f2a7019e4
8179387: Factor out CMS specific code from GenCollectedHeap into its own subclass
rkennke
parents:
47216
diff
changeset
|
410 |
) |
817f2a7019e4
8179387: Factor out CMS specific code from GenCollectedHeap into its own subclass
rkennke
parents:
47216
diff
changeset
|
411 |
|
817f2a7019e4
8179387: Factor out CMS specific code from GenCollectedHeap into its own subclass
rkennke
parents:
47216
diff
changeset
|
412 |
virtual void gc_prologue(bool full); |
817f2a7019e4
8179387: Factor out CMS specific code from GenCollectedHeap into its own subclass
rkennke
parents:
47216
diff
changeset
|
413 |
virtual void gc_epilogue(bool full); |
817f2a7019e4
8179387: Factor out CMS specific code from GenCollectedHeap into its own subclass
rkennke
parents:
47216
diff
changeset
|
414 |
|
25492
d27050bdfb04
8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents:
25491
diff
changeset
|
415 |
public: |
41682
b63330180476
8166276: Refactor gen_process_roots to allow simpler fix for 8165949
jwilhelm
parents:
41283
diff
changeset
|
416 |
void young_process_roots(StrongRootsScope* scope, |
b63330180476
8166276: Refactor gen_process_roots to allow simpler fix for 8165949
jwilhelm
parents:
41283
diff
changeset
|
417 |
OopsInGenClosure* root_closure, |
b63330180476
8166276: Refactor gen_process_roots to allow simpler fix for 8165949
jwilhelm
parents:
41283
diff
changeset
|
418 |
OopsInGenClosure* old_gen_closure, |
b63330180476
8166276: Refactor gen_process_roots to allow simpler fix for 8165949
jwilhelm
parents:
41283
diff
changeset
|
419 |
CLDClosure* cld_closure); |
25492
d27050bdfb04
8049421: G1 Class Unloading after completing a concurrent mark cycle
stefank
parents:
25491
diff
changeset
|
420 |
|
41683
cd5d2527e163
8165949: Serial and ConcMarkSweep do not unload strings when class unloading is disabled
sjohanss
parents:
41682
diff
changeset
|
421 |
void full_process_roots(StrongRootsScope* scope, |
cd5d2527e163
8165949: Serial and ConcMarkSweep do not unload strings when class unloading is disabled
sjohanss
parents:
41682
diff
changeset
|
422 |
bool is_adjust_phase, |
cd5d2527e163
8165949: Serial and ConcMarkSweep do not unload strings when class unloading is disabled
sjohanss
parents:
41682
diff
changeset
|
423 |
ScanningOption so, |
cd5d2527e163
8165949: Serial and ConcMarkSweep do not unload strings when class unloading is disabled
sjohanss
parents:
41682
diff
changeset
|
424 |
bool only_strong_roots, |
cd5d2527e163
8165949: Serial and ConcMarkSweep do not unload strings when class unloading is disabled
sjohanss
parents:
41682
diff
changeset
|
425 |
OopsInGenClosure* root_closure, |
cd5d2527e163
8165949: Serial and ConcMarkSweep do not unload strings when class unloading is disabled
sjohanss
parents:
41682
diff
changeset
|
426 |
CLDClosure* cld_closure); |
cd5d2527e163
8165949: Serial and ConcMarkSweep do not unload strings when class unloading is disabled
sjohanss
parents:
41682
diff
changeset
|
427 |
|
22882
195c8f70d605
8034761: Remove the do_code_roots parameter from process_strong_roots
stefank
parents:
22552
diff
changeset
|
428 |
// Apply "root_closure" to all the weak roots of the system. |
195c8f70d605
8034761: Remove the do_code_roots parameter from process_strong_roots
stefank
parents:
22552
diff
changeset
|
429 |
// These include JNI weak roots, string table, |
195c8f70d605
8034761: Remove the do_code_roots parameter from process_strong_roots
stefank
parents:
22552
diff
changeset
|
430 |
// and referents of reachable weak refs. |
195c8f70d605
8034761: Remove the do_code_roots parameter from process_strong_roots
stefank
parents:
22552
diff
changeset
|
431 |
void gen_process_weak_roots(OopClosure* root_closure); |
1 | 432 |
|
433 |
// Set the saved marks of generations, if that makes sense. |
|
434 |
// In particular, if any generation might iterate over the oops |
|
435 |
// in other generations, it should call this method. |
|
436 |
void save_marks(); |
|
437 |
||
438 |
// Apply "cur->do_oop" or "older->do_oop" to all the oops in objects |
|
439 |
// allocated since the last call to save_marks in generations at or above |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
440 |
// "level". The "cur" closure is |
1 | 441 |
// applied to references in the generation at "level", and the "older" |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
442 |
// closure to older generations. |
1 | 443 |
#define GCH_SINCE_SAVE_MARKS_ITERATE_DECL(OopClosureType, nv_suffix) \ |
31358
693058672cc6
8077842: Remove the level parameter passed around in GenCollectedHeap
jwilhelm
parents:
30871
diff
changeset
|
444 |
void oop_since_save_marks_iterate(GenerationType start_gen, \ |
1 | 445 |
OopClosureType* cur, \ |
446 |
OopClosureType* older); |
|
447 |
||
448 |
ALL_SINCE_SAVE_MARKS_CLOSURES(GCH_SINCE_SAVE_MARKS_ITERATE_DECL) |
|
449 |
||
450 |
#undef GCH_SINCE_SAVE_MARKS_ITERATE_DECL |
|
451 |
||
31358
693058672cc6
8077842: Remove the level parameter passed around in GenCollectedHeap
jwilhelm
parents:
30871
diff
changeset
|
452 |
// Returns "true" iff no allocations have occurred since the last |
1 | 453 |
// call to "save_marks". |
31780 | 454 |
bool no_allocs_since_save_marks(); |
1 | 455 |
|
6985
e9364ec299ac
6896603: CMS/GCH: collection_attempt_is_safe() ergo should use more recent data
ysr
parents:
6759
diff
changeset
|
456 |
// Returns true if an incremental collection is likely to fail. |
7419
263dd4e89b9d
7001033: assert(gch->gc_cause() == GCCause::_scavenge_alot || !gch->incremental_collection_failed())
ysr
parents:
7397
diff
changeset
|
457 |
// We optionally consult the young gen, if asked to do so; |
263dd4e89b9d
7001033: assert(gch->gc_cause() == GCCause::_scavenge_alot || !gch->incremental_collection_failed())
ysr
parents:
7397
diff
changeset
|
458 |
// otherwise we base our answer on whether the previous incremental |
263dd4e89b9d
7001033: assert(gch->gc_cause() == GCCause::_scavenge_alot || !gch->incremental_collection_failed())
ysr
parents:
7397
diff
changeset
|
459 |
// collection attempt failed with no corrective action as of yet. |
263dd4e89b9d
7001033: assert(gch->gc_cause() == GCCause::_scavenge_alot || !gch->incremental_collection_failed())
ysr
parents:
7397
diff
changeset
|
460 |
bool incremental_collection_will_fail(bool consult_young) { |
31358
693058672cc6
8077842: Remove the level parameter passed around in GenCollectedHeap
jwilhelm
parents:
30871
diff
changeset
|
461 |
// The first disjunct remembers if an incremental collection failed, even |
693058672cc6
8077842: Remove the level parameter passed around in GenCollectedHeap
jwilhelm
parents:
30871
diff
changeset
|
462 |
// when we thought (second disjunct) that it would not. |
7419
263dd4e89b9d
7001033: assert(gch->gc_cause() == GCCause::_scavenge_alot || !gch->incremental_collection_failed())
ysr
parents:
7397
diff
changeset
|
463 |
return incremental_collection_failed() || |
29684
a36d90acae41
8057632: Remove auxiliary code used to handle the generations array
jwilhelm
parents:
29200
diff
changeset
|
464 |
(consult_young && !_young_gen->collection_attempt_is_safe()); |
6985
e9364ec299ac
6896603: CMS/GCH: collection_attempt_is_safe() ergo should use more recent data
ysr
parents:
6759
diff
changeset
|
465 |
} |
e9364ec299ac
6896603: CMS/GCH: collection_attempt_is_safe() ergo should use more recent data
ysr
parents:
6759
diff
changeset
|
466 |
|
1 | 467 |
// If a generation bails out of an incremental collection, |
468 |
// it sets this flag. |
|
6985
e9364ec299ac
6896603: CMS/GCH: collection_attempt_is_safe() ergo should use more recent data
ysr
parents:
6759
diff
changeset
|
469 |
bool incremental_collection_failed() const { |
e9364ec299ac
6896603: CMS/GCH: collection_attempt_is_safe() ergo should use more recent data
ysr
parents:
6759
diff
changeset
|
470 |
return _incremental_collection_failed; |
1 | 471 |
} |
6985
e9364ec299ac
6896603: CMS/GCH: collection_attempt_is_safe() ergo should use more recent data
ysr
parents:
6759
diff
changeset
|
472 |
void set_incremental_collection_failed() { |
e9364ec299ac
6896603: CMS/GCH: collection_attempt_is_safe() ergo should use more recent data
ysr
parents:
6759
diff
changeset
|
473 |
_incremental_collection_failed = true; |
1 | 474 |
} |
6985
e9364ec299ac
6896603: CMS/GCH: collection_attempt_is_safe() ergo should use more recent data
ysr
parents:
6759
diff
changeset
|
475 |
void clear_incremental_collection_failed() { |
e9364ec299ac
6896603: CMS/GCH: collection_attempt_is_safe() ergo should use more recent data
ysr
parents:
6759
diff
changeset
|
476 |
_incremental_collection_failed = false; |
1 | 477 |
} |
478 |
||
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
12379
diff
changeset
|
479 |
// Promotion of obj into gen failed. Try to promote obj to higher |
1 | 480 |
// gens in ascending order; return the new location of obj if successful. |
19286
48394008c803
8022800: Use specific generations rather than generation iteration
brutisso
parents:
18687
diff
changeset
|
481 |
// Otherwise, try expand-and-allocate for obj in both the young and old |
48394008c803
8022800: Use specific generations rather than generation iteration
brutisso
parents:
18687
diff
changeset
|
482 |
// generation; return the new location of obj if successful. Otherwise, return NULL. |
48394008c803
8022800: Use specific generations rather than generation iteration
brutisso
parents:
18687
diff
changeset
|
483 |
oop handle_failed_promotion(Generation* old_gen, |
1 | 484 |
oop obj, |
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
485 |
size_t obj_size); |
1 | 486 |
|
47622
817f2a7019e4
8179387: Factor out CMS specific code from GenCollectedHeap into its own subclass
rkennke
parents:
47216
diff
changeset
|
487 |
|
1 | 488 |
private: |
49046
c8e4dc1b9e39
8198511: Move allocation functions from GenCollectorPolicy to GenCollectedHeap
stefank
parents:
48961
diff
changeset
|
489 |
// Return true if an allocation should be attempted in the older generation |
c8e4dc1b9e39
8198511: Move allocation functions from GenCollectorPolicy to GenCollectedHeap
stefank
parents:
48961
diff
changeset
|
490 |
// if it fails in the younger generation. Return false, otherwise. |
c8e4dc1b9e39
8198511: Move allocation functions from GenCollectorPolicy to GenCollectedHeap
stefank
parents:
48961
diff
changeset
|
491 |
bool should_try_older_generation_allocation(size_t word_size) const; |
c8e4dc1b9e39
8198511: Move allocation functions from GenCollectorPolicy to GenCollectedHeap
stefank
parents:
48961
diff
changeset
|
492 |
|
c8e4dc1b9e39
8198511: Move allocation functions from GenCollectorPolicy to GenCollectedHeap
stefank
parents:
48961
diff
changeset
|
493 |
// Try to allocate space by expanding the heap. |
c8e4dc1b9e39
8198511: Move allocation functions from GenCollectorPolicy to GenCollectedHeap
stefank
parents:
48961
diff
changeset
|
494 |
HeapWord* expand_heap_and_allocate(size_t size, bool is_tlab); |
c8e4dc1b9e39
8198511: Move allocation functions from GenCollectorPolicy to GenCollectedHeap
stefank
parents:
48961
diff
changeset
|
495 |
|
c8e4dc1b9e39
8198511: Move allocation functions from GenCollectorPolicy to GenCollectedHeap
stefank
parents:
48961
diff
changeset
|
496 |
HeapWord* mem_allocate_work(size_t size, |
c8e4dc1b9e39
8198511: Move allocation functions from GenCollectorPolicy to GenCollectedHeap
stefank
parents:
48961
diff
changeset
|
497 |
bool is_tlab, |
c8e4dc1b9e39
8198511: Move allocation functions from GenCollectorPolicy to GenCollectedHeap
stefank
parents:
48961
diff
changeset
|
498 |
bool* gc_overhead_limit_was_exceeded); |
c8e4dc1b9e39
8198511: Move allocation functions from GenCollectorPolicy to GenCollectedHeap
stefank
parents:
48961
diff
changeset
|
499 |
|
1 | 500 |
// Override |
501 |
void check_for_non_bad_heap_word_value(HeapWord* addr, |
|
502 |
size_t size) PRODUCT_RETURN; |
|
503 |
||
49982 | 504 |
#if INCLUDE_SERIALGC |
1 | 505 |
// For use by mark-sweep. As implemented, mark-sweep-compact is global |
506 |
// in an essential way: compaction is performed across generations, by |
|
507 |
// iterating over spaces. |
|
508 |
void prepare_for_compaction(); |
|
49982 | 509 |
#endif |
1 | 510 |
|
31358
693058672cc6
8077842: Remove the level parameter passed around in GenCollectedHeap
jwilhelm
parents:
30871
diff
changeset
|
511 |
// Perform a full collection of the generations up to and including max_generation. |
1 | 512 |
// This is the low level interface used by the public versions of |
513 |
// collect() and collect_locked(). Caller holds the Heap_lock on entry. |
|
31358
693058672cc6
8077842: Remove the level parameter passed around in GenCollectedHeap
jwilhelm
parents:
30871
diff
changeset
|
514 |
void collect_locked(GCCause::Cause cause, GenerationType max_generation); |
1 | 515 |
|
971
f0b20be4165d
6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents:
389
diff
changeset
|
516 |
// 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:
389
diff
changeset
|
517 |
void record_gen_tops_before_GC() PRODUCT_RETURN; |
1 | 518 |
}; |
7397 | 519 |
|
30764 | 520 |
#endif // SHARE_VM_GC_SHARED_GENCOLLECTEDHEAP_HPP |