author | ysr |
Wed, 02 Sep 2009 00:04:29 -0700 | |
changeset 3696 | 9e5d9b5e1049 |
parent 1623 | a0dd9009e992 |
child 3795 | 6227ff014cfe |
permissions | -rw-r--r-- |
1 | 1 |
/* |
1623 | 2 |
* Copyright 2005-2008 Sun Microsystems, Inc. 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 |
* |
|
19 |
* Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara, |
|
20 |
* CA 95054 USA or visit www.sun.com if you need additional information or |
|
21 |
* have any questions. |
|
22 |
* |
|
23 |
*/ |
|
24 |
||
25 |
#include "incls/_precompiled.incl" |
|
26 |
#include "incls/_psCompactionManager.cpp.incl" |
|
27 |
||
28 |
PSOldGen* ParCompactionManager::_old_gen = NULL; |
|
29 |
ParCompactionManager** ParCompactionManager::_manager_array = NULL; |
|
30 |
OopTaskQueueSet* ParCompactionManager::_stack_array = NULL; |
|
31 |
ObjectStartArray* ParCompactionManager::_start_array = NULL; |
|
32 |
ParMarkBitMap* ParCompactionManager::_mark_bitmap = NULL; |
|
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
1
diff
changeset
|
33 |
RegionTaskQueueSet* ParCompactionManager::_region_array = NULL; |
1 | 34 |
|
35 |
ParCompactionManager::ParCompactionManager() : |
|
36 |
_action(CopyAndUpdate) { |
|
37 |
||
38 |
ParallelScavengeHeap* heap = (ParallelScavengeHeap*)Universe::heap(); |
|
39 |
assert(heap->kind() == CollectedHeap::ParallelScavengeHeap, "Sanity"); |
|
40 |
||
41 |
_old_gen = heap->old_gen(); |
|
42 |
_start_array = old_gen()->start_array(); |
|
43 |
||
44 |
||
45 |
marking_stack()->initialize(); |
|
46 |
||
47 |
// We want the overflow stack to be permanent |
|
48 |
_overflow_stack = new (ResourceObj::C_HEAP) GrowableArray<oop>(10, true); |
|
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
1
diff
changeset
|
49 |
#ifdef USE_RegionTaskQueueWithOverflow |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
1
diff
changeset
|
50 |
region_stack()->initialize(); |
1 | 51 |
#else |
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
1
diff
changeset
|
52 |
region_stack()->initialize(); |
1 | 53 |
|
54 |
// We want the overflow stack to be permanent |
|
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
1
diff
changeset
|
55 |
_region_overflow_stack = |
1 | 56 |
new (ResourceObj::C_HEAP) GrowableArray<size_t>(10, true); |
57 |
#endif |
|
58 |
||
59 |
// Note that _revisit_klass_stack is allocated out of the |
|
60 |
// C heap (as opposed to out of ResourceArena). |
|
61 |
int size = |
|
62 |
(SystemDictionary::number_of_classes() * 2) * 2 / ParallelGCThreads; |
|
63 |
_revisit_klass_stack = new (ResourceObj::C_HEAP) GrowableArray<Klass*>(size, true); |
|
3696 | 64 |
// From some experiments (#klass/k)^2 for k = 10 seems a better fit, but this will |
65 |
// have to do for now until we are able to investigate a more optimal setting. |
|
66 |
_revisit_mdo_stack = new (ResourceObj::C_HEAP) GrowableArray<DataLayout*>(size*2, true); |
|
1 | 67 |
|
68 |
} |
|
69 |
||
70 |
ParCompactionManager::~ParCompactionManager() { |
|
71 |
delete _overflow_stack; |
|
72 |
delete _revisit_klass_stack; |
|
3696 | 73 |
delete _revisit_mdo_stack; |
1 | 74 |
// _manager_array and _stack_array are statics |
75 |
// shared with all instances of ParCompactionManager |
|
76 |
// should not be deallocated. |
|
77 |
} |
|
78 |
||
79 |
void ParCompactionManager::initialize(ParMarkBitMap* mbm) { |
|
80 |
assert(PSParallelCompact::gc_task_manager() != NULL, |
|
81 |
"Needed for initialization"); |
|
82 |
||
83 |
_mark_bitmap = mbm; |
|
84 |
||
85 |
uint parallel_gc_threads = PSParallelCompact::gc_task_manager()->workers(); |
|
86 |
||
87 |
assert(_manager_array == NULL, "Attempt to initialize twice"); |
|
88 |
_manager_array = NEW_C_HEAP_ARRAY(ParCompactionManager*, parallel_gc_threads+1 ); |
|
89 |
guarantee(_manager_array != NULL, "Could not initialize promotion manager"); |
|
90 |
||
91 |
_stack_array = new OopTaskQueueSet(parallel_gc_threads); |
|
92 |
guarantee(_stack_array != NULL, "Count not initialize promotion manager"); |
|
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
1
diff
changeset
|
93 |
_region_array = new RegionTaskQueueSet(parallel_gc_threads); |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
1
diff
changeset
|
94 |
guarantee(_region_array != NULL, "Count not initialize promotion manager"); |
1 | 95 |
|
96 |
// Create and register the ParCompactionManager(s) for the worker threads. |
|
97 |
for(uint i=0; i<parallel_gc_threads; i++) { |
|
98 |
_manager_array[i] = new ParCompactionManager(); |
|
99 |
guarantee(_manager_array[i] != NULL, "Could not create ParCompactionManager"); |
|
100 |
stack_array()->register_queue(i, _manager_array[i]->marking_stack()); |
|
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
1
diff
changeset
|
101 |
#ifdef USE_RegionTaskQueueWithOverflow |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
1
diff
changeset
|
102 |
region_array()->register_queue(i, _manager_array[i]->region_stack()->task_queue()); |
1 | 103 |
#else |
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
1
diff
changeset
|
104 |
region_array()->register_queue(i, _manager_array[i]->region_stack()); |
1 | 105 |
#endif |
106 |
} |
|
107 |
||
108 |
// The VMThread gets its own ParCompactionManager, which is not available |
|
109 |
// for work stealing. |
|
110 |
_manager_array[parallel_gc_threads] = new ParCompactionManager(); |
|
111 |
guarantee(_manager_array[parallel_gc_threads] != NULL, |
|
112 |
"Could not create ParCompactionManager"); |
|
113 |
assert(PSParallelCompact::gc_task_manager()->workers() != 0, |
|
114 |
"Not initialized?"); |
|
115 |
} |
|
116 |
||
117 |
bool ParCompactionManager::should_update() { |
|
118 |
assert(action() != NotValid, "Action is not set"); |
|
119 |
return (action() == ParCompactionManager::Update) || |
|
120 |
(action() == ParCompactionManager::CopyAndUpdate) || |
|
121 |
(action() == ParCompactionManager::UpdateAndCopy); |
|
122 |
} |
|
123 |
||
124 |
bool ParCompactionManager::should_copy() { |
|
125 |
assert(action() != NotValid, "Action is not set"); |
|
126 |
return (action() == ParCompactionManager::Copy) || |
|
127 |
(action() == ParCompactionManager::CopyAndUpdate) || |
|
128 |
(action() == ParCompactionManager::UpdateAndCopy); |
|
129 |
} |
|
130 |
||
131 |
bool ParCompactionManager::should_verify_only() { |
|
132 |
assert(action() != NotValid, "Action is not set"); |
|
133 |
return action() == ParCompactionManager::VerifyUpdate; |
|
134 |
} |
|
135 |
||
136 |
bool ParCompactionManager::should_reset_only() { |
|
137 |
assert(action() != NotValid, "Action is not set"); |
|
138 |
return action() == ParCompactionManager::ResetObjects; |
|
139 |
} |
|
140 |
||
141 |
// For now save on a stack |
|
142 |
void ParCompactionManager::save_for_scanning(oop m) { |
|
143 |
stack_push(m); |
|
144 |
} |
|
145 |
||
146 |
void ParCompactionManager::stack_push(oop obj) { |
|
147 |
||
148 |
if(!marking_stack()->push(obj)) { |
|
149 |
overflow_stack()->push(obj); |
|
150 |
} |
|
151 |
} |
|
152 |
||
153 |
oop ParCompactionManager::retrieve_for_scanning() { |
|
154 |
||
155 |
// Should not be used in the parallel case |
|
156 |
ShouldNotReachHere(); |
|
157 |
return NULL; |
|
158 |
} |
|
159 |
||
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
1
diff
changeset
|
160 |
// Save region on a stack |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
1
diff
changeset
|
161 |
void ParCompactionManager::save_for_processing(size_t region_index) { |
1 | 162 |
#ifdef ASSERT |
163 |
const ParallelCompactData& sd = PSParallelCompact::summary_data(); |
|
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
1
diff
changeset
|
164 |
ParallelCompactData::RegionData* const region_ptr = sd.region(region_index); |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
1
diff
changeset
|
165 |
assert(region_ptr->claimed(), "must be claimed"); |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
1
diff
changeset
|
166 |
assert(region_ptr->_pushed++ == 0, "should only be pushed once"); |
1 | 167 |
#endif |
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
1
diff
changeset
|
168 |
region_stack_push(region_index); |
1 | 169 |
} |
170 |
||
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
1
diff
changeset
|
171 |
void ParCompactionManager::region_stack_push(size_t region_index) { |
1 | 172 |
|
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
1
diff
changeset
|
173 |
#ifdef USE_RegionTaskQueueWithOverflow |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
1
diff
changeset
|
174 |
region_stack()->save(region_index); |
1 | 175 |
#else |
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
1
diff
changeset
|
176 |
if(!region_stack()->push(region_index)) { |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
1
diff
changeset
|
177 |
region_overflow_stack()->push(region_index); |
1 | 178 |
} |
179 |
#endif |
|
180 |
} |
|
181 |
||
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
1
diff
changeset
|
182 |
bool ParCompactionManager::retrieve_for_processing(size_t& region_index) { |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
1
diff
changeset
|
183 |
#ifdef USE_RegionTaskQueueWithOverflow |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
1
diff
changeset
|
184 |
return region_stack()->retrieve(region_index); |
1 | 185 |
#else |
186 |
// Should not be used in the parallel case |
|
187 |
ShouldNotReachHere(); |
|
188 |
return false; |
|
189 |
#endif |
|
190 |
} |
|
191 |
||
192 |
ParCompactionManager* |
|
193 |
ParCompactionManager::gc_thread_compaction_manager(int index) { |
|
194 |
assert(index >= 0 && index < (int)ParallelGCThreads, "index out of range"); |
|
195 |
assert(_manager_array != NULL, "Sanity"); |
|
196 |
return _manager_array[index]; |
|
197 |
} |
|
198 |
||
199 |
void ParCompactionManager::reset() { |
|
200 |
for(uint i=0; i<ParallelGCThreads+1; i++) { |
|
201 |
manager_array(i)->revisit_klass_stack()->clear(); |
|
3696 | 202 |
manager_array(i)->revisit_mdo_stack()->clear(); |
1 | 203 |
} |
204 |
} |
|
205 |
||
206 |
void ParCompactionManager::drain_marking_stacks(OopClosure* blk) { |
|
207 |
#ifdef ASSERT |
|
208 |
ParallelScavengeHeap* heap = (ParallelScavengeHeap*)Universe::heap(); |
|
209 |
assert(heap->kind() == CollectedHeap::ParallelScavengeHeap, "Sanity"); |
|
210 |
MutableSpace* to_space = heap->young_gen()->to_space(); |
|
211 |
MutableSpace* old_space = heap->old_gen()->object_space(); |
|
212 |
MutableSpace* perm_space = heap->perm_gen()->object_space(); |
|
213 |
#endif /* ASSERT */ |
|
214 |
||
215 |
||
216 |
do { |
|
217 |
||
218 |
// Drain overflow stack first, so other threads can steal from |
|
219 |
// claimed stack while we work. |
|
220 |
while(!overflow_stack()->is_empty()) { |
|
221 |
oop obj = overflow_stack()->pop(); |
|
222 |
obj->follow_contents(this); |
|
223 |
} |
|
224 |
||
225 |
oop obj; |
|
226 |
// obj is a reference!!! |
|
227 |
while (marking_stack()->pop_local(obj)) { |
|
228 |
// It would be nice to assert about the type of objects we might |
|
229 |
// pop, but they can come from anywhere, unfortunately. |
|
230 |
obj->follow_contents(this); |
|
231 |
} |
|
232 |
} while((marking_stack()->size() != 0) || (overflow_stack()->length() != 0)); |
|
233 |
||
234 |
assert(marking_stack()->size() == 0, "Sanity"); |
|
235 |
assert(overflow_stack()->length() == 0, "Sanity"); |
|
236 |
} |
|
237 |
||
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
1
diff
changeset
|
238 |
void ParCompactionManager::drain_region_overflow_stack() { |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
1
diff
changeset
|
239 |
size_t region_index = (size_t) -1; |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
1
diff
changeset
|
240 |
while(region_stack()->retrieve_from_overflow(region_index)) { |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
1
diff
changeset
|
241 |
PSParallelCompact::fill_and_update_region(this, region_index); |
1 | 242 |
} |
243 |
} |
|
244 |
||
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
1
diff
changeset
|
245 |
void ParCompactionManager::drain_region_stacks() { |
1 | 246 |
#ifdef ASSERT |
247 |
ParallelScavengeHeap* heap = (ParallelScavengeHeap*)Universe::heap(); |
|
248 |
assert(heap->kind() == CollectedHeap::ParallelScavengeHeap, "Sanity"); |
|
249 |
MutableSpace* to_space = heap->young_gen()->to_space(); |
|
250 |
MutableSpace* old_space = heap->old_gen()->object_space(); |
|
251 |
MutableSpace* perm_space = heap->perm_gen()->object_space(); |
|
252 |
#endif /* ASSERT */ |
|
253 |
||
254 |
#if 1 // def DO_PARALLEL - the serial code hasn't been updated |
|
255 |
do { |
|
256 |
||
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
1
diff
changeset
|
257 |
#ifdef USE_RegionTaskQueueWithOverflow |
1 | 258 |
// Drain overflow stack first, so other threads can steal from |
259 |
// claimed stack while we work. |
|
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
1
diff
changeset
|
260 |
size_t region_index = (size_t) -1; |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
1
diff
changeset
|
261 |
while(region_stack()->retrieve_from_overflow(region_index)) { |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
1
diff
changeset
|
262 |
PSParallelCompact::fill_and_update_region(this, region_index); |
1 | 263 |
} |
264 |
||
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
1
diff
changeset
|
265 |
while (region_stack()->retrieve_from_stealable_queue(region_index)) { |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
1
diff
changeset
|
266 |
PSParallelCompact::fill_and_update_region(this, region_index); |
1 | 267 |
} |
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
1
diff
changeset
|
268 |
} while (!region_stack()->is_empty()); |
1 | 269 |
#else |
270 |
// Drain overflow stack first, so other threads can steal from |
|
271 |
// claimed stack while we work. |
|
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
1
diff
changeset
|
272 |
while(!region_overflow_stack()->is_empty()) { |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
1
diff
changeset
|
273 |
size_t region_index = region_overflow_stack()->pop(); |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
1
diff
changeset
|
274 |
PSParallelCompact::fill_and_update_region(this, region_index); |
1 | 275 |
} |
276 |
||
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
1
diff
changeset
|
277 |
size_t region_index = -1; |
1 | 278 |
// obj is a reference!!! |
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
1
diff
changeset
|
279 |
while (region_stack()->pop_local(region_index)) { |
1 | 280 |
// It would be nice to assert about the type of objects we might |
281 |
// pop, but they can come from anywhere, unfortunately. |
|
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
1
diff
changeset
|
282 |
PSParallelCompact::fill_and_update_region(this, region_index); |
1 | 283 |
} |
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
1
diff
changeset
|
284 |
} while((region_stack()->size() != 0) || |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
1
diff
changeset
|
285 |
(region_overflow_stack()->length() != 0)); |
1 | 286 |
#endif |
287 |
||
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
1
diff
changeset
|
288 |
#ifdef USE_RegionTaskQueueWithOverflow |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
1
diff
changeset
|
289 |
assert(region_stack()->is_empty(), "Sanity"); |
1 | 290 |
#else |
1407
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
1
diff
changeset
|
291 |
assert(region_stack()->size() == 0, "Sanity"); |
9006b01ba3fd
6725697: par compact - rename class ChunkData to RegionData
jcoomes
parents:
1
diff
changeset
|
292 |
assert(region_overflow_stack()->length() == 0, "Sanity"); |
1 | 293 |
#endif |
294 |
#else |
|
295 |
oop obj; |
|
296 |
while (obj = retrieve_for_scanning()) { |
|
297 |
obj->follow_contents(this); |
|
298 |
} |
|
299 |
#endif |
|
300 |
} |
|
301 |
||
302 |
#ifdef ASSERT |
|
303 |
bool ParCompactionManager::stacks_have_been_allocated() { |
|
3696 | 304 |
return (revisit_klass_stack()->data_addr() != NULL && |
305 |
revisit_mdo_stack()->data_addr() != NULL); |
|
1 | 306 |
} |
307 |
#endif |