annotate src/share/vm/memory/defNewGeneration.hpp @ 1091:6aa7255741f3

6906727: UseCompressedOops: some card-marking fixes related to object arrays Summary: Introduced a new write_ref_array(HeapWords* start, size_t count) method that does the requisite MemRegion range calculation so (some of the) clients of the erstwhile write_ref_array(MemRegion mr) do not need to worry. This removed all external uses of array_size(), which was also simplified and made private. Asserts were added to catch other possible issues. Further, less essential, fixes stemming from this investigation are deferred to CR 6904516 (to follow shortly in hs17). Reviewed-by: kvn, coleenp, jmasa
author ysr
date Thu, 03 Dec 2009 15:01:57 -0800
parents 850fdf70db2b
children c18cbe5936b8
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
196
d1605aabd0a1 6719955: Update copyright year
xdono
parents: 113
diff changeset
2 * Copyright 2001-2008 Sun Microsystems, Inc. All Rights Reserved.
0
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 EdenSpace;
a61af66fc99e Initial load
duke
parents:
diff changeset
26 class ContiguousSpace;
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
27 class ScanClosure;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
28
a61af66fc99e Initial load
duke
parents:
diff changeset
29 // DefNewGeneration is a young generation containing eden, from- and
a61af66fc99e Initial load
duke
parents:
diff changeset
30 // to-space.
a61af66fc99e Initial load
duke
parents:
diff changeset
31
a61af66fc99e Initial load
duke
parents:
diff changeset
32 class DefNewGeneration: public Generation {
a61af66fc99e Initial load
duke
parents:
diff changeset
33 friend class VMStructs;
a61af66fc99e Initial load
duke
parents:
diff changeset
34
a61af66fc99e Initial load
duke
parents:
diff changeset
35 protected:
a61af66fc99e Initial load
duke
parents:
diff changeset
36 Generation* _next_gen;
a61af66fc99e Initial load
duke
parents:
diff changeset
37 int _tenuring_threshold; // Tenuring threshold for next collection.
a61af66fc99e Initial load
duke
parents:
diff changeset
38 ageTable _age_table;
a61af66fc99e Initial load
duke
parents:
diff changeset
39 // Size of object to pretenure in words; command line provides bytes
a61af66fc99e Initial load
duke
parents:
diff changeset
40 size_t _pretenure_size_threshold_words;
a61af66fc99e Initial load
duke
parents:
diff changeset
41
a61af66fc99e Initial load
duke
parents:
diff changeset
42 ageTable* age_table() { return &_age_table; }
a61af66fc99e Initial load
duke
parents:
diff changeset
43 // Initialize state to optimistically assume no promotion failure will
a61af66fc99e Initial load
duke
parents:
diff changeset
44 // happen.
a61af66fc99e Initial load
duke
parents:
diff changeset
45 void init_assuming_no_promotion_failure();
a61af66fc99e Initial load
duke
parents:
diff changeset
46 // True iff a promotion has failed in the current collection.
a61af66fc99e Initial load
duke
parents:
diff changeset
47 bool _promotion_failed;
a61af66fc99e Initial load
duke
parents:
diff changeset
48 bool promotion_failed() { return _promotion_failed; }
a61af66fc99e Initial load
duke
parents:
diff changeset
49
a61af66fc99e Initial load
duke
parents:
diff changeset
50 // Handling promotion failure. A young generation collection
a61af66fc99e Initial load
duke
parents:
diff changeset
51 // can fail if a live object cannot be copied out of its
a61af66fc99e Initial load
duke
parents:
diff changeset
52 // location in eden or from-space during the collection. If
a61af66fc99e Initial load
duke
parents:
diff changeset
53 // a collection fails, the young generation is left in a
a61af66fc99e Initial load
duke
parents:
diff changeset
54 // consistent state such that it can be collected by a
a61af66fc99e Initial load
duke
parents:
diff changeset
55 // full collection.
a61af66fc99e Initial load
duke
parents:
diff changeset
56 // Before the collection
a61af66fc99e Initial load
duke
parents:
diff changeset
57 // Objects are in eden or from-space
a61af66fc99e Initial load
duke
parents:
diff changeset
58 // All roots into the young generation point into eden or from-space.
a61af66fc99e Initial load
duke
parents:
diff changeset
59 //
a61af66fc99e Initial load
duke
parents:
diff changeset
60 // After a failed collection
a61af66fc99e Initial load
duke
parents:
diff changeset
61 // Objects may be in eden, from-space, or to-space
a61af66fc99e Initial load
duke
parents:
diff changeset
62 // An object A in eden or from-space may have a copy B
a61af66fc99e Initial load
duke
parents:
diff changeset
63 // in to-space. If B exists, all roots that once pointed
a61af66fc99e Initial load
duke
parents:
diff changeset
64 // to A must now point to B.
a61af66fc99e Initial load
duke
parents:
diff changeset
65 // All objects in the young generation are unmarked.
a61af66fc99e Initial load
duke
parents:
diff changeset
66 // Eden, from-space, and to-space will all be collected by
a61af66fc99e Initial load
duke
parents:
diff changeset
67 // the full collection.
a61af66fc99e Initial load
duke
parents:
diff changeset
68 void handle_promotion_failure(oop);
a61af66fc99e Initial load
duke
parents:
diff changeset
69
a61af66fc99e Initial load
duke
parents:
diff changeset
70 // In the absence of promotion failure, we wouldn't look at "from-space"
a61af66fc99e Initial load
duke
parents:
diff changeset
71 // objects after a young-gen collection. When promotion fails, however,
a61af66fc99e Initial load
duke
parents:
diff changeset
72 // the subsequent full collection will look at from-space objects:
a61af66fc99e Initial load
duke
parents:
diff changeset
73 // therefore we must remove their forwarding pointers.
a61af66fc99e Initial load
duke
parents:
diff changeset
74 void remove_forwarding_pointers();
a61af66fc99e Initial load
duke
parents:
diff changeset
75
a61af66fc99e Initial load
duke
parents:
diff changeset
76 // Preserve the mark of "obj", if necessary, in preparation for its mark
a61af66fc99e Initial load
duke
parents:
diff changeset
77 // word being overwritten with a self-forwarding-pointer.
a61af66fc99e Initial load
duke
parents:
diff changeset
78 void preserve_mark_if_necessary(oop obj, markOop m);
a61af66fc99e Initial load
duke
parents:
diff changeset
79
a61af66fc99e Initial load
duke
parents:
diff changeset
80 // When one is non-null, so is the other. Together, they each pair is
a61af66fc99e Initial load
duke
parents:
diff changeset
81 // an object with a preserved mark, and its mark value.
a61af66fc99e Initial load
duke
parents:
diff changeset
82 GrowableArray<oop>* _objs_with_preserved_marks;
a61af66fc99e Initial load
duke
parents:
diff changeset
83 GrowableArray<markOop>* _preserved_marks_of_objs;
a61af66fc99e Initial load
duke
parents:
diff changeset
84
a61af66fc99e Initial load
duke
parents:
diff changeset
85 // Returns true if the collection can be safely attempted.
a61af66fc99e Initial load
duke
parents:
diff changeset
86 // If this method returns false, a collection is not
a61af66fc99e Initial load
duke
parents:
diff changeset
87 // guaranteed to fail but the system may not be able
a61af66fc99e Initial load
duke
parents:
diff changeset
88 // to recover from the failure.
a61af66fc99e Initial load
duke
parents:
diff changeset
89 bool collection_attempt_is_safe();
a61af66fc99e Initial load
duke
parents:
diff changeset
90
a61af66fc99e Initial load
duke
parents:
diff changeset
91 // Promotion failure handling
a61af66fc99e Initial load
duke
parents:
diff changeset
92 OopClosure *_promo_failure_scan_stack_closure;
a61af66fc99e Initial load
duke
parents:
diff changeset
93 void set_promo_failure_scan_stack_closure(OopClosure *scan_stack_closure) {
a61af66fc99e Initial load
duke
parents:
diff changeset
94 _promo_failure_scan_stack_closure = scan_stack_closure;
a61af66fc99e Initial load
duke
parents:
diff changeset
95 }
a61af66fc99e Initial load
duke
parents:
diff changeset
96
a61af66fc99e Initial load
duke
parents:
diff changeset
97 GrowableArray<oop>* _promo_failure_scan_stack;
a61af66fc99e Initial load
duke
parents:
diff changeset
98 GrowableArray<oop>* promo_failure_scan_stack() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
99 return _promo_failure_scan_stack;
a61af66fc99e Initial load
duke
parents:
diff changeset
100 }
a61af66fc99e Initial load
duke
parents:
diff changeset
101 void push_on_promo_failure_scan_stack(oop);
a61af66fc99e Initial load
duke
parents:
diff changeset
102 void drain_promo_failure_scan_stack(void);
a61af66fc99e Initial load
duke
parents:
diff changeset
103 bool _promo_failure_drain_in_progress;
a61af66fc99e Initial load
duke
parents:
diff changeset
104
a61af66fc99e Initial load
duke
parents:
diff changeset
105 // Performance Counters
a61af66fc99e Initial load
duke
parents:
diff changeset
106 GenerationCounters* _gen_counters;
a61af66fc99e Initial load
duke
parents:
diff changeset
107 CSpaceCounters* _eden_counters;
a61af66fc99e Initial load
duke
parents:
diff changeset
108 CSpaceCounters* _from_counters;
a61af66fc99e Initial load
duke
parents:
diff changeset
109 CSpaceCounters* _to_counters;
a61af66fc99e Initial load
duke
parents:
diff changeset
110
a61af66fc99e Initial load
duke
parents:
diff changeset
111 // sizing information
a61af66fc99e Initial load
duke
parents:
diff changeset
112 size_t _max_eden_size;
a61af66fc99e Initial load
duke
parents:
diff changeset
113 size_t _max_survivor_size;
a61af66fc99e Initial load
duke
parents:
diff changeset
114
a61af66fc99e Initial load
duke
parents:
diff changeset
115 // Allocation support
a61af66fc99e Initial load
duke
parents:
diff changeset
116 bool _should_allocate_from_space;
a61af66fc99e Initial load
duke
parents:
diff changeset
117 bool should_allocate_from_space() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
118 return _should_allocate_from_space;
a61af66fc99e Initial load
duke
parents:
diff changeset
119 }
a61af66fc99e Initial load
duke
parents:
diff changeset
120 void clear_should_allocate_from_space() {
a61af66fc99e Initial load
duke
parents:
diff changeset
121 _should_allocate_from_space = false;
a61af66fc99e Initial load
duke
parents:
diff changeset
122 }
a61af66fc99e Initial load
duke
parents:
diff changeset
123 void set_should_allocate_from_space() {
a61af66fc99e Initial load
duke
parents:
diff changeset
124 _should_allocate_from_space = true;
a61af66fc99e Initial load
duke
parents:
diff changeset
125 }
a61af66fc99e Initial load
duke
parents:
diff changeset
126
a61af66fc99e Initial load
duke
parents:
diff changeset
127 protected:
a61af66fc99e Initial load
duke
parents:
diff changeset
128 // Spaces
a61af66fc99e Initial load
duke
parents:
diff changeset
129 EdenSpace* _eden_space;
a61af66fc99e Initial load
duke
parents:
diff changeset
130 ContiguousSpace* _from_space;
a61af66fc99e Initial load
duke
parents:
diff changeset
131 ContiguousSpace* _to_space;
a61af66fc99e Initial load
duke
parents:
diff changeset
132
a61af66fc99e Initial load
duke
parents:
diff changeset
133 enum SomeProtectedConstants {
a61af66fc99e Initial load
duke
parents:
diff changeset
134 // Generations are GenGrain-aligned and have size that are multiples of
a61af66fc99e Initial load
duke
parents:
diff changeset
135 // GenGrain.
a61af66fc99e Initial load
duke
parents:
diff changeset
136 MinFreeScratchWords = 100
a61af66fc99e Initial load
duke
parents:
diff changeset
137 };
a61af66fc99e Initial load
duke
parents:
diff changeset
138
a61af66fc99e Initial load
duke
parents:
diff changeset
139 // Return the size of a survivor space if this generation were of size
a61af66fc99e Initial load
duke
parents:
diff changeset
140 // gen_size.
a61af66fc99e Initial load
duke
parents:
diff changeset
141 size_t compute_survivor_size(size_t gen_size, size_t alignment) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
142 size_t n = gen_size / (SurvivorRatio + 2);
a61af66fc99e Initial load
duke
parents:
diff changeset
143 return n > alignment ? align_size_down(n, alignment) : alignment;
a61af66fc99e Initial load
duke
parents:
diff changeset
144 }
a61af66fc99e Initial load
duke
parents:
diff changeset
145
a61af66fc99e Initial load
duke
parents:
diff changeset
146 public: // was "protected" but caused compile error on win32
a61af66fc99e Initial load
duke
parents:
diff changeset
147 class IsAliveClosure: public BoolObjectClosure {
a61af66fc99e Initial load
duke
parents:
diff changeset
148 Generation* _g;
a61af66fc99e Initial load
duke
parents:
diff changeset
149 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
150 IsAliveClosure(Generation* g);
a61af66fc99e Initial load
duke
parents:
diff changeset
151 void do_object(oop p);
a61af66fc99e Initial load
duke
parents:
diff changeset
152 bool do_object_b(oop p);
a61af66fc99e Initial load
duke
parents:
diff changeset
153 };
a61af66fc99e Initial load
duke
parents:
diff changeset
154
a61af66fc99e Initial load
duke
parents:
diff changeset
155 class KeepAliveClosure: public OopClosure {
a61af66fc99e Initial load
duke
parents:
diff changeset
156 protected:
a61af66fc99e Initial load
duke
parents:
diff changeset
157 ScanWeakRefClosure* _cl;
a61af66fc99e Initial load
duke
parents:
diff changeset
158 CardTableRS* _rs;
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
159 template <class T> void do_oop_work(T* p);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
160 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
161 KeepAliveClosure(ScanWeakRefClosure* cl);
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
162 virtual void do_oop(oop* p);
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
163 virtual void do_oop(narrowOop* p);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
164 };
a61af66fc99e Initial load
duke
parents:
diff changeset
165
a61af66fc99e Initial load
duke
parents:
diff changeset
166 class FastKeepAliveClosure: public KeepAliveClosure {
a61af66fc99e Initial load
duke
parents:
diff changeset
167 protected:
a61af66fc99e Initial load
duke
parents:
diff changeset
168 HeapWord* _boundary;
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
169 template <class T> void do_oop_work(T* p);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
170 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
171 FastKeepAliveClosure(DefNewGeneration* g, ScanWeakRefClosure* cl);
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
172 virtual void do_oop(oop* p);
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
173 virtual void do_oop(narrowOop* p);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
174 };
a61af66fc99e Initial load
duke
parents:
diff changeset
175
a61af66fc99e Initial load
duke
parents:
diff changeset
176 class EvacuateFollowersClosure: public VoidClosure {
a61af66fc99e Initial load
duke
parents:
diff changeset
177 GenCollectedHeap* _gch;
a61af66fc99e Initial load
duke
parents:
diff changeset
178 int _level;
a61af66fc99e Initial load
duke
parents:
diff changeset
179 ScanClosure* _scan_cur_or_nonheap;
a61af66fc99e Initial load
duke
parents:
diff changeset
180 ScanClosure* _scan_older;
a61af66fc99e Initial load
duke
parents:
diff changeset
181 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
182 EvacuateFollowersClosure(GenCollectedHeap* gch, int level,
a61af66fc99e Initial load
duke
parents:
diff changeset
183 ScanClosure* cur, ScanClosure* older);
a61af66fc99e Initial load
duke
parents:
diff changeset
184 void do_void();
a61af66fc99e Initial load
duke
parents:
diff changeset
185 };
a61af66fc99e Initial load
duke
parents:
diff changeset
186
a61af66fc99e Initial load
duke
parents:
diff changeset
187 class FastEvacuateFollowersClosure;
a61af66fc99e Initial load
duke
parents:
diff changeset
188 friend class FastEvacuateFollowersClosure;
a61af66fc99e Initial load
duke
parents:
diff changeset
189 class FastEvacuateFollowersClosure: public VoidClosure {
a61af66fc99e Initial load
duke
parents:
diff changeset
190 GenCollectedHeap* _gch;
a61af66fc99e Initial load
duke
parents:
diff changeset
191 int _level;
a61af66fc99e Initial load
duke
parents:
diff changeset
192 DefNewGeneration* _gen;
a61af66fc99e Initial load
duke
parents:
diff changeset
193 FastScanClosure* _scan_cur_or_nonheap;
a61af66fc99e Initial load
duke
parents:
diff changeset
194 FastScanClosure* _scan_older;
a61af66fc99e Initial load
duke
parents:
diff changeset
195 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
196 FastEvacuateFollowersClosure(GenCollectedHeap* gch, int level,
a61af66fc99e Initial load
duke
parents:
diff changeset
197 DefNewGeneration* gen,
a61af66fc99e Initial load
duke
parents:
diff changeset
198 FastScanClosure* cur,
a61af66fc99e Initial load
duke
parents:
diff changeset
199 FastScanClosure* older);
a61af66fc99e Initial load
duke
parents:
diff changeset
200 void do_void();
a61af66fc99e Initial load
duke
parents:
diff changeset
201 };
a61af66fc99e Initial load
duke
parents:
diff changeset
202
a61af66fc99e Initial load
duke
parents:
diff changeset
203 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
204 DefNewGeneration(ReservedSpace rs, size_t initial_byte_size, int level,
a61af66fc99e Initial load
duke
parents:
diff changeset
205 const char* policy="Copy");
a61af66fc99e Initial load
duke
parents:
diff changeset
206
a61af66fc99e Initial load
duke
parents:
diff changeset
207 virtual Generation::Name kind() { return Generation::DefNew; }
a61af66fc99e Initial load
duke
parents:
diff changeset
208
a61af66fc99e Initial load
duke
parents:
diff changeset
209 // Accessing spaces
a61af66fc99e Initial load
duke
parents:
diff changeset
210 EdenSpace* eden() const { return _eden_space; }
a61af66fc99e Initial load
duke
parents:
diff changeset
211 ContiguousSpace* from() const { return _from_space; }
a61af66fc99e Initial load
duke
parents:
diff changeset
212 ContiguousSpace* to() const { return _to_space; }
a61af66fc99e Initial load
duke
parents:
diff changeset
213
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
214 virtual CompactibleSpace* first_compaction_space() const;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
215
a61af66fc99e Initial load
duke
parents:
diff changeset
216 // Space enquiries
a61af66fc99e Initial load
duke
parents:
diff changeset
217 size_t capacity() const;
a61af66fc99e Initial load
duke
parents:
diff changeset
218 size_t used() const;
a61af66fc99e Initial load
duke
parents:
diff changeset
219 size_t free() const;
a61af66fc99e Initial load
duke
parents:
diff changeset
220 size_t max_capacity() const;
a61af66fc99e Initial load
duke
parents:
diff changeset
221 size_t capacity_before_gc() const;
a61af66fc99e Initial load
duke
parents:
diff changeset
222 size_t unsafe_max_alloc_nogc() const;
a61af66fc99e Initial load
duke
parents:
diff changeset
223 size_t contiguous_available() const;
a61af66fc99e Initial load
duke
parents:
diff changeset
224
a61af66fc99e Initial load
duke
parents:
diff changeset
225 size_t max_eden_size() const { return _max_eden_size; }
a61af66fc99e Initial load
duke
parents:
diff changeset
226 size_t max_survivor_size() const { return _max_survivor_size; }
a61af66fc99e Initial load
duke
parents:
diff changeset
227
a61af66fc99e Initial load
duke
parents:
diff changeset
228 bool supports_inline_contig_alloc() const { return true; }
a61af66fc99e Initial load
duke
parents:
diff changeset
229 HeapWord** top_addr() const;
a61af66fc99e Initial load
duke
parents:
diff changeset
230 HeapWord** end_addr() const;
a61af66fc99e Initial load
duke
parents:
diff changeset
231
a61af66fc99e Initial load
duke
parents:
diff changeset
232 // Thread-local allocation buffers
a61af66fc99e Initial load
duke
parents:
diff changeset
233 bool supports_tlab_allocation() const { return true; }
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
234 size_t tlab_capacity() const;
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
235 size_t unsafe_max_tlab_alloc() const;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
236
a61af66fc99e Initial load
duke
parents:
diff changeset
237 // Grow the generation by the specified number of bytes.
a61af66fc99e Initial load
duke
parents:
diff changeset
238 // The size of bytes is assumed to be properly aligned.
a61af66fc99e Initial load
duke
parents:
diff changeset
239 // Return true if the expansion was successful.
a61af66fc99e Initial load
duke
parents:
diff changeset
240 bool expand(size_t bytes);
a61af66fc99e Initial load
duke
parents:
diff changeset
241
a61af66fc99e Initial load
duke
parents:
diff changeset
242 // DefNewGeneration cannot currently expand except at
a61af66fc99e Initial load
duke
parents:
diff changeset
243 // a GC.
a61af66fc99e Initial load
duke
parents:
diff changeset
244 virtual bool is_maximal_no_gc() const { return true; }
a61af66fc99e Initial load
duke
parents:
diff changeset
245
a61af66fc99e Initial load
duke
parents:
diff changeset
246 // Iteration
a61af66fc99e Initial load
duke
parents:
diff changeset
247 void object_iterate(ObjectClosure* blk);
a61af66fc99e Initial load
duke
parents:
diff changeset
248 void object_iterate_since_last_GC(ObjectClosure* cl);
a61af66fc99e Initial load
duke
parents:
diff changeset
249
a61af66fc99e Initial load
duke
parents:
diff changeset
250 void younger_refs_iterate(OopsInGenClosure* cl);
a61af66fc99e Initial load
duke
parents:
diff changeset
251
a61af66fc99e Initial load
duke
parents:
diff changeset
252 void space_iterate(SpaceClosure* blk, bool usedOnly = false);
a61af66fc99e Initial load
duke
parents:
diff changeset
253
a61af66fc99e Initial load
duke
parents:
diff changeset
254 // Allocation support
a61af66fc99e Initial load
duke
parents:
diff changeset
255 virtual bool should_allocate(size_t word_size, bool is_tlab) {
a61af66fc99e Initial load
duke
parents:
diff changeset
256 assert(UseTLAB || !is_tlab, "Should not allocate tlab");
a61af66fc99e Initial load
duke
parents:
diff changeset
257
a61af66fc99e Initial load
duke
parents:
diff changeset
258 size_t overflow_limit = (size_t)1 << (BitsPerSize_t - LogHeapWordSize);
a61af66fc99e Initial load
duke
parents:
diff changeset
259
a61af66fc99e Initial load
duke
parents:
diff changeset
260 const bool non_zero = word_size > 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
261 const bool overflows = word_size >= overflow_limit;
a61af66fc99e Initial load
duke
parents:
diff changeset
262 const bool check_too_big = _pretenure_size_threshold_words > 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
263 const bool not_too_big = word_size < _pretenure_size_threshold_words;
a61af66fc99e Initial load
duke
parents:
diff changeset
264 const bool size_ok = is_tlab || !check_too_big || not_too_big;
a61af66fc99e Initial load
duke
parents:
diff changeset
265
a61af66fc99e Initial load
duke
parents:
diff changeset
266 bool result = !overflows &&
a61af66fc99e Initial load
duke
parents:
diff changeset
267 non_zero &&
a61af66fc99e Initial load
duke
parents:
diff changeset
268 size_ok;
a61af66fc99e Initial load
duke
parents:
diff changeset
269
a61af66fc99e Initial load
duke
parents:
diff changeset
270 return result;
a61af66fc99e Initial load
duke
parents:
diff changeset
271 }
a61af66fc99e Initial load
duke
parents:
diff changeset
272
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
273 HeapWord* allocate(size_t word_size, bool is_tlab);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
274 HeapWord* allocate_from_space(size_t word_size);
a61af66fc99e Initial load
duke
parents:
diff changeset
275
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
276 HeapWord* par_allocate(size_t word_size, bool is_tlab);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
277
a61af66fc99e Initial load
duke
parents:
diff changeset
278 // Prologue & Epilogue
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
279 virtual void gc_prologue(bool full);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
280 virtual void gc_epilogue(bool full);
a61af66fc99e Initial load
duke
parents:
diff changeset
281
263
12eea04c8b06 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 113
diff changeset
282 // Save the tops for eden, from, and to
12eea04c8b06 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 113
diff changeset
283 virtual void record_spaces_top();
12eea04c8b06 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 113
diff changeset
284
0
a61af66fc99e Initial load
duke
parents:
diff changeset
285 // Doesn't require additional work during GC prologue and epilogue
a61af66fc99e Initial load
duke
parents:
diff changeset
286 virtual bool performs_in_place_marking() const { return false; }
a61af66fc99e Initial load
duke
parents:
diff changeset
287
a61af66fc99e Initial load
duke
parents:
diff changeset
288 // Accessing marks
a61af66fc99e Initial load
duke
parents:
diff changeset
289 void save_marks();
a61af66fc99e Initial load
duke
parents:
diff changeset
290 void reset_saved_marks();
a61af66fc99e Initial load
duke
parents:
diff changeset
291 bool no_allocs_since_save_marks();
a61af66fc99e Initial load
duke
parents:
diff changeset
292
a61af66fc99e Initial load
duke
parents:
diff changeset
293 // Need to declare the full complement of closures, whether we'll
a61af66fc99e Initial load
duke
parents:
diff changeset
294 // override them or not, or get message from the compiler:
a61af66fc99e Initial load
duke
parents:
diff changeset
295 // oop_since_save_marks_iterate_nv hides virtual function...
a61af66fc99e Initial load
duke
parents:
diff changeset
296 #define DefNew_SINCE_SAVE_MARKS_DECL(OopClosureType, nv_suffix) \
a61af66fc99e Initial load
duke
parents:
diff changeset
297 void oop_since_save_marks_iterate##nv_suffix(OopClosureType* cl);
a61af66fc99e Initial load
duke
parents:
diff changeset
298
a61af66fc99e Initial load
duke
parents:
diff changeset
299 ALL_SINCE_SAVE_MARKS_CLOSURES(DefNew_SINCE_SAVE_MARKS_DECL)
a61af66fc99e Initial load
duke
parents:
diff changeset
300
a61af66fc99e Initial load
duke
parents:
diff changeset
301 #undef DefNew_SINCE_SAVE_MARKS_DECL
a61af66fc99e Initial load
duke
parents:
diff changeset
302
a61af66fc99e Initial load
duke
parents:
diff changeset
303 // For non-youngest collection, the DefNewGeneration can contribute
a61af66fc99e Initial load
duke
parents:
diff changeset
304 // "to-space".
263
12eea04c8b06 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 113
diff changeset
305 virtual void contribute_scratch(ScratchBlock*& list, Generation* requestor,
0
a61af66fc99e Initial load
duke
parents:
diff changeset
306 size_t max_alloc_words);
a61af66fc99e Initial load
duke
parents:
diff changeset
307
263
12eea04c8b06 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 113
diff changeset
308 // Reset for contribution of "to-space".
12eea04c8b06 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 113
diff changeset
309 virtual void reset_scratch();
12eea04c8b06 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 113
diff changeset
310
0
a61af66fc99e Initial load
duke
parents:
diff changeset
311 // GC support
a61af66fc99e Initial load
duke
parents:
diff changeset
312 virtual void compute_new_size();
a61af66fc99e Initial load
duke
parents:
diff changeset
313 virtual void collect(bool full,
a61af66fc99e Initial load
duke
parents:
diff changeset
314 bool clear_all_soft_refs,
a61af66fc99e Initial load
duke
parents:
diff changeset
315 size_t size,
a61af66fc99e Initial load
duke
parents:
diff changeset
316 bool is_tlab);
a61af66fc99e Initial load
duke
parents:
diff changeset
317 HeapWord* expand_and_allocate(size_t size,
a61af66fc99e Initial load
duke
parents:
diff changeset
318 bool is_tlab,
a61af66fc99e Initial load
duke
parents:
diff changeset
319 bool parallel = false);
a61af66fc99e Initial load
duke
parents:
diff changeset
320
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
321 oop copy_to_survivor_space(oop old);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
322 int tenuring_threshold() { return _tenuring_threshold; }
a61af66fc99e Initial load
duke
parents:
diff changeset
323
a61af66fc99e Initial load
duke
parents:
diff changeset
324 // Performance Counter support
a61af66fc99e Initial load
duke
parents:
diff changeset
325 void update_counters();
a61af66fc99e Initial load
duke
parents:
diff changeset
326
a61af66fc99e Initial load
duke
parents:
diff changeset
327 // Printing
a61af66fc99e Initial load
duke
parents:
diff changeset
328 virtual const char* name() const;
a61af66fc99e Initial load
duke
parents:
diff changeset
329 virtual const char* short_name() const { return "DefNew"; }
a61af66fc99e Initial load
duke
parents:
diff changeset
330
a61af66fc99e Initial load
duke
parents:
diff changeset
331 bool must_be_youngest() const { return true; }
a61af66fc99e Initial load
duke
parents:
diff changeset
332 bool must_be_oldest() const { return false; }
a61af66fc99e Initial load
duke
parents:
diff changeset
333
a61af66fc99e Initial load
duke
parents:
diff changeset
334 // PrintHeapAtGC support.
a61af66fc99e Initial load
duke
parents:
diff changeset
335 void print_on(outputStream* st) const;
a61af66fc99e Initial load
duke
parents:
diff changeset
336
a61af66fc99e Initial load
duke
parents:
diff changeset
337 void verify(bool allow_dirty);
a61af66fc99e Initial load
duke
parents:
diff changeset
338
a61af66fc99e Initial load
duke
parents:
diff changeset
339 protected:
263
12eea04c8b06 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 113
diff changeset
340 // If clear_space is true, clear the survivor spaces. Eden is
12eea04c8b06 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 113
diff changeset
341 // cleared if the minimum size of eden is 0. If mangle_space
12eea04c8b06 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 113
diff changeset
342 // is true, also mangle the space in debug mode.
12eea04c8b06 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 113
diff changeset
343 void compute_space_boundaries(uintx minimum_eden_size,
12eea04c8b06 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 113
diff changeset
344 bool clear_space,
12eea04c8b06 6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents: 113
diff changeset
345 bool mangle_space);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
346 // Scavenge support
a61af66fc99e Initial load
duke
parents:
diff changeset
347 void swap_spaces();
a61af66fc99e Initial load
duke
parents:
diff changeset
348 };