author | ysr |
Sat, 23 Oct 2010 23:03:49 -0700 | |
changeset 6985 | e9364ec299ac |
parent 6762 | f8d1b560700e |
child 7397 | 5b173b4ca846 |
permissions | -rw-r--r-- |
1 | 1 |
/* |
5547
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
977
diff
changeset
|
2 |
* Copyright (c) 2001, 2008, Oracle and/or its affiliates. All rights reserved. |
1 | 3 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
4 |
* |
|
5 |
* This code is free software; you can redistribute it and/or modify it |
|
6 |
* under the terms of the GNU General Public License version 2 only, as |
|
7 |
* published by the Free Software Foundation. |
|
8 |
* |
|
9 |
* This code is distributed in the hope that it will be useful, but WITHOUT |
|
10 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
11 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
12 |
* version 2 for more details (a copy is included in the LICENSE file that |
|
13 |
* accompanied this code). |
|
14 |
* |
|
15 |
* You should have received a copy of the GNU General Public License version |
|
16 |
* 2 along with this work; if not, write to the Free Software Foundation, |
|
17 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
|
18 |
* |
|
5547
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
977
diff
changeset
|
19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
977
diff
changeset
|
20 |
* or visit www.oracle.com if you need additional information or have any |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
977
diff
changeset
|
21 |
* questions. |
1 | 22 |
* |
23 |
*/ |
|
24 |
||
25 |
class EdenSpace; |
|
26 |
class ContiguousSpace; |
|
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
27 |
class ScanClosure; |
1 | 28 |
|
29 |
// DefNewGeneration is a young generation containing eden, from- and |
|
30 |
// to-space. |
|
31 |
||
32 |
class DefNewGeneration: public Generation { |
|
33 |
friend class VMStructs; |
|
34 |
||
35 |
protected: |
|
36 |
Generation* _next_gen; |
|
37 |
int _tenuring_threshold; // Tenuring threshold for next collection. |
|
38 |
ageTable _age_table; |
|
39 |
// Size of object to pretenure in words; command line provides bytes |
|
40 |
size_t _pretenure_size_threshold_words; |
|
41 |
||
42 |
ageTable* age_table() { return &_age_table; } |
|
43 |
// Initialize state to optimistically assume no promotion failure will |
|
44 |
// happen. |
|
45 |
void init_assuming_no_promotion_failure(); |
|
46 |
// True iff a promotion has failed in the current collection. |
|
47 |
bool _promotion_failed; |
|
48 |
bool promotion_failed() { return _promotion_failed; } |
|
49 |
||
50 |
// Handling promotion failure. A young generation collection |
|
51 |
// can fail if a live object cannot be copied out of its |
|
52 |
// location in eden or from-space during the collection. If |
|
53 |
// a collection fails, the young generation is left in a |
|
54 |
// consistent state such that it can be collected by a |
|
55 |
// full collection. |
|
56 |
// Before the collection |
|
57 |
// Objects are in eden or from-space |
|
58 |
// All roots into the young generation point into eden or from-space. |
|
59 |
// |
|
60 |
// After a failed collection |
|
61 |
// Objects may be in eden, from-space, or to-space |
|
62 |
// An object A in eden or from-space may have a copy B |
|
63 |
// in to-space. If B exists, all roots that once pointed |
|
64 |
// to A must now point to B. |
|
65 |
// All objects in the young generation are unmarked. |
|
66 |
// Eden, from-space, and to-space will all be collected by |
|
67 |
// the full collection. |
|
68 |
void handle_promotion_failure(oop); |
|
69 |
||
70 |
// In the absence of promotion failure, we wouldn't look at "from-space" |
|
71 |
// objects after a young-gen collection. When promotion fails, however, |
|
72 |
// the subsequent full collection will look at from-space objects: |
|
73 |
// therefore we must remove their forwarding pointers. |
|
74 |
void remove_forwarding_pointers(); |
|
75 |
||
76 |
// Preserve the mark of "obj", if necessary, in preparation for its mark |
|
77 |
// word being overwritten with a self-forwarding-pointer. |
|
78 |
void preserve_mark_if_necessary(oop obj, markOop m); |
|
79 |
||
6762
f8d1b560700e
6423256: GC stacks should use a better data structure
jcoomes
parents:
5547
diff
changeset
|
80 |
// Together, these keep <object with a preserved mark, mark value> pairs. |
f8d1b560700e
6423256: GC stacks should use a better data structure
jcoomes
parents:
5547
diff
changeset
|
81 |
// They should always contain the same number of elements. |
f8d1b560700e
6423256: GC stacks should use a better data structure
jcoomes
parents:
5547
diff
changeset
|
82 |
Stack<oop> _objs_with_preserved_marks; |
f8d1b560700e
6423256: GC stacks should use a better data structure
jcoomes
parents:
5547
diff
changeset
|
83 |
Stack<markOop> _preserved_marks_of_objs; |
1 | 84 |
|
85 |
// Promotion failure handling |
|
86 |
OopClosure *_promo_failure_scan_stack_closure; |
|
87 |
void set_promo_failure_scan_stack_closure(OopClosure *scan_stack_closure) { |
|
88 |
_promo_failure_scan_stack_closure = scan_stack_closure; |
|
89 |
} |
|
90 |
||
6762
f8d1b560700e
6423256: GC stacks should use a better data structure
jcoomes
parents:
5547
diff
changeset
|
91 |
Stack<oop> _promo_failure_scan_stack; |
1 | 92 |
void drain_promo_failure_scan_stack(void); |
93 |
bool _promo_failure_drain_in_progress; |
|
94 |
||
95 |
// Performance Counters |
|
96 |
GenerationCounters* _gen_counters; |
|
97 |
CSpaceCounters* _eden_counters; |
|
98 |
CSpaceCounters* _from_counters; |
|
99 |
CSpaceCounters* _to_counters; |
|
100 |
||
101 |
// sizing information |
|
102 |
size_t _max_eden_size; |
|
103 |
size_t _max_survivor_size; |
|
104 |
||
105 |
// Allocation support |
|
106 |
bool _should_allocate_from_space; |
|
107 |
bool should_allocate_from_space() const { |
|
108 |
return _should_allocate_from_space; |
|
109 |
} |
|
110 |
void clear_should_allocate_from_space() { |
|
111 |
_should_allocate_from_space = false; |
|
112 |
} |
|
113 |
void set_should_allocate_from_space() { |
|
114 |
_should_allocate_from_space = true; |
|
115 |
} |
|
116 |
||
117 |
protected: |
|
118 |
// Spaces |
|
119 |
EdenSpace* _eden_space; |
|
120 |
ContiguousSpace* _from_space; |
|
121 |
ContiguousSpace* _to_space; |
|
122 |
||
123 |
enum SomeProtectedConstants { |
|
124 |
// Generations are GenGrain-aligned and have size that are multiples of |
|
125 |
// GenGrain. |
|
126 |
MinFreeScratchWords = 100 |
|
127 |
}; |
|
128 |
||
129 |
// Return the size of a survivor space if this generation were of size |
|
130 |
// gen_size. |
|
131 |
size_t compute_survivor_size(size_t gen_size, size_t alignment) const { |
|
132 |
size_t n = gen_size / (SurvivorRatio + 2); |
|
133 |
return n > alignment ? align_size_down(n, alignment) : alignment; |
|
134 |
} |
|
135 |
||
136 |
public: // was "protected" but caused compile error on win32 |
|
137 |
class IsAliveClosure: public BoolObjectClosure { |
|
138 |
Generation* _g; |
|
139 |
public: |
|
140 |
IsAliveClosure(Generation* g); |
|
141 |
void do_object(oop p); |
|
142 |
bool do_object_b(oop p); |
|
143 |
}; |
|
144 |
||
145 |
class KeepAliveClosure: public OopClosure { |
|
146 |
protected: |
|
147 |
ScanWeakRefClosure* _cl; |
|
148 |
CardTableRS* _rs; |
|
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
149 |
template <class T> void do_oop_work(T* p); |
1 | 150 |
public: |
151 |
KeepAliveClosure(ScanWeakRefClosure* cl); |
|
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
152 |
virtual void do_oop(oop* p); |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
153 |
virtual void do_oop(narrowOop* p); |
1 | 154 |
}; |
155 |
||
156 |
class FastKeepAliveClosure: public KeepAliveClosure { |
|
157 |
protected: |
|
158 |
HeapWord* _boundary; |
|
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
159 |
template <class T> void do_oop_work(T* p); |
1 | 160 |
public: |
161 |
FastKeepAliveClosure(DefNewGeneration* g, ScanWeakRefClosure* cl); |
|
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
162 |
virtual void do_oop(oop* p); |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
163 |
virtual void do_oop(narrowOop* p); |
1 | 164 |
}; |
165 |
||
166 |
class EvacuateFollowersClosure: public VoidClosure { |
|
167 |
GenCollectedHeap* _gch; |
|
168 |
int _level; |
|
169 |
ScanClosure* _scan_cur_or_nonheap; |
|
170 |
ScanClosure* _scan_older; |
|
171 |
public: |
|
172 |
EvacuateFollowersClosure(GenCollectedHeap* gch, int level, |
|
173 |
ScanClosure* cur, ScanClosure* older); |
|
174 |
void do_void(); |
|
175 |
}; |
|
176 |
||
177 |
class FastEvacuateFollowersClosure: public VoidClosure { |
|
178 |
GenCollectedHeap* _gch; |
|
179 |
int _level; |
|
180 |
DefNewGeneration* _gen; |
|
181 |
FastScanClosure* _scan_cur_or_nonheap; |
|
182 |
FastScanClosure* _scan_older; |
|
183 |
public: |
|
184 |
FastEvacuateFollowersClosure(GenCollectedHeap* gch, int level, |
|
185 |
DefNewGeneration* gen, |
|
186 |
FastScanClosure* cur, |
|
187 |
FastScanClosure* older); |
|
188 |
void do_void(); |
|
189 |
}; |
|
190 |
||
191 |
public: |
|
192 |
DefNewGeneration(ReservedSpace rs, size_t initial_byte_size, int level, |
|
193 |
const char* policy="Copy"); |
|
194 |
||
195 |
virtual Generation::Name kind() { return Generation::DefNew; } |
|
196 |
||
197 |
// Accessing spaces |
|
198 |
EdenSpace* eden() const { return _eden_space; } |
|
199 |
ContiguousSpace* from() const { return _from_space; } |
|
200 |
ContiguousSpace* to() const { return _to_space; } |
|
201 |
||
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
202 |
virtual CompactibleSpace* first_compaction_space() const; |
1 | 203 |
|
204 |
// Space enquiries |
|
205 |
size_t capacity() const; |
|
206 |
size_t used() const; |
|
207 |
size_t free() const; |
|
208 |
size_t max_capacity() const; |
|
209 |
size_t capacity_before_gc() const; |
|
210 |
size_t unsafe_max_alloc_nogc() const; |
|
211 |
size_t contiguous_available() const; |
|
212 |
||
213 |
size_t max_eden_size() const { return _max_eden_size; } |
|
214 |
size_t max_survivor_size() const { return _max_survivor_size; } |
|
215 |
||
216 |
bool supports_inline_contig_alloc() const { return true; } |
|
217 |
HeapWord** top_addr() const; |
|
218 |
HeapWord** end_addr() const; |
|
219 |
||
220 |
// Thread-local allocation buffers |
|
221 |
bool supports_tlab_allocation() const { return true; } |
|
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
222 |
size_t tlab_capacity() const; |
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
223 |
size_t unsafe_max_tlab_alloc() const; |
1 | 224 |
|
225 |
// Grow the generation by the specified number of bytes. |
|
226 |
// The size of bytes is assumed to be properly aligned. |
|
227 |
// Return true if the expansion was successful. |
|
228 |
bool expand(size_t bytes); |
|
229 |
||
230 |
// DefNewGeneration cannot currently expand except at |
|
231 |
// a GC. |
|
232 |
virtual bool is_maximal_no_gc() const { return true; } |
|
233 |
||
234 |
// Iteration |
|
235 |
void object_iterate(ObjectClosure* blk); |
|
236 |
void object_iterate_since_last_GC(ObjectClosure* cl); |
|
237 |
||
238 |
void younger_refs_iterate(OopsInGenClosure* cl); |
|
239 |
||
240 |
void space_iterate(SpaceClosure* blk, bool usedOnly = false); |
|
241 |
||
242 |
// Allocation support |
|
243 |
virtual bool should_allocate(size_t word_size, bool is_tlab) { |
|
244 |
assert(UseTLAB || !is_tlab, "Should not allocate tlab"); |
|
245 |
||
246 |
size_t overflow_limit = (size_t)1 << (BitsPerSize_t - LogHeapWordSize); |
|
247 |
||
248 |
const bool non_zero = word_size > 0; |
|
249 |
const bool overflows = word_size >= overflow_limit; |
|
250 |
const bool check_too_big = _pretenure_size_threshold_words > 0; |
|
251 |
const bool not_too_big = word_size < _pretenure_size_threshold_words; |
|
252 |
const bool size_ok = is_tlab || !check_too_big || not_too_big; |
|
253 |
||
254 |
bool result = !overflows && |
|
255 |
non_zero && |
|
256 |
size_ok; |
|
257 |
||
258 |
return result; |
|
259 |
} |
|
260 |
||
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
261 |
HeapWord* allocate(size_t word_size, bool is_tlab); |
1 | 262 |
HeapWord* allocate_from_space(size_t word_size); |
263 |
||
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
264 |
HeapWord* par_allocate(size_t word_size, bool is_tlab); |
1 | 265 |
|
266 |
// Prologue & Epilogue |
|
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
267 |
virtual void gc_prologue(bool full); |
1 | 268 |
virtual void gc_epilogue(bool full); |
269 |
||
971
f0b20be4165d
6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents:
360
diff
changeset
|
270 |
// Save the tops for eden, from, and to |
f0b20be4165d
6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents:
360
diff
changeset
|
271 |
virtual void record_spaces_top(); |
f0b20be4165d
6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents:
360
diff
changeset
|
272 |
|
1 | 273 |
// Doesn't require additional work during GC prologue and epilogue |
274 |
virtual bool performs_in_place_marking() const { return false; } |
|
275 |
||
276 |
// Accessing marks |
|
277 |
void save_marks(); |
|
278 |
void reset_saved_marks(); |
|
279 |
bool no_allocs_since_save_marks(); |
|
280 |
||
281 |
// Need to declare the full complement of closures, whether we'll |
|
282 |
// override them or not, or get message from the compiler: |
|
283 |
// oop_since_save_marks_iterate_nv hides virtual function... |
|
284 |
#define DefNew_SINCE_SAVE_MARKS_DECL(OopClosureType, nv_suffix) \ |
|
285 |
void oop_since_save_marks_iterate##nv_suffix(OopClosureType* cl); |
|
286 |
||
287 |
ALL_SINCE_SAVE_MARKS_CLOSURES(DefNew_SINCE_SAVE_MARKS_DECL) |
|
288 |
||
289 |
#undef DefNew_SINCE_SAVE_MARKS_DECL |
|
290 |
||
291 |
// For non-youngest collection, the DefNewGeneration can contribute |
|
292 |
// "to-space". |
|
971
f0b20be4165d
6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents:
360
diff
changeset
|
293 |
virtual void contribute_scratch(ScratchBlock*& list, Generation* requestor, |
1 | 294 |
size_t max_alloc_words); |
295 |
||
971
f0b20be4165d
6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents:
360
diff
changeset
|
296 |
// Reset for contribution of "to-space". |
f0b20be4165d
6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents:
360
diff
changeset
|
297 |
virtual void reset_scratch(); |
f0b20be4165d
6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents:
360
diff
changeset
|
298 |
|
1 | 299 |
// GC support |
300 |
virtual void compute_new_size(); |
|
6985
e9364ec299ac
6896603: CMS/GCH: collection_attempt_is_safe() ergo should use more recent data
ysr
parents:
6762
diff
changeset
|
301 |
|
e9364ec299ac
6896603: CMS/GCH: collection_attempt_is_safe() ergo should use more recent data
ysr
parents:
6762
diff
changeset
|
302 |
// Returns true if the collection is likely to be safely |
e9364ec299ac
6896603: CMS/GCH: collection_attempt_is_safe() ergo should use more recent data
ysr
parents:
6762
diff
changeset
|
303 |
// completed. Even if this method returns true, a collection |
e9364ec299ac
6896603: CMS/GCH: collection_attempt_is_safe() ergo should use more recent data
ysr
parents:
6762
diff
changeset
|
304 |
// may not be guaranteed to succeed, and the system should be |
e9364ec299ac
6896603: CMS/GCH: collection_attempt_is_safe() ergo should use more recent data
ysr
parents:
6762
diff
changeset
|
305 |
// able to safely unwind and recover from that failure, albeit |
e9364ec299ac
6896603: CMS/GCH: collection_attempt_is_safe() ergo should use more recent data
ysr
parents:
6762
diff
changeset
|
306 |
// at some additional cost. Override superclass's implementation. |
e9364ec299ac
6896603: CMS/GCH: collection_attempt_is_safe() ergo should use more recent data
ysr
parents:
6762
diff
changeset
|
307 |
virtual bool collection_attempt_is_safe(); |
e9364ec299ac
6896603: CMS/GCH: collection_attempt_is_safe() ergo should use more recent data
ysr
parents:
6762
diff
changeset
|
308 |
|
1 | 309 |
virtual void collect(bool full, |
310 |
bool clear_all_soft_refs, |
|
311 |
size_t size, |
|
312 |
bool is_tlab); |
|
313 |
HeapWord* expand_and_allocate(size_t size, |
|
314 |
bool is_tlab, |
|
315 |
bool parallel = false); |
|
316 |
||
360
21d113ecbf6a
6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents:
1
diff
changeset
|
317 |
oop copy_to_survivor_space(oop old); |
1 | 318 |
int tenuring_threshold() { return _tenuring_threshold; } |
319 |
||
320 |
// Performance Counter support |
|
321 |
void update_counters(); |
|
322 |
||
323 |
// Printing |
|
324 |
virtual const char* name() const; |
|
325 |
virtual const char* short_name() const { return "DefNew"; } |
|
326 |
||
327 |
bool must_be_youngest() const { return true; } |
|
328 |
bool must_be_oldest() const { return false; } |
|
329 |
||
330 |
// PrintHeapAtGC support. |
|
331 |
void print_on(outputStream* st) const; |
|
332 |
||
333 |
void verify(bool allow_dirty); |
|
334 |
||
6762
f8d1b560700e
6423256: GC stacks should use a better data structure
jcoomes
parents:
5547
diff
changeset
|
335 |
bool promo_failure_scan_is_complete() const { |
f8d1b560700e
6423256: GC stacks should use a better data structure
jcoomes
parents:
5547
diff
changeset
|
336 |
return _promo_failure_scan_stack.is_empty(); |
f8d1b560700e
6423256: GC stacks should use a better data structure
jcoomes
parents:
5547
diff
changeset
|
337 |
} |
f8d1b560700e
6423256: GC stacks should use a better data structure
jcoomes
parents:
5547
diff
changeset
|
338 |
|
1 | 339 |
protected: |
971
f0b20be4165d
6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents:
360
diff
changeset
|
340 |
// If clear_space is true, clear the survivor spaces. Eden is |
f0b20be4165d
6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents:
360
diff
changeset
|
341 |
// cleared if the minimum size of eden is 0. If mangle_space |
f0b20be4165d
6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents:
360
diff
changeset
|
342 |
// is true, also mangle the space in debug mode. |
f0b20be4165d
6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents:
360
diff
changeset
|
343 |
void compute_space_boundaries(uintx minimum_eden_size, |
f0b20be4165d
6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents:
360
diff
changeset
|
344 |
bool clear_space, |
f0b20be4165d
6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents:
360
diff
changeset
|
345 |
bool mangle_space); |
1 | 346 |
// Scavenge support |
347 |
void swap_spaces(); |
|
348 |
}; |