annotate src/share/vm/gc_implementation/parallelScavenge/psPromotionManager.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 2002-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 //
a61af66fc99e Initial load
duke
parents:
diff changeset
26 // psPromotionManager is used by a single thread to manage object survival
a61af66fc99e Initial load
duke
parents:
diff changeset
27 // during a scavenge. The promotion manager contains thread local data only.
a61af66fc99e Initial load
duke
parents:
diff changeset
28 //
a61af66fc99e Initial load
duke
parents:
diff changeset
29 // NOTE! Be carefull when allocating the stacks on cheap. If you are going
a61af66fc99e Initial load
duke
parents:
diff changeset
30 // to use a promotion manager in more than one thread, the stacks MUST be
a61af66fc99e Initial load
duke
parents:
diff changeset
31 // on cheap. This can lead to memory leaks, though, as they are not auto
a61af66fc99e Initial load
duke
parents:
diff changeset
32 // deallocated.
a61af66fc99e Initial load
duke
parents:
diff changeset
33 //
a61af66fc99e Initial load
duke
parents:
diff changeset
34 // FIX ME FIX ME Add a destructor, and don't rely on the user to drain/flush/deallocate!
a61af66fc99e Initial load
duke
parents:
diff changeset
35 //
a61af66fc99e Initial load
duke
parents:
diff changeset
36
a61af66fc99e Initial load
duke
parents:
diff changeset
37 // Move to some global location
a61af66fc99e Initial load
duke
parents:
diff changeset
38 #define HAS_BEEN_MOVED 0x1501d01d
a61af66fc99e Initial load
duke
parents:
diff changeset
39 // End move to some global location
a61af66fc99e Initial load
duke
parents:
diff changeset
40
a61af66fc99e Initial load
duke
parents:
diff changeset
41 class MutableSpace;
a61af66fc99e Initial load
duke
parents:
diff changeset
42 class PSOldGen;
a61af66fc99e Initial load
duke
parents:
diff changeset
43 class ParCompactionManager;
a61af66fc99e Initial load
duke
parents:
diff changeset
44
a61af66fc99e Initial load
duke
parents:
diff changeset
45 #define PS_CHUNKED_ARRAY_OOP_MASK 1
a61af66fc99e Initial load
duke
parents:
diff changeset
46
a61af66fc99e Initial load
duke
parents:
diff changeset
47 #define PS_PM_STATS 0
a61af66fc99e Initial load
duke
parents:
diff changeset
48
a61af66fc99e Initial load
duke
parents:
diff changeset
49 class PSPromotionManager : public CHeapObj {
a61af66fc99e Initial load
duke
parents:
diff changeset
50 friend class PSScavenge;
a61af66fc99e Initial load
duke
parents:
diff changeset
51 friend class PSRefProcTaskExecutor;
a61af66fc99e Initial load
duke
parents:
diff changeset
52 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
53 static PSPromotionManager** _manager_array;
a61af66fc99e Initial load
duke
parents:
diff changeset
54 static OopStarTaskQueueSet* _stack_array_depth;
a61af66fc99e Initial load
duke
parents:
diff changeset
55 static OopTaskQueueSet* _stack_array_breadth;
a61af66fc99e Initial load
duke
parents:
diff changeset
56 static PSOldGen* _old_gen;
a61af66fc99e Initial load
duke
parents:
diff changeset
57 static MutableSpace* _young_space;
a61af66fc99e Initial load
duke
parents:
diff changeset
58
a61af66fc99e Initial load
duke
parents:
diff changeset
59 #if PS_PM_STATS
a61af66fc99e Initial load
duke
parents:
diff changeset
60 uint _total_pushes;
a61af66fc99e Initial load
duke
parents:
diff changeset
61 uint _masked_pushes;
a61af66fc99e Initial load
duke
parents:
diff changeset
62
a61af66fc99e Initial load
duke
parents:
diff changeset
63 uint _overflow_pushes;
a61af66fc99e Initial load
duke
parents:
diff changeset
64 uint _max_overflow_length;
a61af66fc99e Initial load
duke
parents:
diff changeset
65
a61af66fc99e Initial load
duke
parents:
diff changeset
66 uint _arrays_chunked;
a61af66fc99e Initial load
duke
parents:
diff changeset
67 uint _array_chunks_processed;
a61af66fc99e Initial load
duke
parents:
diff changeset
68
a61af66fc99e Initial load
duke
parents:
diff changeset
69 uint _total_steals;
a61af66fc99e Initial load
duke
parents:
diff changeset
70 uint _masked_steals;
a61af66fc99e Initial load
duke
parents:
diff changeset
71
a61af66fc99e Initial load
duke
parents:
diff changeset
72 void print_stats(uint i);
a61af66fc99e Initial load
duke
parents:
diff changeset
73 static void print_stats();
a61af66fc99e Initial load
duke
parents:
diff changeset
74 #endif // PS_PM_STATS
a61af66fc99e Initial load
duke
parents:
diff changeset
75
a61af66fc99e Initial load
duke
parents:
diff changeset
76 PSYoungPromotionLAB _young_lab;
a61af66fc99e Initial load
duke
parents:
diff changeset
77 PSOldPromotionLAB _old_lab;
a61af66fc99e Initial load
duke
parents:
diff changeset
78 bool _young_gen_is_full;
a61af66fc99e Initial load
duke
parents:
diff changeset
79 bool _old_gen_is_full;
a61af66fc99e Initial load
duke
parents:
diff changeset
80 PrefetchQueue _prefetch_queue;
a61af66fc99e Initial load
duke
parents:
diff changeset
81
a61af66fc99e Initial load
duke
parents:
diff changeset
82 OopStarTaskQueue _claimed_stack_depth;
a61af66fc99e Initial load
duke
parents:
diff changeset
83 GrowableArray<oop*>* _overflow_stack_depth;
a61af66fc99e Initial load
duke
parents:
diff changeset
84 OopTaskQueue _claimed_stack_breadth;
a61af66fc99e Initial load
duke
parents:
diff changeset
85 GrowableArray<oop>* _overflow_stack_breadth;
a61af66fc99e Initial load
duke
parents:
diff changeset
86
a61af66fc99e Initial load
duke
parents:
diff changeset
87 bool _depth_first;
a61af66fc99e Initial load
duke
parents:
diff changeset
88 bool _totally_drain;
a61af66fc99e Initial load
duke
parents:
diff changeset
89 uint _target_stack_size;
a61af66fc99e Initial load
duke
parents:
diff changeset
90
a61af66fc99e Initial load
duke
parents:
diff changeset
91 uint _array_chunk_size;
a61af66fc99e Initial load
duke
parents:
diff changeset
92 uint _min_array_size_for_chunking;
a61af66fc99e Initial load
duke
parents:
diff changeset
93
a61af66fc99e Initial load
duke
parents:
diff changeset
94 // Accessors
a61af66fc99e Initial load
duke
parents:
diff changeset
95 static PSOldGen* old_gen() { return _old_gen; }
a61af66fc99e Initial load
duke
parents:
diff changeset
96 static MutableSpace* young_space() { return _young_space; }
a61af66fc99e Initial load
duke
parents:
diff changeset
97
a61af66fc99e Initial load
duke
parents:
diff changeset
98 inline static PSPromotionManager* manager_array(int index);
a61af66fc99e Initial load
duke
parents:
diff changeset
99
a61af66fc99e Initial load
duke
parents:
diff changeset
100 GrowableArray<oop*>* overflow_stack_depth() { return _overflow_stack_depth; }
a61af66fc99e Initial load
duke
parents:
diff changeset
101 GrowableArray<oop>* overflow_stack_breadth() { return _overflow_stack_breadth; }
a61af66fc99e Initial load
duke
parents:
diff changeset
102
a61af66fc99e Initial load
duke
parents:
diff changeset
103 // On the task queues we push reference locations as well as
a61af66fc99e Initial load
duke
parents:
diff changeset
104 // partially-scanned arrays (in the latter case, we push an oop to
a61af66fc99e Initial load
duke
parents:
diff changeset
105 // the from-space image of the array and the length on the
a61af66fc99e Initial load
duke
parents:
diff changeset
106 // from-space image indicates how many entries on the array we still
a61af66fc99e Initial load
duke
parents:
diff changeset
107 // need to scan; this is basically how ParNew does partial array
a61af66fc99e Initial load
duke
parents:
diff changeset
108 // scanning too). To be able to distinguish between reference
a61af66fc99e Initial load
duke
parents:
diff changeset
109 // locations and partially-scanned array oops we simply mask the
a61af66fc99e Initial load
duke
parents:
diff changeset
110 // latter oops with 0x01. The next three methods do the masking,
a61af66fc99e Initial load
duke
parents:
diff changeset
111 // unmasking, and checking whether the oop is masked or not. Notice
a61af66fc99e Initial load
duke
parents:
diff changeset
112 // that the signature of the mask and unmask methods looks a bit
a61af66fc99e Initial load
duke
parents:
diff changeset
113 // strange, as they accept and return different types (oop and
a61af66fc99e Initial load
duke
parents:
diff changeset
114 // oop*). This is because of the difference in types between what
a61af66fc99e Initial load
duke
parents:
diff changeset
115 // the task queue holds (oop*) and oops to partially-scanned arrays
a61af66fc99e Initial load
duke
parents:
diff changeset
116 // (oop). We do all the necessary casting in the mask / unmask
a61af66fc99e Initial load
duke
parents:
diff changeset
117 // methods to avoid sprinkling the rest of the code with more casts.
a61af66fc99e Initial load
duke
parents:
diff changeset
118
a61af66fc99e Initial load
duke
parents:
diff changeset
119 bool is_oop_masked(oop* p) {
a61af66fc99e Initial load
duke
parents:
diff changeset
120 return ((intptr_t) p & PS_CHUNKED_ARRAY_OOP_MASK) == PS_CHUNKED_ARRAY_OOP_MASK;
a61af66fc99e Initial load
duke
parents:
diff changeset
121 }
a61af66fc99e Initial load
duke
parents:
diff changeset
122
a61af66fc99e Initial load
duke
parents:
diff changeset
123 oop* mask_chunked_array_oop(oop obj) {
a61af66fc99e Initial load
duke
parents:
diff changeset
124 assert(!is_oop_masked((oop*) obj), "invariant");
a61af66fc99e Initial load
duke
parents:
diff changeset
125 oop* ret = (oop*) ((intptr_t) obj | PS_CHUNKED_ARRAY_OOP_MASK);
a61af66fc99e Initial load
duke
parents:
diff changeset
126 assert(is_oop_masked(ret), "invariant");
a61af66fc99e Initial load
duke
parents:
diff changeset
127 return ret;
a61af66fc99e Initial load
duke
parents:
diff changeset
128 }
a61af66fc99e Initial load
duke
parents:
diff changeset
129
a61af66fc99e Initial load
duke
parents:
diff changeset
130 oop unmask_chunked_array_oop(oop* p) {
a61af66fc99e Initial load
duke
parents:
diff changeset
131 assert(is_oop_masked(p), "invariant");
a61af66fc99e Initial load
duke
parents:
diff changeset
132 oop ret = oop((intptr_t) p & ~PS_CHUNKED_ARRAY_OOP_MASK);
a61af66fc99e Initial load
duke
parents:
diff changeset
133 assert(!is_oop_masked((oop*) ret), "invariant");
a61af66fc99e Initial load
duke
parents:
diff changeset
134 return ret;
a61af66fc99e Initial load
duke
parents:
diff changeset
135 }
a61af66fc99e Initial load
duke
parents:
diff changeset
136
a61af66fc99e Initial load
duke
parents:
diff changeset
137 void process_array_chunk(oop old);
a61af66fc99e Initial load
duke
parents:
diff changeset
138
a61af66fc99e Initial load
duke
parents:
diff changeset
139 void push_depth(oop* p) {
a61af66fc99e Initial load
duke
parents:
diff changeset
140 assert(depth_first(), "pre-condition");
a61af66fc99e Initial load
duke
parents:
diff changeset
141
a61af66fc99e Initial load
duke
parents:
diff changeset
142 #if PS_PM_STATS
a61af66fc99e Initial load
duke
parents:
diff changeset
143 ++_total_pushes;
a61af66fc99e Initial load
duke
parents:
diff changeset
144 #endif // PS_PM_STATS
a61af66fc99e Initial load
duke
parents:
diff changeset
145
a61af66fc99e Initial load
duke
parents:
diff changeset
146 if (!claimed_stack_depth()->push(p)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
147 overflow_stack_depth()->push(p);
a61af66fc99e Initial load
duke
parents:
diff changeset
148 #if PS_PM_STATS
a61af66fc99e Initial load
duke
parents:
diff changeset
149 ++_overflow_pushes;
a61af66fc99e Initial load
duke
parents:
diff changeset
150 uint stack_length = (uint) overflow_stack_depth()->length();
a61af66fc99e Initial load
duke
parents:
diff changeset
151 if (stack_length > _max_overflow_length) {
a61af66fc99e Initial load
duke
parents:
diff changeset
152 _max_overflow_length = stack_length;
a61af66fc99e Initial load
duke
parents:
diff changeset
153 }
a61af66fc99e Initial load
duke
parents:
diff changeset
154 #endif // PS_PM_STATS
a61af66fc99e Initial load
duke
parents:
diff changeset
155 }
a61af66fc99e Initial load
duke
parents:
diff changeset
156 }
a61af66fc99e Initial load
duke
parents:
diff changeset
157
a61af66fc99e Initial load
duke
parents:
diff changeset
158 void push_breadth(oop o) {
a61af66fc99e Initial load
duke
parents:
diff changeset
159 assert(!depth_first(), "pre-condition");
a61af66fc99e Initial load
duke
parents:
diff changeset
160
a61af66fc99e Initial load
duke
parents:
diff changeset
161 #if PS_PM_STATS
a61af66fc99e Initial load
duke
parents:
diff changeset
162 ++_total_pushes;
a61af66fc99e Initial load
duke
parents:
diff changeset
163 #endif // PS_PM_STATS
a61af66fc99e Initial load
duke
parents:
diff changeset
164
a61af66fc99e Initial load
duke
parents:
diff changeset
165 if(!claimed_stack_breadth()->push(o)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
166 overflow_stack_breadth()->push(o);
a61af66fc99e Initial load
duke
parents:
diff changeset
167 #if PS_PM_STATS
a61af66fc99e Initial load
duke
parents:
diff changeset
168 ++_overflow_pushes;
a61af66fc99e Initial load
duke
parents:
diff changeset
169 uint stack_length = (uint) overflow_stack_breadth()->length();
a61af66fc99e Initial load
duke
parents:
diff changeset
170 if (stack_length > _max_overflow_length) {
a61af66fc99e Initial load
duke
parents:
diff changeset
171 _max_overflow_length = stack_length;
a61af66fc99e Initial load
duke
parents:
diff changeset
172 }
a61af66fc99e Initial load
duke
parents:
diff changeset
173 #endif // PS_PM_STATS
a61af66fc99e Initial load
duke
parents:
diff changeset
174 }
a61af66fc99e Initial load
duke
parents:
diff changeset
175 }
a61af66fc99e Initial load
duke
parents:
diff changeset
176
a61af66fc99e Initial load
duke
parents:
diff changeset
177 protected:
a61af66fc99e Initial load
duke
parents:
diff changeset
178 static OopStarTaskQueueSet* stack_array_depth() { return _stack_array_depth; }
a61af66fc99e Initial load
duke
parents:
diff changeset
179 static OopTaskQueueSet* stack_array_breadth() { return _stack_array_breadth; }
a61af66fc99e Initial load
duke
parents:
diff changeset
180
a61af66fc99e Initial load
duke
parents:
diff changeset
181 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
182 // Static
a61af66fc99e Initial load
duke
parents:
diff changeset
183 static void initialize();
a61af66fc99e Initial load
duke
parents:
diff changeset
184
a61af66fc99e Initial load
duke
parents:
diff changeset
185 static void pre_scavenge();
a61af66fc99e Initial load
duke
parents:
diff changeset
186 static void post_scavenge();
a61af66fc99e Initial load
duke
parents:
diff changeset
187
a61af66fc99e Initial load
duke
parents:
diff changeset
188 static PSPromotionManager* gc_thread_promotion_manager(int index);
a61af66fc99e Initial load
duke
parents:
diff changeset
189 static PSPromotionManager* vm_thread_promotion_manager();
a61af66fc99e Initial load
duke
parents:
diff changeset
190
a61af66fc99e Initial load
duke
parents:
diff changeset
191 static bool steal_depth(int queue_num, int* seed, StarTask& t) {
a61af66fc99e Initial load
duke
parents:
diff changeset
192 assert(stack_array_depth() != NULL, "invariant");
a61af66fc99e Initial load
duke
parents:
diff changeset
193 return stack_array_depth()->steal(queue_num, seed, t);
a61af66fc99e Initial load
duke
parents:
diff changeset
194 }
a61af66fc99e Initial load
duke
parents:
diff changeset
195
a61af66fc99e Initial load
duke
parents:
diff changeset
196 static bool steal_breadth(int queue_num, int* seed, Task& t) {
a61af66fc99e Initial load
duke
parents:
diff changeset
197 assert(stack_array_breadth() != NULL, "invariant");
a61af66fc99e Initial load
duke
parents:
diff changeset
198 return stack_array_breadth()->steal(queue_num, seed, t);
a61af66fc99e Initial load
duke
parents:
diff changeset
199 }
a61af66fc99e Initial load
duke
parents:
diff changeset
200
a61af66fc99e Initial load
duke
parents:
diff changeset
201 PSPromotionManager();
a61af66fc99e Initial load
duke
parents:
diff changeset
202
a61af66fc99e Initial load
duke
parents:
diff changeset
203 // Accessors
a61af66fc99e Initial load
duke
parents:
diff changeset
204 OopStarTaskQueue* claimed_stack_depth() {
a61af66fc99e Initial load
duke
parents:
diff changeset
205 return &_claimed_stack_depth;
a61af66fc99e Initial load
duke
parents:
diff changeset
206 }
a61af66fc99e Initial load
duke
parents:
diff changeset
207 OopTaskQueue* claimed_stack_breadth() {
a61af66fc99e Initial load
duke
parents:
diff changeset
208 return &_claimed_stack_breadth;
a61af66fc99e Initial load
duke
parents:
diff changeset
209 }
a61af66fc99e Initial load
duke
parents:
diff changeset
210
a61af66fc99e Initial load
duke
parents:
diff changeset
211 bool young_gen_is_full() { return _young_gen_is_full; }
a61af66fc99e Initial load
duke
parents:
diff changeset
212
a61af66fc99e Initial load
duke
parents:
diff changeset
213 bool old_gen_is_full() { return _old_gen_is_full; }
a61af66fc99e Initial load
duke
parents:
diff changeset
214 void set_old_gen_is_full(bool state) { _old_gen_is_full = state; }
a61af66fc99e Initial load
duke
parents:
diff changeset
215
a61af66fc99e Initial load
duke
parents:
diff changeset
216 // Promotion methods
a61af66fc99e Initial load
duke
parents:
diff changeset
217 oop copy_to_survivor_space(oop o, bool depth_first);
a61af66fc99e Initial load
duke
parents:
diff changeset
218 oop oop_promotion_failed(oop obj, markOop obj_mark);
a61af66fc99e Initial load
duke
parents:
diff changeset
219
a61af66fc99e Initial load
duke
parents:
diff changeset
220 void reset();
a61af66fc99e Initial load
duke
parents:
diff changeset
221
a61af66fc99e Initial load
duke
parents:
diff changeset
222 void flush_labs();
a61af66fc99e Initial load
duke
parents:
diff changeset
223 void drain_stacks(bool totally_drain) {
a61af66fc99e Initial load
duke
parents:
diff changeset
224 if (depth_first()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
225 drain_stacks_depth(totally_drain);
a61af66fc99e Initial load
duke
parents:
diff changeset
226 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
227 drain_stacks_breadth(totally_drain);
a61af66fc99e Initial load
duke
parents:
diff changeset
228 }
a61af66fc99e Initial load
duke
parents:
diff changeset
229 }
a61af66fc99e Initial load
duke
parents:
diff changeset
230 void drain_stacks_cond_depth() {
a61af66fc99e Initial load
duke
parents:
diff changeset
231 if (claimed_stack_depth()->size() > _target_stack_size) {
a61af66fc99e Initial load
duke
parents:
diff changeset
232 drain_stacks_depth(false);
a61af66fc99e Initial load
duke
parents:
diff changeset
233 }
a61af66fc99e Initial load
duke
parents:
diff changeset
234 }
a61af66fc99e Initial load
duke
parents:
diff changeset
235 void drain_stacks_depth(bool totally_drain);
a61af66fc99e Initial load
duke
parents:
diff changeset
236 void drain_stacks_breadth(bool totally_drain);
a61af66fc99e Initial load
duke
parents:
diff changeset
237
a61af66fc99e Initial load
duke
parents:
diff changeset
238 bool claimed_stack_empty() {
a61af66fc99e Initial load
duke
parents:
diff changeset
239 if (depth_first()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
240 return claimed_stack_depth()->size() <= 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
241 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
242 return claimed_stack_breadth()->size() <= 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
243 }
a61af66fc99e Initial load
duke
parents:
diff changeset
244 }
a61af66fc99e Initial load
duke
parents:
diff changeset
245 bool overflow_stack_empty() {
a61af66fc99e Initial load
duke
parents:
diff changeset
246 if (depth_first()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
247 return overflow_stack_depth()->length() <= 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
248 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
249 return overflow_stack_breadth()->length() <= 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
250 }
a61af66fc99e Initial load
duke
parents:
diff changeset
251 }
a61af66fc99e Initial load
duke
parents:
diff changeset
252 bool stacks_empty() {
a61af66fc99e Initial load
duke
parents:
diff changeset
253 return claimed_stack_empty() && overflow_stack_empty();
a61af66fc99e Initial load
duke
parents:
diff changeset
254 }
a61af66fc99e Initial load
duke
parents:
diff changeset
255 bool depth_first() {
a61af66fc99e Initial load
duke
parents:
diff changeset
256 return _depth_first;
a61af66fc99e Initial load
duke
parents:
diff changeset
257 }
a61af66fc99e Initial load
duke
parents:
diff changeset
258
a61af66fc99e Initial load
duke
parents:
diff changeset
259 inline void process_popped_location_depth(oop* p);
a61af66fc99e Initial load
duke
parents:
diff changeset
260
a61af66fc99e Initial load
duke
parents:
diff changeset
261 inline void flush_prefetch_queue();
a61af66fc99e Initial load
duke
parents:
diff changeset
262
a61af66fc99e Initial load
duke
parents:
diff changeset
263 inline void claim_or_forward_depth(oop* p);
a61af66fc99e Initial load
duke
parents:
diff changeset
264 inline void claim_or_forward_internal_depth(oop* p);
a61af66fc99e Initial load
duke
parents:
diff changeset
265
a61af66fc99e Initial load
duke
parents:
diff changeset
266 inline void claim_or_forward_breadth(oop* p);
a61af66fc99e Initial load
duke
parents:
diff changeset
267 inline void claim_or_forward_internal_breadth(oop* p);
a61af66fc99e Initial load
duke
parents:
diff changeset
268
a61af66fc99e Initial load
duke
parents:
diff changeset
269 #if PS_PM_STATS
a61af66fc99e Initial load
duke
parents:
diff changeset
270 void increment_steals(oop* p = NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
271 _total_steals += 1;
a61af66fc99e Initial load
duke
parents:
diff changeset
272 if (p != NULL && is_oop_masked(p)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
273 _masked_steals += 1;
a61af66fc99e Initial load
duke
parents:
diff changeset
274 }
a61af66fc99e Initial load
duke
parents:
diff changeset
275 }
a61af66fc99e Initial load
duke
parents:
diff changeset
276 #endif // PS_PM_STATS
a61af66fc99e Initial load
duke
parents:
diff changeset
277 };