annotate src/share/vm/gc_implementation/parNew/parNewGeneration.cpp @ 6:73e96e5c30df

6624765: Guarantee failure "Unexpected dirty card found" Summary: In verification take into account partial coverage of a region by a card and expansion of the card table. Reviewed-by: ysr, apetrusenko
author jmasa
date Fri, 15 Feb 2008 07:01:10 -0800
parents a61af66fc99e
children ba764ed4b6f2
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
a61af66fc99e Initial load
duke
parents:
diff changeset
2 * Copyright 2001-2007 Sun Microsystems, Inc. All Rights Reserved.
a61af66fc99e Initial load
duke
parents:
diff changeset
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
a61af66fc99e Initial load
duke
parents:
diff changeset
4 *
a61af66fc99e Initial load
duke
parents:
diff changeset
5 * This code is free software; you can redistribute it and/or modify it
a61af66fc99e Initial load
duke
parents:
diff changeset
6 * under the terms of the GNU General Public License version 2 only, as
a61af66fc99e Initial load
duke
parents:
diff changeset
7 * published by the Free Software Foundation.
a61af66fc99e Initial load
duke
parents:
diff changeset
8 *
a61af66fc99e Initial load
duke
parents:
diff changeset
9 * This code is distributed in the hope that it will be useful, but WITHOUT
a61af66fc99e Initial load
duke
parents:
diff changeset
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
a61af66fc99e Initial load
duke
parents:
diff changeset
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
a61af66fc99e Initial load
duke
parents:
diff changeset
12 * version 2 for more details (a copy is included in the LICENSE file that
a61af66fc99e Initial load
duke
parents:
diff changeset
13 * accompanied this code).
a61af66fc99e Initial load
duke
parents:
diff changeset
14 *
a61af66fc99e Initial load
duke
parents:
diff changeset
15 * You should have received a copy of the GNU General Public License version
a61af66fc99e Initial load
duke
parents:
diff changeset
16 * 2 along with this work; if not, write to the Free Software Foundation,
a61af66fc99e Initial load
duke
parents:
diff changeset
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
a61af66fc99e Initial load
duke
parents:
diff changeset
18 *
a61af66fc99e Initial load
duke
parents:
diff changeset
19 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
a61af66fc99e Initial load
duke
parents:
diff changeset
20 * CA 95054 USA or visit www.sun.com if you need additional information or
a61af66fc99e Initial load
duke
parents:
diff changeset
21 * have any questions.
a61af66fc99e Initial load
duke
parents:
diff changeset
22 *
a61af66fc99e Initial load
duke
parents:
diff changeset
23 */
a61af66fc99e Initial load
duke
parents:
diff changeset
24
a61af66fc99e Initial load
duke
parents:
diff changeset
25 # include "incls/_precompiled.incl"
a61af66fc99e Initial load
duke
parents:
diff changeset
26 # include "incls/_parNewGeneration.cpp.incl"
a61af66fc99e Initial load
duke
parents:
diff changeset
27
a61af66fc99e Initial load
duke
parents:
diff changeset
28 #ifdef _MSC_VER
a61af66fc99e Initial load
duke
parents:
diff changeset
29 #pragma warning( push )
a61af66fc99e Initial load
duke
parents:
diff changeset
30 #pragma warning( disable:4355 ) // 'this' : used in base member initializer list
a61af66fc99e Initial load
duke
parents:
diff changeset
31 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
32 ParScanThreadState::ParScanThreadState(Space* to_space_,
a61af66fc99e Initial load
duke
parents:
diff changeset
33 ParNewGeneration* gen_,
a61af66fc99e Initial load
duke
parents:
diff changeset
34 Generation* old_gen_,
a61af66fc99e Initial load
duke
parents:
diff changeset
35 int thread_num_,
a61af66fc99e Initial load
duke
parents:
diff changeset
36 ObjToScanQueueSet* work_queue_set_,
a61af66fc99e Initial load
duke
parents:
diff changeset
37 size_t desired_plab_sz_,
a61af66fc99e Initial load
duke
parents:
diff changeset
38 ParallelTaskTerminator& term_) :
a61af66fc99e Initial load
duke
parents:
diff changeset
39 _to_space(to_space_), _old_gen(old_gen_), _thread_num(thread_num_),
a61af66fc99e Initial load
duke
parents:
diff changeset
40 _work_queue(work_queue_set_->queue(thread_num_)), _to_space_full(false),
a61af66fc99e Initial load
duke
parents:
diff changeset
41 _ageTable(false), // false ==> not the global age table, no perf data.
a61af66fc99e Initial load
duke
parents:
diff changeset
42 _to_space_alloc_buffer(desired_plab_sz_),
a61af66fc99e Initial load
duke
parents:
diff changeset
43 _to_space_closure(gen_, this), _old_gen_closure(gen_, this),
a61af66fc99e Initial load
duke
parents:
diff changeset
44 _to_space_root_closure(gen_, this), _old_gen_root_closure(gen_, this),
a61af66fc99e Initial load
duke
parents:
diff changeset
45 _older_gen_closure(gen_, this),
a61af66fc99e Initial load
duke
parents:
diff changeset
46 _evacuate_followers(this, &_to_space_closure, &_old_gen_closure,
a61af66fc99e Initial load
duke
parents:
diff changeset
47 &_to_space_root_closure, gen_, &_old_gen_root_closure,
a61af66fc99e Initial load
duke
parents:
diff changeset
48 work_queue_set_, &term_),
a61af66fc99e Initial load
duke
parents:
diff changeset
49 _is_alive_closure(gen_), _scan_weak_ref_closure(gen_, this),
a61af66fc99e Initial load
duke
parents:
diff changeset
50 _keep_alive_closure(&_scan_weak_ref_closure),
a61af66fc99e Initial load
duke
parents:
diff changeset
51 _pushes(0), _pops(0), _steals(0), _steal_attempts(0), _term_attempts(0),
a61af66fc99e Initial load
duke
parents:
diff changeset
52 _strong_roots_time(0.0), _term_time(0.0)
a61af66fc99e Initial load
duke
parents:
diff changeset
53 {
a61af66fc99e Initial load
duke
parents:
diff changeset
54 _survivor_chunk_array =
a61af66fc99e Initial load
duke
parents:
diff changeset
55 (ChunkArray*) old_gen()->get_data_recorder(thread_num());
a61af66fc99e Initial load
duke
parents:
diff changeset
56 _hash_seed = 17; // Might want to take time-based random value.
a61af66fc99e Initial load
duke
parents:
diff changeset
57 _start = os::elapsedTime();
a61af66fc99e Initial load
duke
parents:
diff changeset
58 _old_gen_closure.set_generation(old_gen_);
a61af66fc99e Initial load
duke
parents:
diff changeset
59 _old_gen_root_closure.set_generation(old_gen_);
a61af66fc99e Initial load
duke
parents:
diff changeset
60 }
a61af66fc99e Initial load
duke
parents:
diff changeset
61 #ifdef _MSC_VER
a61af66fc99e Initial load
duke
parents:
diff changeset
62 #pragma warning( pop )
a61af66fc99e Initial load
duke
parents:
diff changeset
63 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
64
a61af66fc99e Initial load
duke
parents:
diff changeset
65 void ParScanThreadState::record_survivor_plab(HeapWord* plab_start,
a61af66fc99e Initial load
duke
parents:
diff changeset
66 size_t plab_word_size) {
a61af66fc99e Initial load
duke
parents:
diff changeset
67 ChunkArray* sca = survivor_chunk_array();
a61af66fc99e Initial load
duke
parents:
diff changeset
68 if (sca != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
69 // A non-null SCA implies that we want the PLAB data recorded.
a61af66fc99e Initial load
duke
parents:
diff changeset
70 sca->record_sample(plab_start, plab_word_size);
a61af66fc99e Initial load
duke
parents:
diff changeset
71 }
a61af66fc99e Initial load
duke
parents:
diff changeset
72 }
a61af66fc99e Initial load
duke
parents:
diff changeset
73
a61af66fc99e Initial load
duke
parents:
diff changeset
74 bool ParScanThreadState::should_be_partially_scanned(oop new_obj, oop old_obj) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
75 return new_obj->is_objArray() &&
a61af66fc99e Initial load
duke
parents:
diff changeset
76 arrayOop(new_obj)->length() > ParGCArrayScanChunk &&
a61af66fc99e Initial load
duke
parents:
diff changeset
77 new_obj != old_obj;
a61af66fc99e Initial load
duke
parents:
diff changeset
78 }
a61af66fc99e Initial load
duke
parents:
diff changeset
79
a61af66fc99e Initial load
duke
parents:
diff changeset
80 void ParScanThreadState::scan_partial_array_and_push_remainder(oop old) {
a61af66fc99e Initial load
duke
parents:
diff changeset
81 assert(old->is_objArray(), "must be obj array");
a61af66fc99e Initial load
duke
parents:
diff changeset
82 assert(old->is_forwarded(), "must be forwarded");
a61af66fc99e Initial load
duke
parents:
diff changeset
83 assert(Universe::heap()->is_in_reserved(old), "must be in heap.");
a61af66fc99e Initial load
duke
parents:
diff changeset
84 assert(!_old_gen->is_in(old), "must be in young generation.");
a61af66fc99e Initial load
duke
parents:
diff changeset
85
a61af66fc99e Initial load
duke
parents:
diff changeset
86 objArrayOop obj = objArrayOop(old->forwardee());
a61af66fc99e Initial load
duke
parents:
diff changeset
87 // Process ParGCArrayScanChunk elements now
a61af66fc99e Initial load
duke
parents:
diff changeset
88 // and push the remainder back onto queue
a61af66fc99e Initial load
duke
parents:
diff changeset
89 int start = arrayOop(old)->length();
a61af66fc99e Initial load
duke
parents:
diff changeset
90 int end = obj->length();
a61af66fc99e Initial load
duke
parents:
diff changeset
91 int remainder = end - start;
a61af66fc99e Initial load
duke
parents:
diff changeset
92 assert(start <= end, "just checking");
a61af66fc99e Initial load
duke
parents:
diff changeset
93 if (remainder > 2 * ParGCArrayScanChunk) {
a61af66fc99e Initial load
duke
parents:
diff changeset
94 // Test above combines last partial chunk with a full chunk
a61af66fc99e Initial load
duke
parents:
diff changeset
95 end = start + ParGCArrayScanChunk;
a61af66fc99e Initial load
duke
parents:
diff changeset
96 arrayOop(old)->set_length(end);
a61af66fc99e Initial load
duke
parents:
diff changeset
97 // Push remainder.
a61af66fc99e Initial load
duke
parents:
diff changeset
98 bool ok = work_queue()->push(old);
a61af66fc99e Initial load
duke
parents:
diff changeset
99 assert(ok, "just popped, push must be okay");
a61af66fc99e Initial load
duke
parents:
diff changeset
100 note_push();
a61af66fc99e Initial load
duke
parents:
diff changeset
101 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
102 // Restore length so that it can be used if there
a61af66fc99e Initial load
duke
parents:
diff changeset
103 // is a promotion failure and forwarding pointers
a61af66fc99e Initial load
duke
parents:
diff changeset
104 // must be removed.
a61af66fc99e Initial load
duke
parents:
diff changeset
105 arrayOop(old)->set_length(end);
a61af66fc99e Initial load
duke
parents:
diff changeset
106 }
a61af66fc99e Initial load
duke
parents:
diff changeset
107 // process our set of indices (include header in first chunk)
a61af66fc99e Initial load
duke
parents:
diff changeset
108 oop* start_addr = start == 0 ? (oop*)obj : obj->obj_at_addr(start);
a61af66fc99e Initial load
duke
parents:
diff changeset
109 oop* end_addr = obj->base() + end; // obj_at_addr(end) asserts end < length
a61af66fc99e Initial load
duke
parents:
diff changeset
110 MemRegion mr((HeapWord*)start_addr, (HeapWord*)end_addr);
a61af66fc99e Initial load
duke
parents:
diff changeset
111 if ((HeapWord *)obj < young_old_boundary()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
112 // object is in to_space
a61af66fc99e Initial load
duke
parents:
diff changeset
113 obj->oop_iterate(&_to_space_closure, mr);
a61af66fc99e Initial load
duke
parents:
diff changeset
114 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
115 // object is in old generation
a61af66fc99e Initial load
duke
parents:
diff changeset
116 obj->oop_iterate(&_old_gen_closure, mr);
a61af66fc99e Initial load
duke
parents:
diff changeset
117 }
a61af66fc99e Initial load
duke
parents:
diff changeset
118 }
a61af66fc99e Initial load
duke
parents:
diff changeset
119
a61af66fc99e Initial load
duke
parents:
diff changeset
120
a61af66fc99e Initial load
duke
parents:
diff changeset
121 void ParScanThreadState::trim_queues(int max_size) {
a61af66fc99e Initial load
duke
parents:
diff changeset
122 ObjToScanQueue* queue = work_queue();
a61af66fc99e Initial load
duke
parents:
diff changeset
123 while (queue->size() > (juint)max_size) {
a61af66fc99e Initial load
duke
parents:
diff changeset
124 oop obj_to_scan;
a61af66fc99e Initial load
duke
parents:
diff changeset
125 if (queue->pop_local(obj_to_scan)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
126 note_pop();
a61af66fc99e Initial load
duke
parents:
diff changeset
127
a61af66fc99e Initial load
duke
parents:
diff changeset
128 if ((HeapWord *)obj_to_scan < young_old_boundary()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
129 if (obj_to_scan->is_objArray() &&
a61af66fc99e Initial load
duke
parents:
diff changeset
130 obj_to_scan->is_forwarded() &&
a61af66fc99e Initial load
duke
parents:
diff changeset
131 obj_to_scan->forwardee() != obj_to_scan) {
a61af66fc99e Initial load
duke
parents:
diff changeset
132 scan_partial_array_and_push_remainder(obj_to_scan);
a61af66fc99e Initial load
duke
parents:
diff changeset
133 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
134 // object is in to_space
a61af66fc99e Initial load
duke
parents:
diff changeset
135 obj_to_scan->oop_iterate(&_to_space_closure);
a61af66fc99e Initial load
duke
parents:
diff changeset
136 }
a61af66fc99e Initial load
duke
parents:
diff changeset
137 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
138 // object is in old generation
a61af66fc99e Initial load
duke
parents:
diff changeset
139 obj_to_scan->oop_iterate(&_old_gen_closure);
a61af66fc99e Initial load
duke
parents:
diff changeset
140 }
a61af66fc99e Initial load
duke
parents:
diff changeset
141 }
a61af66fc99e Initial load
duke
parents:
diff changeset
142 }
a61af66fc99e Initial load
duke
parents:
diff changeset
143 }
a61af66fc99e Initial load
duke
parents:
diff changeset
144
a61af66fc99e Initial load
duke
parents:
diff changeset
145 HeapWord* ParScanThreadState::alloc_in_to_space_slow(size_t word_sz) {
a61af66fc99e Initial load
duke
parents:
diff changeset
146
a61af66fc99e Initial load
duke
parents:
diff changeset
147 // Otherwise, if the object is small enough, try to reallocate the
a61af66fc99e Initial load
duke
parents:
diff changeset
148 // buffer.
a61af66fc99e Initial load
duke
parents:
diff changeset
149 HeapWord* obj = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
150 if (!_to_space_full) {
a61af66fc99e Initial load
duke
parents:
diff changeset
151 ParGCAllocBuffer* const plab = to_space_alloc_buffer();
a61af66fc99e Initial load
duke
parents:
diff changeset
152 Space* const sp = to_space();
a61af66fc99e Initial load
duke
parents:
diff changeset
153 if (word_sz * 100 <
a61af66fc99e Initial load
duke
parents:
diff changeset
154 ParallelGCBufferWastePct * plab->word_sz()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
155 // Is small enough; abandon this buffer and start a new one.
a61af66fc99e Initial load
duke
parents:
diff changeset
156 plab->retire(false, false);
a61af66fc99e Initial load
duke
parents:
diff changeset
157 size_t buf_size = plab->word_sz();
a61af66fc99e Initial load
duke
parents:
diff changeset
158 HeapWord* buf_space = sp->par_allocate(buf_size);
a61af66fc99e Initial load
duke
parents:
diff changeset
159 if (buf_space == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
160 const size_t min_bytes =
a61af66fc99e Initial load
duke
parents:
diff changeset
161 ParGCAllocBuffer::min_size() << LogHeapWordSize;
a61af66fc99e Initial load
duke
parents:
diff changeset
162 size_t free_bytes = sp->free();
a61af66fc99e Initial load
duke
parents:
diff changeset
163 while(buf_space == NULL && free_bytes >= min_bytes) {
a61af66fc99e Initial load
duke
parents:
diff changeset
164 buf_size = free_bytes >> LogHeapWordSize;
a61af66fc99e Initial load
duke
parents:
diff changeset
165 assert(buf_size == (size_t)align_object_size(buf_size),
a61af66fc99e Initial load
duke
parents:
diff changeset
166 "Invariant");
a61af66fc99e Initial load
duke
parents:
diff changeset
167 buf_space = sp->par_allocate(buf_size);
a61af66fc99e Initial load
duke
parents:
diff changeset
168 free_bytes = sp->free();
a61af66fc99e Initial load
duke
parents:
diff changeset
169 }
a61af66fc99e Initial load
duke
parents:
diff changeset
170 }
a61af66fc99e Initial load
duke
parents:
diff changeset
171 if (buf_space != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
172 plab->set_word_size(buf_size);
a61af66fc99e Initial load
duke
parents:
diff changeset
173 plab->set_buf(buf_space);
a61af66fc99e Initial load
duke
parents:
diff changeset
174 record_survivor_plab(buf_space, buf_size);
a61af66fc99e Initial load
duke
parents:
diff changeset
175 obj = plab->allocate(word_sz);
a61af66fc99e Initial load
duke
parents:
diff changeset
176 // Note that we cannot compare buf_size < word_sz below
a61af66fc99e Initial load
duke
parents:
diff changeset
177 // because of AlignmentReserve (see ParGCAllocBuffer::allocate()).
a61af66fc99e Initial load
duke
parents:
diff changeset
178 assert(obj != NULL || plab->words_remaining() < word_sz,
a61af66fc99e Initial load
duke
parents:
diff changeset
179 "Else should have been able to allocate");
a61af66fc99e Initial load
duke
parents:
diff changeset
180 // It's conceivable that we may be able to use the
a61af66fc99e Initial load
duke
parents:
diff changeset
181 // buffer we just grabbed for subsequent small requests
a61af66fc99e Initial load
duke
parents:
diff changeset
182 // even if not for this one.
a61af66fc99e Initial load
duke
parents:
diff changeset
183 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
184 // We're used up.
a61af66fc99e Initial load
duke
parents:
diff changeset
185 _to_space_full = true;
a61af66fc99e Initial load
duke
parents:
diff changeset
186 }
a61af66fc99e Initial load
duke
parents:
diff changeset
187
a61af66fc99e Initial load
duke
parents:
diff changeset
188 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
189 // Too large; allocate the object individually.
a61af66fc99e Initial load
duke
parents:
diff changeset
190 obj = sp->par_allocate(word_sz);
a61af66fc99e Initial load
duke
parents:
diff changeset
191 }
a61af66fc99e Initial load
duke
parents:
diff changeset
192 }
a61af66fc99e Initial load
duke
parents:
diff changeset
193 return obj;
a61af66fc99e Initial load
duke
parents:
diff changeset
194 }
a61af66fc99e Initial load
duke
parents:
diff changeset
195
a61af66fc99e Initial load
duke
parents:
diff changeset
196
a61af66fc99e Initial load
duke
parents:
diff changeset
197 void ParScanThreadState::undo_alloc_in_to_space(HeapWord* obj,
a61af66fc99e Initial load
duke
parents:
diff changeset
198 size_t word_sz) {
a61af66fc99e Initial load
duke
parents:
diff changeset
199 // Is the alloc in the current alloc buffer?
a61af66fc99e Initial load
duke
parents:
diff changeset
200 if (to_space_alloc_buffer()->contains(obj)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
201 assert(to_space_alloc_buffer()->contains(obj + word_sz - 1),
a61af66fc99e Initial load
duke
parents:
diff changeset
202 "Should contain whole object.");
a61af66fc99e Initial load
duke
parents:
diff changeset
203 to_space_alloc_buffer()->undo_allocation(obj, word_sz);
a61af66fc99e Initial load
duke
parents:
diff changeset
204 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
205 SharedHeap::fill_region_with_object(MemRegion(obj, word_sz));
a61af66fc99e Initial load
duke
parents:
diff changeset
206 }
a61af66fc99e Initial load
duke
parents:
diff changeset
207 }
a61af66fc99e Initial load
duke
parents:
diff changeset
208
a61af66fc99e Initial load
duke
parents:
diff changeset
209 class ParScanThreadStateSet: private ResourceArray {
a61af66fc99e Initial load
duke
parents:
diff changeset
210 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
211 // Initializes states for the specified number of threads;
a61af66fc99e Initial load
duke
parents:
diff changeset
212 ParScanThreadStateSet(int num_threads,
a61af66fc99e Initial load
duke
parents:
diff changeset
213 Space& to_space,
a61af66fc99e Initial load
duke
parents:
diff changeset
214 ParNewGeneration& gen,
a61af66fc99e Initial load
duke
parents:
diff changeset
215 Generation& old_gen,
a61af66fc99e Initial load
duke
parents:
diff changeset
216 ObjToScanQueueSet& queue_set,
a61af66fc99e Initial load
duke
parents:
diff changeset
217 size_t desired_plab_sz,
a61af66fc99e Initial load
duke
parents:
diff changeset
218 ParallelTaskTerminator& term);
a61af66fc99e Initial load
duke
parents:
diff changeset
219 inline ParScanThreadState& thread_sate(int i);
a61af66fc99e Initial load
duke
parents:
diff changeset
220 int pushes() { return _pushes; }
a61af66fc99e Initial load
duke
parents:
diff changeset
221 int pops() { return _pops; }
a61af66fc99e Initial load
duke
parents:
diff changeset
222 int steals() { return _steals; }
a61af66fc99e Initial load
duke
parents:
diff changeset
223 void reset();
a61af66fc99e Initial load
duke
parents:
diff changeset
224 void flush();
a61af66fc99e Initial load
duke
parents:
diff changeset
225 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
226 ParallelTaskTerminator& _term;
a61af66fc99e Initial load
duke
parents:
diff changeset
227 ParNewGeneration& _gen;
a61af66fc99e Initial load
duke
parents:
diff changeset
228 Generation& _next_gen;
a61af66fc99e Initial load
duke
parents:
diff changeset
229 // staticstics
a61af66fc99e Initial load
duke
parents:
diff changeset
230 int _pushes;
a61af66fc99e Initial load
duke
parents:
diff changeset
231 int _pops;
a61af66fc99e Initial load
duke
parents:
diff changeset
232 int _steals;
a61af66fc99e Initial load
duke
parents:
diff changeset
233 };
a61af66fc99e Initial load
duke
parents:
diff changeset
234
a61af66fc99e Initial load
duke
parents:
diff changeset
235
a61af66fc99e Initial load
duke
parents:
diff changeset
236 ParScanThreadStateSet::ParScanThreadStateSet(
a61af66fc99e Initial load
duke
parents:
diff changeset
237 int num_threads, Space& to_space, ParNewGeneration& gen,
a61af66fc99e Initial load
duke
parents:
diff changeset
238 Generation& old_gen, ObjToScanQueueSet& queue_set,
a61af66fc99e Initial load
duke
parents:
diff changeset
239 size_t desired_plab_sz, ParallelTaskTerminator& term)
a61af66fc99e Initial load
duke
parents:
diff changeset
240 : ResourceArray(sizeof(ParScanThreadState), num_threads),
a61af66fc99e Initial load
duke
parents:
diff changeset
241 _gen(gen), _next_gen(old_gen), _term(term),
a61af66fc99e Initial load
duke
parents:
diff changeset
242 _pushes(0), _pops(0), _steals(0)
a61af66fc99e Initial load
duke
parents:
diff changeset
243 {
a61af66fc99e Initial load
duke
parents:
diff changeset
244 assert(num_threads > 0, "sanity check!");
a61af66fc99e Initial load
duke
parents:
diff changeset
245 // Initialize states.
a61af66fc99e Initial load
duke
parents:
diff changeset
246 for (int i = 0; i < num_threads; ++i) {
a61af66fc99e Initial load
duke
parents:
diff changeset
247 new ((ParScanThreadState*)_data + i)
a61af66fc99e Initial load
duke
parents:
diff changeset
248 ParScanThreadState(&to_space, &gen, &old_gen, i, &queue_set,
a61af66fc99e Initial load
duke
parents:
diff changeset
249 desired_plab_sz, term);
a61af66fc99e Initial load
duke
parents:
diff changeset
250 }
a61af66fc99e Initial load
duke
parents:
diff changeset
251 }
a61af66fc99e Initial load
duke
parents:
diff changeset
252
a61af66fc99e Initial load
duke
parents:
diff changeset
253 inline ParScanThreadState& ParScanThreadStateSet::thread_sate(int i)
a61af66fc99e Initial load
duke
parents:
diff changeset
254 {
a61af66fc99e Initial load
duke
parents:
diff changeset
255 assert(i >= 0 && i < length(), "sanity check!");
a61af66fc99e Initial load
duke
parents:
diff changeset
256 return ((ParScanThreadState*)_data)[i];
a61af66fc99e Initial load
duke
parents:
diff changeset
257 }
a61af66fc99e Initial load
duke
parents:
diff changeset
258
a61af66fc99e Initial load
duke
parents:
diff changeset
259
a61af66fc99e Initial load
duke
parents:
diff changeset
260 void ParScanThreadStateSet::reset()
a61af66fc99e Initial load
duke
parents:
diff changeset
261 {
a61af66fc99e Initial load
duke
parents:
diff changeset
262 _term.reset_for_reuse();
a61af66fc99e Initial load
duke
parents:
diff changeset
263 }
a61af66fc99e Initial load
duke
parents:
diff changeset
264
a61af66fc99e Initial load
duke
parents:
diff changeset
265 void ParScanThreadStateSet::flush()
a61af66fc99e Initial load
duke
parents:
diff changeset
266 {
a61af66fc99e Initial load
duke
parents:
diff changeset
267 for (int i = 0; i < length(); ++i) {
a61af66fc99e Initial load
duke
parents:
diff changeset
268 ParScanThreadState& par_scan_state = thread_sate(i);
a61af66fc99e Initial load
duke
parents:
diff changeset
269
a61af66fc99e Initial load
duke
parents:
diff changeset
270 // Flush stats related to To-space PLAB activity and
a61af66fc99e Initial load
duke
parents:
diff changeset
271 // retire the last buffer.
a61af66fc99e Initial load
duke
parents:
diff changeset
272 par_scan_state.to_space_alloc_buffer()->
a61af66fc99e Initial load
duke
parents:
diff changeset
273 flush_stats_and_retire(_gen.plab_stats(),
a61af66fc99e Initial load
duke
parents:
diff changeset
274 false /* !retain */);
a61af66fc99e Initial load
duke
parents:
diff changeset
275
a61af66fc99e Initial load
duke
parents:
diff changeset
276 // Every thread has its own age table. We need to merge
a61af66fc99e Initial load
duke
parents:
diff changeset
277 // them all into one.
a61af66fc99e Initial load
duke
parents:
diff changeset
278 ageTable *local_table = par_scan_state.age_table();
a61af66fc99e Initial load
duke
parents:
diff changeset
279 _gen.age_table()->merge(local_table);
a61af66fc99e Initial load
duke
parents:
diff changeset
280
a61af66fc99e Initial load
duke
parents:
diff changeset
281 // Inform old gen that we're done.
a61af66fc99e Initial load
duke
parents:
diff changeset
282 _next_gen.par_promote_alloc_done(i);
a61af66fc99e Initial load
duke
parents:
diff changeset
283 _next_gen.par_oop_since_save_marks_iterate_done(i);
a61af66fc99e Initial load
duke
parents:
diff changeset
284
a61af66fc99e Initial load
duke
parents:
diff changeset
285 // Flush stats related to work queue activity (push/pop/steal)
a61af66fc99e Initial load
duke
parents:
diff changeset
286 // This could conceivably become a bottleneck; if so, we'll put the
a61af66fc99e Initial load
duke
parents:
diff changeset
287 // stat's gathering under the flag.
a61af66fc99e Initial load
duke
parents:
diff changeset
288 if (PAR_STATS_ENABLED) {
a61af66fc99e Initial load
duke
parents:
diff changeset
289 _pushes += par_scan_state.pushes();
a61af66fc99e Initial load
duke
parents:
diff changeset
290 _pops += par_scan_state.pops();
a61af66fc99e Initial load
duke
parents:
diff changeset
291 _steals += par_scan_state.steals();
a61af66fc99e Initial load
duke
parents:
diff changeset
292 if (ParallelGCVerbose) {
a61af66fc99e Initial load
duke
parents:
diff changeset
293 gclog_or_tty->print("Thread %d complete:\n"
a61af66fc99e Initial load
duke
parents:
diff changeset
294 " Pushes: %7d Pops: %7d Steals %7d (in %d attempts)\n",
a61af66fc99e Initial load
duke
parents:
diff changeset
295 i, par_scan_state.pushes(), par_scan_state.pops(),
a61af66fc99e Initial load
duke
parents:
diff changeset
296 par_scan_state.steals(), par_scan_state.steal_attempts());
a61af66fc99e Initial load
duke
parents:
diff changeset
297 if (par_scan_state.overflow_pushes() > 0 ||
a61af66fc99e Initial load
duke
parents:
diff changeset
298 par_scan_state.overflow_refills() > 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
299 gclog_or_tty->print(" Overflow pushes: %7d "
a61af66fc99e Initial load
duke
parents:
diff changeset
300 "Overflow refills: %7d for %d objs.\n",
a61af66fc99e Initial load
duke
parents:
diff changeset
301 par_scan_state.overflow_pushes(),
a61af66fc99e Initial load
duke
parents:
diff changeset
302 par_scan_state.overflow_refills(),
a61af66fc99e Initial load
duke
parents:
diff changeset
303 par_scan_state.overflow_refill_objs());
a61af66fc99e Initial load
duke
parents:
diff changeset
304 }
a61af66fc99e Initial load
duke
parents:
diff changeset
305
a61af66fc99e Initial load
duke
parents:
diff changeset
306 double elapsed = par_scan_state.elapsed();
a61af66fc99e Initial load
duke
parents:
diff changeset
307 double strong_roots = par_scan_state.strong_roots_time();
a61af66fc99e Initial load
duke
parents:
diff changeset
308 double term = par_scan_state.term_time();
a61af66fc99e Initial load
duke
parents:
diff changeset
309 gclog_or_tty->print(
a61af66fc99e Initial load
duke
parents:
diff changeset
310 " Elapsed: %7.2f ms.\n"
a61af66fc99e Initial load
duke
parents:
diff changeset
311 " Strong roots: %7.2f ms (%6.2f%%)\n"
a61af66fc99e Initial load
duke
parents:
diff changeset
312 " Termination: %7.2f ms (%6.2f%%) (in %d entries)\n",
a61af66fc99e Initial load
duke
parents:
diff changeset
313 elapsed * 1000.0,
a61af66fc99e Initial load
duke
parents:
diff changeset
314 strong_roots * 1000.0, (strong_roots*100.0/elapsed),
a61af66fc99e Initial load
duke
parents:
diff changeset
315 term * 1000.0, (term*100.0/elapsed),
a61af66fc99e Initial load
duke
parents:
diff changeset
316 par_scan_state.term_attempts());
a61af66fc99e Initial load
duke
parents:
diff changeset
317 }
a61af66fc99e Initial load
duke
parents:
diff changeset
318 }
a61af66fc99e Initial load
duke
parents:
diff changeset
319 }
a61af66fc99e Initial load
duke
parents:
diff changeset
320 }
a61af66fc99e Initial load
duke
parents:
diff changeset
321
a61af66fc99e Initial load
duke
parents:
diff changeset
322
a61af66fc99e Initial load
duke
parents:
diff changeset
323 ParScanClosure::ParScanClosure(ParNewGeneration* g,
a61af66fc99e Initial load
duke
parents:
diff changeset
324 ParScanThreadState* par_scan_state) :
a61af66fc99e Initial load
duke
parents:
diff changeset
325 OopsInGenClosure(g), _par_scan_state(par_scan_state), _g(g)
a61af66fc99e Initial load
duke
parents:
diff changeset
326 {
a61af66fc99e Initial load
duke
parents:
diff changeset
327 assert(_g->level() == 0, "Optimized for youngest generation");
a61af66fc99e Initial load
duke
parents:
diff changeset
328 _boundary = _g->reserved().end();
a61af66fc99e Initial load
duke
parents:
diff changeset
329 }
a61af66fc99e Initial load
duke
parents:
diff changeset
330
a61af66fc99e Initial load
duke
parents:
diff changeset
331 ParScanWeakRefClosure::ParScanWeakRefClosure(ParNewGeneration* g,
a61af66fc99e Initial load
duke
parents:
diff changeset
332 ParScanThreadState* par_scan_state)
a61af66fc99e Initial load
duke
parents:
diff changeset
333 : ScanWeakRefClosure(g), _par_scan_state(par_scan_state)
a61af66fc99e Initial load
duke
parents:
diff changeset
334 {
a61af66fc99e Initial load
duke
parents:
diff changeset
335 }
a61af66fc99e Initial load
duke
parents:
diff changeset
336
a61af66fc99e Initial load
duke
parents:
diff changeset
337 #ifdef WIN32
a61af66fc99e Initial load
duke
parents:
diff changeset
338 #pragma warning(disable: 4786) /* identifier was truncated to '255' characters in the browser information */
a61af66fc99e Initial load
duke
parents:
diff changeset
339 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
340
a61af66fc99e Initial load
duke
parents:
diff changeset
341 ParEvacuateFollowersClosure::ParEvacuateFollowersClosure(
a61af66fc99e Initial load
duke
parents:
diff changeset
342 ParScanThreadState* par_scan_state_,
a61af66fc99e Initial load
duke
parents:
diff changeset
343 ParScanWithoutBarrierClosure* to_space_closure_,
a61af66fc99e Initial load
duke
parents:
diff changeset
344 ParScanWithBarrierClosure* old_gen_closure_,
a61af66fc99e Initial load
duke
parents:
diff changeset
345 ParRootScanWithoutBarrierClosure* to_space_root_closure_,
a61af66fc99e Initial load
duke
parents:
diff changeset
346 ParNewGeneration* par_gen_,
a61af66fc99e Initial load
duke
parents:
diff changeset
347 ParRootScanWithBarrierTwoGensClosure* old_gen_root_closure_,
a61af66fc99e Initial load
duke
parents:
diff changeset
348 ObjToScanQueueSet* task_queues_,
a61af66fc99e Initial load
duke
parents:
diff changeset
349 ParallelTaskTerminator* terminator_) :
a61af66fc99e Initial load
duke
parents:
diff changeset
350
a61af66fc99e Initial load
duke
parents:
diff changeset
351 _par_scan_state(par_scan_state_),
a61af66fc99e Initial load
duke
parents:
diff changeset
352 _to_space_closure(to_space_closure_),
a61af66fc99e Initial load
duke
parents:
diff changeset
353 _old_gen_closure(old_gen_closure_),
a61af66fc99e Initial load
duke
parents:
diff changeset
354 _to_space_root_closure(to_space_root_closure_),
a61af66fc99e Initial load
duke
parents:
diff changeset
355 _old_gen_root_closure(old_gen_root_closure_),
a61af66fc99e Initial load
duke
parents:
diff changeset
356 _par_gen(par_gen_),
a61af66fc99e Initial load
duke
parents:
diff changeset
357 _task_queues(task_queues_),
a61af66fc99e Initial load
duke
parents:
diff changeset
358 _terminator(terminator_)
a61af66fc99e Initial load
duke
parents:
diff changeset
359 {}
a61af66fc99e Initial load
duke
parents:
diff changeset
360
a61af66fc99e Initial load
duke
parents:
diff changeset
361 void ParEvacuateFollowersClosure::do_void() {
a61af66fc99e Initial load
duke
parents:
diff changeset
362 ObjToScanQueue* work_q = par_scan_state()->work_queue();
a61af66fc99e Initial load
duke
parents:
diff changeset
363
a61af66fc99e Initial load
duke
parents:
diff changeset
364 while (true) {
a61af66fc99e Initial load
duke
parents:
diff changeset
365
a61af66fc99e Initial load
duke
parents:
diff changeset
366 // Scan to-space and old-gen objs until we run out of both.
a61af66fc99e Initial load
duke
parents:
diff changeset
367 oop obj_to_scan;
a61af66fc99e Initial load
duke
parents:
diff changeset
368 par_scan_state()->trim_queues(0);
a61af66fc99e Initial load
duke
parents:
diff changeset
369
a61af66fc99e Initial load
duke
parents:
diff changeset
370 // We have no local work, attempt to steal from other threads.
a61af66fc99e Initial load
duke
parents:
diff changeset
371
a61af66fc99e Initial load
duke
parents:
diff changeset
372 // attempt to steal work from promoted.
a61af66fc99e Initial load
duke
parents:
diff changeset
373 par_scan_state()->note_steal_attempt();
a61af66fc99e Initial load
duke
parents:
diff changeset
374 if (task_queues()->steal(par_scan_state()->thread_num(),
a61af66fc99e Initial load
duke
parents:
diff changeset
375 par_scan_state()->hash_seed(),
a61af66fc99e Initial load
duke
parents:
diff changeset
376 obj_to_scan)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
377 par_scan_state()->note_steal();
a61af66fc99e Initial load
duke
parents:
diff changeset
378 bool res = work_q->push(obj_to_scan);
a61af66fc99e Initial load
duke
parents:
diff changeset
379 assert(res, "Empty queue should have room for a push.");
a61af66fc99e Initial load
duke
parents:
diff changeset
380
a61af66fc99e Initial load
duke
parents:
diff changeset
381 par_scan_state()->note_push();
a61af66fc99e Initial load
duke
parents:
diff changeset
382 // if successful, goto Start.
a61af66fc99e Initial load
duke
parents:
diff changeset
383 continue;
a61af66fc99e Initial load
duke
parents:
diff changeset
384
a61af66fc99e Initial load
duke
parents:
diff changeset
385 // try global overflow list.
a61af66fc99e Initial load
duke
parents:
diff changeset
386 } else if (par_gen()->take_from_overflow_list(par_scan_state())) {
a61af66fc99e Initial load
duke
parents:
diff changeset
387 continue;
a61af66fc99e Initial load
duke
parents:
diff changeset
388 }
a61af66fc99e Initial load
duke
parents:
diff changeset
389
a61af66fc99e Initial load
duke
parents:
diff changeset
390 // Otherwise, offer termination.
a61af66fc99e Initial load
duke
parents:
diff changeset
391 par_scan_state()->start_term_time();
a61af66fc99e Initial load
duke
parents:
diff changeset
392 if (terminator()->offer_termination()) break;
a61af66fc99e Initial load
duke
parents:
diff changeset
393 par_scan_state()->end_term_time();
a61af66fc99e Initial load
duke
parents:
diff changeset
394 }
a61af66fc99e Initial load
duke
parents:
diff changeset
395 // Finish the last termination pause.
a61af66fc99e Initial load
duke
parents:
diff changeset
396 par_scan_state()->end_term_time();
a61af66fc99e Initial load
duke
parents:
diff changeset
397 }
a61af66fc99e Initial load
duke
parents:
diff changeset
398
a61af66fc99e Initial load
duke
parents:
diff changeset
399 ParNewGenTask::ParNewGenTask(ParNewGeneration* gen, Generation* next_gen,
a61af66fc99e Initial load
duke
parents:
diff changeset
400 HeapWord* young_old_boundary, ParScanThreadStateSet* state_set) :
a61af66fc99e Initial load
duke
parents:
diff changeset
401 AbstractGangTask("ParNewGeneration collection"),
a61af66fc99e Initial load
duke
parents:
diff changeset
402 _gen(gen), _next_gen(next_gen),
a61af66fc99e Initial load
duke
parents:
diff changeset
403 _young_old_boundary(young_old_boundary),
a61af66fc99e Initial load
duke
parents:
diff changeset
404 _state_set(state_set)
a61af66fc99e Initial load
duke
parents:
diff changeset
405 {}
a61af66fc99e Initial load
duke
parents:
diff changeset
406
a61af66fc99e Initial load
duke
parents:
diff changeset
407 void ParNewGenTask::work(int i) {
a61af66fc99e Initial load
duke
parents:
diff changeset
408 GenCollectedHeap* gch = GenCollectedHeap::heap();
a61af66fc99e Initial load
duke
parents:
diff changeset
409 // Since this is being done in a separate thread, need new resource
a61af66fc99e Initial load
duke
parents:
diff changeset
410 // and handle marks.
a61af66fc99e Initial load
duke
parents:
diff changeset
411 ResourceMark rm;
a61af66fc99e Initial load
duke
parents:
diff changeset
412 HandleMark hm;
a61af66fc99e Initial load
duke
parents:
diff changeset
413 // We would need multiple old-gen queues otherwise.
a61af66fc99e Initial load
duke
parents:
diff changeset
414 guarantee(gch->n_gens() == 2,
a61af66fc99e Initial load
duke
parents:
diff changeset
415 "Par young collection currently only works with one older gen.");
a61af66fc99e Initial load
duke
parents:
diff changeset
416
a61af66fc99e Initial load
duke
parents:
diff changeset
417 Generation* old_gen = gch->next_gen(_gen);
a61af66fc99e Initial load
duke
parents:
diff changeset
418
a61af66fc99e Initial load
duke
parents:
diff changeset
419 ParScanThreadState& par_scan_state = _state_set->thread_sate(i);
a61af66fc99e Initial load
duke
parents:
diff changeset
420 par_scan_state.set_young_old_boundary(_young_old_boundary);
a61af66fc99e Initial load
duke
parents:
diff changeset
421
a61af66fc99e Initial load
duke
parents:
diff changeset
422 par_scan_state.start_strong_roots();
a61af66fc99e Initial load
duke
parents:
diff changeset
423 gch->gen_process_strong_roots(_gen->level(),
a61af66fc99e Initial load
duke
parents:
diff changeset
424 true, // Process younger gens, if any,
a61af66fc99e Initial load
duke
parents:
diff changeset
425 // as strong roots.
a61af66fc99e Initial load
duke
parents:
diff changeset
426 false,// not collecting perm generation.
a61af66fc99e Initial load
duke
parents:
diff changeset
427 SharedHeap::SO_AllClasses,
a61af66fc99e Initial load
duke
parents:
diff changeset
428 &par_scan_state.older_gen_closure(),
a61af66fc99e Initial load
duke
parents:
diff changeset
429 &par_scan_state.to_space_root_closure());
a61af66fc99e Initial load
duke
parents:
diff changeset
430 par_scan_state.end_strong_roots();
a61af66fc99e Initial load
duke
parents:
diff changeset
431
a61af66fc99e Initial load
duke
parents:
diff changeset
432 // "evacuate followers".
a61af66fc99e Initial load
duke
parents:
diff changeset
433 par_scan_state.evacuate_followers_closure().do_void();
a61af66fc99e Initial load
duke
parents:
diff changeset
434 }
a61af66fc99e Initial load
duke
parents:
diff changeset
435
a61af66fc99e Initial load
duke
parents:
diff changeset
436 #ifdef _MSC_VER
a61af66fc99e Initial load
duke
parents:
diff changeset
437 #pragma warning( push )
a61af66fc99e Initial load
duke
parents:
diff changeset
438 #pragma warning( disable:4355 ) // 'this' : used in base member initializer list
a61af66fc99e Initial load
duke
parents:
diff changeset
439 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
440 ParNewGeneration::
a61af66fc99e Initial load
duke
parents:
diff changeset
441 ParNewGeneration(ReservedSpace rs, size_t initial_byte_size, int level)
a61af66fc99e Initial load
duke
parents:
diff changeset
442 : DefNewGeneration(rs, initial_byte_size, level, "PCopy"),
a61af66fc99e Initial load
duke
parents:
diff changeset
443 _overflow_list(NULL),
a61af66fc99e Initial load
duke
parents:
diff changeset
444 _is_alive_closure(this),
a61af66fc99e Initial load
duke
parents:
diff changeset
445 _plab_stats(YoungPLABSize, PLABWeight)
a61af66fc99e Initial load
duke
parents:
diff changeset
446 {
a61af66fc99e Initial load
duke
parents:
diff changeset
447 _task_queues = new ObjToScanQueueSet(ParallelGCThreads);
a61af66fc99e Initial load
duke
parents:
diff changeset
448 guarantee(_task_queues != NULL, "task_queues allocation failure.");
a61af66fc99e Initial load
duke
parents:
diff changeset
449
a61af66fc99e Initial load
duke
parents:
diff changeset
450 for (uint i1 = 0; i1 < ParallelGCThreads; i1++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
451 ObjToScanQueuePadded *q_padded = new ObjToScanQueuePadded();
a61af66fc99e Initial load
duke
parents:
diff changeset
452 guarantee(q_padded != NULL, "work_queue Allocation failure.");
a61af66fc99e Initial load
duke
parents:
diff changeset
453
a61af66fc99e Initial load
duke
parents:
diff changeset
454 _task_queues->register_queue(i1, &q_padded->work_queue);
a61af66fc99e Initial load
duke
parents:
diff changeset
455 }
a61af66fc99e Initial load
duke
parents:
diff changeset
456
a61af66fc99e Initial load
duke
parents:
diff changeset
457 for (uint i2 = 0; i2 < ParallelGCThreads; i2++)
a61af66fc99e Initial load
duke
parents:
diff changeset
458 _task_queues->queue(i2)->initialize();
a61af66fc99e Initial load
duke
parents:
diff changeset
459
a61af66fc99e Initial load
duke
parents:
diff changeset
460 if (UsePerfData) {
a61af66fc99e Initial load
duke
parents:
diff changeset
461 EXCEPTION_MARK;
a61af66fc99e Initial load
duke
parents:
diff changeset
462 ResourceMark rm;
a61af66fc99e Initial load
duke
parents:
diff changeset
463
a61af66fc99e Initial load
duke
parents:
diff changeset
464 const char* cname =
a61af66fc99e Initial load
duke
parents:
diff changeset
465 PerfDataManager::counter_name(_gen_counters->name_space(), "threads");
a61af66fc99e Initial load
duke
parents:
diff changeset
466 PerfDataManager::create_constant(SUN_GC, cname, PerfData::U_None,
a61af66fc99e Initial load
duke
parents:
diff changeset
467 ParallelGCThreads, CHECK);
a61af66fc99e Initial load
duke
parents:
diff changeset
468 }
a61af66fc99e Initial load
duke
parents:
diff changeset
469 }
a61af66fc99e Initial load
duke
parents:
diff changeset
470 #ifdef _MSC_VER
a61af66fc99e Initial load
duke
parents:
diff changeset
471 #pragma warning( pop )
a61af66fc99e Initial load
duke
parents:
diff changeset
472 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
473
a61af66fc99e Initial load
duke
parents:
diff changeset
474 // ParNewGeneration::
a61af66fc99e Initial load
duke
parents:
diff changeset
475 ParKeepAliveClosure::ParKeepAliveClosure(ParScanWeakRefClosure* cl) :
a61af66fc99e Initial load
duke
parents:
diff changeset
476 DefNewGeneration::KeepAliveClosure(cl), _par_cl(cl) {}
a61af66fc99e Initial load
duke
parents:
diff changeset
477
a61af66fc99e Initial load
duke
parents:
diff changeset
478 void
a61af66fc99e Initial load
duke
parents:
diff changeset
479 // ParNewGeneration::
a61af66fc99e Initial load
duke
parents:
diff changeset
480 ParKeepAliveClosure::do_oop(oop* p) {
a61af66fc99e Initial load
duke
parents:
diff changeset
481 // We never expect to see a null reference being processed
a61af66fc99e Initial load
duke
parents:
diff changeset
482 // as a weak reference.
a61af66fc99e Initial load
duke
parents:
diff changeset
483 assert (*p != NULL, "expected non-null ref");
a61af66fc99e Initial load
duke
parents:
diff changeset
484 assert ((*p)->is_oop(), "expected an oop while scanning weak refs");
a61af66fc99e Initial load
duke
parents:
diff changeset
485
a61af66fc99e Initial load
duke
parents:
diff changeset
486 _par_cl->do_oop_nv(p);
a61af66fc99e Initial load
duke
parents:
diff changeset
487
a61af66fc99e Initial load
duke
parents:
diff changeset
488 if (Universe::heap()->is_in_reserved(p)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
489 _rs->write_ref_field_gc_par(p, *p);
a61af66fc99e Initial load
duke
parents:
diff changeset
490 }
a61af66fc99e Initial load
duke
parents:
diff changeset
491 }
a61af66fc99e Initial load
duke
parents:
diff changeset
492
a61af66fc99e Initial load
duke
parents:
diff changeset
493 // ParNewGeneration::
a61af66fc99e Initial load
duke
parents:
diff changeset
494 KeepAliveClosure::KeepAliveClosure(ScanWeakRefClosure* cl) :
a61af66fc99e Initial load
duke
parents:
diff changeset
495 DefNewGeneration::KeepAliveClosure(cl) {}
a61af66fc99e Initial load
duke
parents:
diff changeset
496
a61af66fc99e Initial load
duke
parents:
diff changeset
497 void
a61af66fc99e Initial load
duke
parents:
diff changeset
498 // ParNewGeneration::
a61af66fc99e Initial load
duke
parents:
diff changeset
499 KeepAliveClosure::do_oop(oop* p) {
a61af66fc99e Initial load
duke
parents:
diff changeset
500 // We never expect to see a null reference being processed
a61af66fc99e Initial load
duke
parents:
diff changeset
501 // as a weak reference.
a61af66fc99e Initial load
duke
parents:
diff changeset
502 assert (*p != NULL, "expected non-null ref");
a61af66fc99e Initial load
duke
parents:
diff changeset
503 assert ((*p)->is_oop(), "expected an oop while scanning weak refs");
a61af66fc99e Initial load
duke
parents:
diff changeset
504
a61af66fc99e Initial load
duke
parents:
diff changeset
505 _cl->do_oop_nv(p);
a61af66fc99e Initial load
duke
parents:
diff changeset
506
a61af66fc99e Initial load
duke
parents:
diff changeset
507 if (Universe::heap()->is_in_reserved(p)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
508 _rs->write_ref_field_gc_par(p, *p);
a61af66fc99e Initial load
duke
parents:
diff changeset
509 }
a61af66fc99e Initial load
duke
parents:
diff changeset
510 }
a61af66fc99e Initial load
duke
parents:
diff changeset
511
a61af66fc99e Initial load
duke
parents:
diff changeset
512 void ScanClosureWithParBarrier::do_oop(oop* p) {
a61af66fc99e Initial load
duke
parents:
diff changeset
513 oop obj = *p;
a61af66fc99e Initial load
duke
parents:
diff changeset
514 // Should we copy the obj?
a61af66fc99e Initial load
duke
parents:
diff changeset
515 if (obj != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
516 if ((HeapWord*)obj < _boundary) {
a61af66fc99e Initial load
duke
parents:
diff changeset
517 assert(!_g->to()->is_in_reserved(obj), "Scanning field twice?");
a61af66fc99e Initial load
duke
parents:
diff changeset
518 if (obj->is_forwarded()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
519 *p = obj->forwardee();
a61af66fc99e Initial load
duke
parents:
diff changeset
520 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
521 *p = _g->DefNewGeneration::copy_to_survivor_space(obj, p);
a61af66fc99e Initial load
duke
parents:
diff changeset
522 }
a61af66fc99e Initial load
duke
parents:
diff changeset
523 }
a61af66fc99e Initial load
duke
parents:
diff changeset
524 if (_gc_barrier) {
a61af66fc99e Initial load
duke
parents:
diff changeset
525 // If p points to a younger generation, mark the card.
a61af66fc99e Initial load
duke
parents:
diff changeset
526 if ((HeapWord*)obj < _gen_boundary) {
a61af66fc99e Initial load
duke
parents:
diff changeset
527 _rs->write_ref_field_gc_par(p, obj);
a61af66fc99e Initial load
duke
parents:
diff changeset
528 }
a61af66fc99e Initial load
duke
parents:
diff changeset
529 }
a61af66fc99e Initial load
duke
parents:
diff changeset
530 }
a61af66fc99e Initial load
duke
parents:
diff changeset
531 }
a61af66fc99e Initial load
duke
parents:
diff changeset
532
a61af66fc99e Initial load
duke
parents:
diff changeset
533 class ParNewRefProcTaskProxy: public AbstractGangTask {
a61af66fc99e Initial load
duke
parents:
diff changeset
534 typedef AbstractRefProcTaskExecutor::ProcessTask ProcessTask;
a61af66fc99e Initial load
duke
parents:
diff changeset
535 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
536 ParNewRefProcTaskProxy(ProcessTask& task, ParNewGeneration& gen,
a61af66fc99e Initial load
duke
parents:
diff changeset
537 Generation& next_gen,
a61af66fc99e Initial load
duke
parents:
diff changeset
538 HeapWord* young_old_boundary,
a61af66fc99e Initial load
duke
parents:
diff changeset
539 ParScanThreadStateSet& state_set);
a61af66fc99e Initial load
duke
parents:
diff changeset
540
a61af66fc99e Initial load
duke
parents:
diff changeset
541 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
542 virtual void work(int i);
a61af66fc99e Initial load
duke
parents:
diff changeset
543
a61af66fc99e Initial load
duke
parents:
diff changeset
544 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
545 ParNewGeneration& _gen;
a61af66fc99e Initial load
duke
parents:
diff changeset
546 ProcessTask& _task;
a61af66fc99e Initial load
duke
parents:
diff changeset
547 Generation& _next_gen;
a61af66fc99e Initial load
duke
parents:
diff changeset
548 HeapWord* _young_old_boundary;
a61af66fc99e Initial load
duke
parents:
diff changeset
549 ParScanThreadStateSet& _state_set;
a61af66fc99e Initial load
duke
parents:
diff changeset
550 };
a61af66fc99e Initial load
duke
parents:
diff changeset
551
a61af66fc99e Initial load
duke
parents:
diff changeset
552 ParNewRefProcTaskProxy::ParNewRefProcTaskProxy(
a61af66fc99e Initial load
duke
parents:
diff changeset
553 ProcessTask& task, ParNewGeneration& gen,
a61af66fc99e Initial load
duke
parents:
diff changeset
554 Generation& next_gen,
a61af66fc99e Initial load
duke
parents:
diff changeset
555 HeapWord* young_old_boundary,
a61af66fc99e Initial load
duke
parents:
diff changeset
556 ParScanThreadStateSet& state_set)
a61af66fc99e Initial load
duke
parents:
diff changeset
557 : AbstractGangTask("ParNewGeneration parallel reference processing"),
a61af66fc99e Initial load
duke
parents:
diff changeset
558 _gen(gen),
a61af66fc99e Initial load
duke
parents:
diff changeset
559 _task(task),
a61af66fc99e Initial load
duke
parents:
diff changeset
560 _next_gen(next_gen),
a61af66fc99e Initial load
duke
parents:
diff changeset
561 _young_old_boundary(young_old_boundary),
a61af66fc99e Initial load
duke
parents:
diff changeset
562 _state_set(state_set)
a61af66fc99e Initial load
duke
parents:
diff changeset
563 {
a61af66fc99e Initial load
duke
parents:
diff changeset
564 }
a61af66fc99e Initial load
duke
parents:
diff changeset
565
a61af66fc99e Initial load
duke
parents:
diff changeset
566 void ParNewRefProcTaskProxy::work(int i)
a61af66fc99e Initial load
duke
parents:
diff changeset
567 {
a61af66fc99e Initial load
duke
parents:
diff changeset
568 ResourceMark rm;
a61af66fc99e Initial load
duke
parents:
diff changeset
569 HandleMark hm;
a61af66fc99e Initial load
duke
parents:
diff changeset
570 ParScanThreadState& par_scan_state = _state_set.thread_sate(i);
a61af66fc99e Initial load
duke
parents:
diff changeset
571 par_scan_state.set_young_old_boundary(_young_old_boundary);
a61af66fc99e Initial load
duke
parents:
diff changeset
572 _task.work(i, par_scan_state.is_alive_closure(),
a61af66fc99e Initial load
duke
parents:
diff changeset
573 par_scan_state.keep_alive_closure(),
a61af66fc99e Initial load
duke
parents:
diff changeset
574 par_scan_state.evacuate_followers_closure());
a61af66fc99e Initial load
duke
parents:
diff changeset
575 }
a61af66fc99e Initial load
duke
parents:
diff changeset
576
a61af66fc99e Initial load
duke
parents:
diff changeset
577 class ParNewRefEnqueueTaskProxy: public AbstractGangTask {
a61af66fc99e Initial load
duke
parents:
diff changeset
578 typedef AbstractRefProcTaskExecutor::EnqueueTask EnqueueTask;
a61af66fc99e Initial load
duke
parents:
diff changeset
579 EnqueueTask& _task;
a61af66fc99e Initial load
duke
parents:
diff changeset
580
a61af66fc99e Initial load
duke
parents:
diff changeset
581 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
582 ParNewRefEnqueueTaskProxy(EnqueueTask& task)
a61af66fc99e Initial load
duke
parents:
diff changeset
583 : AbstractGangTask("ParNewGeneration parallel reference enqueue"),
a61af66fc99e Initial load
duke
parents:
diff changeset
584 _task(task)
a61af66fc99e Initial load
duke
parents:
diff changeset
585 { }
a61af66fc99e Initial load
duke
parents:
diff changeset
586
a61af66fc99e Initial load
duke
parents:
diff changeset
587 virtual void work(int i)
a61af66fc99e Initial load
duke
parents:
diff changeset
588 {
a61af66fc99e Initial load
duke
parents:
diff changeset
589 _task.work(i);
a61af66fc99e Initial load
duke
parents:
diff changeset
590 }
a61af66fc99e Initial load
duke
parents:
diff changeset
591 };
a61af66fc99e Initial load
duke
parents:
diff changeset
592
a61af66fc99e Initial load
duke
parents:
diff changeset
593
a61af66fc99e Initial load
duke
parents:
diff changeset
594 void ParNewRefProcTaskExecutor::execute(ProcessTask& task)
a61af66fc99e Initial load
duke
parents:
diff changeset
595 {
a61af66fc99e Initial load
duke
parents:
diff changeset
596 GenCollectedHeap* gch = GenCollectedHeap::heap();
a61af66fc99e Initial load
duke
parents:
diff changeset
597 assert(gch->kind() == CollectedHeap::GenCollectedHeap,
a61af66fc99e Initial load
duke
parents:
diff changeset
598 "not a generational heap");
a61af66fc99e Initial load
duke
parents:
diff changeset
599 WorkGang* workers = gch->workers();
a61af66fc99e Initial load
duke
parents:
diff changeset
600 assert(workers != NULL, "Need parallel worker threads.");
a61af66fc99e Initial load
duke
parents:
diff changeset
601 ParNewRefProcTaskProxy rp_task(task, _generation, *_generation.next_gen(),
a61af66fc99e Initial load
duke
parents:
diff changeset
602 _generation.reserved().end(), _state_set);
a61af66fc99e Initial load
duke
parents:
diff changeset
603 workers->run_task(&rp_task);
a61af66fc99e Initial load
duke
parents:
diff changeset
604 _state_set.reset();
a61af66fc99e Initial load
duke
parents:
diff changeset
605 }
a61af66fc99e Initial load
duke
parents:
diff changeset
606
a61af66fc99e Initial load
duke
parents:
diff changeset
607 void ParNewRefProcTaskExecutor::execute(EnqueueTask& task)
a61af66fc99e Initial load
duke
parents:
diff changeset
608 {
a61af66fc99e Initial load
duke
parents:
diff changeset
609 GenCollectedHeap* gch = GenCollectedHeap::heap();
a61af66fc99e Initial load
duke
parents:
diff changeset
610 WorkGang* workers = gch->workers();
a61af66fc99e Initial load
duke
parents:
diff changeset
611 assert(workers != NULL, "Need parallel worker threads.");
a61af66fc99e Initial load
duke
parents:
diff changeset
612 ParNewRefEnqueueTaskProxy enq_task(task);
a61af66fc99e Initial load
duke
parents:
diff changeset
613 workers->run_task(&enq_task);
a61af66fc99e Initial load
duke
parents:
diff changeset
614 }
a61af66fc99e Initial load
duke
parents:
diff changeset
615
a61af66fc99e Initial load
duke
parents:
diff changeset
616 void ParNewRefProcTaskExecutor::set_single_threaded_mode()
a61af66fc99e Initial load
duke
parents:
diff changeset
617 {
a61af66fc99e Initial load
duke
parents:
diff changeset
618 _state_set.flush();
a61af66fc99e Initial load
duke
parents:
diff changeset
619 GenCollectedHeap* gch = GenCollectedHeap::heap();
a61af66fc99e Initial load
duke
parents:
diff changeset
620 gch->set_par_threads(0); // 0 ==> non-parallel.
a61af66fc99e Initial load
duke
parents:
diff changeset
621 gch->save_marks();
a61af66fc99e Initial load
duke
parents:
diff changeset
622 }
a61af66fc99e Initial load
duke
parents:
diff changeset
623
a61af66fc99e Initial load
duke
parents:
diff changeset
624 ScanClosureWithParBarrier::
a61af66fc99e Initial load
duke
parents:
diff changeset
625 ScanClosureWithParBarrier(ParNewGeneration* g, bool gc_barrier) :
a61af66fc99e Initial load
duke
parents:
diff changeset
626 ScanClosure(g, gc_barrier) {}
a61af66fc99e Initial load
duke
parents:
diff changeset
627
a61af66fc99e Initial load
duke
parents:
diff changeset
628 EvacuateFollowersClosureGeneral::
a61af66fc99e Initial load
duke
parents:
diff changeset
629 EvacuateFollowersClosureGeneral(GenCollectedHeap* gch, int level,
a61af66fc99e Initial load
duke
parents:
diff changeset
630 OopsInGenClosure* cur,
a61af66fc99e Initial load
duke
parents:
diff changeset
631 OopsInGenClosure* older) :
a61af66fc99e Initial load
duke
parents:
diff changeset
632 _gch(gch), _level(level),
a61af66fc99e Initial load
duke
parents:
diff changeset
633 _scan_cur_or_nonheap(cur), _scan_older(older)
a61af66fc99e Initial load
duke
parents:
diff changeset
634 {}
a61af66fc99e Initial load
duke
parents:
diff changeset
635
a61af66fc99e Initial load
duke
parents:
diff changeset
636 void EvacuateFollowersClosureGeneral::do_void() {
a61af66fc99e Initial load
duke
parents:
diff changeset
637 do {
a61af66fc99e Initial load
duke
parents:
diff changeset
638 // Beware: this call will lead to closure applications via virtual
a61af66fc99e Initial load
duke
parents:
diff changeset
639 // calls.
a61af66fc99e Initial load
duke
parents:
diff changeset
640 _gch->oop_since_save_marks_iterate(_level,
a61af66fc99e Initial load
duke
parents:
diff changeset
641 _scan_cur_or_nonheap,
a61af66fc99e Initial load
duke
parents:
diff changeset
642 _scan_older);
a61af66fc99e Initial load
duke
parents:
diff changeset
643 } while (!_gch->no_allocs_since_save_marks(_level));
a61af66fc99e Initial load
duke
parents:
diff changeset
644 }
a61af66fc99e Initial load
duke
parents:
diff changeset
645
a61af66fc99e Initial load
duke
parents:
diff changeset
646
a61af66fc99e Initial load
duke
parents:
diff changeset
647 bool ParNewGeneration::_avoid_promotion_undo = false;
a61af66fc99e Initial load
duke
parents:
diff changeset
648
a61af66fc99e Initial load
duke
parents:
diff changeset
649 void ParNewGeneration::adjust_desired_tenuring_threshold() {
a61af66fc99e Initial load
duke
parents:
diff changeset
650 // Set the desired survivor size to half the real survivor space
a61af66fc99e Initial load
duke
parents:
diff changeset
651 _tenuring_threshold =
a61af66fc99e Initial load
duke
parents:
diff changeset
652 age_table()->compute_tenuring_threshold(to()->capacity()/HeapWordSize);
a61af66fc99e Initial load
duke
parents:
diff changeset
653 }
a61af66fc99e Initial load
duke
parents:
diff changeset
654
a61af66fc99e Initial load
duke
parents:
diff changeset
655 // A Generation that does parallel young-gen collection.
a61af66fc99e Initial load
duke
parents:
diff changeset
656
a61af66fc99e Initial load
duke
parents:
diff changeset
657 void ParNewGeneration::collect(bool full,
a61af66fc99e Initial load
duke
parents:
diff changeset
658 bool clear_all_soft_refs,
a61af66fc99e Initial load
duke
parents:
diff changeset
659 size_t size,
a61af66fc99e Initial load
duke
parents:
diff changeset
660 bool is_tlab) {
a61af66fc99e Initial load
duke
parents:
diff changeset
661 assert(full || size > 0, "otherwise we don't want to collect");
a61af66fc99e Initial load
duke
parents:
diff changeset
662 GenCollectedHeap* gch = GenCollectedHeap::heap();
a61af66fc99e Initial load
duke
parents:
diff changeset
663 assert(gch->kind() == CollectedHeap::GenCollectedHeap,
a61af66fc99e Initial load
duke
parents:
diff changeset
664 "not a CMS generational heap");
a61af66fc99e Initial load
duke
parents:
diff changeset
665 AdaptiveSizePolicy* size_policy = gch->gen_policy()->size_policy();
a61af66fc99e Initial load
duke
parents:
diff changeset
666 WorkGang* workers = gch->workers();
a61af66fc99e Initial load
duke
parents:
diff changeset
667 _next_gen = gch->next_gen(this);
a61af66fc99e Initial load
duke
parents:
diff changeset
668 assert(_next_gen != NULL,
a61af66fc99e Initial load
duke
parents:
diff changeset
669 "This must be the youngest gen, and not the only gen");
a61af66fc99e Initial load
duke
parents:
diff changeset
670 assert(gch->n_gens() == 2,
a61af66fc99e Initial load
duke
parents:
diff changeset
671 "Par collection currently only works with single older gen.");
a61af66fc99e Initial load
duke
parents:
diff changeset
672 // Do we have to avoid promotion_undo?
a61af66fc99e Initial load
duke
parents:
diff changeset
673 if (gch->collector_policy()->is_concurrent_mark_sweep_policy()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
674 set_avoid_promotion_undo(true);
a61af66fc99e Initial load
duke
parents:
diff changeset
675 }
a61af66fc99e Initial load
duke
parents:
diff changeset
676
a61af66fc99e Initial load
duke
parents:
diff changeset
677 // If the next generation is too full to accomodate worst-case promotion
a61af66fc99e Initial load
duke
parents:
diff changeset
678 // from this generation, pass on collection; let the next generation
a61af66fc99e Initial load
duke
parents:
diff changeset
679 // do it.
a61af66fc99e Initial load
duke
parents:
diff changeset
680 if (!collection_attempt_is_safe()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
681 gch->set_incremental_collection_will_fail();
a61af66fc99e Initial load
duke
parents:
diff changeset
682 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
683 }
a61af66fc99e Initial load
duke
parents:
diff changeset
684 assert(to()->is_empty(), "Else not collection_attempt_is_safe");
a61af66fc99e Initial load
duke
parents:
diff changeset
685
a61af66fc99e Initial load
duke
parents:
diff changeset
686 init_assuming_no_promotion_failure();
a61af66fc99e Initial load
duke
parents:
diff changeset
687
a61af66fc99e Initial load
duke
parents:
diff changeset
688 if (UseAdaptiveSizePolicy) {
a61af66fc99e Initial load
duke
parents:
diff changeset
689 set_survivor_overflow(false);
a61af66fc99e Initial load
duke
parents:
diff changeset
690 size_policy->minor_collection_begin();
a61af66fc99e Initial load
duke
parents:
diff changeset
691 }
a61af66fc99e Initial load
duke
parents:
diff changeset
692
a61af66fc99e Initial load
duke
parents:
diff changeset
693 TraceTime t1("GC", PrintGC && !PrintGCDetails, true, gclog_or_tty);
a61af66fc99e Initial load
duke
parents:
diff changeset
694 // Capture heap used before collection (for printing).
a61af66fc99e Initial load
duke
parents:
diff changeset
695 size_t gch_prev_used = gch->used();
a61af66fc99e Initial load
duke
parents:
diff changeset
696
a61af66fc99e Initial load
duke
parents:
diff changeset
697 SpecializationStats::clear();
a61af66fc99e Initial load
duke
parents:
diff changeset
698
a61af66fc99e Initial load
duke
parents:
diff changeset
699 age_table()->clear();
a61af66fc99e Initial load
duke
parents:
diff changeset
700 to()->clear();
a61af66fc99e Initial load
duke
parents:
diff changeset
701
a61af66fc99e Initial load
duke
parents:
diff changeset
702 gch->save_marks();
a61af66fc99e Initial load
duke
parents:
diff changeset
703 assert(workers != NULL, "Need parallel worker threads.");
a61af66fc99e Initial load
duke
parents:
diff changeset
704 ParallelTaskTerminator _term(workers->total_workers(), task_queues());
a61af66fc99e Initial load
duke
parents:
diff changeset
705 ParScanThreadStateSet thread_state_set(workers->total_workers(),
a61af66fc99e Initial load
duke
parents:
diff changeset
706 *to(), *this, *_next_gen, *task_queues(),
a61af66fc99e Initial load
duke
parents:
diff changeset
707 desired_plab_sz(), _term);
a61af66fc99e Initial load
duke
parents:
diff changeset
708
a61af66fc99e Initial load
duke
parents:
diff changeset
709 ParNewGenTask tsk(this, _next_gen, reserved().end(), &thread_state_set);
a61af66fc99e Initial load
duke
parents:
diff changeset
710 int n_workers = workers->total_workers();
a61af66fc99e Initial load
duke
parents:
diff changeset
711 gch->set_par_threads(n_workers);
a61af66fc99e Initial load
duke
parents:
diff changeset
712 gch->change_strong_roots_parity();
a61af66fc99e Initial load
duke
parents:
diff changeset
713 gch->rem_set()->prepare_for_younger_refs_iterate(true);
a61af66fc99e Initial load
duke
parents:
diff changeset
714 // It turns out that even when we're using 1 thread, doing the work in a
a61af66fc99e Initial load
duke
parents:
diff changeset
715 // separate thread causes wide variance in run times. We can't help this
a61af66fc99e Initial load
duke
parents:
diff changeset
716 // in the multi-threaded case, but we special-case n=1 here to get
a61af66fc99e Initial load
duke
parents:
diff changeset
717 // repeatable measurements of the 1-thread overhead of the parallel code.
a61af66fc99e Initial load
duke
parents:
diff changeset
718 if (n_workers > 1) {
a61af66fc99e Initial load
duke
parents:
diff changeset
719 workers->run_task(&tsk);
a61af66fc99e Initial load
duke
parents:
diff changeset
720 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
721 tsk.work(0);
a61af66fc99e Initial load
duke
parents:
diff changeset
722 }
a61af66fc99e Initial load
duke
parents:
diff changeset
723 thread_state_set.reset();
a61af66fc99e Initial load
duke
parents:
diff changeset
724
a61af66fc99e Initial load
duke
parents:
diff changeset
725 if (PAR_STATS_ENABLED && ParallelGCVerbose) {
a61af66fc99e Initial load
duke
parents:
diff changeset
726 gclog_or_tty->print("Thread totals:\n"
a61af66fc99e Initial load
duke
parents:
diff changeset
727 " Pushes: %7d Pops: %7d Steals %7d (sum = %7d).\n",
a61af66fc99e Initial load
duke
parents:
diff changeset
728 thread_state_set.pushes(), thread_state_set.pops(),
a61af66fc99e Initial load
duke
parents:
diff changeset
729 thread_state_set.steals(),
a61af66fc99e Initial load
duke
parents:
diff changeset
730 thread_state_set.pops()+thread_state_set.steals());
a61af66fc99e Initial load
duke
parents:
diff changeset
731 }
a61af66fc99e Initial load
duke
parents:
diff changeset
732 assert(thread_state_set.pushes() == thread_state_set.pops() + thread_state_set.steals(),
a61af66fc99e Initial load
duke
parents:
diff changeset
733 "Or else the queues are leaky.");
a61af66fc99e Initial load
duke
parents:
diff changeset
734
a61af66fc99e Initial load
duke
parents:
diff changeset
735 // For now, process discovered weak refs sequentially.
a61af66fc99e Initial load
duke
parents:
diff changeset
736 #ifdef COMPILER2
a61af66fc99e Initial load
duke
parents:
diff changeset
737 ReferencePolicy *soft_ref_policy = new LRUMaxHeapPolicy();
a61af66fc99e Initial load
duke
parents:
diff changeset
738 #else
a61af66fc99e Initial load
duke
parents:
diff changeset
739 ReferencePolicy *soft_ref_policy = new LRUCurrentHeapPolicy();
a61af66fc99e Initial load
duke
parents:
diff changeset
740 #endif // COMPILER2
a61af66fc99e Initial load
duke
parents:
diff changeset
741
a61af66fc99e Initial load
duke
parents:
diff changeset
742 // Process (weak) reference objects found during scavenge.
a61af66fc99e Initial load
duke
parents:
diff changeset
743 IsAliveClosure is_alive(this);
a61af66fc99e Initial load
duke
parents:
diff changeset
744 ScanWeakRefClosure scan_weak_ref(this);
a61af66fc99e Initial load
duke
parents:
diff changeset
745 KeepAliveClosure keep_alive(&scan_weak_ref);
a61af66fc99e Initial load
duke
parents:
diff changeset
746 ScanClosure scan_without_gc_barrier(this, false);
a61af66fc99e Initial load
duke
parents:
diff changeset
747 ScanClosureWithParBarrier scan_with_gc_barrier(this, true);
a61af66fc99e Initial load
duke
parents:
diff changeset
748 set_promo_failure_scan_stack_closure(&scan_without_gc_barrier);
a61af66fc99e Initial load
duke
parents:
diff changeset
749 EvacuateFollowersClosureGeneral evacuate_followers(gch, _level,
a61af66fc99e Initial load
duke
parents:
diff changeset
750 &scan_without_gc_barrier, &scan_with_gc_barrier);
a61af66fc99e Initial load
duke
parents:
diff changeset
751 if (ref_processor()->processing_is_mt()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
752 ParNewRefProcTaskExecutor task_executor(*this, thread_state_set);
a61af66fc99e Initial load
duke
parents:
diff changeset
753 ref_processor()->process_discovered_references(
a61af66fc99e Initial load
duke
parents:
diff changeset
754 soft_ref_policy, &is_alive, &keep_alive, &evacuate_followers,
a61af66fc99e Initial load
duke
parents:
diff changeset
755 &task_executor);
a61af66fc99e Initial load
duke
parents:
diff changeset
756 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
757 thread_state_set.flush();
a61af66fc99e Initial load
duke
parents:
diff changeset
758 gch->set_par_threads(0); // 0 ==> non-parallel.
a61af66fc99e Initial load
duke
parents:
diff changeset
759 gch->save_marks();
a61af66fc99e Initial load
duke
parents:
diff changeset
760 ref_processor()->process_discovered_references(
a61af66fc99e Initial load
duke
parents:
diff changeset
761 soft_ref_policy, &is_alive, &keep_alive, &evacuate_followers,
a61af66fc99e Initial load
duke
parents:
diff changeset
762 NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
763 }
a61af66fc99e Initial load
duke
parents:
diff changeset
764 if (!promotion_failed()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
765 // Swap the survivor spaces.
a61af66fc99e Initial load
duke
parents:
diff changeset
766 eden()->clear();
a61af66fc99e Initial load
duke
parents:
diff changeset
767 from()->clear();
a61af66fc99e Initial load
duke
parents:
diff changeset
768 swap_spaces();
a61af66fc99e Initial load
duke
parents:
diff changeset
769
a61af66fc99e Initial load
duke
parents:
diff changeset
770 assert(to()->is_empty(), "to space should be empty now");
a61af66fc99e Initial load
duke
parents:
diff changeset
771 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
772 assert(HandlePromotionFailure,
a61af66fc99e Initial load
duke
parents:
diff changeset
773 "Should only be here if promotion failure handling is on");
a61af66fc99e Initial load
duke
parents:
diff changeset
774 if (_promo_failure_scan_stack != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
775 // Can be non-null because of reference processing.
a61af66fc99e Initial load
duke
parents:
diff changeset
776 // Free stack with its elements.
a61af66fc99e Initial load
duke
parents:
diff changeset
777 delete _promo_failure_scan_stack;
a61af66fc99e Initial load
duke
parents:
diff changeset
778 _promo_failure_scan_stack = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
779 }
a61af66fc99e Initial load
duke
parents:
diff changeset
780 remove_forwarding_pointers();
a61af66fc99e Initial load
duke
parents:
diff changeset
781 if (PrintGCDetails) {
a61af66fc99e Initial load
duke
parents:
diff changeset
782 gclog_or_tty->print(" (promotion failed)");
a61af66fc99e Initial load
duke
parents:
diff changeset
783 }
a61af66fc99e Initial load
duke
parents:
diff changeset
784 // All the spaces are in play for mark-sweep.
a61af66fc99e Initial load
duke
parents:
diff changeset
785 swap_spaces(); // Make life simpler for CMS || rescan; see 6483690.
a61af66fc99e Initial load
duke
parents:
diff changeset
786 from()->set_next_compaction_space(to());
a61af66fc99e Initial load
duke
parents:
diff changeset
787 gch->set_incremental_collection_will_fail();
6
73e96e5c30df 6624765: Guarantee failure "Unexpected dirty card found"
jmasa
parents: 0
diff changeset
788
73e96e5c30df 6624765: Guarantee failure "Unexpected dirty card found"
jmasa
parents: 0
diff changeset
789 // Reset the PromotionFailureALot counters.
73e96e5c30df 6624765: Guarantee failure "Unexpected dirty card found"
jmasa
parents: 0
diff changeset
790 NOT_PRODUCT(Universe::heap()->reset_promotion_should_fail();)
0
a61af66fc99e Initial load
duke
parents:
diff changeset
791 }
a61af66fc99e Initial load
duke
parents:
diff changeset
792 // set new iteration safe limit for the survivor spaces
a61af66fc99e Initial load
duke
parents:
diff changeset
793 from()->set_concurrent_iteration_safe_limit(from()->top());
a61af66fc99e Initial load
duke
parents:
diff changeset
794 to()->set_concurrent_iteration_safe_limit(to()->top());
a61af66fc99e Initial load
duke
parents:
diff changeset
795
a61af66fc99e Initial load
duke
parents:
diff changeset
796 adjust_desired_tenuring_threshold();
a61af66fc99e Initial load
duke
parents:
diff changeset
797 if (ResizePLAB) {
a61af66fc99e Initial load
duke
parents:
diff changeset
798 plab_stats()->adjust_desired_plab_sz();
a61af66fc99e Initial load
duke
parents:
diff changeset
799 }
a61af66fc99e Initial load
duke
parents:
diff changeset
800
a61af66fc99e Initial load
duke
parents:
diff changeset
801 if (PrintGC && !PrintGCDetails) {
a61af66fc99e Initial load
duke
parents:
diff changeset
802 gch->print_heap_change(gch_prev_used);
a61af66fc99e Initial load
duke
parents:
diff changeset
803 }
a61af66fc99e Initial load
duke
parents:
diff changeset
804
a61af66fc99e Initial load
duke
parents:
diff changeset
805 if (UseAdaptiveSizePolicy) {
a61af66fc99e Initial load
duke
parents:
diff changeset
806 size_policy->minor_collection_end(gch->gc_cause());
a61af66fc99e Initial load
duke
parents:
diff changeset
807 size_policy->avg_survived()->sample(from()->used());
a61af66fc99e Initial load
duke
parents:
diff changeset
808 }
a61af66fc99e Initial load
duke
parents:
diff changeset
809
a61af66fc99e Initial load
duke
parents:
diff changeset
810 update_time_of_last_gc(os::javaTimeMillis());
a61af66fc99e Initial load
duke
parents:
diff changeset
811
a61af66fc99e Initial load
duke
parents:
diff changeset
812 SpecializationStats::print();
a61af66fc99e Initial load
duke
parents:
diff changeset
813
a61af66fc99e Initial load
duke
parents:
diff changeset
814 ref_processor()->set_enqueuing_is_done(true);
a61af66fc99e Initial load
duke
parents:
diff changeset
815 if (ref_processor()->processing_is_mt()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
816 ParNewRefProcTaskExecutor task_executor(*this, thread_state_set);
a61af66fc99e Initial load
duke
parents:
diff changeset
817 ref_processor()->enqueue_discovered_references(&task_executor);
a61af66fc99e Initial load
duke
parents:
diff changeset
818 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
819 ref_processor()->enqueue_discovered_references(NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
820 }
a61af66fc99e Initial load
duke
parents:
diff changeset
821 ref_processor()->verify_no_references_recorded();
a61af66fc99e Initial load
duke
parents:
diff changeset
822 }
a61af66fc99e Initial load
duke
parents:
diff changeset
823
a61af66fc99e Initial load
duke
parents:
diff changeset
824 static int sum;
a61af66fc99e Initial load
duke
parents:
diff changeset
825 void ParNewGeneration::waste_some_time() {
a61af66fc99e Initial load
duke
parents:
diff changeset
826 for (int i = 0; i < 100; i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
827 sum += i;
a61af66fc99e Initial load
duke
parents:
diff changeset
828 }
a61af66fc99e Initial load
duke
parents:
diff changeset
829 }
a61af66fc99e Initial load
duke
parents:
diff changeset
830
a61af66fc99e Initial load
duke
parents:
diff changeset
831 static const oop ClaimedForwardPtr = oop(0x4);
a61af66fc99e Initial load
duke
parents:
diff changeset
832
a61af66fc99e Initial load
duke
parents:
diff changeset
833 // Because of concurrency, there are times where an object for which
a61af66fc99e Initial load
duke
parents:
diff changeset
834 // "is_forwarded()" is true contains an "interim" forwarding pointer
a61af66fc99e Initial load
duke
parents:
diff changeset
835 // value. Such a value will soon be overwritten with a real value.
a61af66fc99e Initial load
duke
parents:
diff changeset
836 // This method requires "obj" to have a forwarding pointer, and waits, if
a61af66fc99e Initial load
duke
parents:
diff changeset
837 // necessary for a real one to be inserted, and returns it.
a61af66fc99e Initial load
duke
parents:
diff changeset
838
a61af66fc99e Initial load
duke
parents:
diff changeset
839 oop ParNewGeneration::real_forwardee(oop obj) {
a61af66fc99e Initial load
duke
parents:
diff changeset
840 oop forward_ptr = obj->forwardee();
a61af66fc99e Initial load
duke
parents:
diff changeset
841 if (forward_ptr != ClaimedForwardPtr) {
a61af66fc99e Initial load
duke
parents:
diff changeset
842 return forward_ptr;
a61af66fc99e Initial load
duke
parents:
diff changeset
843 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
844 return real_forwardee_slow(obj);
a61af66fc99e Initial load
duke
parents:
diff changeset
845 }
a61af66fc99e Initial load
duke
parents:
diff changeset
846 }
a61af66fc99e Initial load
duke
parents:
diff changeset
847
a61af66fc99e Initial load
duke
parents:
diff changeset
848 oop ParNewGeneration::real_forwardee_slow(oop obj) {
a61af66fc99e Initial load
duke
parents:
diff changeset
849 // Spin-read if it is claimed but not yet written by another thread.
a61af66fc99e Initial load
duke
parents:
diff changeset
850 oop forward_ptr = obj->forwardee();
a61af66fc99e Initial load
duke
parents:
diff changeset
851 while (forward_ptr == ClaimedForwardPtr) {
a61af66fc99e Initial load
duke
parents:
diff changeset
852 waste_some_time();
a61af66fc99e Initial load
duke
parents:
diff changeset
853 assert(obj->is_forwarded(), "precondition");
a61af66fc99e Initial load
duke
parents:
diff changeset
854 forward_ptr = obj->forwardee();
a61af66fc99e Initial load
duke
parents:
diff changeset
855 }
a61af66fc99e Initial load
duke
parents:
diff changeset
856 return forward_ptr;
a61af66fc99e Initial load
duke
parents:
diff changeset
857 }
a61af66fc99e Initial load
duke
parents:
diff changeset
858
a61af66fc99e Initial load
duke
parents:
diff changeset
859 #ifdef ASSERT
a61af66fc99e Initial load
duke
parents:
diff changeset
860 bool ParNewGeneration::is_legal_forward_ptr(oop p) {
a61af66fc99e Initial load
duke
parents:
diff changeset
861 return
a61af66fc99e Initial load
duke
parents:
diff changeset
862 (_avoid_promotion_undo && p == ClaimedForwardPtr)
a61af66fc99e Initial load
duke
parents:
diff changeset
863 || Universe::heap()->is_in_reserved(p);
a61af66fc99e Initial load
duke
parents:
diff changeset
864 }
a61af66fc99e Initial load
duke
parents:
diff changeset
865 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
866
a61af66fc99e Initial load
duke
parents:
diff changeset
867 void ParNewGeneration::preserve_mark_if_necessary(oop obj, markOop m) {
a61af66fc99e Initial load
duke
parents:
diff changeset
868 if ((m != markOopDesc::prototype()) &&
a61af66fc99e Initial load
duke
parents:
diff changeset
869 (!UseBiasedLocking || (m != markOopDesc::biased_locking_prototype()))) {
a61af66fc99e Initial load
duke
parents:
diff changeset
870 MutexLocker ml(ParGCRareEvent_lock);
a61af66fc99e Initial load
duke
parents:
diff changeset
871 DefNewGeneration::preserve_mark_if_necessary(obj, m);
a61af66fc99e Initial load
duke
parents:
diff changeset
872 }
a61af66fc99e Initial load
duke
parents:
diff changeset
873 }
a61af66fc99e Initial load
duke
parents:
diff changeset
874
a61af66fc99e Initial load
duke
parents:
diff changeset
875 // Multiple GC threads may try to promote an object. If the object
a61af66fc99e Initial load
duke
parents:
diff changeset
876 // is successfully promoted, a forwarding pointer will be installed in
a61af66fc99e Initial load
duke
parents:
diff changeset
877 // the object in the young generation. This method claims the right
a61af66fc99e Initial load
duke
parents:
diff changeset
878 // to install the forwarding pointer before it copies the object,
a61af66fc99e Initial load
duke
parents:
diff changeset
879 // thus avoiding the need to undo the copy as in
a61af66fc99e Initial load
duke
parents:
diff changeset
880 // copy_to_survivor_space_avoiding_with_undo.
a61af66fc99e Initial load
duke
parents:
diff changeset
881
a61af66fc99e Initial load
duke
parents:
diff changeset
882 oop ParNewGeneration::copy_to_survivor_space_avoiding_promotion_undo(
a61af66fc99e Initial load
duke
parents:
diff changeset
883 ParScanThreadState* par_scan_state, oop old, size_t sz, markOop m) {
a61af66fc99e Initial load
duke
parents:
diff changeset
884 // In the sequential version, this assert also says that the object is
a61af66fc99e Initial load
duke
parents:
diff changeset
885 // not forwarded. That might not be the case here. It is the case that
a61af66fc99e Initial load
duke
parents:
diff changeset
886 // the caller observed it to be not forwarded at some time in the past.
a61af66fc99e Initial load
duke
parents:
diff changeset
887 assert(is_in_reserved(old), "shouldn't be scavenging this oop");
a61af66fc99e Initial load
duke
parents:
diff changeset
888
a61af66fc99e Initial load
duke
parents:
diff changeset
889 // The sequential code read "old->age()" below. That doesn't work here,
a61af66fc99e Initial load
duke
parents:
diff changeset
890 // since the age is in the mark word, and that might be overwritten with
a61af66fc99e Initial load
duke
parents:
diff changeset
891 // a forwarding pointer by a parallel thread. So we must save the mark
a61af66fc99e Initial load
duke
parents:
diff changeset
892 // word in a local and then analyze it.
a61af66fc99e Initial load
duke
parents:
diff changeset
893 oopDesc dummyOld;
a61af66fc99e Initial load
duke
parents:
diff changeset
894 dummyOld.set_mark(m);
a61af66fc99e Initial load
duke
parents:
diff changeset
895 assert(!dummyOld.is_forwarded(),
a61af66fc99e Initial load
duke
parents:
diff changeset
896 "should not be called with forwarding pointer mark word.");
a61af66fc99e Initial load
duke
parents:
diff changeset
897
a61af66fc99e Initial load
duke
parents:
diff changeset
898 oop new_obj = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
899 oop forward_ptr;
a61af66fc99e Initial load
duke
parents:
diff changeset
900
a61af66fc99e Initial load
duke
parents:
diff changeset
901 // Try allocating obj in to-space (unless too old)
a61af66fc99e Initial load
duke
parents:
diff changeset
902 if (dummyOld.age() < tenuring_threshold()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
903 new_obj = (oop)par_scan_state->alloc_in_to_space(sz);
a61af66fc99e Initial load
duke
parents:
diff changeset
904 if (new_obj == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
905 set_survivor_overflow(true);
a61af66fc99e Initial load
duke
parents:
diff changeset
906 }
a61af66fc99e Initial load
duke
parents:
diff changeset
907 }
a61af66fc99e Initial load
duke
parents:
diff changeset
908
a61af66fc99e Initial load
duke
parents:
diff changeset
909 if (new_obj == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
910 // Either to-space is full or we decided to promote
a61af66fc99e Initial load
duke
parents:
diff changeset
911 // try allocating obj tenured
a61af66fc99e Initial load
duke
parents:
diff changeset
912
a61af66fc99e Initial load
duke
parents:
diff changeset
913 // Attempt to install a null forwarding pointer (atomically),
a61af66fc99e Initial load
duke
parents:
diff changeset
914 // to claim the right to install the real forwarding pointer.
a61af66fc99e Initial load
duke
parents:
diff changeset
915 forward_ptr = old->forward_to_atomic(ClaimedForwardPtr);
a61af66fc99e Initial load
duke
parents:
diff changeset
916 if (forward_ptr != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
917 // someone else beat us to it.
a61af66fc99e Initial load
duke
parents:
diff changeset
918 return real_forwardee(old);
a61af66fc99e Initial load
duke
parents:
diff changeset
919 }
a61af66fc99e Initial load
duke
parents:
diff changeset
920
a61af66fc99e Initial load
duke
parents:
diff changeset
921 new_obj = _next_gen->par_promote(par_scan_state->thread_num(),
a61af66fc99e Initial load
duke
parents:
diff changeset
922 old, m, sz);
a61af66fc99e Initial load
duke
parents:
diff changeset
923
a61af66fc99e Initial load
duke
parents:
diff changeset
924 if (new_obj == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
925 if (!HandlePromotionFailure) {
a61af66fc99e Initial load
duke
parents:
diff changeset
926 // A failed promotion likely means the MaxLiveObjectEvacuationRatio flag
a61af66fc99e Initial load
duke
parents:
diff changeset
927 // is incorrectly set. In any case, its seriously wrong to be here!
a61af66fc99e Initial load
duke
parents:
diff changeset
928 vm_exit_out_of_memory(sz*wordSize, "promotion");
a61af66fc99e Initial load
duke
parents:
diff changeset
929 }
a61af66fc99e Initial load
duke
parents:
diff changeset
930 // promotion failed, forward to self
a61af66fc99e Initial load
duke
parents:
diff changeset
931 _promotion_failed = true;
a61af66fc99e Initial load
duke
parents:
diff changeset
932 new_obj = old;
a61af66fc99e Initial load
duke
parents:
diff changeset
933
a61af66fc99e Initial load
duke
parents:
diff changeset
934 preserve_mark_if_necessary(old, m);
a61af66fc99e Initial load
duke
parents:
diff changeset
935 }
a61af66fc99e Initial load
duke
parents:
diff changeset
936
a61af66fc99e Initial load
duke
parents:
diff changeset
937 old->forward_to(new_obj);
a61af66fc99e Initial load
duke
parents:
diff changeset
938 forward_ptr = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
939 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
940 // Is in to-space; do copying ourselves.
a61af66fc99e Initial load
duke
parents:
diff changeset
941 Copy::aligned_disjoint_words((HeapWord*)old, (HeapWord*)new_obj, sz);
a61af66fc99e Initial load
duke
parents:
diff changeset
942 forward_ptr = old->forward_to_atomic(new_obj);
a61af66fc99e Initial load
duke
parents:
diff changeset
943 // Restore the mark word copied above.
a61af66fc99e Initial load
duke
parents:
diff changeset
944 new_obj->set_mark(m);
a61af66fc99e Initial load
duke
parents:
diff changeset
945 // Increment age if obj still in new generation
a61af66fc99e Initial load
duke
parents:
diff changeset
946 new_obj->incr_age();
a61af66fc99e Initial load
duke
parents:
diff changeset
947 par_scan_state->age_table()->add(new_obj, sz);
a61af66fc99e Initial load
duke
parents:
diff changeset
948 }
a61af66fc99e Initial load
duke
parents:
diff changeset
949 assert(new_obj != NULL, "just checking");
a61af66fc99e Initial load
duke
parents:
diff changeset
950
a61af66fc99e Initial load
duke
parents:
diff changeset
951 if (forward_ptr == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
952 oop obj_to_push = new_obj;
a61af66fc99e Initial load
duke
parents:
diff changeset
953 if (par_scan_state->should_be_partially_scanned(obj_to_push, old)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
954 // Length field used as index of next element to be scanned.
a61af66fc99e Initial load
duke
parents:
diff changeset
955 // Real length can be obtained from real_forwardee()
a61af66fc99e Initial load
duke
parents:
diff changeset
956 arrayOop(old)->set_length(0);
a61af66fc99e Initial load
duke
parents:
diff changeset
957 obj_to_push = old;
a61af66fc99e Initial load
duke
parents:
diff changeset
958 assert(obj_to_push->is_forwarded() && obj_to_push->forwardee() != obj_to_push,
a61af66fc99e Initial load
duke
parents:
diff changeset
959 "push forwarded object");
a61af66fc99e Initial load
duke
parents:
diff changeset
960 }
a61af66fc99e Initial load
duke
parents:
diff changeset
961 // Push it on one of the queues of to-be-scanned objects.
a61af66fc99e Initial load
duke
parents:
diff changeset
962 if (!par_scan_state->work_queue()->push(obj_to_push)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
963 // Add stats for overflow pushes.
a61af66fc99e Initial load
duke
parents:
diff changeset
964 if (Verbose && PrintGCDetails) {
a61af66fc99e Initial load
duke
parents:
diff changeset
965 gclog_or_tty->print("queue overflow!\n");
a61af66fc99e Initial load
duke
parents:
diff changeset
966 }
a61af66fc99e Initial load
duke
parents:
diff changeset
967 push_on_overflow_list(old);
a61af66fc99e Initial load
duke
parents:
diff changeset
968 par_scan_state->note_overflow_push();
a61af66fc99e Initial load
duke
parents:
diff changeset
969 }
a61af66fc99e Initial load
duke
parents:
diff changeset
970 par_scan_state->note_push();
a61af66fc99e Initial load
duke
parents:
diff changeset
971
a61af66fc99e Initial load
duke
parents:
diff changeset
972 return new_obj;
a61af66fc99e Initial load
duke
parents:
diff changeset
973 }
a61af66fc99e Initial load
duke
parents:
diff changeset
974
a61af66fc99e Initial load
duke
parents:
diff changeset
975 // Oops. Someone beat us to it. Undo the allocation. Where did we
a61af66fc99e Initial load
duke
parents:
diff changeset
976 // allocate it?
a61af66fc99e Initial load
duke
parents:
diff changeset
977 if (is_in_reserved(new_obj)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
978 // Must be in to_space.
a61af66fc99e Initial load
duke
parents:
diff changeset
979 assert(to()->is_in_reserved(new_obj), "Checking");
a61af66fc99e Initial load
duke
parents:
diff changeset
980 if (forward_ptr == ClaimedForwardPtr) {
a61af66fc99e Initial load
duke
parents:
diff changeset
981 // Wait to get the real forwarding pointer value.
a61af66fc99e Initial load
duke
parents:
diff changeset
982 forward_ptr = real_forwardee(old);
a61af66fc99e Initial load
duke
parents:
diff changeset
983 }
a61af66fc99e Initial load
duke
parents:
diff changeset
984 par_scan_state->undo_alloc_in_to_space((HeapWord*)new_obj, sz);
a61af66fc99e Initial load
duke
parents:
diff changeset
985 }
a61af66fc99e Initial load
duke
parents:
diff changeset
986
a61af66fc99e Initial load
duke
parents:
diff changeset
987 return forward_ptr;
a61af66fc99e Initial load
duke
parents:
diff changeset
988 }
a61af66fc99e Initial load
duke
parents:
diff changeset
989
a61af66fc99e Initial load
duke
parents:
diff changeset
990
a61af66fc99e Initial load
duke
parents:
diff changeset
991 // Multiple GC threads may try to promote the same object. If two
a61af66fc99e Initial load
duke
parents:
diff changeset
992 // or more GC threads copy the object, only one wins the race to install
a61af66fc99e Initial load
duke
parents:
diff changeset
993 // the forwarding pointer. The other threads have to undo their copy.
a61af66fc99e Initial load
duke
parents:
diff changeset
994
a61af66fc99e Initial load
duke
parents:
diff changeset
995 oop ParNewGeneration::copy_to_survivor_space_with_undo(
a61af66fc99e Initial load
duke
parents:
diff changeset
996 ParScanThreadState* par_scan_state, oop old, size_t sz, markOop m) {
a61af66fc99e Initial load
duke
parents:
diff changeset
997
a61af66fc99e Initial load
duke
parents:
diff changeset
998 // In the sequential version, this assert also says that the object is
a61af66fc99e Initial load
duke
parents:
diff changeset
999 // not forwarded. That might not be the case here. It is the case that
a61af66fc99e Initial load
duke
parents:
diff changeset
1000 // the caller observed it to be not forwarded at some time in the past.
a61af66fc99e Initial load
duke
parents:
diff changeset
1001 assert(is_in_reserved(old), "shouldn't be scavenging this oop");
a61af66fc99e Initial load
duke
parents:
diff changeset
1002
a61af66fc99e Initial load
duke
parents:
diff changeset
1003 // The sequential code read "old->age()" below. That doesn't work here,
a61af66fc99e Initial load
duke
parents:
diff changeset
1004 // since the age is in the mark word, and that might be overwritten with
a61af66fc99e Initial load
duke
parents:
diff changeset
1005 // a forwarding pointer by a parallel thread. So we must save the mark
a61af66fc99e Initial load
duke
parents:
diff changeset
1006 // word here, install it in a local oopDesc, and then analyze it.
a61af66fc99e Initial load
duke
parents:
diff changeset
1007 oopDesc dummyOld;
a61af66fc99e Initial load
duke
parents:
diff changeset
1008 dummyOld.set_mark(m);
a61af66fc99e Initial load
duke
parents:
diff changeset
1009 assert(!dummyOld.is_forwarded(),
a61af66fc99e Initial load
duke
parents:
diff changeset
1010 "should not be called with forwarding pointer mark word.");
a61af66fc99e Initial load
duke
parents:
diff changeset
1011
a61af66fc99e Initial load
duke
parents:
diff changeset
1012 bool failed_to_promote = false;
a61af66fc99e Initial load
duke
parents:
diff changeset
1013 oop new_obj = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
1014 oop forward_ptr;
a61af66fc99e Initial load
duke
parents:
diff changeset
1015
a61af66fc99e Initial load
duke
parents:
diff changeset
1016 // Try allocating obj in to-space (unless too old)
a61af66fc99e Initial load
duke
parents:
diff changeset
1017 if (dummyOld.age() < tenuring_threshold()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1018 new_obj = (oop)par_scan_state->alloc_in_to_space(sz);
a61af66fc99e Initial load
duke
parents:
diff changeset
1019 if (new_obj == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1020 set_survivor_overflow(true);
a61af66fc99e Initial load
duke
parents:
diff changeset
1021 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1022 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1023
a61af66fc99e Initial load
duke
parents:
diff changeset
1024 if (new_obj == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1025 // Either to-space is full or we decided to promote
a61af66fc99e Initial load
duke
parents:
diff changeset
1026 // try allocating obj tenured
a61af66fc99e Initial load
duke
parents:
diff changeset
1027 new_obj = _next_gen->par_promote(par_scan_state->thread_num(),
a61af66fc99e Initial load
duke
parents:
diff changeset
1028 old, m, sz);
a61af66fc99e Initial load
duke
parents:
diff changeset
1029
a61af66fc99e Initial load
duke
parents:
diff changeset
1030 if (new_obj == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1031 if (!HandlePromotionFailure) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1032 // A failed promotion likely means the MaxLiveObjectEvacuationRatio
a61af66fc99e Initial load
duke
parents:
diff changeset
1033 // flag is incorrectly set. In any case, its seriously wrong to be
a61af66fc99e Initial load
duke
parents:
diff changeset
1034 // here!
a61af66fc99e Initial load
duke
parents:
diff changeset
1035 vm_exit_out_of_memory(sz*wordSize, "promotion");
a61af66fc99e Initial load
duke
parents:
diff changeset
1036 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1037 // promotion failed, forward to self
a61af66fc99e Initial load
duke
parents:
diff changeset
1038 forward_ptr = old->forward_to_atomic(old);
a61af66fc99e Initial load
duke
parents:
diff changeset
1039 new_obj = old;
a61af66fc99e Initial load
duke
parents:
diff changeset
1040
a61af66fc99e Initial load
duke
parents:
diff changeset
1041 if (forward_ptr != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1042 return forward_ptr; // someone else succeeded
a61af66fc99e Initial load
duke
parents:
diff changeset
1043 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1044
a61af66fc99e Initial load
duke
parents:
diff changeset
1045 _promotion_failed = true;
a61af66fc99e Initial load
duke
parents:
diff changeset
1046 failed_to_promote = true;
a61af66fc99e Initial load
duke
parents:
diff changeset
1047
a61af66fc99e Initial load
duke
parents:
diff changeset
1048 preserve_mark_if_necessary(old, m);
a61af66fc99e Initial load
duke
parents:
diff changeset
1049 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1050 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
1051 // Is in to-space; do copying ourselves.
a61af66fc99e Initial load
duke
parents:
diff changeset
1052 Copy::aligned_disjoint_words((HeapWord*)old, (HeapWord*)new_obj, sz);
a61af66fc99e Initial load
duke
parents:
diff changeset
1053 // Restore the mark word copied above.
a61af66fc99e Initial load
duke
parents:
diff changeset
1054 new_obj->set_mark(m);
a61af66fc99e Initial load
duke
parents:
diff changeset
1055 // Increment age if new_obj still in new generation
a61af66fc99e Initial load
duke
parents:
diff changeset
1056 new_obj->incr_age();
a61af66fc99e Initial load
duke
parents:
diff changeset
1057 par_scan_state->age_table()->add(new_obj, sz);
a61af66fc99e Initial load
duke
parents:
diff changeset
1058 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1059 assert(new_obj != NULL, "just checking");
a61af66fc99e Initial load
duke
parents:
diff changeset
1060
a61af66fc99e Initial load
duke
parents:
diff changeset
1061 // Now attempt to install the forwarding pointer (atomically).
a61af66fc99e Initial load
duke
parents:
diff changeset
1062 // We have to copy the mark word before overwriting with forwarding
a61af66fc99e Initial load
duke
parents:
diff changeset
1063 // ptr, so we can restore it below in the copy.
a61af66fc99e Initial load
duke
parents:
diff changeset
1064 if (!failed_to_promote) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1065 forward_ptr = old->forward_to_atomic(new_obj);
a61af66fc99e Initial load
duke
parents:
diff changeset
1066 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1067
a61af66fc99e Initial load
duke
parents:
diff changeset
1068 if (forward_ptr == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1069 oop obj_to_push = new_obj;
a61af66fc99e Initial load
duke
parents:
diff changeset
1070 if (par_scan_state->should_be_partially_scanned(obj_to_push, old)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1071 // Length field used as index of next element to be scanned.
a61af66fc99e Initial load
duke
parents:
diff changeset
1072 // Real length can be obtained from real_forwardee()
a61af66fc99e Initial load
duke
parents:
diff changeset
1073 arrayOop(old)->set_length(0);
a61af66fc99e Initial load
duke
parents:
diff changeset
1074 obj_to_push = old;
a61af66fc99e Initial load
duke
parents:
diff changeset
1075 assert(obj_to_push->is_forwarded() && obj_to_push->forwardee() != obj_to_push,
a61af66fc99e Initial load
duke
parents:
diff changeset
1076 "push forwarded object");
a61af66fc99e Initial load
duke
parents:
diff changeset
1077 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1078 // Push it on one of the queues of to-be-scanned objects.
a61af66fc99e Initial load
duke
parents:
diff changeset
1079 if (!par_scan_state->work_queue()->push(obj_to_push)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1080 // Add stats for overflow pushes.
a61af66fc99e Initial load
duke
parents:
diff changeset
1081 push_on_overflow_list(old);
a61af66fc99e Initial load
duke
parents:
diff changeset
1082 par_scan_state->note_overflow_push();
a61af66fc99e Initial load
duke
parents:
diff changeset
1083 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1084 par_scan_state->note_push();
a61af66fc99e Initial load
duke
parents:
diff changeset
1085
a61af66fc99e Initial load
duke
parents:
diff changeset
1086 return new_obj;
a61af66fc99e Initial load
duke
parents:
diff changeset
1087 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1088
a61af66fc99e Initial load
duke
parents:
diff changeset
1089 // Oops. Someone beat us to it. Undo the allocation. Where did we
a61af66fc99e Initial load
duke
parents:
diff changeset
1090 // allocate it?
a61af66fc99e Initial load
duke
parents:
diff changeset
1091 if (is_in_reserved(new_obj)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1092 // Must be in to_space.
a61af66fc99e Initial load
duke
parents:
diff changeset
1093 assert(to()->is_in_reserved(new_obj), "Checking");
a61af66fc99e Initial load
duke
parents:
diff changeset
1094 par_scan_state->undo_alloc_in_to_space((HeapWord*)new_obj, sz);
a61af66fc99e Initial load
duke
parents:
diff changeset
1095 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
1096 assert(!_avoid_promotion_undo, "Should not be here if avoiding.");
a61af66fc99e Initial load
duke
parents:
diff changeset
1097 _next_gen->par_promote_alloc_undo(par_scan_state->thread_num(),
a61af66fc99e Initial load
duke
parents:
diff changeset
1098 (HeapWord*)new_obj, sz);
a61af66fc99e Initial load
duke
parents:
diff changeset
1099 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1100
a61af66fc99e Initial load
duke
parents:
diff changeset
1101 return forward_ptr;
a61af66fc99e Initial load
duke
parents:
diff changeset
1102 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1103
a61af66fc99e Initial load
duke
parents:
diff changeset
1104 void ParNewGeneration::push_on_overflow_list(oop from_space_obj) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1105 oop cur_overflow_list = _overflow_list;
a61af66fc99e Initial load
duke
parents:
diff changeset
1106 // if the object has been forwarded to itself, then we cannot
a61af66fc99e Initial load
duke
parents:
diff changeset
1107 // use the klass pointer for the linked list. Instead we have
a61af66fc99e Initial load
duke
parents:
diff changeset
1108 // to allocate an oopDesc in the C-Heap and use that for the linked list.
a61af66fc99e Initial load
duke
parents:
diff changeset
1109 if (from_space_obj->forwardee() == from_space_obj) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1110 oopDesc* listhead = NEW_C_HEAP_ARRAY(oopDesc, 1);
a61af66fc99e Initial load
duke
parents:
diff changeset
1111 listhead->forward_to(from_space_obj);
a61af66fc99e Initial load
duke
parents:
diff changeset
1112 from_space_obj = listhead;
a61af66fc99e Initial load
duke
parents:
diff changeset
1113 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1114 while (true) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1115 from_space_obj->set_klass_to_list_ptr(cur_overflow_list);
a61af66fc99e Initial load
duke
parents:
diff changeset
1116 oop observed_overflow_list =
a61af66fc99e Initial load
duke
parents:
diff changeset
1117 (oop)Atomic::cmpxchg_ptr(from_space_obj, &_overflow_list, cur_overflow_list);
a61af66fc99e Initial load
duke
parents:
diff changeset
1118 if (observed_overflow_list == cur_overflow_list) break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1119 // Otherwise...
a61af66fc99e Initial load
duke
parents:
diff changeset
1120 cur_overflow_list = observed_overflow_list;
a61af66fc99e Initial load
duke
parents:
diff changeset
1121 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1122 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1123
a61af66fc99e Initial load
duke
parents:
diff changeset
1124 bool
a61af66fc99e Initial load
duke
parents:
diff changeset
1125 ParNewGeneration::take_from_overflow_list(ParScanThreadState* par_scan_state) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1126 ObjToScanQueue* work_q = par_scan_state->work_queue();
a61af66fc99e Initial load
duke
parents:
diff changeset
1127 // How many to take?
a61af66fc99e Initial load
duke
parents:
diff changeset
1128 int objsFromOverflow = MIN2(work_q->max_elems()/4,
a61af66fc99e Initial load
duke
parents:
diff changeset
1129 (juint)ParGCDesiredObjsFromOverflowList);
a61af66fc99e Initial load
duke
parents:
diff changeset
1130
a61af66fc99e Initial load
duke
parents:
diff changeset
1131 if (_overflow_list == NULL) return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
1132
a61af66fc99e Initial load
duke
parents:
diff changeset
1133 // Otherwise, there was something there; try claiming the list.
a61af66fc99e Initial load
duke
parents:
diff changeset
1134 oop prefix = (oop)Atomic::xchg_ptr(NULL, &_overflow_list);
a61af66fc99e Initial load
duke
parents:
diff changeset
1135
a61af66fc99e Initial load
duke
parents:
diff changeset
1136 if (prefix == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1137 return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
1138 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1139 // Trim off a prefix of at most objsFromOverflow items
a61af66fc99e Initial load
duke
parents:
diff changeset
1140 int i = 1;
a61af66fc99e Initial load
duke
parents:
diff changeset
1141 oop cur = prefix;
a61af66fc99e Initial load
duke
parents:
diff changeset
1142 while (i < objsFromOverflow && cur->klass() != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1143 i++; cur = oop(cur->klass());
a61af66fc99e Initial load
duke
parents:
diff changeset
1144 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1145
a61af66fc99e Initial load
duke
parents:
diff changeset
1146 // Reattach remaining (suffix) to overflow list
a61af66fc99e Initial load
duke
parents:
diff changeset
1147 if (cur->klass() != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1148 oop suffix = oop(cur->klass());
a61af66fc99e Initial load
duke
parents:
diff changeset
1149 cur->set_klass_to_list_ptr(NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
1150
a61af66fc99e Initial load
duke
parents:
diff changeset
1151 // Find last item of suffix list
a61af66fc99e Initial load
duke
parents:
diff changeset
1152 oop last = suffix;
a61af66fc99e Initial load
duke
parents:
diff changeset
1153 while (last->klass() != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1154 last = oop(last->klass());
a61af66fc99e Initial load
duke
parents:
diff changeset
1155 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1156 // Atomically prepend suffix to current overflow list
a61af66fc99e Initial load
duke
parents:
diff changeset
1157 oop cur_overflow_list = _overflow_list;
a61af66fc99e Initial load
duke
parents:
diff changeset
1158 while (true) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1159 last->set_klass_to_list_ptr(cur_overflow_list);
a61af66fc99e Initial load
duke
parents:
diff changeset
1160 oop observed_overflow_list =
a61af66fc99e Initial load
duke
parents:
diff changeset
1161 (oop)Atomic::cmpxchg_ptr(suffix, &_overflow_list, cur_overflow_list);
a61af66fc99e Initial load
duke
parents:
diff changeset
1162 if (observed_overflow_list == cur_overflow_list) break;
a61af66fc99e Initial load
duke
parents:
diff changeset
1163 // Otherwise...
a61af66fc99e Initial load
duke
parents:
diff changeset
1164 cur_overflow_list = observed_overflow_list;
a61af66fc99e Initial load
duke
parents:
diff changeset
1165 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1166 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1167
a61af66fc99e Initial load
duke
parents:
diff changeset
1168 // Push objects on prefix list onto this thread's work queue
a61af66fc99e Initial load
duke
parents:
diff changeset
1169 assert(cur != NULL, "program logic");
a61af66fc99e Initial load
duke
parents:
diff changeset
1170 cur = prefix;
a61af66fc99e Initial load
duke
parents:
diff changeset
1171 int n = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
1172 while (cur != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1173 oop obj_to_push = cur->forwardee();
a61af66fc99e Initial load
duke
parents:
diff changeset
1174 oop next = oop(cur->klass());
a61af66fc99e Initial load
duke
parents:
diff changeset
1175 cur->set_klass(obj_to_push->klass());
a61af66fc99e Initial load
duke
parents:
diff changeset
1176 if (par_scan_state->should_be_partially_scanned(obj_to_push, cur)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1177 obj_to_push = cur;
a61af66fc99e Initial load
duke
parents:
diff changeset
1178 assert(arrayOop(cur)->length() == 0, "entire array remaining to be scanned");
a61af66fc99e Initial load
duke
parents:
diff changeset
1179 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1180 work_q->push(obj_to_push);
a61af66fc99e Initial load
duke
parents:
diff changeset
1181 cur = next;
a61af66fc99e Initial load
duke
parents:
diff changeset
1182 n++;
a61af66fc99e Initial load
duke
parents:
diff changeset
1183 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1184 par_scan_state->note_overflow_refill(n);
a61af66fc99e Initial load
duke
parents:
diff changeset
1185 return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
1186 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1187
a61af66fc99e Initial load
duke
parents:
diff changeset
1188 void ParNewGeneration::ref_processor_init()
a61af66fc99e Initial load
duke
parents:
diff changeset
1189 {
a61af66fc99e Initial load
duke
parents:
diff changeset
1190 if (_ref_processor == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1191 // Allocate and initialize a reference processor
a61af66fc99e Initial load
duke
parents:
diff changeset
1192 _ref_processor = ReferenceProcessor::create_ref_processor(
a61af66fc99e Initial load
duke
parents:
diff changeset
1193 _reserved, // span
a61af66fc99e Initial load
duke
parents:
diff changeset
1194 refs_discovery_is_atomic(), // atomic_discovery
a61af66fc99e Initial load
duke
parents:
diff changeset
1195 refs_discovery_is_mt(), // mt_discovery
a61af66fc99e Initial load
duke
parents:
diff changeset
1196 NULL, // is_alive_non_header
a61af66fc99e Initial load
duke
parents:
diff changeset
1197 ParallelGCThreads,
a61af66fc99e Initial load
duke
parents:
diff changeset
1198 ParallelRefProcEnabled);
a61af66fc99e Initial load
duke
parents:
diff changeset
1199 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1200 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1201
a61af66fc99e Initial load
duke
parents:
diff changeset
1202 const char* ParNewGeneration::name() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
1203 return "par new generation";
a61af66fc99e Initial load
duke
parents:
diff changeset
1204 }