annotate src/share/vm/gc_implementation/parNew/parNewGeneration.hpp @ 0:a61af66fc99e jdk7-b24

Initial load
author duke
date Sat, 01 Dec 2007 00:00:00 +0000
parents
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 class ChunkArray;
a61af66fc99e Initial load
duke
parents:
diff changeset
26 class ParScanWithoutBarrierClosure;
a61af66fc99e Initial load
duke
parents:
diff changeset
27 class ParScanWithBarrierClosure;
a61af66fc99e Initial load
duke
parents:
diff changeset
28 class ParRootScanWithoutBarrierClosure;
a61af66fc99e Initial load
duke
parents:
diff changeset
29 class ParRootScanWithBarrierTwoGensClosure;
a61af66fc99e Initial load
duke
parents:
diff changeset
30 class ParEvacuateFollowersClosure;
a61af66fc99e Initial load
duke
parents:
diff changeset
31
a61af66fc99e Initial load
duke
parents:
diff changeset
32 // It would be better if these types could be kept local to the .cpp file,
a61af66fc99e Initial load
duke
parents:
diff changeset
33 // but they must be here to allow ParScanClosure::do_oop_work to be defined
a61af66fc99e Initial load
duke
parents:
diff changeset
34 // in genOopClosures.inline.hpp.
a61af66fc99e Initial load
duke
parents:
diff changeset
35
a61af66fc99e Initial load
duke
parents:
diff changeset
36
a61af66fc99e Initial load
duke
parents:
diff changeset
37 typedef OopTaskQueue ObjToScanQueue;
a61af66fc99e Initial load
duke
parents:
diff changeset
38 typedef OopTaskQueueSet ObjToScanQueueSet;
a61af66fc99e Initial load
duke
parents:
diff changeset
39
a61af66fc99e Initial load
duke
parents:
diff changeset
40 // Enable this to get push/pop/steal stats.
a61af66fc99e Initial load
duke
parents:
diff changeset
41 const int PAR_STATS_ENABLED = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
42
a61af66fc99e Initial load
duke
parents:
diff changeset
43 class ParKeepAliveClosure: public DefNewGeneration::KeepAliveClosure {
a61af66fc99e Initial load
duke
parents:
diff changeset
44 ParScanWeakRefClosure* _par_cl;
a61af66fc99e Initial load
duke
parents:
diff changeset
45 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
46 ParKeepAliveClosure(ParScanWeakRefClosure* cl);
a61af66fc99e Initial load
duke
parents:
diff changeset
47 void do_oop(oop* p);
a61af66fc99e Initial load
duke
parents:
diff changeset
48 };
a61af66fc99e Initial load
duke
parents:
diff changeset
49
a61af66fc99e Initial load
duke
parents:
diff changeset
50 // The state needed by thread performing parallel young-gen collection.
a61af66fc99e Initial load
duke
parents:
diff changeset
51 class ParScanThreadState {
a61af66fc99e Initial load
duke
parents:
diff changeset
52 friend class ParScanThreadStateSet;
a61af66fc99e Initial load
duke
parents:
diff changeset
53 ObjToScanQueue *_work_queue;
a61af66fc99e Initial load
duke
parents:
diff changeset
54
a61af66fc99e Initial load
duke
parents:
diff changeset
55 ParGCAllocBuffer _to_space_alloc_buffer;
a61af66fc99e Initial load
duke
parents:
diff changeset
56
a61af66fc99e Initial load
duke
parents:
diff changeset
57 ParScanWithoutBarrierClosure _to_space_closure; // scan_without_gc_barrier
a61af66fc99e Initial load
duke
parents:
diff changeset
58 ParScanWithBarrierClosure _old_gen_closure; // scan_with_gc_barrier
a61af66fc99e Initial load
duke
parents:
diff changeset
59 ParRootScanWithoutBarrierClosure _to_space_root_closure; // scan_root_without_gc_barrier
a61af66fc99e Initial load
duke
parents:
diff changeset
60 // One of these two will be passed to process_strong_roots, which will
a61af66fc99e Initial load
duke
parents:
diff changeset
61 // set its generation. The first is for two-gen configs where the
a61af66fc99e Initial load
duke
parents:
diff changeset
62 // old gen collects the perm gen; the second is for arbitrary configs.
a61af66fc99e Initial load
duke
parents:
diff changeset
63 // The second isn't used right now (it used to be used for the train, an
a61af66fc99e Initial load
duke
parents:
diff changeset
64 // incremental collector) but the declaration has been left as a reminder.
a61af66fc99e Initial load
duke
parents:
diff changeset
65 ParRootScanWithBarrierTwoGensClosure _older_gen_closure;
a61af66fc99e Initial load
duke
parents:
diff changeset
66 // This closure will always be bound to the old gen; it will be used
a61af66fc99e Initial load
duke
parents:
diff changeset
67 // in evacuate_followers.
a61af66fc99e Initial load
duke
parents:
diff changeset
68 ParRootScanWithBarrierTwoGensClosure _old_gen_root_closure; // scan_old_root_with_gc_barrier
a61af66fc99e Initial load
duke
parents:
diff changeset
69 ParEvacuateFollowersClosure _evacuate_followers;
a61af66fc99e Initial load
duke
parents:
diff changeset
70 DefNewGeneration::IsAliveClosure _is_alive_closure;
a61af66fc99e Initial load
duke
parents:
diff changeset
71 ParScanWeakRefClosure _scan_weak_ref_closure;
a61af66fc99e Initial load
duke
parents:
diff changeset
72 ParKeepAliveClosure _keep_alive_closure;
a61af66fc99e Initial load
duke
parents:
diff changeset
73
a61af66fc99e Initial load
duke
parents:
diff changeset
74
a61af66fc99e Initial load
duke
parents:
diff changeset
75 Space* _to_space;
a61af66fc99e Initial load
duke
parents:
diff changeset
76 Space* to_space() { return _to_space; }
a61af66fc99e Initial load
duke
parents:
diff changeset
77
a61af66fc99e Initial load
duke
parents:
diff changeset
78 Generation* _old_gen;
a61af66fc99e Initial load
duke
parents:
diff changeset
79 Generation* old_gen() { return _old_gen; }
a61af66fc99e Initial load
duke
parents:
diff changeset
80
a61af66fc99e Initial load
duke
parents:
diff changeset
81 HeapWord *_young_old_boundary;
a61af66fc99e Initial load
duke
parents:
diff changeset
82
a61af66fc99e Initial load
duke
parents:
diff changeset
83 int _hash_seed;
a61af66fc99e Initial load
duke
parents:
diff changeset
84 int _thread_num;
a61af66fc99e Initial load
duke
parents:
diff changeset
85 ageTable _ageTable;
a61af66fc99e Initial load
duke
parents:
diff changeset
86
a61af66fc99e Initial load
duke
parents:
diff changeset
87 bool _to_space_full;
a61af66fc99e Initial load
duke
parents:
diff changeset
88
a61af66fc99e Initial load
duke
parents:
diff changeset
89 int _pushes, _pops, _steals, _steal_attempts, _term_attempts;
a61af66fc99e Initial load
duke
parents:
diff changeset
90 int _overflow_pushes, _overflow_refills, _overflow_refill_objs;
a61af66fc99e Initial load
duke
parents:
diff changeset
91
a61af66fc99e Initial load
duke
parents:
diff changeset
92 // Timing numbers.
a61af66fc99e Initial load
duke
parents:
diff changeset
93 double _start;
a61af66fc99e Initial load
duke
parents:
diff changeset
94 double _start_strong_roots;
a61af66fc99e Initial load
duke
parents:
diff changeset
95 double _strong_roots_time;
a61af66fc99e Initial load
duke
parents:
diff changeset
96 double _start_term;
a61af66fc99e Initial load
duke
parents:
diff changeset
97 double _term_time;
a61af66fc99e Initial load
duke
parents:
diff changeset
98
a61af66fc99e Initial load
duke
parents:
diff changeset
99 // Helper for trim_queues. Scans subset of an array and makes
a61af66fc99e Initial load
duke
parents:
diff changeset
100 // remainder available for work stealing.
a61af66fc99e Initial load
duke
parents:
diff changeset
101 void scan_partial_array_and_push_remainder(oop obj);
a61af66fc99e Initial load
duke
parents:
diff changeset
102
a61af66fc99e Initial load
duke
parents:
diff changeset
103 // In support of CMS' parallel rescan of survivor space.
a61af66fc99e Initial load
duke
parents:
diff changeset
104 ChunkArray* _survivor_chunk_array;
a61af66fc99e Initial load
duke
parents:
diff changeset
105 ChunkArray* survivor_chunk_array() { return _survivor_chunk_array; }
a61af66fc99e Initial load
duke
parents:
diff changeset
106
a61af66fc99e Initial load
duke
parents:
diff changeset
107 void record_survivor_plab(HeapWord* plab_start, size_t plab_word_size);
a61af66fc99e Initial load
duke
parents:
diff changeset
108
a61af66fc99e Initial load
duke
parents:
diff changeset
109 ParScanThreadState(Space* to_space_, ParNewGeneration* gen_,
a61af66fc99e Initial load
duke
parents:
diff changeset
110 Generation* old_gen_, int thread_num_,
a61af66fc99e Initial load
duke
parents:
diff changeset
111 ObjToScanQueueSet* work_queue_set_, size_t desired_plab_sz_,
a61af66fc99e Initial load
duke
parents:
diff changeset
112 ParallelTaskTerminator& term_);
a61af66fc99e Initial load
duke
parents:
diff changeset
113
a61af66fc99e Initial load
duke
parents:
diff changeset
114 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
115 ageTable* age_table() {return &_ageTable;}
a61af66fc99e Initial load
duke
parents:
diff changeset
116
a61af66fc99e Initial load
duke
parents:
diff changeset
117 ObjToScanQueue* work_queue() { return _work_queue; }
a61af66fc99e Initial load
duke
parents:
diff changeset
118
a61af66fc99e Initial load
duke
parents:
diff changeset
119 ParGCAllocBuffer* to_space_alloc_buffer() {
a61af66fc99e Initial load
duke
parents:
diff changeset
120 return &_to_space_alloc_buffer;
a61af66fc99e Initial load
duke
parents:
diff changeset
121 }
a61af66fc99e Initial load
duke
parents:
diff changeset
122
a61af66fc99e Initial load
duke
parents:
diff changeset
123 ParEvacuateFollowersClosure& evacuate_followers_closure() { return _evacuate_followers; }
a61af66fc99e Initial load
duke
parents:
diff changeset
124 DefNewGeneration::IsAliveClosure& is_alive_closure() { return _is_alive_closure; }
a61af66fc99e Initial load
duke
parents:
diff changeset
125 ParScanWeakRefClosure& scan_weak_ref_closure() { return _scan_weak_ref_closure; }
a61af66fc99e Initial load
duke
parents:
diff changeset
126 ParKeepAliveClosure& keep_alive_closure() { return _keep_alive_closure; }
a61af66fc99e Initial load
duke
parents:
diff changeset
127 ParScanClosure& older_gen_closure() { return _older_gen_closure; }
a61af66fc99e Initial load
duke
parents:
diff changeset
128 ParRootScanWithoutBarrierClosure& to_space_root_closure() { return _to_space_root_closure; };
a61af66fc99e Initial load
duke
parents:
diff changeset
129
a61af66fc99e Initial load
duke
parents:
diff changeset
130 // Decrease queue size below "max_size".
a61af66fc99e Initial load
duke
parents:
diff changeset
131 void trim_queues(int max_size);
a61af66fc99e Initial load
duke
parents:
diff changeset
132
a61af66fc99e Initial load
duke
parents:
diff changeset
133 // Is new_obj a candidate for scan_partial_array_and_push_remainder method.
a61af66fc99e Initial load
duke
parents:
diff changeset
134 inline bool should_be_partially_scanned(oop new_obj, oop old_obj) const;
a61af66fc99e Initial load
duke
parents:
diff changeset
135
a61af66fc99e Initial load
duke
parents:
diff changeset
136 int* hash_seed() { return &_hash_seed; }
a61af66fc99e Initial load
duke
parents:
diff changeset
137 int thread_num() { return _thread_num; }
a61af66fc99e Initial load
duke
parents:
diff changeset
138
a61af66fc99e Initial load
duke
parents:
diff changeset
139 // Allocate a to-space block of size "sz", or else return NULL.
a61af66fc99e Initial load
duke
parents:
diff changeset
140 HeapWord* alloc_in_to_space_slow(size_t word_sz);
a61af66fc99e Initial load
duke
parents:
diff changeset
141
a61af66fc99e Initial load
duke
parents:
diff changeset
142 HeapWord* alloc_in_to_space(size_t word_sz) {
a61af66fc99e Initial load
duke
parents:
diff changeset
143 HeapWord* obj = to_space_alloc_buffer()->allocate(word_sz);
a61af66fc99e Initial load
duke
parents:
diff changeset
144 if (obj != NULL) return obj;
a61af66fc99e Initial load
duke
parents:
diff changeset
145 else return alloc_in_to_space_slow(word_sz);
a61af66fc99e Initial load
duke
parents:
diff changeset
146 }
a61af66fc99e Initial load
duke
parents:
diff changeset
147
a61af66fc99e Initial load
duke
parents:
diff changeset
148 HeapWord* young_old_boundary() { return _young_old_boundary; }
a61af66fc99e Initial load
duke
parents:
diff changeset
149
a61af66fc99e Initial load
duke
parents:
diff changeset
150 void set_young_old_boundary(HeapWord *boundary) {
a61af66fc99e Initial load
duke
parents:
diff changeset
151 _young_old_boundary = boundary;
a61af66fc99e Initial load
duke
parents:
diff changeset
152 }
a61af66fc99e Initial load
duke
parents:
diff changeset
153
a61af66fc99e Initial load
duke
parents:
diff changeset
154 // Undo the most recent allocation ("obj", of "word_sz").
a61af66fc99e Initial load
duke
parents:
diff changeset
155 void undo_alloc_in_to_space(HeapWord* obj, size_t word_sz);
a61af66fc99e Initial load
duke
parents:
diff changeset
156
a61af66fc99e Initial load
duke
parents:
diff changeset
157 int pushes() { return _pushes; }
a61af66fc99e Initial load
duke
parents:
diff changeset
158 int pops() { return _pops; }
a61af66fc99e Initial load
duke
parents:
diff changeset
159 int steals() { return _steals; }
a61af66fc99e Initial load
duke
parents:
diff changeset
160 int steal_attempts() { return _steal_attempts; }
a61af66fc99e Initial load
duke
parents:
diff changeset
161 int term_attempts() { return _term_attempts; }
a61af66fc99e Initial load
duke
parents:
diff changeset
162 int overflow_pushes() { return _overflow_pushes; }
a61af66fc99e Initial load
duke
parents:
diff changeset
163 int overflow_refills() { return _overflow_refills; }
a61af66fc99e Initial load
duke
parents:
diff changeset
164 int overflow_refill_objs() { return _overflow_refill_objs; }
a61af66fc99e Initial load
duke
parents:
diff changeset
165
a61af66fc99e Initial load
duke
parents:
diff changeset
166 void note_push() { if (PAR_STATS_ENABLED) _pushes++; }
a61af66fc99e Initial load
duke
parents:
diff changeset
167 void note_pop() { if (PAR_STATS_ENABLED) _pops++; }
a61af66fc99e Initial load
duke
parents:
diff changeset
168 void note_steal() { if (PAR_STATS_ENABLED) _steals++; }
a61af66fc99e Initial load
duke
parents:
diff changeset
169 void note_steal_attempt() { if (PAR_STATS_ENABLED) _steal_attempts++; }
a61af66fc99e Initial load
duke
parents:
diff changeset
170 void note_term_attempt() { if (PAR_STATS_ENABLED) _term_attempts++; }
a61af66fc99e Initial load
duke
parents:
diff changeset
171 void note_overflow_push() { if (PAR_STATS_ENABLED) _overflow_pushes++; }
a61af66fc99e Initial load
duke
parents:
diff changeset
172 void note_overflow_refill(int objs) {
a61af66fc99e Initial load
duke
parents:
diff changeset
173 if (PAR_STATS_ENABLED) {
a61af66fc99e Initial load
duke
parents:
diff changeset
174 _overflow_refills++;
a61af66fc99e Initial load
duke
parents:
diff changeset
175 _overflow_refill_objs += objs;
a61af66fc99e Initial load
duke
parents:
diff changeset
176 }
a61af66fc99e Initial load
duke
parents:
diff changeset
177 }
a61af66fc99e Initial load
duke
parents:
diff changeset
178
a61af66fc99e Initial load
duke
parents:
diff changeset
179 void start_strong_roots() {
a61af66fc99e Initial load
duke
parents:
diff changeset
180 _start_strong_roots = os::elapsedTime();
a61af66fc99e Initial load
duke
parents:
diff changeset
181 }
a61af66fc99e Initial load
duke
parents:
diff changeset
182 void end_strong_roots() {
a61af66fc99e Initial load
duke
parents:
diff changeset
183 _strong_roots_time += (os::elapsedTime() - _start_strong_roots);
a61af66fc99e Initial load
duke
parents:
diff changeset
184 }
a61af66fc99e Initial load
duke
parents:
diff changeset
185 double strong_roots_time() { return _strong_roots_time; }
a61af66fc99e Initial load
duke
parents:
diff changeset
186 void start_term_time() {
a61af66fc99e Initial load
duke
parents:
diff changeset
187 note_term_attempt();
a61af66fc99e Initial load
duke
parents:
diff changeset
188 _start_term = os::elapsedTime();
a61af66fc99e Initial load
duke
parents:
diff changeset
189 }
a61af66fc99e Initial load
duke
parents:
diff changeset
190 void end_term_time() {
a61af66fc99e Initial load
duke
parents:
diff changeset
191 _term_time += (os::elapsedTime() - _start_term);
a61af66fc99e Initial load
duke
parents:
diff changeset
192 }
a61af66fc99e Initial load
duke
parents:
diff changeset
193 double term_time() { return _term_time; }
a61af66fc99e Initial load
duke
parents:
diff changeset
194
a61af66fc99e Initial load
duke
parents:
diff changeset
195 double elapsed() {
a61af66fc99e Initial load
duke
parents:
diff changeset
196 return os::elapsedTime() - _start;
a61af66fc99e Initial load
duke
parents:
diff changeset
197 }
a61af66fc99e Initial load
duke
parents:
diff changeset
198
a61af66fc99e Initial load
duke
parents:
diff changeset
199 };
a61af66fc99e Initial load
duke
parents:
diff changeset
200
a61af66fc99e Initial load
duke
parents:
diff changeset
201 class ParNewGenTask: public AbstractGangTask {
a61af66fc99e Initial load
duke
parents:
diff changeset
202 ParNewGeneration* _gen;
a61af66fc99e Initial load
duke
parents:
diff changeset
203 Generation* _next_gen;
a61af66fc99e Initial load
duke
parents:
diff changeset
204 HeapWord* _young_old_boundary;
a61af66fc99e Initial load
duke
parents:
diff changeset
205 class ParScanThreadStateSet* _state_set;
a61af66fc99e Initial load
duke
parents:
diff changeset
206
a61af66fc99e Initial load
duke
parents:
diff changeset
207 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
208 ParNewGenTask(ParNewGeneration* gen,
a61af66fc99e Initial load
duke
parents:
diff changeset
209 Generation* next_gen,
a61af66fc99e Initial load
duke
parents:
diff changeset
210 HeapWord* young_old_boundary,
a61af66fc99e Initial load
duke
parents:
diff changeset
211 ParScanThreadStateSet* state_set);
a61af66fc99e Initial load
duke
parents:
diff changeset
212
a61af66fc99e Initial load
duke
parents:
diff changeset
213 HeapWord* young_old_boundary() { return _young_old_boundary; }
a61af66fc99e Initial load
duke
parents:
diff changeset
214
a61af66fc99e Initial load
duke
parents:
diff changeset
215 void work(int i);
a61af66fc99e Initial load
duke
parents:
diff changeset
216 };
a61af66fc99e Initial load
duke
parents:
diff changeset
217
a61af66fc99e Initial load
duke
parents:
diff changeset
218 class KeepAliveClosure: public DefNewGeneration::KeepAliveClosure {
a61af66fc99e Initial load
duke
parents:
diff changeset
219 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
220 KeepAliveClosure(ScanWeakRefClosure* cl);
a61af66fc99e Initial load
duke
parents:
diff changeset
221 void do_oop(oop* p);
a61af66fc99e Initial load
duke
parents:
diff changeset
222 };
a61af66fc99e Initial load
duke
parents:
diff changeset
223
a61af66fc99e Initial load
duke
parents:
diff changeset
224 class EvacuateFollowersClosureGeneral: public VoidClosure {
a61af66fc99e Initial load
duke
parents:
diff changeset
225 GenCollectedHeap* _gch;
a61af66fc99e Initial load
duke
parents:
diff changeset
226 int _level;
a61af66fc99e Initial load
duke
parents:
diff changeset
227 OopsInGenClosure* _scan_cur_or_nonheap;
a61af66fc99e Initial load
duke
parents:
diff changeset
228 OopsInGenClosure* _scan_older;
a61af66fc99e Initial load
duke
parents:
diff changeset
229 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
230 EvacuateFollowersClosureGeneral(GenCollectedHeap* gch, int level,
a61af66fc99e Initial load
duke
parents:
diff changeset
231 OopsInGenClosure* cur,
a61af66fc99e Initial load
duke
parents:
diff changeset
232 OopsInGenClosure* older);
a61af66fc99e Initial load
duke
parents:
diff changeset
233 void do_void();
a61af66fc99e Initial load
duke
parents:
diff changeset
234 };
a61af66fc99e Initial load
duke
parents:
diff changeset
235
a61af66fc99e Initial load
duke
parents:
diff changeset
236 // Closure for scanning ParNewGeneration.
a61af66fc99e Initial load
duke
parents:
diff changeset
237 // Same as ScanClosure, except does parallel GC barrier.
a61af66fc99e Initial load
duke
parents:
diff changeset
238 class ScanClosureWithParBarrier: public ScanClosure {
a61af66fc99e Initial load
duke
parents:
diff changeset
239 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
240 ScanClosureWithParBarrier(ParNewGeneration* g, bool gc_barrier);
a61af66fc99e Initial load
duke
parents:
diff changeset
241 void do_oop(oop* p);
a61af66fc99e Initial load
duke
parents:
diff changeset
242 };
a61af66fc99e Initial load
duke
parents:
diff changeset
243
a61af66fc99e Initial load
duke
parents:
diff changeset
244 // Implements AbstractRefProcTaskExecutor for ParNew.
a61af66fc99e Initial load
duke
parents:
diff changeset
245 class ParNewRefProcTaskExecutor: public AbstractRefProcTaskExecutor {
a61af66fc99e Initial load
duke
parents:
diff changeset
246 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
247
a61af66fc99e Initial load
duke
parents:
diff changeset
248 ParNewRefProcTaskExecutor(ParNewGeneration& generation,
a61af66fc99e Initial load
duke
parents:
diff changeset
249 ParScanThreadStateSet& state_set)
a61af66fc99e Initial load
duke
parents:
diff changeset
250 : _generation(generation), _state_set(state_set)
a61af66fc99e Initial load
duke
parents:
diff changeset
251 { }
a61af66fc99e Initial load
duke
parents:
diff changeset
252
a61af66fc99e Initial load
duke
parents:
diff changeset
253 // Executes a task using worker threads.
a61af66fc99e Initial load
duke
parents:
diff changeset
254 virtual void execute(ProcessTask& task);
a61af66fc99e Initial load
duke
parents:
diff changeset
255 virtual void execute(EnqueueTask& task);
a61af66fc99e Initial load
duke
parents:
diff changeset
256 // Switch to single threaded mode.
a61af66fc99e Initial load
duke
parents:
diff changeset
257 virtual void set_single_threaded_mode();
a61af66fc99e Initial load
duke
parents:
diff changeset
258 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
259 ParNewGeneration& _generation;
a61af66fc99e Initial load
duke
parents:
diff changeset
260 ParScanThreadStateSet& _state_set;
a61af66fc99e Initial load
duke
parents:
diff changeset
261 };
a61af66fc99e Initial load
duke
parents:
diff changeset
262
a61af66fc99e Initial load
duke
parents:
diff changeset
263
a61af66fc99e Initial load
duke
parents:
diff changeset
264 // A Generation that does parallel young-gen collection.
a61af66fc99e Initial load
duke
parents:
diff changeset
265
a61af66fc99e Initial load
duke
parents:
diff changeset
266 class ParNewGeneration: public DefNewGeneration {
a61af66fc99e Initial load
duke
parents:
diff changeset
267 friend class ParNewGenTask;
a61af66fc99e Initial load
duke
parents:
diff changeset
268 friend class ParNewRefProcTask;
a61af66fc99e Initial load
duke
parents:
diff changeset
269 friend class ParNewRefProcTaskExecutor;
a61af66fc99e Initial load
duke
parents:
diff changeset
270 friend class ParScanThreadStateSet;
a61af66fc99e Initial load
duke
parents:
diff changeset
271
a61af66fc99e Initial load
duke
parents:
diff changeset
272 // XXX use a global constant instead of 64!
a61af66fc99e Initial load
duke
parents:
diff changeset
273 struct ObjToScanQueuePadded {
a61af66fc99e Initial load
duke
parents:
diff changeset
274 ObjToScanQueue work_queue;
a61af66fc99e Initial load
duke
parents:
diff changeset
275 char pad[64 - sizeof(ObjToScanQueue)]; // prevent false sharing
a61af66fc99e Initial load
duke
parents:
diff changeset
276 };
a61af66fc99e Initial load
duke
parents:
diff changeset
277
a61af66fc99e Initial load
duke
parents:
diff changeset
278 // The per-thread work queues, available here for stealing.
a61af66fc99e Initial load
duke
parents:
diff changeset
279 ObjToScanQueueSet* _task_queues;
a61af66fc99e Initial load
duke
parents:
diff changeset
280
a61af66fc99e Initial load
duke
parents:
diff changeset
281 // Desired size of survivor space plab's
a61af66fc99e Initial load
duke
parents:
diff changeset
282 PLABStats _plab_stats;
a61af66fc99e Initial load
duke
parents:
diff changeset
283
a61af66fc99e Initial load
duke
parents:
diff changeset
284 // A list of from-space images of to-be-scanned objects, threaded through
a61af66fc99e Initial load
duke
parents:
diff changeset
285 // klass-pointers (klass information already copied to the forwarded
a61af66fc99e Initial load
duke
parents:
diff changeset
286 // image.) Manipulated with CAS.
a61af66fc99e Initial load
duke
parents:
diff changeset
287 oop _overflow_list;
a61af66fc99e Initial load
duke
parents:
diff changeset
288
a61af66fc99e Initial load
duke
parents:
diff changeset
289 // If true, older generation does not support promotion undo, so avoid.
a61af66fc99e Initial load
duke
parents:
diff changeset
290 static bool _avoid_promotion_undo;
a61af66fc99e Initial load
duke
parents:
diff changeset
291
a61af66fc99e Initial load
duke
parents:
diff changeset
292 // This closure is used by the reference processor to filter out
a61af66fc99e Initial load
duke
parents:
diff changeset
293 // references to live referent.
a61af66fc99e Initial load
duke
parents:
diff changeset
294 DefNewGeneration::IsAliveClosure _is_alive_closure;
a61af66fc99e Initial load
duke
parents:
diff changeset
295
a61af66fc99e Initial load
duke
parents:
diff changeset
296 static oop real_forwardee_slow(oop obj);
a61af66fc99e Initial load
duke
parents:
diff changeset
297 static void waste_some_time();
a61af66fc99e Initial load
duke
parents:
diff changeset
298
a61af66fc99e Initial load
duke
parents:
diff changeset
299 // Preserve the mark of "obj", if necessary, in preparation for its mark
a61af66fc99e Initial load
duke
parents:
diff changeset
300 // word being overwritten with a self-forwarding-pointer.
a61af66fc99e Initial load
duke
parents:
diff changeset
301 void preserve_mark_if_necessary(oop obj, markOop m);
a61af66fc99e Initial load
duke
parents:
diff changeset
302
a61af66fc99e Initial load
duke
parents:
diff changeset
303 protected:
a61af66fc99e Initial load
duke
parents:
diff changeset
304
a61af66fc99e Initial load
duke
parents:
diff changeset
305 bool _survivor_overflow;
a61af66fc99e Initial load
duke
parents:
diff changeset
306
a61af66fc99e Initial load
duke
parents:
diff changeset
307 bool avoid_promotion_undo() { return _avoid_promotion_undo; }
a61af66fc99e Initial load
duke
parents:
diff changeset
308 void set_avoid_promotion_undo(bool v) { _avoid_promotion_undo = v; }
a61af66fc99e Initial load
duke
parents:
diff changeset
309
a61af66fc99e Initial load
duke
parents:
diff changeset
310 bool survivor_overflow() { return _survivor_overflow; }
a61af66fc99e Initial load
duke
parents:
diff changeset
311 void set_survivor_overflow(bool v) { _survivor_overflow = v; }
a61af66fc99e Initial load
duke
parents:
diff changeset
312
a61af66fc99e Initial load
duke
parents:
diff changeset
313 // Adjust the tenuring threshold. See the implementation for
a61af66fc99e Initial load
duke
parents:
diff changeset
314 // the details of the policy.
a61af66fc99e Initial load
duke
parents:
diff changeset
315 virtual void adjust_desired_tenuring_threshold();
a61af66fc99e Initial load
duke
parents:
diff changeset
316
a61af66fc99e Initial load
duke
parents:
diff changeset
317 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
318 ParNewGeneration(ReservedSpace rs, size_t initial_byte_size, int level);
a61af66fc99e Initial load
duke
parents:
diff changeset
319
a61af66fc99e Initial load
duke
parents:
diff changeset
320 ~ParNewGeneration() {
a61af66fc99e Initial load
duke
parents:
diff changeset
321 for (uint i = 0; i < ParallelGCThreads; i++)
a61af66fc99e Initial load
duke
parents:
diff changeset
322 delete _task_queues->queue(i);
a61af66fc99e Initial load
duke
parents:
diff changeset
323
a61af66fc99e Initial load
duke
parents:
diff changeset
324 delete _task_queues;
a61af66fc99e Initial load
duke
parents:
diff changeset
325 }
a61af66fc99e Initial load
duke
parents:
diff changeset
326
a61af66fc99e Initial load
duke
parents:
diff changeset
327 virtual void ref_processor_init();
a61af66fc99e Initial load
duke
parents:
diff changeset
328 virtual Generation::Name kind() { return Generation::ParNew; }
a61af66fc99e Initial load
duke
parents:
diff changeset
329 virtual const char* name() const;
a61af66fc99e Initial load
duke
parents:
diff changeset
330 virtual const char* short_name() const { return "ParNew"; }
a61af66fc99e Initial load
duke
parents:
diff changeset
331
a61af66fc99e Initial load
duke
parents:
diff changeset
332 // override
a61af66fc99e Initial load
duke
parents:
diff changeset
333 virtual bool refs_discovery_is_mt() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
334 assert(UseParNewGC, "ParNewGeneration only when UseParNewGC");
a61af66fc99e Initial load
duke
parents:
diff changeset
335 return ParallelGCThreads > 1;
a61af66fc99e Initial load
duke
parents:
diff changeset
336 }
a61af66fc99e Initial load
duke
parents:
diff changeset
337
a61af66fc99e Initial load
duke
parents:
diff changeset
338 // Make the collection virtual.
a61af66fc99e Initial load
duke
parents:
diff changeset
339 virtual void collect(bool full,
a61af66fc99e Initial load
duke
parents:
diff changeset
340 bool clear_all_soft_refs,
a61af66fc99e Initial load
duke
parents:
diff changeset
341 size_t size,
a61af66fc99e Initial load
duke
parents:
diff changeset
342 bool is_tlab);
a61af66fc99e Initial load
duke
parents:
diff changeset
343
a61af66fc99e Initial load
duke
parents:
diff changeset
344 // This needs to be visible to the closure function.
a61af66fc99e Initial load
duke
parents:
diff changeset
345 // "obj" is the object to be copied, "m" is a recent value of its mark
a61af66fc99e Initial load
duke
parents:
diff changeset
346 // that must not contain a forwarding pointer (though one might be
a61af66fc99e Initial load
duke
parents:
diff changeset
347 // inserted in "obj"s mark word by a parallel thread).
a61af66fc99e Initial load
duke
parents:
diff changeset
348 inline oop copy_to_survivor_space(ParScanThreadState* par_scan_state,
a61af66fc99e Initial load
duke
parents:
diff changeset
349 oop obj, size_t obj_sz, markOop m) {
a61af66fc99e Initial load
duke
parents:
diff changeset
350 if (_avoid_promotion_undo) {
a61af66fc99e Initial load
duke
parents:
diff changeset
351 return copy_to_survivor_space_avoiding_promotion_undo(par_scan_state,
a61af66fc99e Initial load
duke
parents:
diff changeset
352 obj, obj_sz, m);
a61af66fc99e Initial load
duke
parents:
diff changeset
353 }
a61af66fc99e Initial load
duke
parents:
diff changeset
354
a61af66fc99e Initial load
duke
parents:
diff changeset
355 return copy_to_survivor_space_with_undo(par_scan_state, obj, obj_sz, m);
a61af66fc99e Initial load
duke
parents:
diff changeset
356 }
a61af66fc99e Initial load
duke
parents:
diff changeset
357
a61af66fc99e Initial load
duke
parents:
diff changeset
358 oop copy_to_survivor_space_avoiding_promotion_undo(ParScanThreadState* par_scan_state,
a61af66fc99e Initial load
duke
parents:
diff changeset
359 oop obj, size_t obj_sz, markOop m);
a61af66fc99e Initial load
duke
parents:
diff changeset
360
a61af66fc99e Initial load
duke
parents:
diff changeset
361 oop copy_to_survivor_space_with_undo(ParScanThreadState* par_scan_state,
a61af66fc99e Initial load
duke
parents:
diff changeset
362 oop obj, size_t obj_sz, markOop m);
a61af66fc99e Initial load
duke
parents:
diff changeset
363
a61af66fc99e Initial load
duke
parents:
diff changeset
364 // Push the given (from-space) object on the global overflow list.
a61af66fc99e Initial load
duke
parents:
diff changeset
365 void push_on_overflow_list(oop from_space_obj);
a61af66fc99e Initial load
duke
parents:
diff changeset
366
a61af66fc99e Initial load
duke
parents:
diff changeset
367 // If the global overflow list is non-empty, move some tasks from it
a61af66fc99e Initial load
duke
parents:
diff changeset
368 // onto "work_q" (which must be empty). No more than 1/4 of the
a61af66fc99e Initial load
duke
parents:
diff changeset
369 // max_elems of "work_q" are moved.
a61af66fc99e Initial load
duke
parents:
diff changeset
370 bool take_from_overflow_list(ParScanThreadState* par_scan_state);
a61af66fc99e Initial load
duke
parents:
diff changeset
371
a61af66fc99e Initial load
duke
parents:
diff changeset
372 // The task queues to be used by parallel GC threads.
a61af66fc99e Initial load
duke
parents:
diff changeset
373 ObjToScanQueueSet* task_queues() {
a61af66fc99e Initial load
duke
parents:
diff changeset
374 return _task_queues;
a61af66fc99e Initial load
duke
parents:
diff changeset
375 }
a61af66fc99e Initial load
duke
parents:
diff changeset
376
a61af66fc99e Initial load
duke
parents:
diff changeset
377 PLABStats* plab_stats() {
a61af66fc99e Initial load
duke
parents:
diff changeset
378 return &_plab_stats;
a61af66fc99e Initial load
duke
parents:
diff changeset
379 }
a61af66fc99e Initial load
duke
parents:
diff changeset
380
a61af66fc99e Initial load
duke
parents:
diff changeset
381 size_t desired_plab_sz() {
a61af66fc99e Initial load
duke
parents:
diff changeset
382 return _plab_stats.desired_plab_sz();
a61af66fc99e Initial load
duke
parents:
diff changeset
383 }
a61af66fc99e Initial load
duke
parents:
diff changeset
384
a61af66fc99e Initial load
duke
parents:
diff changeset
385 static oop real_forwardee(oop obj);
a61af66fc99e Initial load
duke
parents:
diff changeset
386
a61af66fc99e Initial load
duke
parents:
diff changeset
387 DEBUG_ONLY(static bool is_legal_forward_ptr(oop p);)
a61af66fc99e Initial load
duke
parents:
diff changeset
388 };