author | tschatzl |
Thu, 06 Dec 2018 15:44:13 +0100 | |
changeset 52876 | 2d17750d41e7 |
parent 51801 | 09e8e51c948a |
child 53117 | 37930c6ba6d7 |
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) 2001, 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:
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 | 22 |
* |
23 |
*/ |
|
24 |
||
7397 | 25 |
#include "precompiled.hpp" |
47624
b055cb5170f5
8185141: Generalize scavengeable nmethod root handling
eosterlund
parents:
47546
diff
changeset
|
26 |
#include "code/codeCache.hpp" |
30764 | 27 |
#include "gc/parallel/adjoiningGenerations.hpp" |
28 |
#include "gc/parallel/adjoiningVirtualSpaces.hpp" |
|
29 |
#include "gc/parallel/gcTaskManager.hpp" |
|
30 |
#include "gc/parallel/generationSizer.hpp" |
|
35862
411842d0c882
8146395: Add inline qualifier in oop.hpp and fix inlining in gc files
goetz
parents:
35492
diff
changeset
|
31 |
#include "gc/parallel/objectStartArray.inline.hpp" |
30764 | 32 |
#include "gc/parallel/parallelScavengeHeap.inline.hpp" |
33 |
#include "gc/parallel/psAdaptiveSizePolicy.hpp" |
|
49982 | 34 |
#include "gc/parallel/psMarkSweepProxy.hpp" |
48168
cb5d2d4453d0
8191564: Refactor GC related servicability code into GC specific subclasses
rkennke
parents:
48117
diff
changeset
|
35 |
#include "gc/parallel/psMemoryPool.hpp" |
35862
411842d0c882
8146395: Add inline qualifier in oop.hpp and fix inlining in gc files
goetz
parents:
35492
diff
changeset
|
36 |
#include "gc/parallel/psParallelCompact.inline.hpp" |
30764 | 37 |
#include "gc/parallel/psPromotionManager.hpp" |
38 |
#include "gc/parallel/psScavenge.hpp" |
|
52876
2d17750d41e7
8214791: Consistently name gc files containing VM operations
tschatzl
parents:
51801
diff
changeset
|
39 |
#include "gc/parallel/psVMOperations.hpp" |
30764 | 40 |
#include "gc/shared/gcHeapSummary.hpp" |
49594
898ef81cbc0e
8200106: Move NoSafepointVerifier out from gcLocker.hpp
stefank
parents:
49455
diff
changeset
|
41 |
#include "gc/shared/gcLocker.hpp" |
30764 | 42 |
#include "gc/shared/gcWhen.hpp" |
35061 | 43 |
#include "logging/log.hpp" |
49824
e242740a92b8
8201556: Disallow reading oops in ClassLoaderData if unloading
coleenp
parents:
49754
diff
changeset
|
44 |
#include "memory/metaspaceCounters.hpp" |
7397 | 45 |
#include "oops/oop.inline.hpp" |
46 |
#include "runtime/handles.inline.hpp" |
|
47 |
#include "runtime/java.hpp" |
|
48 |
#include "runtime/vmThread.hpp" |
|
48168
cb5d2d4453d0
8191564: Refactor GC related servicability code into GC specific subclasses
rkennke
parents:
48117
diff
changeset
|
49 |
#include "services/memoryManager.hpp" |
13195 | 50 |
#include "services/memTracker.hpp" |
49982 | 51 |
#include "utilities/macros.hpp" |
7397 | 52 |
#include "utilities/vmError.hpp" |
1 | 53 |
|
54 |
PSYoungGen* ParallelScavengeHeap::_young_gen = NULL; |
|
55 |
PSOldGen* ParallelScavengeHeap::_old_gen = NULL; |
|
56 |
PSAdaptiveSizePolicy* ParallelScavengeHeap::_size_policy = NULL; |
|
57 |
PSGCAdaptivePolicyCounters* ParallelScavengeHeap::_gc_policy_counters = NULL; |
|
58 |
GCTaskManager* ParallelScavengeHeap::_gc_task_manager = NULL; |
|
59 |
||
60 |
jint ParallelScavengeHeap::initialize() { |
|
21561
c619b1cb4554
8016309: assert(eden_size > 0 && survivor_size > 0) failed: just checking
jwilhelm
parents:
19322
diff
changeset
|
61 |
const size_t heap_size = _collector_policy->max_heap_byte_size(); |
1 | 62 |
|
21561
c619b1cb4554
8016309: assert(eden_size > 0 && survivor_size > 0) failed: just checking
jwilhelm
parents:
19322
diff
changeset
|
63 |
ReservedSpace heap_rs = Universe::reserve_heap(heap_size, _collector_policy->heap_alignment()); |
13195 | 64 |
|
37462 | 65 |
os::trace_page_sizes("Heap", |
66 |
_collector_policy->min_heap_byte_size(), |
|
67 |
heap_size, |
|
68 |
generation_alignment(), |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
69 |
heap_rs.base(), |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
70 |
heap_rs.size()); |
1 | 71 |
|
26829
26315213bab8
8055091: CollectedHeap::_reserved usage should be cleaned up
mlarsson
parents:
26160
diff
changeset
|
72 |
initialize_reserved_region((HeapWord*)heap_rs.base(), (HeapWord*)(heap_rs.base() + heap_rs.size())); |
1 | 73 |
|
49164
7e958a8ebcd3
8195142: Refactor out card table from CardTableModRefBS to flatten the BarrierSet hierarchy
eosterlund
parents:
49047
diff
changeset
|
74 |
PSCardTable* card_table = new PSCardTable(reserved_region()); |
7e958a8ebcd3
8195142: Refactor out card table from CardTableModRefBS to flatten the BarrierSet hierarchy
eosterlund
parents:
49047
diff
changeset
|
75 |
card_table->initialize(); |
49455
848864ed9b17
8199604: Rename CardTableModRefBS to CardTableBarrierSet
eosterlund
parents:
49389
diff
changeset
|
76 |
CardTableBarrierSet* const barrier_set = new CardTableBarrierSet(card_table); |
26160 | 77 |
barrier_set->initialize(); |
49754 | 78 |
BarrierSet::set_barrier_set(barrier_set); |
1 | 79 |
|
80 |
// Make up the generations |
|
81 |
// Calculate the maximum size that a generation can grow. This |
|
82 |
// includes growth into the other generation. Note that the |
|
83 |
// parameter _max_gen_size is kept as the maximum |
|
84 |
// size of the generation as the boundaries currently stand. |
|
85 |
// _max_gen_size is still used as that value. |
|
86 |
double max_gc_pause_sec = ((double) MaxGCPauseMillis)/1000.0; |
|
87 |
double max_gc_minor_pause_sec = ((double) MaxGCMinorPauseMillis)/1000.0; |
|
88 |
||
21561
c619b1cb4554
8016309: assert(eden_size > 0 && survivor_size > 0) failed: just checking
jwilhelm
parents:
19322
diff
changeset
|
89 |
_gens = new AdjoiningGenerations(heap_rs, _collector_policy, generation_alignment()); |
1 | 90 |
|
91 |
_old_gen = _gens->old_gen(); |
|
92 |
_young_gen = _gens->young_gen(); |
|
93 |
||
94 |
const size_t eden_capacity = _young_gen->eden_space()->capacity_in_bytes(); |
|
95 |
const size_t old_capacity = _old_gen->capacity_in_bytes(); |
|
96 |
const size_t initial_promo_size = MIN2(eden_capacity, old_capacity); |
|
97 |
_size_policy = |
|
98 |
new PSAdaptiveSizePolicy(eden_capacity, |
|
99 |
initial_promo_size, |
|
100 |
young_gen()->to_space()->capacity_in_bytes(), |
|
21561
c619b1cb4554
8016309: assert(eden_size > 0 && survivor_size > 0) failed: just checking
jwilhelm
parents:
19322
diff
changeset
|
101 |
_collector_policy->gen_alignment(), |
1 | 102 |
max_gc_pause_sec, |
103 |
max_gc_minor_pause_sec, |
|
104 |
GCTimeRatio |
|
105 |
); |
|
106 |
||
107 |
assert(!UseAdaptiveGCBoundary || |
|
108 |
(old_gen()->virtual_space()->high_boundary() == |
|
109 |
young_gen()->virtual_space()->low_boundary()), |
|
110 |
"Boundaries must meet"); |
|
48117
d64722b0b371
8080345: With perm gen gone, perfdata counter sun.gc.policy.generations should be 2, not 3
ehelin
parents:
47624
diff
changeset
|
111 |
// initialize the policy counters - 2 collectors, 2 generations |
1 | 112 |
_gc_policy_counters = |
48117
d64722b0b371
8080345: With perm gen gone, perfdata counter sun.gc.policy.generations should be 2, not 3
ehelin
parents:
47624
diff
changeset
|
113 |
new PSGCAdaptivePolicyCounters("ParScav:MSC", 2, 2, _size_policy); |
1 | 114 |
|
115 |
// Set up the GCTaskManager |
|
116 |
_gc_task_manager = GCTaskManager::create(ParallelGCThreads); |
|
117 |
||
118 |
if (UseParallelOldGC && !PSParallelCompact::initialize()) { |
|
119 |
return JNI_ENOMEM; |
|
120 |
} |
|
121 |
||
122 |
return JNI_OK; |
|
123 |
} |
|
124 |
||
48168
cb5d2d4453d0
8191564: Refactor GC related servicability code into GC specific subclasses
rkennke
parents:
48117
diff
changeset
|
125 |
void ParallelScavengeHeap::initialize_serviceability() { |
cb5d2d4453d0
8191564: Refactor GC related servicability code into GC specific subclasses
rkennke
parents:
48117
diff
changeset
|
126 |
|
cb5d2d4453d0
8191564: Refactor GC related servicability code into GC specific subclasses
rkennke
parents:
48117
diff
changeset
|
127 |
_eden_pool = new EdenMutableSpacePool(_young_gen, |
cb5d2d4453d0
8191564: Refactor GC related servicability code into GC specific subclasses
rkennke
parents:
48117
diff
changeset
|
128 |
_young_gen->eden_space(), |
cb5d2d4453d0
8191564: Refactor GC related servicability code into GC specific subclasses
rkennke
parents:
48117
diff
changeset
|
129 |
"PS Eden Space", |
cb5d2d4453d0
8191564: Refactor GC related servicability code into GC specific subclasses
rkennke
parents:
48117
diff
changeset
|
130 |
false /* support_usage_threshold */); |
cb5d2d4453d0
8191564: Refactor GC related servicability code into GC specific subclasses
rkennke
parents:
48117
diff
changeset
|
131 |
|
cb5d2d4453d0
8191564: Refactor GC related servicability code into GC specific subclasses
rkennke
parents:
48117
diff
changeset
|
132 |
_survivor_pool = new SurvivorMutableSpacePool(_young_gen, |
cb5d2d4453d0
8191564: Refactor GC related servicability code into GC specific subclasses
rkennke
parents:
48117
diff
changeset
|
133 |
"PS Survivor Space", |
cb5d2d4453d0
8191564: Refactor GC related servicability code into GC specific subclasses
rkennke
parents:
48117
diff
changeset
|
134 |
false /* support_usage_threshold */); |
cb5d2d4453d0
8191564: Refactor GC related servicability code into GC specific subclasses
rkennke
parents:
48117
diff
changeset
|
135 |
|
cb5d2d4453d0
8191564: Refactor GC related servicability code into GC specific subclasses
rkennke
parents:
48117
diff
changeset
|
136 |
_old_pool = new PSGenerationPool(_old_gen, |
cb5d2d4453d0
8191564: Refactor GC related servicability code into GC specific subclasses
rkennke
parents:
48117
diff
changeset
|
137 |
"PS Old Gen", |
cb5d2d4453d0
8191564: Refactor GC related servicability code into GC specific subclasses
rkennke
parents:
48117
diff
changeset
|
138 |
true /* support_usage_threshold */); |
cb5d2d4453d0
8191564: Refactor GC related servicability code into GC specific subclasses
rkennke
parents:
48117
diff
changeset
|
139 |
|
cb5d2d4453d0
8191564: Refactor GC related servicability code into GC specific subclasses
rkennke
parents:
48117
diff
changeset
|
140 |
_young_manager = new GCMemoryManager("PS Scavenge", "end of minor GC"); |
cb5d2d4453d0
8191564: Refactor GC related servicability code into GC specific subclasses
rkennke
parents:
48117
diff
changeset
|
141 |
_old_manager = new GCMemoryManager("PS MarkSweep", "end of major GC"); |
cb5d2d4453d0
8191564: Refactor GC related servicability code into GC specific subclasses
rkennke
parents:
48117
diff
changeset
|
142 |
|
cb5d2d4453d0
8191564: Refactor GC related servicability code into GC specific subclasses
rkennke
parents:
48117
diff
changeset
|
143 |
_old_manager->add_pool(_eden_pool); |
cb5d2d4453d0
8191564: Refactor GC related servicability code into GC specific subclasses
rkennke
parents:
48117
diff
changeset
|
144 |
_old_manager->add_pool(_survivor_pool); |
cb5d2d4453d0
8191564: Refactor GC related servicability code into GC specific subclasses
rkennke
parents:
48117
diff
changeset
|
145 |
_old_manager->add_pool(_old_pool); |
cb5d2d4453d0
8191564: Refactor GC related servicability code into GC specific subclasses
rkennke
parents:
48117
diff
changeset
|
146 |
|
cb5d2d4453d0
8191564: Refactor GC related servicability code into GC specific subclasses
rkennke
parents:
48117
diff
changeset
|
147 |
_young_manager->add_pool(_eden_pool); |
cb5d2d4453d0
8191564: Refactor GC related servicability code into GC specific subclasses
rkennke
parents:
48117
diff
changeset
|
148 |
_young_manager->add_pool(_survivor_pool); |
cb5d2d4453d0
8191564: Refactor GC related servicability code into GC specific subclasses
rkennke
parents:
48117
diff
changeset
|
149 |
|
cb5d2d4453d0
8191564: Refactor GC related servicability code into GC specific subclasses
rkennke
parents:
48117
diff
changeset
|
150 |
} |
cb5d2d4453d0
8191564: Refactor GC related servicability code into GC specific subclasses
rkennke
parents:
48117
diff
changeset
|
151 |
|
1 | 152 |
void ParallelScavengeHeap::post_initialize() { |
48168
cb5d2d4453d0
8191564: Refactor GC related servicability code into GC specific subclasses
rkennke
parents:
48117
diff
changeset
|
153 |
CollectedHeap::post_initialize(); |
1 | 154 |
// Need to init the tenuring threshold |
155 |
PSScavenge::initialize(); |
|
156 |
if (UseParallelOldGC) { |
|
157 |
PSParallelCompact::post_initialize(); |
|
158 |
} else { |
|
49982 | 159 |
PSMarkSweepProxy::initialize(); |
1 | 160 |
} |
161 |
PSPromotionManager::initialize(); |
|
162 |
} |
|
163 |
||
164 |
void ParallelScavengeHeap::update_counters() { |
|
165 |
young_gen()->update_counters(); |
|
166 |
old_gen()->update_counters(); |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
167 |
MetaspaceCounters::update_performance_counters(); |
19322
e35f9ed4f081
8014659: NPG: performance counters for compressed klass space
ehelin
parents:
18025
diff
changeset
|
168 |
CompressedClassSpaceCounters::update_performance_counters(); |
1 | 169 |
} |
170 |
||
171 |
size_t ParallelScavengeHeap::capacity() const { |
|
172 |
size_t value = young_gen()->capacity_in_bytes() + old_gen()->capacity_in_bytes(); |
|
173 |
return value; |
|
174 |
} |
|
175 |
||
176 |
size_t ParallelScavengeHeap::used() const { |
|
177 |
size_t value = young_gen()->used_in_bytes() + old_gen()->used_in_bytes(); |
|
178 |
return value; |
|
179 |
} |
|
180 |
||
181 |
bool ParallelScavengeHeap::is_maximal_no_gc() const { |
|
182 |
return old_gen()->is_maximal_no_gc() && young_gen()->is_maximal_no_gc(); |
|
183 |
} |
|
184 |
||
185 |
||
186 |
size_t ParallelScavengeHeap::max_capacity() const { |
|
187 |
size_t estimated = reserved_region().byte_size(); |
|
188 |
if (UseAdaptiveSizePolicy) { |
|
189 |
estimated -= _size_policy->max_survivor_size(young_gen()->max_size()); |
|
190 |
} else { |
|
191 |
estimated -= young_gen()->to_space()->capacity_in_bytes(); |
|
192 |
} |
|
193 |
return MAX2(estimated, capacity()); |
|
194 |
} |
|
195 |
||
196 |
bool ParallelScavengeHeap::is_in(const void* p) const { |
|
30177
925cd0b4f0e7
8077403: Remove guarantee from GenCollectedHeap::is_in()
brutisso
parents:
30173
diff
changeset
|
197 |
return young_gen()->is_in(p) || old_gen()->is_in(p); |
1 | 198 |
} |
199 |
||
200 |
bool ParallelScavengeHeap::is_in_reserved(const void* p) const { |
|
30177
925cd0b4f0e7
8077403: Remove guarantee from GenCollectedHeap::is_in()
brutisso
parents:
30173
diff
changeset
|
201 |
return young_gen()->is_in_reserved(p) || old_gen()->is_in_reserved(p); |
1 | 202 |
} |
203 |
||
204 |
// There are two levels of allocation policy here. |
|
205 |
// |
|
206 |
// When an allocation request fails, the requesting thread must invoke a VM |
|
207 |
// operation, transfer control to the VM thread, and await the results of a |
|
208 |
// garbage collection. That is quite expensive, and we should avoid doing it |
|
209 |
// multiple times if possible. |
|
210 |
// |
|
211 |
// To accomplish this, we have a basic allocation policy, and also a |
|
212 |
// failed allocation policy. |
|
213 |
// |
|
214 |
// The basic allocation policy controls how you allocate memory without |
|
215 |
// attempting garbage collection. It is okay to grab locks and |
|
216 |
// expand the heap, if that can be done without coming to a safepoint. |
|
217 |
// It is likely that the basic allocation policy will not be very |
|
218 |
// aggressive. |
|
219 |
// |
|
220 |
// The failed allocation policy is invoked from the VM thread after |
|
221 |
// the basic allocation policy is unable to satisfy a mem_allocate |
|
222 |
// request. This policy needs to cover the entire range of collection, |
|
223 |
// heap expansion, and out-of-memory conditions. It should make every |
|
224 |
// attempt to allocate the requested memory. |
|
225 |
||
226 |
// Basic allocation policy. Should never be called at a safepoint, or |
|
227 |
// from the VM thread. |
|
228 |
// |
|
229 |
// This method must handle cases where many mem_allocate requests fail |
|
230 |
// simultaneously. When that happens, only one VM operation will succeed, |
|
231 |
// and the rest will not be executed. For that reason, this method loops |
|
232 |
// during failed allocation attempts. If the java heap becomes exhausted, |
|
233 |
// we rely on the size_policy object to force a bail out. |
|
234 |
HeapWord* ParallelScavengeHeap::mem_allocate( |
|
235 |
size_t size, |
|
236 |
bool* gc_overhead_limit_was_exceeded) { |
|
237 |
assert(!SafepointSynchronize::is_at_safepoint(), "should not be at safepoint"); |
|
238 |
assert(Thread::current() != (Thread*)VMThread::vm_thread(), "should not be in vm thread"); |
|
239 |
assert(!Heap_lock->owned_by_self(), "this thread should not own the Heap_lock"); |
|
240 |
||
5343
95a5c4b89273
6858496: Clear all SoftReferences before an out-of-memory due to GC overhead limit.
jmasa
parents:
4637
diff
changeset
|
241 |
// In general gc_overhead_limit_was_exceeded should be false so |
95a5c4b89273
6858496: Clear all SoftReferences before an out-of-memory due to GC overhead limit.
jmasa
parents:
4637
diff
changeset
|
242 |
// set it so here and reset it to true only if the gc time |
95a5c4b89273
6858496: Clear all SoftReferences before an out-of-memory due to GC overhead limit.
jmasa
parents:
4637
diff
changeset
|
243 |
// limit is being exceeded as checked below. |
95a5c4b89273
6858496: Clear all SoftReferences before an out-of-memory due to GC overhead limit.
jmasa
parents:
4637
diff
changeset
|
244 |
*gc_overhead_limit_was_exceeded = false; |
95a5c4b89273
6858496: Clear all SoftReferences before an out-of-memory due to GC overhead limit.
jmasa
parents:
4637
diff
changeset
|
245 |
|
9997
b75b7939f448
6994322: Remove the is_tlab and is_noref / is_large_noref parameters from the CollectedHeap
tonyp
parents:
9995
diff
changeset
|
246 |
HeapWord* result = young_gen()->allocate(size); |
1 | 247 |
|
248 |
uint loop_count = 0; |
|
249 |
uint gc_count = 0; |
|
29078 | 250 |
uint gclocker_stalled_count = 0; |
1 | 251 |
|
252 |
while (result == NULL) { |
|
253 |
// We don't want to have multiple collections for a single filled generation. |
|
254 |
// To prevent this, each thread tracks the total_collections() value, and if |
|
255 |
// the count has changed, does not do a new collection. |
|
256 |
// |
|
257 |
// The collection count must be read only while holding the heap lock. VM |
|
258 |
// operations also hold the heap lock during collections. There is a lock |
|
259 |
// contention case where thread A blocks waiting on the Heap_lock, while |
|
260 |
// thread B is holding it doing a collection. When thread A gets the lock, |
|
261 |
// the collection count has already changed. To prevent duplicate collections, |
|
262 |
// The policy MUST attempt allocations during the same period it reads the |
|
263 |
// total_collections() value! |
|
264 |
{ |
|
265 |
MutexLocker ml(Heap_lock); |
|
30173
13cf7580b000
8077413: Avoid use of Universe::heap() inside collectors
pliden
parents:
30152
diff
changeset
|
266 |
gc_count = total_collections(); |
1 | 267 |
|
9997
b75b7939f448
6994322: Remove the is_tlab and is_noref / is_large_noref parameters from the CollectedHeap
tonyp
parents:
9995
diff
changeset
|
268 |
result = young_gen()->allocate(size); |
1 | 269 |
if (result != NULL) { |
270 |
return result; |
|
271 |
} |
|
11758
b1a0089f89d2
6330863: vm/gc/InfiniteList.java fails intermittently due to timeout
jcoomes
parents:
10997
diff
changeset
|
272 |
|
b1a0089f89d2
6330863: vm/gc/InfiniteList.java fails intermittently due to timeout
jcoomes
parents:
10997
diff
changeset
|
273 |
// If certain conditions hold, try allocating from the old gen. |
b1a0089f89d2
6330863: vm/gc/InfiniteList.java fails intermittently due to timeout
jcoomes
parents:
10997
diff
changeset
|
274 |
result = mem_allocate_old_gen(size); |
b1a0089f89d2
6330863: vm/gc/InfiniteList.java fails intermittently due to timeout
jcoomes
parents:
10997
diff
changeset
|
275 |
if (result != NULL) { |
b1a0089f89d2
6330863: vm/gc/InfiniteList.java fails intermittently due to timeout
jcoomes
parents:
10997
diff
changeset
|
276 |
return result; |
1 | 277 |
} |
11758
b1a0089f89d2
6330863: vm/gc/InfiniteList.java fails intermittently due to timeout
jcoomes
parents:
10997
diff
changeset
|
278 |
|
16604
800a65bfe347
7014552: gc/lock/jni/jnilockXXX works too slow on 1-processor machine
mgerdin
parents:
16386
diff
changeset
|
279 |
if (gclocker_stalled_count > GCLockerRetryAllocationCount) { |
800a65bfe347
7014552: gc/lock/jni/jnilockXXX works too slow on 1-processor machine
mgerdin
parents:
16386
diff
changeset
|
280 |
return NULL; |
800a65bfe347
7014552: gc/lock/jni/jnilockXXX works too slow on 1-processor machine
mgerdin
parents:
16386
diff
changeset
|
281 |
} |
800a65bfe347
7014552: gc/lock/jni/jnilockXXX works too slow on 1-processor machine
mgerdin
parents:
16386
diff
changeset
|
282 |
|
11758
b1a0089f89d2
6330863: vm/gc/InfiniteList.java fails intermittently due to timeout
jcoomes
parents:
10997
diff
changeset
|
283 |
// Failed to allocate without a gc. |
35492
c8c0273e6b91
8146690: Make all classes in GC follow the naming convention.
david
parents:
35061
diff
changeset
|
284 |
if (GCLocker::is_active_and_needs_gc()) { |
1 | 285 |
// If this thread is not in a jni critical section, we stall |
286 |
// the requestor until the critical section has cleared and |
|
287 |
// GC allowed. When the critical section clears, a GC is |
|
288 |
// initiated by the last thread exiting the critical section; so |
|
289 |
// we retry the allocation sequence from the beginning of the loop, |
|
290 |
// rather than causing more, now probably unnecessary, GC attempts. |
|
291 |
JavaThread* jthr = JavaThread::current(); |
|
292 |
if (!jthr->in_critical()) { |
|
293 |
MutexUnlocker mul(Heap_lock); |
|
35492
c8c0273e6b91
8146690: Make all classes in GC follow the naming convention.
david
parents:
35061
diff
changeset
|
294 |
GCLocker::stall_until_clear(); |
16604
800a65bfe347
7014552: gc/lock/jni/jnilockXXX works too slow on 1-processor machine
mgerdin
parents:
16386
diff
changeset
|
295 |
gclocker_stalled_count += 1; |
1 | 296 |
continue; |
297 |
} else { |
|
298 |
if (CheckJNICalls) { |
|
299 |
fatal("Possible deadlock due to allocating while" |
|
300 |
" in jni critical section"); |
|
301 |
} |
|
302 |
return NULL; |
|
303 |
} |
|
304 |
} |
|
305 |
} |
|
306 |
||
307 |
if (result == NULL) { |
|
308 |
// Generate a VM operation |
|
9997
b75b7939f448
6994322: Remove the is_tlab and is_noref / is_large_noref parameters from the CollectedHeap
tonyp
parents:
9995
diff
changeset
|
309 |
VM_ParallelGCFailedAllocation op(size, gc_count); |
1 | 310 |
VMThread::execute(&op); |
311 |
||
312 |
// Did the VM operation execute? If so, return the result directly. |
|
313 |
// This prevents us from looping until time out on requests that can |
|
314 |
// not be satisfied. |
|
315 |
if (op.prologue_succeeded()) { |
|
30173
13cf7580b000
8077413: Avoid use of Universe::heap() inside collectors
pliden
parents:
30152
diff
changeset
|
316 |
assert(is_in_or_null(op.result()), "result not in heap"); |
1 | 317 |
|
318 |
// If GC was locked out during VM operation then retry allocation |
|
319 |
// and/or stall as necessary. |
|
320 |
if (op.gc_locked()) { |
|
321 |
assert(op.result() == NULL, "must be NULL if gc_locked() is true"); |
|
322 |
continue; // retry and/or stall as necessary |
|
323 |
} |
|
5343
95a5c4b89273
6858496: Clear all SoftReferences before an out-of-memory due to GC overhead limit.
jmasa
parents:
4637
diff
changeset
|
324 |
|
95a5c4b89273
6858496: Clear all SoftReferences before an out-of-memory due to GC overhead limit.
jmasa
parents:
4637
diff
changeset
|
325 |
// Exit the loop if the gc time limit has been exceeded. |
95a5c4b89273
6858496: Clear all SoftReferences before an out-of-memory due to GC overhead limit.
jmasa
parents:
4637
diff
changeset
|
326 |
// The allocation must have failed above ("result" guarding |
95a5c4b89273
6858496: Clear all SoftReferences before an out-of-memory due to GC overhead limit.
jmasa
parents:
4637
diff
changeset
|
327 |
// this path is NULL) and the most recent collection has exceeded the |
95a5c4b89273
6858496: Clear all SoftReferences before an out-of-memory due to GC overhead limit.
jmasa
parents:
4637
diff
changeset
|
328 |
// gc overhead limit (although enough may have been collected to |
95a5c4b89273
6858496: Clear all SoftReferences before an out-of-memory due to GC overhead limit.
jmasa
parents:
4637
diff
changeset
|
329 |
// satisfy the allocation). Exit the loop so that an out-of-memory |
95a5c4b89273
6858496: Clear all SoftReferences before an out-of-memory due to GC overhead limit.
jmasa
parents:
4637
diff
changeset
|
330 |
// will be thrown (return a NULL ignoring the contents of |
95a5c4b89273
6858496: Clear all SoftReferences before an out-of-memory due to GC overhead limit.
jmasa
parents:
4637
diff
changeset
|
331 |
// op.result()), |
95a5c4b89273
6858496: Clear all SoftReferences before an out-of-memory due to GC overhead limit.
jmasa
parents:
4637
diff
changeset
|
332 |
// but clear gc_overhead_limit_exceeded so that the next collection |
95a5c4b89273
6858496: Clear all SoftReferences before an out-of-memory due to GC overhead limit.
jmasa
parents:
4637
diff
changeset
|
333 |
// starts with a clean slate (i.e., forgets about previous overhead |
95a5c4b89273
6858496: Clear all SoftReferences before an out-of-memory due to GC overhead limit.
jmasa
parents:
4637
diff
changeset
|
334 |
// excesses). Fill op.result() with a filler object so that the |
95a5c4b89273
6858496: Clear all SoftReferences before an out-of-memory due to GC overhead limit.
jmasa
parents:
4637
diff
changeset
|
335 |
// heap remains parsable. |
95a5c4b89273
6858496: Clear all SoftReferences before an out-of-memory due to GC overhead limit.
jmasa
parents:
4637
diff
changeset
|
336 |
const bool limit_exceeded = size_policy()->gc_overhead_limit_exceeded(); |
49047
8f004146e407
8198515: Extract SoftReferencePolicy code out of CollectorPolicy
stefank
parents:
48961
diff
changeset
|
337 |
const bool softrefs_clear = soft_ref_policy()->all_soft_refs_clear(); |
15959
9a29e0e3a633
6976528: PS: assert(!limit_exceeded || softrefs_clear) failed: Should have been cleared
jmasa
parents:
13728
diff
changeset
|
338 |
|
5343
95a5c4b89273
6858496: Clear all SoftReferences before an out-of-memory due to GC overhead limit.
jmasa
parents:
4637
diff
changeset
|
339 |
if (limit_exceeded && softrefs_clear) { |
95a5c4b89273
6858496: Clear all SoftReferences before an out-of-memory due to GC overhead limit.
jmasa
parents:
4637
diff
changeset
|
340 |
*gc_overhead_limit_was_exceeded = true; |
95a5c4b89273
6858496: Clear all SoftReferences before an out-of-memory due to GC overhead limit.
jmasa
parents:
4637
diff
changeset
|
341 |
size_policy()->set_gc_overhead_limit_exceeded(false); |
35061 | 342 |
log_trace(gc)("ParallelScavengeHeap::mem_allocate: return NULL because gc_overhead_limit_exceeded is set"); |
5343
95a5c4b89273
6858496: Clear all SoftReferences before an out-of-memory due to GC overhead limit.
jmasa
parents:
4637
diff
changeset
|
343 |
if (op.result() != NULL) { |
95a5c4b89273
6858496: Clear all SoftReferences before an out-of-memory due to GC overhead limit.
jmasa
parents:
4637
diff
changeset
|
344 |
CollectedHeap::fill_with_object(op.result(), size); |
95a5c4b89273
6858496: Clear all SoftReferences before an out-of-memory due to GC overhead limit.
jmasa
parents:
4637
diff
changeset
|
345 |
} |
95a5c4b89273
6858496: Clear all SoftReferences before an out-of-memory due to GC overhead limit.
jmasa
parents:
4637
diff
changeset
|
346 |
return NULL; |
1 | 347 |
} |
5343
95a5c4b89273
6858496: Clear all SoftReferences before an out-of-memory due to GC overhead limit.
jmasa
parents:
4637
diff
changeset
|
348 |
|
1 | 349 |
return op.result(); |
350 |
} |
|
351 |
} |
|
352 |
||
353 |
// The policy object will prevent us from looping forever. If the |
|
354 |
// time spent in gc crosses a threshold, we will bail out. |
|
355 |
loop_count++; |
|
356 |
if ((result == NULL) && (QueuedAllocationWarningCount > 0) && |
|
357 |
(loop_count % QueuedAllocationWarningCount == 0)) { |
|
37073
c39d0903390b
8151605: Change warning() to log_warning(gc) in the GC code
brutisso
parents:
35862
diff
changeset
|
358 |
log_warning(gc)("ParallelScavengeHeap::mem_allocate retries %d times", loop_count); |
c39d0903390b
8151605: Change warning() to log_warning(gc) in the GC code
brutisso
parents:
35862
diff
changeset
|
359 |
log_warning(gc)("\tsize=" SIZE_FORMAT, size); |
1 | 360 |
} |
361 |
} |
|
362 |
||
363 |
return result; |
|
364 |
} |
|
365 |
||
11758
b1a0089f89d2
6330863: vm/gc/InfiniteList.java fails intermittently due to timeout
jcoomes
parents:
10997
diff
changeset
|
366 |
// A "death march" is a series of ultra-slow allocations in which a full gc is |
b1a0089f89d2
6330863: vm/gc/InfiniteList.java fails intermittently due to timeout
jcoomes
parents:
10997
diff
changeset
|
367 |
// done before each allocation, and after the full gc the allocation still |
b1a0089f89d2
6330863: vm/gc/InfiniteList.java fails intermittently due to timeout
jcoomes
parents:
10997
diff
changeset
|
368 |
// cannot be satisfied from the young gen. This routine detects that condition; |
b1a0089f89d2
6330863: vm/gc/InfiniteList.java fails intermittently due to timeout
jcoomes
parents:
10997
diff
changeset
|
369 |
// it should be called after a full gc has been done and the allocation |
b1a0089f89d2
6330863: vm/gc/InfiniteList.java fails intermittently due to timeout
jcoomes
parents:
10997
diff
changeset
|
370 |
// attempted from the young gen. The parameter 'addr' should be the result of |
b1a0089f89d2
6330863: vm/gc/InfiniteList.java fails intermittently due to timeout
jcoomes
parents:
10997
diff
changeset
|
371 |
// that young gen allocation attempt. |
b1a0089f89d2
6330863: vm/gc/InfiniteList.java fails intermittently due to timeout
jcoomes
parents:
10997
diff
changeset
|
372 |
void |
b1a0089f89d2
6330863: vm/gc/InfiniteList.java fails intermittently due to timeout
jcoomes
parents:
10997
diff
changeset
|
373 |
ParallelScavengeHeap::death_march_check(HeapWord* const addr, size_t size) { |
b1a0089f89d2
6330863: vm/gc/InfiniteList.java fails intermittently due to timeout
jcoomes
parents:
10997
diff
changeset
|
374 |
if (addr != NULL) { |
b1a0089f89d2
6330863: vm/gc/InfiniteList.java fails intermittently due to timeout
jcoomes
parents:
10997
diff
changeset
|
375 |
_death_march_count = 0; // death march has ended |
b1a0089f89d2
6330863: vm/gc/InfiniteList.java fails intermittently due to timeout
jcoomes
parents:
10997
diff
changeset
|
376 |
} else if (_death_march_count == 0) { |
b1a0089f89d2
6330863: vm/gc/InfiniteList.java fails intermittently due to timeout
jcoomes
parents:
10997
diff
changeset
|
377 |
if (should_alloc_in_eden(size)) { |
b1a0089f89d2
6330863: vm/gc/InfiniteList.java fails intermittently due to timeout
jcoomes
parents:
10997
diff
changeset
|
378 |
_death_march_count = 1; // death march has started |
b1a0089f89d2
6330863: vm/gc/InfiniteList.java fails intermittently due to timeout
jcoomes
parents:
10997
diff
changeset
|
379 |
} |
b1a0089f89d2
6330863: vm/gc/InfiniteList.java fails intermittently due to timeout
jcoomes
parents:
10997
diff
changeset
|
380 |
} |
b1a0089f89d2
6330863: vm/gc/InfiniteList.java fails intermittently due to timeout
jcoomes
parents:
10997
diff
changeset
|
381 |
} |
b1a0089f89d2
6330863: vm/gc/InfiniteList.java fails intermittently due to timeout
jcoomes
parents:
10997
diff
changeset
|
382 |
|
b1a0089f89d2
6330863: vm/gc/InfiniteList.java fails intermittently due to timeout
jcoomes
parents:
10997
diff
changeset
|
383 |
HeapWord* ParallelScavengeHeap::mem_allocate_old_gen(size_t size) { |
35492
c8c0273e6b91
8146690: Make all classes in GC follow the naming convention.
david
parents:
35061
diff
changeset
|
384 |
if (!should_alloc_in_eden(size) || GCLocker::is_active_and_needs_gc()) { |
11758
b1a0089f89d2
6330863: vm/gc/InfiniteList.java fails intermittently due to timeout
jcoomes
parents:
10997
diff
changeset
|
385 |
// Size is too big for eden, or gc is locked out. |
b1a0089f89d2
6330863: vm/gc/InfiniteList.java fails intermittently due to timeout
jcoomes
parents:
10997
diff
changeset
|
386 |
return old_gen()->allocate(size); |
b1a0089f89d2
6330863: vm/gc/InfiniteList.java fails intermittently due to timeout
jcoomes
parents:
10997
diff
changeset
|
387 |
} |
b1a0089f89d2
6330863: vm/gc/InfiniteList.java fails intermittently due to timeout
jcoomes
parents:
10997
diff
changeset
|
388 |
|
b1a0089f89d2
6330863: vm/gc/InfiniteList.java fails intermittently due to timeout
jcoomes
parents:
10997
diff
changeset
|
389 |
// If a "death march" is in progress, allocate from the old gen a limited |
b1a0089f89d2
6330863: vm/gc/InfiniteList.java fails intermittently due to timeout
jcoomes
parents:
10997
diff
changeset
|
390 |
// number of times before doing a GC. |
b1a0089f89d2
6330863: vm/gc/InfiniteList.java fails intermittently due to timeout
jcoomes
parents:
10997
diff
changeset
|
391 |
if (_death_march_count > 0) { |
b1a0089f89d2
6330863: vm/gc/InfiniteList.java fails intermittently due to timeout
jcoomes
parents:
10997
diff
changeset
|
392 |
if (_death_march_count < 64) { |
b1a0089f89d2
6330863: vm/gc/InfiniteList.java fails intermittently due to timeout
jcoomes
parents:
10997
diff
changeset
|
393 |
++_death_march_count; |
b1a0089f89d2
6330863: vm/gc/InfiniteList.java fails intermittently due to timeout
jcoomes
parents:
10997
diff
changeset
|
394 |
return old_gen()->allocate(size); |
b1a0089f89d2
6330863: vm/gc/InfiniteList.java fails intermittently due to timeout
jcoomes
parents:
10997
diff
changeset
|
395 |
} else { |
b1a0089f89d2
6330863: vm/gc/InfiniteList.java fails intermittently due to timeout
jcoomes
parents:
10997
diff
changeset
|
396 |
_death_march_count = 0; |
b1a0089f89d2
6330863: vm/gc/InfiniteList.java fails intermittently due to timeout
jcoomes
parents:
10997
diff
changeset
|
397 |
} |
b1a0089f89d2
6330863: vm/gc/InfiniteList.java fails intermittently due to timeout
jcoomes
parents:
10997
diff
changeset
|
398 |
} |
b1a0089f89d2
6330863: vm/gc/InfiniteList.java fails intermittently due to timeout
jcoomes
parents:
10997
diff
changeset
|
399 |
return NULL; |
b1a0089f89d2
6330863: vm/gc/InfiniteList.java fails intermittently due to timeout
jcoomes
parents:
10997
diff
changeset
|
400 |
} |
b1a0089f89d2
6330863: vm/gc/InfiniteList.java fails intermittently due to timeout
jcoomes
parents:
10997
diff
changeset
|
401 |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
402 |
void ParallelScavengeHeap::do_full_collection(bool clear_all_soft_refs) { |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
403 |
if (UseParallelOldGC) { |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
404 |
// The do_full_collection() parameter clear_all_soft_refs |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
405 |
// is interpreted here as maximum_compaction which will |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
406 |
// cause SoftRefs to be cleared. |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
407 |
bool maximum_compaction = clear_all_soft_refs; |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
408 |
PSParallelCompact::invoke(maximum_compaction); |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
409 |
} else { |
49982 | 410 |
PSMarkSweepProxy::invoke(clear_all_soft_refs); |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
411 |
} |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
412 |
} |
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
413 |
|
1 | 414 |
// Failed allocation policy. Must be called from the VM thread, and |
415 |
// only at a safepoint! Note that this method has policy for allocation |
|
416 |
// flow, and NOT collection policy. So we do not check for gc collection |
|
417 |
// time over limit here, that is the responsibility of the heap specific |
|
418 |
// collection methods. This method decides where to attempt allocations, |
|
419 |
// and when to attempt collections, but no collection specific policy. |
|
9997
b75b7939f448
6994322: Remove the is_tlab and is_noref / is_large_noref parameters from the CollectedHeap
tonyp
parents:
9995
diff
changeset
|
420 |
HeapWord* ParallelScavengeHeap::failed_mem_allocate(size_t size) { |
1 | 421 |
assert(SafepointSynchronize::is_at_safepoint(), "should be at safepoint"); |
422 |
assert(Thread::current() == (Thread*)VMThread::vm_thread(), "should be in vm thread"); |
|
30173
13cf7580b000
8077413: Avoid use of Universe::heap() inside collectors
pliden
parents:
30152
diff
changeset
|
423 |
assert(!is_gc_active(), "not reentrant"); |
1 | 424 |
assert(!Heap_lock->owned_by_self(), "this thread should not own the Heap_lock"); |
425 |
||
11758
b1a0089f89d2
6330863: vm/gc/InfiniteList.java fails intermittently due to timeout
jcoomes
parents:
10997
diff
changeset
|
426 |
// We assume that allocation in eden will fail unless we collect. |
1 | 427 |
|
428 |
// First level allocation failure, scavenge and allocate in young gen. |
|
429 |
GCCauseSetter gccs(this, GCCause::_allocation_failure); |
|
11758
b1a0089f89d2
6330863: vm/gc/InfiniteList.java fails intermittently due to timeout
jcoomes
parents:
10997
diff
changeset
|
430 |
const bool invoked_full_gc = PSScavenge::invoke(); |
9997
b75b7939f448
6994322: Remove the is_tlab and is_noref / is_large_noref parameters from the CollectedHeap
tonyp
parents:
9995
diff
changeset
|
431 |
HeapWord* result = young_gen()->allocate(size); |
1 | 432 |
|
433 |
// Second level allocation failure. |
|
434 |
// Mark sweep and allocate in young generation. |
|
11758
b1a0089f89d2
6330863: vm/gc/InfiniteList.java fails intermittently due to timeout
jcoomes
parents:
10997
diff
changeset
|
435 |
if (result == NULL && !invoked_full_gc) { |
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
436 |
do_full_collection(false); |
11758
b1a0089f89d2
6330863: vm/gc/InfiniteList.java fails intermittently due to timeout
jcoomes
parents:
10997
diff
changeset
|
437 |
result = young_gen()->allocate(size); |
1 | 438 |
} |
439 |
||
11758
b1a0089f89d2
6330863: vm/gc/InfiniteList.java fails intermittently due to timeout
jcoomes
parents:
10997
diff
changeset
|
440 |
death_march_check(result, size); |
b1a0089f89d2
6330863: vm/gc/InfiniteList.java fails intermittently due to timeout
jcoomes
parents:
10997
diff
changeset
|
441 |
|
1 | 442 |
// Third level allocation failure. |
443 |
// After mark sweep and young generation allocation failure, |
|
444 |
// allocate in old generation. |
|
9997
b75b7939f448
6994322: Remove the is_tlab and is_noref / is_large_noref parameters from the CollectedHeap
tonyp
parents:
9995
diff
changeset
|
445 |
if (result == NULL) { |
b75b7939f448
6994322: Remove the is_tlab and is_noref / is_large_noref parameters from the CollectedHeap
tonyp
parents:
9995
diff
changeset
|
446 |
result = old_gen()->allocate(size); |
1 | 447 |
} |
448 |
||
449 |
// Fourth level allocation failure. We're running out of memory. |
|
450 |
// More complete mark sweep and allocate in young generation. |
|
451 |
if (result == NULL) { |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
452 |
do_full_collection(true); |
9997
b75b7939f448
6994322: Remove the is_tlab and is_noref / is_large_noref parameters from the CollectedHeap
tonyp
parents:
9995
diff
changeset
|
453 |
result = young_gen()->allocate(size); |
1 | 454 |
} |
455 |
||
456 |
// Fifth level allocation failure. |
|
457 |
// After more complete mark sweep, allocate in old generation. |
|
9997
b75b7939f448
6994322: Remove the is_tlab and is_noref / is_large_noref parameters from the CollectedHeap
tonyp
parents:
9995
diff
changeset
|
458 |
if (result == NULL) { |
b75b7939f448
6994322: Remove the is_tlab and is_noref / is_large_noref parameters from the CollectedHeap
tonyp
parents:
9995
diff
changeset
|
459 |
result = old_gen()->allocate(size); |
1 | 460 |
} |
461 |
||
462 |
return result; |
|
463 |
} |
|
464 |
||
465 |
void ParallelScavengeHeap::ensure_parsability(bool retire_tlabs) { |
|
466 |
CollectedHeap::ensure_parsability(retire_tlabs); |
|
467 |
young_gen()->eden_space()->ensure_parsability(); |
|
468 |
} |
|
469 |
||
470 |
size_t ParallelScavengeHeap::tlab_capacity(Thread* thr) const { |
|
471 |
return young_gen()->eden_space()->tlab_capacity(thr); |
|
472 |
} |
|
473 |
||
22552 | 474 |
size_t ParallelScavengeHeap::tlab_used(Thread* thr) const { |
475 |
return young_gen()->eden_space()->tlab_used(thr); |
|
476 |
} |
|
477 |
||
1 | 478 |
size_t ParallelScavengeHeap::unsafe_max_tlab_alloc(Thread* thr) const { |
479 |
return young_gen()->eden_space()->unsafe_max_tlab_alloc(thr); |
|
480 |
} |
|
481 |
||
49945 | 482 |
HeapWord* ParallelScavengeHeap::allocate_new_tlab(size_t min_size, size_t requested_size, size_t* actual_size) { |
483 |
HeapWord* result = young_gen()->allocate(requested_size); |
|
484 |
if (result != NULL) { |
|
485 |
*actual_size = requested_size; |
|
486 |
} |
|
487 |
||
488 |
return result; |
|
1 | 489 |
} |
490 |
||
491 |
void ParallelScavengeHeap::resize_all_tlabs() { |
|
492 |
CollectedHeap::resize_all_tlabs(); |
|
493 |
} |
|
494 |
||
495 |
// This method is used by System.gc() and JVMTI. |
|
496 |
void ParallelScavengeHeap::collect(GCCause::Cause cause) { |
|
497 |
assert(!Heap_lock->owned_by_self(), |
|
498 |
"this thread should not own the Heap_lock"); |
|
499 |
||
29078 | 500 |
uint gc_count = 0; |
501 |
uint full_gc_count = 0; |
|
1 | 502 |
{ |
503 |
MutexLocker ml(Heap_lock); |
|
504 |
// This value is guarded by the Heap_lock |
|
30173
13cf7580b000
8077413: Avoid use of Universe::heap() inside collectors
pliden
parents:
30152
diff
changeset
|
505 |
gc_count = total_collections(); |
13cf7580b000
8077413: Avoid use of Universe::heap() inside collectors
pliden
parents:
30152
diff
changeset
|
506 |
full_gc_count = total_full_collections(); |
1 | 507 |
} |
508 |
||
509 |
VM_ParallelGCSystemGC op(gc_count, full_gc_count, cause); |
|
510 |
VMThread::execute(&op); |
|
511 |
} |
|
512 |
||
513 |
void ParallelScavengeHeap::object_iterate(ObjectClosure* cl) { |
|
514 |
young_gen()->object_iterate(cl); |
|
515 |
old_gen()->object_iterate(cl); |
|
516 |
} |
|
517 |
||
518 |
||
519 |
HeapWord* ParallelScavengeHeap::block_start(const void* addr) const { |
|
520 |
if (young_gen()->is_in_reserved(addr)) { |
|
521 |
assert(young_gen()->is_in(addr), |
|
522 |
"addr should be in allocated part of young gen"); |
|
7108 | 523 |
// called from os::print_location by find or VMError |
524 |
if (Debugging || VMError::fatal_error_in_progress()) return NULL; |
|
1 | 525 |
Unimplemented(); |
526 |
} else if (old_gen()->is_in_reserved(addr)) { |
|
527 |
assert(old_gen()->is_in(addr), |
|
528 |
"addr should be in allocated part of old gen"); |
|
529 |
return old_gen()->start_array()->object_start((HeapWord*)addr); |
|
530 |
} |
|
531 |
return 0; |
|
532 |
} |
|
533 |
||
534 |
size_t ParallelScavengeHeap::block_size(const HeapWord* addr) const { |
|
535 |
return oop(addr)->size(); |
|
536 |
} |
|
537 |
||
538 |
bool ParallelScavengeHeap::block_is_obj(const HeapWord* addr) const { |
|
539 |
return block_start(addr) == addr; |
|
540 |
} |
|
541 |
||
542 |
jlong ParallelScavengeHeap::millis_since_last_gc() { |
|
543 |
return UseParallelOldGC ? |
|
544 |
PSParallelCompact::millis_since_last_gc() : |
|
49982 | 545 |
PSMarkSweepProxy::millis_since_last_gc(); |
1 | 546 |
} |
547 |
||
548 |
void ParallelScavengeHeap::prepare_for_verify() { |
|
549 |
ensure_parsability(false); // no need to retire TLABs for verification |
|
550 |
} |
|
551 |
||
18025 | 552 |
PSHeapSummary ParallelScavengeHeap::create_ps_heap_summary() { |
553 |
PSOldGen* old = old_gen(); |
|
554 |
HeapWord* old_committed_end = (HeapWord*)old->virtual_space()->committed_high_addr(); |
|
555 |
VirtualSpaceSummary old_summary(old->reserved().start(), old_committed_end, old->reserved().end()); |
|
556 |
SpaceSummary old_space(old->reserved().start(), old_committed_end, old->used_in_bytes()); |
|
557 |
||
558 |
PSYoungGen* young = young_gen(); |
|
559 |
VirtualSpaceSummary young_summary(young->reserved().start(), |
|
560 |
(HeapWord*)young->virtual_space()->committed_high_addr(), young->reserved().end()); |
|
561 |
||
562 |
MutableSpace* eden = young_gen()->eden_space(); |
|
563 |
SpaceSummary eden_space(eden->bottom(), eden->end(), eden->used_in_bytes()); |
|
564 |
||
565 |
MutableSpace* from = young_gen()->from_space(); |
|
566 |
SpaceSummary from_space(from->bottom(), from->end(), from->used_in_bytes()); |
|
567 |
||
568 |
MutableSpace* to = young_gen()->to_space(); |
|
569 |
SpaceSummary to_space(to->bottom(), to->end(), to->used_in_bytes()); |
|
570 |
||
571 |
VirtualSpaceSummary heap_summary = create_heap_space_summary(); |
|
572 |
return PSHeapSummary(heap_summary, used(), old_summary, old_space, young_summary, eden_space, from_space, to_space); |
|
573 |
} |
|
574 |
||
1 | 575 |
void ParallelScavengeHeap::print_on(outputStream* st) const { |
576 |
young_gen()->print_on(st); |
|
577 |
old_gen()->print_on(st); |
|
49389
9ef2eee8ca7c
8199430: Rename MetaspaceAux to something more meaningful
stuefe
parents:
49164
diff
changeset
|
578 |
MetaspaceUtils::print_on(st); |
1 | 579 |
} |
580 |
||
16685
41c34debcde0
8011872: Include Bit Map addresses in the hs_err files
stefank
parents:
16604
diff
changeset
|
581 |
void ParallelScavengeHeap::print_on_error(outputStream* st) const { |
41c34debcde0
8011872: Include Bit Map addresses in the hs_err files
stefank
parents:
16604
diff
changeset
|
582 |
this->CollectedHeap::print_on_error(st); |
41c34debcde0
8011872: Include Bit Map addresses in the hs_err files
stefank
parents:
16604
diff
changeset
|
583 |
|
41c34debcde0
8011872: Include Bit Map addresses in the hs_err files
stefank
parents:
16604
diff
changeset
|
584 |
if (UseParallelOldGC) { |
41c34debcde0
8011872: Include Bit Map addresses in the hs_err files
stefank
parents:
16604
diff
changeset
|
585 |
st->cr(); |
41c34debcde0
8011872: Include Bit Map addresses in the hs_err files
stefank
parents:
16604
diff
changeset
|
586 |
PSParallelCompact::print_on_error(st); |
41c34debcde0
8011872: Include Bit Map addresses in the hs_err files
stefank
parents:
16604
diff
changeset
|
587 |
} |
41c34debcde0
8011872: Include Bit Map addresses in the hs_err files
stefank
parents:
16604
diff
changeset
|
588 |
} |
41c34debcde0
8011872: Include Bit Map addresses in the hs_err files
stefank
parents:
16604
diff
changeset
|
589 |
|
1 | 590 |
void ParallelScavengeHeap::gc_threads_do(ThreadClosure* tc) const { |
591 |
PSScavenge::gc_task_manager()->threads_do(tc); |
|
592 |
} |
|
593 |
||
594 |
void ParallelScavengeHeap::print_gc_threads_on(outputStream* st) const { |
|
595 |
PSScavenge::gc_task_manager()->print_threads_on(st); |
|
596 |
} |
|
597 |
||
598 |
void ParallelScavengeHeap::print_tracing_info() const { |
|
46657
cc4ac8d1ef6b
8179268: Factor out AdaptiveSizePolicy from top-level interfaces CollectorPolicy and CollectedHeap
rkennke
parents:
37462
diff
changeset
|
599 |
AdaptiveSizePolicyOutput::print(); |
47546
64ba55ba8516
8184286: print_tracing_info() does not use Unified Logging for output
sjohanss
parents:
47216
diff
changeset
|
600 |
log_debug(gc, heap, exit)("Accumulated young generation GC time %3.7f secs", PSScavenge::accumulated_time()->seconds()); |
64ba55ba8516
8184286: print_tracing_info() does not use Unified Logging for output
sjohanss
parents:
47216
diff
changeset
|
601 |
log_debug(gc, heap, exit)("Accumulated old generation GC time %3.7f secs", |
49982 | 602 |
UseParallelOldGC ? PSParallelCompact::accumulated_time()->seconds() : PSMarkSweepProxy::accumulated_time()->seconds()); |
1 | 603 |
} |
604 |
||
605 |
||
35061 | 606 |
void ParallelScavengeHeap::verify(VerifyOption option /* ignored */) { |
1 | 607 |
// Why do we need the total_collections()-filter below? |
608 |
if (total_collections() > 0) { |
|
35061 | 609 |
log_debug(gc, verify)("Tenured"); |
12379 | 610 |
old_gen()->verify(); |
1 | 611 |
|
35061 | 612 |
log_debug(gc, verify)("Eden"); |
12379 | 613 |
young_gen()->verify(); |
1 | 614 |
} |
615 |
} |
|
616 |
||
28940
c314cf1db3fa
8066566: Refactor ParNewGeneration to contain ParNewTracer
mlarsson
parents:
27687
diff
changeset
|
617 |
void ParallelScavengeHeap::trace_heap(GCWhen::Type when, const GCTracer* gc_tracer) { |
18025 | 618 |
const PSHeapSummary& heap_summary = create_ps_heap_summary(); |
23470
ff2a7ea4225d
8036703: Add trace event with statistics for the metaspace chunk free lists
ehelin
parents:
22552
diff
changeset
|
619 |
gc_tracer->report_gc_heap_summary(when, heap_summary); |
ff2a7ea4225d
8036703: Add trace event with statistics for the metaspace chunk free lists
ehelin
parents:
22552
diff
changeset
|
620 |
|
18025 | 621 |
const MetaspaceSummary& metaspace_summary = create_metaspace_summary(); |
23470
ff2a7ea4225d
8036703: Add trace event with statistics for the metaspace chunk free lists
ehelin
parents:
22552
diff
changeset
|
622 |
gc_tracer->report_metaspace_summary(when, metaspace_summary); |
18025 | 623 |
} |
624 |
||
1 | 625 |
ParallelScavengeHeap* ParallelScavengeHeap::heap() { |
30258
413e15d1b146
8077415: Remove duplicate variables holding the CollectedHeap
pliden
parents:
30177
diff
changeset
|
626 |
CollectedHeap* heap = Universe::heap(); |
413e15d1b146
8077415: Remove duplicate variables holding the CollectedHeap
pliden
parents:
30177
diff
changeset
|
627 |
assert(heap != NULL, "Uninitialized access to ParallelScavengeHeap::heap()"); |
49628
88478047bc8f
8199918: Shorten names of CollectedHeap::Name members
pliden
parents:
49594
diff
changeset
|
628 |
assert(heap->kind() == CollectedHeap::Parallel, "Invalid name"); |
30258
413e15d1b146
8077415: Remove duplicate variables holding the CollectedHeap
pliden
parents:
30177
diff
changeset
|
629 |
return (ParallelScavengeHeap*)heap; |
1 | 630 |
} |
631 |
||
49455
848864ed9b17
8199604: Rename CardTableModRefBS to CardTableBarrierSet
eosterlund
parents:
49389
diff
changeset
|
632 |
CardTableBarrierSet* ParallelScavengeHeap::barrier_set() { |
49754 | 633 |
return barrier_set_cast<CardTableBarrierSet>(BarrierSet::barrier_set()); |
49164
7e958a8ebcd3
8195142: Refactor out card table from CardTableModRefBS to flatten the BarrierSet hierarchy
eosterlund
parents:
49047
diff
changeset
|
634 |
} |
7e958a8ebcd3
8195142: Refactor out card table from CardTableModRefBS to flatten the BarrierSet hierarchy
eosterlund
parents:
49047
diff
changeset
|
635 |
|
7e958a8ebcd3
8195142: Refactor out card table from CardTableModRefBS to flatten the BarrierSet hierarchy
eosterlund
parents:
49047
diff
changeset
|
636 |
PSCardTable* ParallelScavengeHeap::card_table() { |
7e958a8ebcd3
8195142: Refactor out card table from CardTableModRefBS to flatten the BarrierSet hierarchy
eosterlund
parents:
49047
diff
changeset
|
637 |
return static_cast<PSCardTable*>(barrier_set()->card_table()); |
7e958a8ebcd3
8195142: Refactor out card table from CardTableModRefBS to flatten the BarrierSet hierarchy
eosterlund
parents:
49047
diff
changeset
|
638 |
} |
7e958a8ebcd3
8195142: Refactor out card table from CardTableModRefBS to flatten the BarrierSet hierarchy
eosterlund
parents:
49047
diff
changeset
|
639 |
|
1 | 640 |
// Before delegating the resize to the young generation, |
641 |
// the reserved space for the young and old generations |
|
22551 | 642 |
// may be changed to accommodate the desired resize. |
1 | 643 |
void ParallelScavengeHeap::resize_young_gen(size_t eden_size, |
644 |
size_t survivor_size) { |
|
645 |
if (UseAdaptiveGCBoundary) { |
|
646 |
if (size_policy()->bytes_absorbed_from_eden() != 0) { |
|
647 |
size_policy()->reset_bytes_absorbed_from_eden(); |
|
648 |
return; // The generation changed size already. |
|
649 |
} |
|
650 |
gens()->adjust_boundary_for_young_gen_needs(eden_size, survivor_size); |
|
651 |
} |
|
652 |
||
653 |
// Delegate the resize to the generation. |
|
654 |
_young_gen->resize(eden_size, survivor_size); |
|
655 |
} |
|
656 |
||
657 |
// Before delegating the resize to the old generation, |
|
658 |
// the reserved space for the young and old generations |
|
22551 | 659 |
// may be changed to accommodate the desired resize. |
1 | 660 |
void ParallelScavengeHeap::resize_old_gen(size_t desired_free_space) { |
661 |
if (UseAdaptiveGCBoundary) { |
|
662 |
if (size_policy()->bytes_absorbed_from_eden() != 0) { |
|
663 |
size_policy()->reset_bytes_absorbed_from_eden(); |
|
664 |
return; // The generation changed size already. |
|
665 |
} |
|
666 |
gens()->adjust_boundary_for_old_gen_needs(desired_free_space); |
|
667 |
} |
|
668 |
||
669 |
// Delegate the resize to the generation. |
|
670 |
_old_gen->resize(desired_free_space); |
|
671 |
} |
|
971
f0b20be4165d
6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents:
386
diff
changeset
|
672 |
|
3908
24b55ad4c228
6863023: need non-perm oops in code cache for JSR 292
jrose
parents:
3262
diff
changeset
|
673 |
ParallelScavengeHeap::ParStrongRootsScope::ParStrongRootsScope() { |
24b55ad4c228
6863023: need non-perm oops in code cache for JSR 292
jrose
parents:
3262
diff
changeset
|
674 |
// nothing particular |
24b55ad4c228
6863023: need non-perm oops in code cache for JSR 292
jrose
parents:
3262
diff
changeset
|
675 |
} |
24b55ad4c228
6863023: need non-perm oops in code cache for JSR 292
jrose
parents:
3262
diff
changeset
|
676 |
|
24b55ad4c228
6863023: need non-perm oops in code cache for JSR 292
jrose
parents:
3262
diff
changeset
|
677 |
ParallelScavengeHeap::ParStrongRootsScope::~ParStrongRootsScope() { |
24b55ad4c228
6863023: need non-perm oops in code cache for JSR 292
jrose
parents:
3262
diff
changeset
|
678 |
// nothing particular |
24b55ad4c228
6863023: need non-perm oops in code cache for JSR 292
jrose
parents:
3262
diff
changeset
|
679 |
} |
24b55ad4c228
6863023: need non-perm oops in code cache for JSR 292
jrose
parents:
3262
diff
changeset
|
680 |
|
971
f0b20be4165d
6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents:
386
diff
changeset
|
681 |
#ifndef PRODUCT |
f0b20be4165d
6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents:
386
diff
changeset
|
682 |
void ParallelScavengeHeap::record_gen_tops_before_GC() { |
f0b20be4165d
6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents:
386
diff
changeset
|
683 |
if (ZapUnusedHeapArea) { |
f0b20be4165d
6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents:
386
diff
changeset
|
684 |
young_gen()->record_spaces_top(); |
f0b20be4165d
6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents:
386
diff
changeset
|
685 |
old_gen()->record_spaces_top(); |
f0b20be4165d
6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents:
386
diff
changeset
|
686 |
} |
f0b20be4165d
6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents:
386
diff
changeset
|
687 |
} |
f0b20be4165d
6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents:
386
diff
changeset
|
688 |
|
f0b20be4165d
6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents:
386
diff
changeset
|
689 |
void ParallelScavengeHeap::gen_mangle_unused_area() { |
f0b20be4165d
6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents:
386
diff
changeset
|
690 |
if (ZapUnusedHeapArea) { |
f0b20be4165d
6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents:
386
diff
changeset
|
691 |
young_gen()->eden_space()->mangle_unused_area(); |
f0b20be4165d
6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents:
386
diff
changeset
|
692 |
young_gen()->to_space()->mangle_unused_area(); |
f0b20be4165d
6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents:
386
diff
changeset
|
693 |
young_gen()->from_space()->mangle_unused_area(); |
f0b20be4165d
6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents:
386
diff
changeset
|
694 |
old_gen()->object_space()->mangle_unused_area(); |
f0b20be4165d
6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents:
386
diff
changeset
|
695 |
} |
f0b20be4165d
6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents:
386
diff
changeset
|
696 |
} |
f0b20be4165d
6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents:
386
diff
changeset
|
697 |
#endif |
47624
b055cb5170f5
8185141: Generalize scavengeable nmethod root handling
eosterlund
parents:
47546
diff
changeset
|
698 |
|
b055cb5170f5
8185141: Generalize scavengeable nmethod root handling
eosterlund
parents:
47546
diff
changeset
|
699 |
bool ParallelScavengeHeap::is_scavengable(oop obj) { |
b055cb5170f5
8185141: Generalize scavengeable nmethod root handling
eosterlund
parents:
47546
diff
changeset
|
700 |
return is_in_young(obj); |
b055cb5170f5
8185141: Generalize scavengeable nmethod root handling
eosterlund
parents:
47546
diff
changeset
|
701 |
} |
b055cb5170f5
8185141: Generalize scavengeable nmethod root handling
eosterlund
parents:
47546
diff
changeset
|
702 |
|
b055cb5170f5
8185141: Generalize scavengeable nmethod root handling
eosterlund
parents:
47546
diff
changeset
|
703 |
void ParallelScavengeHeap::register_nmethod(nmethod* nm) { |
b055cb5170f5
8185141: Generalize scavengeable nmethod root handling
eosterlund
parents:
47546
diff
changeset
|
704 |
CodeCache::register_scavenge_root_nmethod(nm); |
b055cb5170f5
8185141: Generalize scavengeable nmethod root handling
eosterlund
parents:
47546
diff
changeset
|
705 |
} |
b055cb5170f5
8185141: Generalize scavengeable nmethod root handling
eosterlund
parents:
47546
diff
changeset
|
706 |
|
b055cb5170f5
8185141: Generalize scavengeable nmethod root handling
eosterlund
parents:
47546
diff
changeset
|
707 |
void ParallelScavengeHeap::verify_nmethod(nmethod* nm) { |
b055cb5170f5
8185141: Generalize scavengeable nmethod root handling
eosterlund
parents:
47546
diff
changeset
|
708 |
CodeCache::verify_scavenge_root_nmethod(nm); |
b055cb5170f5
8185141: Generalize scavengeable nmethod root handling
eosterlund
parents:
47546
diff
changeset
|
709 |
} |
48168
cb5d2d4453d0
8191564: Refactor GC related servicability code into GC specific subclasses
rkennke
parents:
48117
diff
changeset
|
710 |
|
cb5d2d4453d0
8191564: Refactor GC related servicability code into GC specific subclasses
rkennke
parents:
48117
diff
changeset
|
711 |
GrowableArray<GCMemoryManager*> ParallelScavengeHeap::memory_managers() { |
cb5d2d4453d0
8191564: Refactor GC related servicability code into GC specific subclasses
rkennke
parents:
48117
diff
changeset
|
712 |
GrowableArray<GCMemoryManager*> memory_managers(2); |
cb5d2d4453d0
8191564: Refactor GC related servicability code into GC specific subclasses
rkennke
parents:
48117
diff
changeset
|
713 |
memory_managers.append(_young_manager); |
cb5d2d4453d0
8191564: Refactor GC related servicability code into GC specific subclasses
rkennke
parents:
48117
diff
changeset
|
714 |
memory_managers.append(_old_manager); |
cb5d2d4453d0
8191564: Refactor GC related servicability code into GC specific subclasses
rkennke
parents:
48117
diff
changeset
|
715 |
return memory_managers; |
cb5d2d4453d0
8191564: Refactor GC related servicability code into GC specific subclasses
rkennke
parents:
48117
diff
changeset
|
716 |
} |
cb5d2d4453d0
8191564: Refactor GC related servicability code into GC specific subclasses
rkennke
parents:
48117
diff
changeset
|
717 |
|
cb5d2d4453d0
8191564: Refactor GC related servicability code into GC specific subclasses
rkennke
parents:
48117
diff
changeset
|
718 |
GrowableArray<MemoryPool*> ParallelScavengeHeap::memory_pools() { |
cb5d2d4453d0
8191564: Refactor GC related servicability code into GC specific subclasses
rkennke
parents:
48117
diff
changeset
|
719 |
GrowableArray<MemoryPool*> memory_pools(3); |
cb5d2d4453d0
8191564: Refactor GC related servicability code into GC specific subclasses
rkennke
parents:
48117
diff
changeset
|
720 |
memory_pools.append(_eden_pool); |
cb5d2d4453d0
8191564: Refactor GC related servicability code into GC specific subclasses
rkennke
parents:
48117
diff
changeset
|
721 |
memory_pools.append(_survivor_pool); |
cb5d2d4453d0
8191564: Refactor GC related servicability code into GC specific subclasses
rkennke
parents:
48117
diff
changeset
|
722 |
memory_pools.append(_old_pool); |
cb5d2d4453d0
8191564: Refactor GC related servicability code into GC specific subclasses
rkennke
parents:
48117
diff
changeset
|
723 |
return memory_pools; |
cb5d2d4453d0
8191564: Refactor GC related servicability code into GC specific subclasses
rkennke
parents:
48117
diff
changeset
|
724 |
} |