author | david |
Wed, 14 Oct 2015 09:33:45 +0200 | |
changeset 33212 | 906b3d079b13 |
parent 33205 | bc9fec5e7656 |
child 35061 | be6025ebffea |
permissions | -rw-r--r-- |
1 | 1 |
/* |
29703
0bbea51cbaf8
8075829: Move CSpaceCounters implementation to cSpaceCounters.cpp
stefank
parents:
29681
diff
changeset
|
2 |
* Copyright (c) 1997, 2015, 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:
3262
diff
changeset
|
19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
3262
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:
3262
diff
changeset
|
21 |
* questions. |
1 | 22 |
* |
23 |
*/ |
|
24 |
||
30764 | 25 |
#ifndef SHARE_VM_GC_SHARED_SPACE_HPP |
26 |
#define SHARE_VM_GC_SHARED_SPACE_HPP |
|
7397 | 27 |
|
30764 | 28 |
#include "gc/shared/blockOffsetTable.hpp" |
29 |
#include "gc/shared/cardTableModRefBS.hpp" |
|
30 |
#include "gc/shared/workgroup.hpp" |
|
7397 | 31 |
#include "memory/allocation.hpp" |
32 |
#include "memory/iterator.hpp" |
|
33 |
#include "memory/memRegion.hpp" |
|
34 |
#include "oops/markOop.hpp" |
|
35 |
#include "runtime/mutexLocker.hpp" |
|
15482
470d0b0c09f1
8005915: Unify SERIALGC and INCLUDE_ALTERNATE_GCS
jprovino
parents:
15088
diff
changeset
|
36 |
#include "utilities/macros.hpp" |
7397 | 37 |
|
1 | 38 |
// A space is an abstraction for the "storage units" backing |
39 |
// up the generation abstraction. It includes specific |
|
40 |
// implementations for keeping track of free and used space, |
|
41 |
// for iterating over objects and free blocks, etc. |
|
42 |
||
43 |
// Forward decls. |
|
44 |
class Space; |
|
45 |
class BlockOffsetArray; |
|
46 |
class BlockOffsetArrayContigSpace; |
|
47 |
class Generation; |
|
48 |
class CompactibleSpace; |
|
49 |
class BlockOffsetTable; |
|
50 |
class CardTableRS; |
|
51 |
class DirtyCardToOopClosure; |
|
52 |
||
53 |
// A Space describes a heap area. Class Space is an abstract |
|
54 |
// base class. |
|
55 |
// |
|
56 |
// Space supports allocation, size computation and GC support is provided. |
|
57 |
// |
|
58 |
// Invariant: bottom() and end() are on page_size boundaries and |
|
59 |
// bottom() <= top() <= end() |
|
60 |
// top() is inclusive and end() is exclusive. |
|
61 |
||
13195 | 62 |
class Space: public CHeapObj<mtGC> { |
1 | 63 |
friend class VMStructs; |
64 |
protected: |
|
65 |
HeapWord* _bottom; |
|
66 |
HeapWord* _end; |
|
67 |
||
68 |
// Used in support of save_marks() |
|
69 |
HeapWord* _saved_mark_word; |
|
70 |
||
71 |
// A sequential tasks done structure. This supports |
|
72 |
// parallel GC, where we have threads dynamically |
|
73 |
// claiming sub-tasks from a larger parallel task. |
|
74 |
SequentialSubTasksDone _par_seq_tasks; |
|
75 |
||
76 |
Space(): |
|
27888
a52ea0e7671e
8065218: Move CMS-specific fields from Space to CompactibleFreeListSpace
mgerdin
parents:
27625
diff
changeset
|
77 |
_bottom(NULL), _end(NULL) { } |
1 | 78 |
|
79 |
public: |
|
80 |
// Accessors |
|
81 |
HeapWord* bottom() const { return _bottom; } |
|
82 |
HeapWord* end() const { return _end; } |
|
83 |
virtual void set_bottom(HeapWord* value) { _bottom = value; } |
|
84 |
virtual void set_end(HeapWord* value) { _end = value; } |
|
85 |
||
1374
4c24294029a9
6711316: Open source the Garbage-First garbage collector
ysr
parents:
360
diff
changeset
|
86 |
virtual HeapWord* saved_mark_word() const { return _saved_mark_word; } |
3262
30d1c247fc25
6700789: G1: Enable use of compressed oops with G1 heaps
ysr
parents:
2105
diff
changeset
|
87 |
|
1 | 88 |
void set_saved_mark_word(HeapWord* p) { _saved_mark_word = p; } |
89 |
||
23537
3de0cad00ae1
8038405: Clean up some virtual fucntions in Space class hierarchy
mgerdin
parents:
23536
diff
changeset
|
90 |
// Returns true if this object has been allocated since a |
3de0cad00ae1
8038405: Clean up some virtual fucntions in Space class hierarchy
mgerdin
parents:
23536
diff
changeset
|
91 |
// generation's "save_marks" call. |
3de0cad00ae1
8038405: Clean up some virtual fucntions in Space class hierarchy
mgerdin
parents:
23536
diff
changeset
|
92 |
virtual bool obj_allocated_since_save_marks(const oop obj) const { |
3de0cad00ae1
8038405: Clean up some virtual fucntions in Space class hierarchy
mgerdin
parents:
23536
diff
changeset
|
93 |
return (HeapWord*)obj >= saved_mark_word(); |
3de0cad00ae1
8038405: Clean up some virtual fucntions in Space class hierarchy
mgerdin
parents:
23536
diff
changeset
|
94 |
} |
3de0cad00ae1
8038405: Clean up some virtual fucntions in Space class hierarchy
mgerdin
parents:
23536
diff
changeset
|
95 |
|
27888
a52ea0e7671e
8065218: Move CMS-specific fields from Space to CompactibleFreeListSpace
mgerdin
parents:
27625
diff
changeset
|
96 |
virtual MemRegionClosure* preconsumptionDirtyCardClosure() const { |
a52ea0e7671e
8065218: Move CMS-specific fields from Space to CompactibleFreeListSpace
mgerdin
parents:
27625
diff
changeset
|
97 |
return NULL; |
1 | 98 |
} |
99 |
||
23537
3de0cad00ae1
8038405: Clean up some virtual fucntions in Space class hierarchy
mgerdin
parents:
23536
diff
changeset
|
100 |
// Returns a subregion of the space containing only the allocated objects in |
1 | 101 |
// the space. |
23537
3de0cad00ae1
8038405: Clean up some virtual fucntions in Space class hierarchy
mgerdin
parents:
23536
diff
changeset
|
102 |
virtual MemRegion used_region() const = 0; |
1 | 103 |
|
104 |
// Returns a region that is guaranteed to contain (at least) all objects |
|
105 |
// allocated at the time of the last call to "save_marks". If the space |
|
106 |
// initializes its DirtyCardToOopClosure's specifying the "contig" option |
|
107 |
// (that is, if the space is contiguous), then this region must contain only |
|
108 |
// such objects: the memregion will be from the bottom of the region to the |
|
109 |
// saved mark. Otherwise, the "obj_allocated_since_save_marks" method of |
|
22551 | 110 |
// the space must distinguish between objects in the region allocated before |
1 | 111 |
// and after the call to save marks. |
23537
3de0cad00ae1
8038405: Clean up some virtual fucntions in Space class hierarchy
mgerdin
parents:
23536
diff
changeset
|
112 |
MemRegion used_region_at_save_marks() const { |
1 | 113 |
return MemRegion(bottom(), saved_mark_word()); |
114 |
} |
|
115 |
||
1374
4c24294029a9
6711316: Open source the Garbage-First garbage collector
ysr
parents:
360
diff
changeset
|
116 |
// Initialization. |
4c24294029a9
6711316: Open source the Garbage-First garbage collector
ysr
parents:
360
diff
changeset
|
117 |
// "initialize" should be called once on a space, before it is used for |
4c24294029a9
6711316: Open source the Garbage-First garbage collector
ysr
parents:
360
diff
changeset
|
118 |
// any purpose. The "mr" arguments gives the bounds of the space, and |
4c24294029a9
6711316: Open source the Garbage-First garbage collector
ysr
parents:
360
diff
changeset
|
119 |
// the "clear_space" argument should be true unless the memory in "mr" is |
4c24294029a9
6711316: Open source the Garbage-First garbage collector
ysr
parents:
360
diff
changeset
|
120 |
// known to be zeroed. |
971
f0b20be4165d
6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents:
360
diff
changeset
|
121 |
virtual void initialize(MemRegion mr, bool clear_space, bool mangle_space); |
1374
4c24294029a9
6711316: Open source the Garbage-First garbage collector
ysr
parents:
360
diff
changeset
|
122 |
|
4c24294029a9
6711316: Open source the Garbage-First garbage collector
ysr
parents:
360
diff
changeset
|
123 |
// The "clear" method must be called on a region that may have |
4c24294029a9
6711316: Open source the Garbage-First garbage collector
ysr
parents:
360
diff
changeset
|
124 |
// had allocation performed in it, but is now to be considered empty. |
971
f0b20be4165d
6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents:
360
diff
changeset
|
125 |
virtual void clear(bool mangle_space); |
1 | 126 |
|
127 |
// For detecting GC bugs. Should only be called at GC boundaries, since |
|
128 |
// some unused space may be used as scratch space during GC's. |
|
29681 | 129 |
// We also call this when expanding a space to satisfy an allocation |
130 |
// request. See bug #4668531 |
|
131 |
virtual void mangle_unused_area() = 0; |
|
132 |
virtual void mangle_unused_area_complete() = 0; |
|
1 | 133 |
|
134 |
// Testers |
|
135 |
bool is_empty() const { return used() == 0; } |
|
136 |
bool not_empty() const { return used() > 0; } |
|
137 |
||
138 |
// Returns true iff the given the space contains the |
|
139 |
// given address as part of an allocated object. For |
|
22551 | 140 |
// certain kinds of spaces, this might be a potentially |
1 | 141 |
// expensive operation. To prevent performance problems |
142 |
// on account of its inadvertent use in product jvm's, |
|
143 |
// we restrict its use to assertion checks only. |
|
23537
3de0cad00ae1
8038405: Clean up some virtual fucntions in Space class hierarchy
mgerdin
parents:
23536
diff
changeset
|
144 |
bool is_in(const void* p) const { |
3de0cad00ae1
8038405: Clean up some virtual fucntions in Space class hierarchy
mgerdin
parents:
23536
diff
changeset
|
145 |
return used_region().contains(p); |
3de0cad00ae1
8038405: Clean up some virtual fucntions in Space class hierarchy
mgerdin
parents:
23536
diff
changeset
|
146 |
} |
1 | 147 |
|
148 |
// Returns true iff the given reserved memory of the space contains the |
|
149 |
// given address. |
|
150 |
bool is_in_reserved(const void* p) const { return _bottom <= p && p < _end; } |
|
151 |
||
152 |
// Returns true iff the given block is not allocated. |
|
153 |
virtual bool is_free_block(const HeapWord* p) const = 0; |
|
154 |
||
155 |
// Test whether p is double-aligned |
|
156 |
static bool is_aligned(void* p) { |
|
157 |
return ((intptr_t)p & (sizeof(double)-1)) == 0; |
|
158 |
} |
|
159 |
||
160 |
// Size computations. Sizes are in bytes. |
|
161 |
size_t capacity() const { return byte_size(bottom(), end()); } |
|
162 |
virtual size_t used() const = 0; |
|
163 |
virtual size_t free() const = 0; |
|
164 |
||
165 |
// Iterate over all the ref-containing fields of all objects in the |
|
166 |
// space, calling "cl.do_oop" on each. Fields in objects allocated by |
|
167 |
// applications of the closure are not included in the iteration. |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
168 |
virtual void oop_iterate(ExtendedOopClosure* cl); |
1 | 169 |
|
170 |
// Iterate over all objects in the space, calling "cl.do_object" on |
|
171 |
// each. Objects allocated by applications of the closure are not |
|
172 |
// included in the iteration. |
|
173 |
virtual void object_iterate(ObjectClosure* blk) = 0; |
|
1893
c82e388e17c5
6689653: JMapPerm fails with UseConcMarkSweepIncGC and compressed oops off
jmasa
parents:
1557
diff
changeset
|
174 |
// Similar to object_iterate() except only iterates over |
c82e388e17c5
6689653: JMapPerm fails with UseConcMarkSweepIncGC and compressed oops off
jmasa
parents:
1557
diff
changeset
|
175 |
// objects whose internal references point to objects in the space. |
c82e388e17c5
6689653: JMapPerm fails with UseConcMarkSweepIncGC and compressed oops off
jmasa
parents:
1557
diff
changeset
|
176 |
virtual void safe_object_iterate(ObjectClosure* blk) = 0; |
1 | 177 |
|
178 |
// Create and return a new dirty card to oop closure. Can be |
|
22551 | 179 |
// overridden to return the appropriate type of closure |
1 | 180 |
// depending on the type of space in which the closure will |
181 |
// operate. ResourceArea allocated. |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
182 |
virtual DirtyCardToOopClosure* new_dcto_cl(ExtendedOopClosure* cl, |
1 | 183 |
CardTableModRefBS::PrecisionStyle precision, |
30870
3050fdcdc60b
8080112: Replace and remove the last usages of CollectedHeap::n_par_threads()
stefank
parents:
30764
diff
changeset
|
184 |
HeapWord* boundary, |
3050fdcdc60b
8080112: Replace and remove the last usages of CollectedHeap::n_par_threads()
stefank
parents:
30764
diff
changeset
|
185 |
bool parallel); |
1 | 186 |
|
187 |
// If "p" is in the space, returns the address of the start of the |
|
188 |
// "block" that contains "p". We say "block" instead of "object" since |
|
189 |
// some heaps may not pack objects densely; a chunk may either be an |
|
190 |
// object or a non-object. If "p" is not in the space, return NULL. |
|
1374
4c24294029a9
6711316: Open source the Garbage-First garbage collector
ysr
parents:
360
diff
changeset
|
191 |
virtual HeapWord* block_start_const(const void* p) const = 0; |
4c24294029a9
6711316: Open source the Garbage-First garbage collector
ysr
parents:
360
diff
changeset
|
192 |
|
4c24294029a9
6711316: Open source the Garbage-First garbage collector
ysr
parents:
360
diff
changeset
|
193 |
// The non-const version may have benevolent side effects on the data |
4c24294029a9
6711316: Open source the Garbage-First garbage collector
ysr
parents:
360
diff
changeset
|
194 |
// structure supporting these calls, possibly speeding up future calls. |
4c24294029a9
6711316: Open source the Garbage-First garbage collector
ysr
parents:
360
diff
changeset
|
195 |
// The default implementation, however, is simply to call the const |
4c24294029a9
6711316: Open source the Garbage-First garbage collector
ysr
parents:
360
diff
changeset
|
196 |
// version. |
29703
0bbea51cbaf8
8075829: Move CSpaceCounters implementation to cSpaceCounters.cpp
stefank
parents:
29681
diff
changeset
|
197 |
virtual HeapWord* block_start(const void* p); |
1 | 198 |
|
199 |
// Requires "addr" to be the start of a chunk, and returns its size. |
|
200 |
// "addr + size" is required to be the start of a new chunk, or the end |
|
201 |
// of the active area of the heap. |
|
202 |
virtual size_t block_size(const HeapWord* addr) const = 0; |
|
203 |
||
204 |
// Requires "addr" to be the start of a block, and returns "TRUE" iff |
|
205 |
// the block is an object. |
|
206 |
virtual bool block_is_obj(const HeapWord* addr) const = 0; |
|
207 |
||
208 |
// Requires "addr" to be the start of a block, and returns "TRUE" iff |
|
209 |
// the block is an object and the object is alive. |
|
210 |
virtual bool obj_is_alive(const HeapWord* addr) const; |
|
211 |
||
212 |
// Allocation (return NULL if full). Assumes the caller has established |
|
213 |
// mutually exclusive access to the space. |
|
214 |
virtual HeapWord* allocate(size_t word_size) = 0; |
|
215 |
||
216 |
// Allocation (return NULL if full). Enforces mutual exclusion internally. |
|
217 |
virtual HeapWord* par_allocate(size_t word_size) = 0; |
|
218 |
||
219 |
// Mark-sweep-compact support: all spaces can update pointers to objects |
|
220 |
// moving as a part of compaction. |
|
27624
fe43edc5046d
8043243: convert SCAN_AND_FORWARD, SCAN_AND_ADJUST_POINTERS, SCAN_AND_COMPACT macros to methods
mlarsson
parents:
26839
diff
changeset
|
221 |
virtual void adjust_pointers() = 0; |
1 | 222 |
|
223 |
// PrintHeapAtGC support |
|
224 |
virtual void print() const; |
|
225 |
virtual void print_on(outputStream* st) const; |
|
226 |
virtual void print_short() const; |
|
227 |
virtual void print_short_on(outputStream* st) const; |
|
228 |
||
229 |
||
230 |
// Accessor for parallel sequential tasks. |
|
231 |
SequentialSubTasksDone* par_seq_tasks() { return &_par_seq_tasks; } |
|
232 |
||
233 |
// IF "this" is a ContiguousSpace, return it, else return NULL. |
|
234 |
virtual ContiguousSpace* toContiguousSpace() { |
|
235 |
return NULL; |
|
236 |
} |
|
237 |
||
238 |
// Debugging |
|
12379 | 239 |
virtual void verify() const = 0; |
1 | 240 |
}; |
241 |
||
242 |
// A MemRegionClosure (ResourceObj) whose "do_MemRegion" function applies an |
|
243 |
// OopClosure to (the addresses of) all the ref-containing fields that could |
|
244 |
// be modified by virtue of the given MemRegion being dirty. (Note that |
|
245 |
// because of the imprecise nature of the write barrier, this may iterate |
|
246 |
// over oops beyond the region.) |
|
247 |
// This base type for dirty card to oop closures handles memory regions |
|
248 |
// in non-contiguous spaces with no boundaries, and should be sub-classed |
|
249 |
// to support other space types. See ContiguousDCTOC for a sub-class |
|
250 |
// that works with ContiguousSpaces. |
|
251 |
||
252 |
class DirtyCardToOopClosure: public MemRegionClosureRO { |
|
253 |
protected: |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
254 |
ExtendedOopClosure* _cl; |
1 | 255 |
Space* _sp; |
256 |
CardTableModRefBS::PrecisionStyle _precision; |
|
257 |
HeapWord* _boundary; // If non-NULL, process only non-NULL oops |
|
258 |
// pointing below boundary. |
|
1374
4c24294029a9
6711316: Open source the Garbage-First garbage collector
ysr
parents:
360
diff
changeset
|
259 |
HeapWord* _min_done; // ObjHeadPreciseArray precision requires |
1 | 260 |
// a downwards traversal; this is the |
261 |
// lowest location already done (or, |
|
262 |
// alternatively, the lowest address that |
|
263 |
// shouldn't be done again. NULL means infinity.) |
|
264 |
NOT_PRODUCT(HeapWord* _last_bottom;) |
|
1374
4c24294029a9
6711316: Open source the Garbage-First garbage collector
ysr
parents:
360
diff
changeset
|
265 |
NOT_PRODUCT(HeapWord* _last_explicit_min_done;) |
1 | 266 |
|
267 |
// Get the actual top of the area on which the closure will |
|
268 |
// operate, given where the top is assumed to be (the end of the |
|
269 |
// memory region passed to do_MemRegion) and where the object |
|
270 |
// at the top is assumed to start. For example, an object may |
|
271 |
// start at the top but actually extend past the assumed top, |
|
272 |
// in which case the top becomes the end of the object. |
|
273 |
virtual HeapWord* get_actual_top(HeapWord* top, HeapWord* top_obj); |
|
274 |
||
275 |
// Walk the given memory region from bottom to (actual) top |
|
276 |
// looking for objects and applying the oop closure (_cl) to |
|
277 |
// them. The base implementation of this treats the area as |
|
278 |
// blocks, where a block may or may not be an object. Sub- |
|
279 |
// classes should override this to provide more accurate |
|
280 |
// or possibly more efficient walking. |
|
281 |
virtual void walk_mem_region(MemRegion mr, HeapWord* bottom, HeapWord* top); |
|
282 |
||
283 |
public: |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
284 |
DirtyCardToOopClosure(Space* sp, ExtendedOopClosure* cl, |
1 | 285 |
CardTableModRefBS::PrecisionStyle precision, |
286 |
HeapWord* boundary) : |
|
287 |
_sp(sp), _cl(cl), _precision(precision), _boundary(boundary), |
|
288 |
_min_done(NULL) { |
|
1374
4c24294029a9
6711316: Open source the Garbage-First garbage collector
ysr
parents:
360
diff
changeset
|
289 |
NOT_PRODUCT(_last_bottom = NULL); |
4c24294029a9
6711316: Open source the Garbage-First garbage collector
ysr
parents:
360
diff
changeset
|
290 |
NOT_PRODUCT(_last_explicit_min_done = NULL); |
1 | 291 |
} |
292 |
||
293 |
void do_MemRegion(MemRegion mr); |
|
294 |
||
295 |
void set_min_done(HeapWord* min_done) { |
|
296 |
_min_done = min_done; |
|
1374
4c24294029a9
6711316: Open source the Garbage-First garbage collector
ysr
parents:
360
diff
changeset
|
297 |
NOT_PRODUCT(_last_explicit_min_done = _min_done); |
1 | 298 |
} |
299 |
#ifndef PRODUCT |
|
300 |
void set_last_bottom(HeapWord* last_bottom) { |
|
301 |
_last_bottom = last_bottom; |
|
302 |
} |
|
303 |
#endif |
|
304 |
}; |
|
305 |
||
306 |
// A structure to represent a point at which objects are being copied |
|
307 |
// during compaction. |
|
308 |
class CompactPoint : public StackObj { |
|
309 |
public: |
|
310 |
Generation* gen; |
|
311 |
CompactibleSpace* space; |
|
312 |
HeapWord* threshold; |
|
25730
7eb4e685f739
8048112: G1 Full GC needs to support the case when the very first region is not available
tschatzl
parents:
24487
diff
changeset
|
313 |
|
26839 | 314 |
CompactPoint(Generation* g = NULL) : |
315 |
gen(g), space(NULL), threshold(0) {} |
|
1 | 316 |
}; |
317 |
||
318 |
// A space that supports compaction operations. This is usually, but not |
|
319 |
// necessarily, a space that is normally contiguous. But, for example, a |
|
320 |
// free-list-based space whose normal collection is a mark-sweep without |
|
321 |
// compaction could still support compaction in full GC's. |
|
27624
fe43edc5046d
8043243: convert SCAN_AND_FORWARD, SCAN_AND_ADJUST_POINTERS, SCAN_AND_COMPACT macros to methods
mlarsson
parents:
26839
diff
changeset
|
322 |
// |
fe43edc5046d
8043243: convert SCAN_AND_FORWARD, SCAN_AND_ADJUST_POINTERS, SCAN_AND_COMPACT macros to methods
mlarsson
parents:
26839
diff
changeset
|
323 |
// The compaction operations are implemented by the |
fe43edc5046d
8043243: convert SCAN_AND_FORWARD, SCAN_AND_ADJUST_POINTERS, SCAN_AND_COMPACT macros to methods
mlarsson
parents:
26839
diff
changeset
|
324 |
// scan_and_{adjust_pointers,compact,forward} function templates. |
fe43edc5046d
8043243: convert SCAN_AND_FORWARD, SCAN_AND_ADJUST_POINTERS, SCAN_AND_COMPACT macros to methods
mlarsson
parents:
26839
diff
changeset
|
325 |
// The following are, non-virtual, auxiliary functions used by these function templates: |
fe43edc5046d
8043243: convert SCAN_AND_FORWARD, SCAN_AND_ADJUST_POINTERS, SCAN_AND_COMPACT macros to methods
mlarsson
parents:
26839
diff
changeset
|
326 |
// - scan_limit() |
fe43edc5046d
8043243: convert SCAN_AND_FORWARD, SCAN_AND_ADJUST_POINTERS, SCAN_AND_COMPACT macros to methods
mlarsson
parents:
26839
diff
changeset
|
327 |
// - scanned_block_is_obj() |
fe43edc5046d
8043243: convert SCAN_AND_FORWARD, SCAN_AND_ADJUST_POINTERS, SCAN_AND_COMPACT macros to methods
mlarsson
parents:
26839
diff
changeset
|
328 |
// - scanned_block_size() |
fe43edc5046d
8043243: convert SCAN_AND_FORWARD, SCAN_AND_ADJUST_POINTERS, SCAN_AND_COMPACT macros to methods
mlarsson
parents:
26839
diff
changeset
|
329 |
// - adjust_obj_size() |
fe43edc5046d
8043243: convert SCAN_AND_FORWARD, SCAN_AND_ADJUST_POINTERS, SCAN_AND_COMPACT macros to methods
mlarsson
parents:
26839
diff
changeset
|
330 |
// - obj_size() |
fe43edc5046d
8043243: convert SCAN_AND_FORWARD, SCAN_AND_ADJUST_POINTERS, SCAN_AND_COMPACT macros to methods
mlarsson
parents:
26839
diff
changeset
|
331 |
// These functions are to be used exclusively by the scan_and_* function templates, |
fe43edc5046d
8043243: convert SCAN_AND_FORWARD, SCAN_AND_ADJUST_POINTERS, SCAN_AND_COMPACT macros to methods
mlarsson
parents:
26839
diff
changeset
|
332 |
// and must be defined for all (non-abstract) subclasses of CompactibleSpace. |
fe43edc5046d
8043243: convert SCAN_AND_FORWARD, SCAN_AND_ADJUST_POINTERS, SCAN_AND_COMPACT macros to methods
mlarsson
parents:
26839
diff
changeset
|
333 |
// |
fe43edc5046d
8043243: convert SCAN_AND_FORWARD, SCAN_AND_ADJUST_POINTERS, SCAN_AND_COMPACT macros to methods
mlarsson
parents:
26839
diff
changeset
|
334 |
// NOTE: Any subclasses to CompactibleSpace wanting to change/define the behavior |
fe43edc5046d
8043243: convert SCAN_AND_FORWARD, SCAN_AND_ADJUST_POINTERS, SCAN_AND_COMPACT macros to methods
mlarsson
parents:
26839
diff
changeset
|
335 |
// in any of the auxiliary functions must also override the corresponding |
fe43edc5046d
8043243: convert SCAN_AND_FORWARD, SCAN_AND_ADJUST_POINTERS, SCAN_AND_COMPACT macros to methods
mlarsson
parents:
26839
diff
changeset
|
336 |
// prepare_for_compaction/adjust_pointers/compact functions using them. |
fe43edc5046d
8043243: convert SCAN_AND_FORWARD, SCAN_AND_ADJUST_POINTERS, SCAN_AND_COMPACT macros to methods
mlarsson
parents:
26839
diff
changeset
|
337 |
// If not, such changes will not be used or have no effect on the compaction operations. |
fe43edc5046d
8043243: convert SCAN_AND_FORWARD, SCAN_AND_ADJUST_POINTERS, SCAN_AND_COMPACT macros to methods
mlarsson
parents:
26839
diff
changeset
|
338 |
// |
fe43edc5046d
8043243: convert SCAN_AND_FORWARD, SCAN_AND_ADJUST_POINTERS, SCAN_AND_COMPACT macros to methods
mlarsson
parents:
26839
diff
changeset
|
339 |
// This translates to the following dependencies: |
fe43edc5046d
8043243: convert SCAN_AND_FORWARD, SCAN_AND_ADJUST_POINTERS, SCAN_AND_COMPACT macros to methods
mlarsson
parents:
26839
diff
changeset
|
340 |
// Overrides/definitions of |
fe43edc5046d
8043243: convert SCAN_AND_FORWARD, SCAN_AND_ADJUST_POINTERS, SCAN_AND_COMPACT macros to methods
mlarsson
parents:
26839
diff
changeset
|
341 |
// - scan_limit |
fe43edc5046d
8043243: convert SCAN_AND_FORWARD, SCAN_AND_ADJUST_POINTERS, SCAN_AND_COMPACT macros to methods
mlarsson
parents:
26839
diff
changeset
|
342 |
// - scanned_block_is_obj |
fe43edc5046d
8043243: convert SCAN_AND_FORWARD, SCAN_AND_ADJUST_POINTERS, SCAN_AND_COMPACT macros to methods
mlarsson
parents:
26839
diff
changeset
|
343 |
// - scanned_block_size |
fe43edc5046d
8043243: convert SCAN_AND_FORWARD, SCAN_AND_ADJUST_POINTERS, SCAN_AND_COMPACT macros to methods
mlarsson
parents:
26839
diff
changeset
|
344 |
// require override/definition of prepare_for_compaction(). |
fe43edc5046d
8043243: convert SCAN_AND_FORWARD, SCAN_AND_ADJUST_POINTERS, SCAN_AND_COMPACT macros to methods
mlarsson
parents:
26839
diff
changeset
|
345 |
// Similar dependencies exist between |
fe43edc5046d
8043243: convert SCAN_AND_FORWARD, SCAN_AND_ADJUST_POINTERS, SCAN_AND_COMPACT macros to methods
mlarsson
parents:
26839
diff
changeset
|
346 |
// - adjust_obj_size and adjust_pointers() |
fe43edc5046d
8043243: convert SCAN_AND_FORWARD, SCAN_AND_ADJUST_POINTERS, SCAN_AND_COMPACT macros to methods
mlarsson
parents:
26839
diff
changeset
|
347 |
// - obj_size and compact(). |
fe43edc5046d
8043243: convert SCAN_AND_FORWARD, SCAN_AND_ADJUST_POINTERS, SCAN_AND_COMPACT macros to methods
mlarsson
parents:
26839
diff
changeset
|
348 |
// |
fe43edc5046d
8043243: convert SCAN_AND_FORWARD, SCAN_AND_ADJUST_POINTERS, SCAN_AND_COMPACT macros to methods
mlarsson
parents:
26839
diff
changeset
|
349 |
// Additionally, this also means that changes to block_size() or block_is_obj() that |
fe43edc5046d
8043243: convert SCAN_AND_FORWARD, SCAN_AND_ADJUST_POINTERS, SCAN_AND_COMPACT macros to methods
mlarsson
parents:
26839
diff
changeset
|
350 |
// should be effective during the compaction operations must provide a corresponding |
fe43edc5046d
8043243: convert SCAN_AND_FORWARD, SCAN_AND_ADJUST_POINTERS, SCAN_AND_COMPACT macros to methods
mlarsson
parents:
26839
diff
changeset
|
351 |
// definition of scanned_block_size/scanned_block_is_obj respectively. |
1 | 352 |
class CompactibleSpace: public Space { |
353 |
friend class VMStructs; |
|
354 |
friend class CompactibleFreeListSpace; |
|
355 |
private: |
|
356 |
HeapWord* _compaction_top; |
|
357 |
CompactibleSpace* _next_compaction_space; |
|
358 |
||
27624
fe43edc5046d
8043243: convert SCAN_AND_FORWARD, SCAN_AND_ADJUST_POINTERS, SCAN_AND_COMPACT macros to methods
mlarsson
parents:
26839
diff
changeset
|
359 |
// Auxiliary functions for scan_and_{forward,adjust_pointers,compact} support. |
fe43edc5046d
8043243: convert SCAN_AND_FORWARD, SCAN_AND_ADJUST_POINTERS, SCAN_AND_COMPACT macros to methods
mlarsson
parents:
26839
diff
changeset
|
360 |
inline size_t adjust_obj_size(size_t size) const { |
fe43edc5046d
8043243: convert SCAN_AND_FORWARD, SCAN_AND_ADJUST_POINTERS, SCAN_AND_COMPACT macros to methods
mlarsson
parents:
26839
diff
changeset
|
361 |
return size; |
fe43edc5046d
8043243: convert SCAN_AND_FORWARD, SCAN_AND_ADJUST_POINTERS, SCAN_AND_COMPACT macros to methods
mlarsson
parents:
26839
diff
changeset
|
362 |
} |
fe43edc5046d
8043243: convert SCAN_AND_FORWARD, SCAN_AND_ADJUST_POINTERS, SCAN_AND_COMPACT macros to methods
mlarsson
parents:
26839
diff
changeset
|
363 |
|
fe43edc5046d
8043243: convert SCAN_AND_FORWARD, SCAN_AND_ADJUST_POINTERS, SCAN_AND_COMPACT macros to methods
mlarsson
parents:
26839
diff
changeset
|
364 |
inline size_t obj_size(const HeapWord* addr) const { |
fe43edc5046d
8043243: convert SCAN_AND_FORWARD, SCAN_AND_ADJUST_POINTERS, SCAN_AND_COMPACT macros to methods
mlarsson
parents:
26839
diff
changeset
|
365 |
return oop(addr)->size(); |
fe43edc5046d
8043243: convert SCAN_AND_FORWARD, SCAN_AND_ADJUST_POINTERS, SCAN_AND_COMPACT macros to methods
mlarsson
parents:
26839
diff
changeset
|
366 |
} |
fe43edc5046d
8043243: convert SCAN_AND_FORWARD, SCAN_AND_ADJUST_POINTERS, SCAN_AND_COMPACT macros to methods
mlarsson
parents:
26839
diff
changeset
|
367 |
|
1 | 368 |
public: |
1379
ccfaefa561cd
6718086: CMS assert: _concurrent_iteration_safe_limit update missed
ysr
parents:
1374
diff
changeset
|
369 |
CompactibleSpace() : |
ccfaefa561cd
6718086: CMS assert: _concurrent_iteration_safe_limit update missed
ysr
parents:
1374
diff
changeset
|
370 |
_compaction_top(NULL), _next_compaction_space(NULL) {} |
ccfaefa561cd
6718086: CMS assert: _concurrent_iteration_safe_limit update missed
ysr
parents:
1374
diff
changeset
|
371 |
|
971
f0b20be4165d
6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents:
360
diff
changeset
|
372 |
virtual void initialize(MemRegion mr, bool clear_space, bool mangle_space); |
1388 | 373 |
virtual void clear(bool mangle_space); |
1 | 374 |
|
375 |
// Used temporarily during a compaction phase to hold the value |
|
376 |
// top should have when compaction is complete. |
|
377 |
HeapWord* compaction_top() const { return _compaction_top; } |
|
378 |
||
379 |
void set_compaction_top(HeapWord* value) { |
|
380 |
assert(value == NULL || (value >= bottom() && value <= end()), |
|
381 |
"should point inside space"); |
|
382 |
_compaction_top = value; |
|
383 |
} |
|
384 |
||
385 |
// Perform operations on the space needed after a compaction |
|
386 |
// has been performed. |
|
23537
3de0cad00ae1
8038405: Clean up some virtual fucntions in Space class hierarchy
mgerdin
parents:
23536
diff
changeset
|
387 |
virtual void reset_after_compaction() = 0; |
1 | 388 |
|
389 |
// Returns the next space (in the current generation) to be compacted in |
|
390 |
// the global compaction order. Also is used to select the next |
|
391 |
// space into which to compact. |
|
392 |
||
393 |
virtual CompactibleSpace* next_compaction_space() const { |
|
394 |
return _next_compaction_space; |
|
395 |
} |
|
396 |
||
397 |
void set_next_compaction_space(CompactibleSpace* csp) { |
|
398 |
_next_compaction_space = csp; |
|
399 |
} |
|
400 |
||
401 |
// MarkSweep support phase2 |
|
402 |
||
403 |
// Start the process of compaction of the current space: compute |
|
404 |
// post-compaction addresses, and insert forwarding pointers. The fields |
|
405 |
// "cp->gen" and "cp->compaction_space" are the generation and space into |
|
406 |
// which we are currently compacting. This call updates "cp" as necessary, |
|
407 |
// and leaves the "compaction_top" of the final value of |
|
408 |
// "cp->compaction_space" up-to-date. Offset tables may be updated in |
|
409 |
// this phase as if the final copy had occurred; if so, "cp->threshold" |
|
410 |
// indicates when the next such action should be taken. |
|
27624
fe43edc5046d
8043243: convert SCAN_AND_FORWARD, SCAN_AND_ADJUST_POINTERS, SCAN_AND_COMPACT macros to methods
mlarsson
parents:
26839
diff
changeset
|
411 |
virtual void prepare_for_compaction(CompactPoint* cp) = 0; |
1 | 412 |
// MarkSweep support phase3 |
413 |
virtual void adjust_pointers(); |
|
414 |
// MarkSweep support phase4 |
|
415 |
virtual void compact(); |
|
416 |
||
417 |
// The maximum percentage of objects that can be dead in the compacted |
|
418 |
// live part of a compacted space ("deadwood" support.) |
|
1557 | 419 |
virtual size_t allowed_dead_ratio() const { return 0; }; |
1 | 420 |
|
421 |
// Some contiguous spaces may maintain some data structures that should |
|
422 |
// be updated whenever an allocation crosses a boundary. This function |
|
423 |
// returns the first such boundary. |
|
424 |
// (The default implementation returns the end of the space, so the |
|
425 |
// boundary is never crossed.) |
|
426 |
virtual HeapWord* initialize_threshold() { return end(); } |
|
427 |
||
428 |
// "q" is an object of the given "size" that should be forwarded; |
|
429 |
// "cp" names the generation ("gen") and containing "this" (which must |
|
430 |
// also equal "cp->space"). "compact_top" is where in "this" the |
|
431 |
// next object should be forwarded to. If there is room in "this" for |
|
432 |
// the object, insert an appropriate forwarding pointer in "q". |
|
433 |
// If not, go to the next compaction space (there must |
|
434 |
// be one, since compaction must succeed -- we go to the first space of |
|
435 |
// the previous generation if necessary, updating "cp"), reset compact_top |
|
436 |
// and then forward. In either case, returns the new value of "compact_top". |
|
22551 | 437 |
// If the forwarding crosses "cp->threshold", invokes the "cross_threshold" |
1 | 438 |
// function of the then-current compaction space, and updates "cp->threshold |
439 |
// accordingly". |
|
440 |
virtual HeapWord* forward(oop q, size_t size, CompactPoint* cp, |
|
441 |
HeapWord* compact_top); |
|
442 |
||
22551 | 443 |
// Return a size with adjustments as required of the space. |
1 | 444 |
virtual size_t adjust_object_size_v(size_t size) const { return size; } |
445 |
||
446 |
protected: |
|
447 |
// Used during compaction. |
|
448 |
HeapWord* _first_dead; |
|
449 |
HeapWord* _end_of_live; |
|
450 |
||
451 |
// Minimum size of a free block. |
|
23537
3de0cad00ae1
8038405: Clean up some virtual fucntions in Space class hierarchy
mgerdin
parents:
23536
diff
changeset
|
452 |
virtual size_t minimum_free_block_size() const { return 0; } |
1 | 453 |
|
454 |
// This the function is invoked when an allocation of an object covering |
|
455 |
// "start" to "end occurs crosses the threshold; returns the next |
|
456 |
// threshold. (The default implementation does nothing.) |
|
457 |
virtual HeapWord* cross_threshold(HeapWord* start, HeapWord* the_end) { |
|
458 |
return end(); |
|
459 |
} |
|
460 |
||
461 |
// Requires "allowed_deadspace_words > 0", that "q" is the start of a |
|
462 |
// free block of the given "word_len", and that "q", were it an object, |
|
22551 | 463 |
// would not move if forwarded. If the size allows, fill the free |
1 | 464 |
// block with an object, to prevent excessive compaction. Returns "true" |
465 |
// iff the free region was made deadspace, and modifies |
|
466 |
// "allowed_deadspace_words" to reflect the number of available deadspace |
|
467 |
// words remaining after this operation. |
|
468 |
bool insert_deadspace(size_t& allowed_deadspace_words, HeapWord* q, |
|
469 |
size_t word_len); |
|
27624
fe43edc5046d
8043243: convert SCAN_AND_FORWARD, SCAN_AND_ADJUST_POINTERS, SCAN_AND_COMPACT macros to methods
mlarsson
parents:
26839
diff
changeset
|
470 |
|
fe43edc5046d
8043243: convert SCAN_AND_FORWARD, SCAN_AND_ADJUST_POINTERS, SCAN_AND_COMPACT macros to methods
mlarsson
parents:
26839
diff
changeset
|
471 |
// Below are template functions for scan_and_* algorithms (avoiding virtual calls). |
fe43edc5046d
8043243: convert SCAN_AND_FORWARD, SCAN_AND_ADJUST_POINTERS, SCAN_AND_COMPACT macros to methods
mlarsson
parents:
26839
diff
changeset
|
472 |
// The space argument should be a subclass of CompactibleSpace, implementing |
fe43edc5046d
8043243: convert SCAN_AND_FORWARD, SCAN_AND_ADJUST_POINTERS, SCAN_AND_COMPACT macros to methods
mlarsson
parents:
26839
diff
changeset
|
473 |
// scan_limit(), scanned_block_is_obj(), and scanned_block_size(), |
fe43edc5046d
8043243: convert SCAN_AND_FORWARD, SCAN_AND_ADJUST_POINTERS, SCAN_AND_COMPACT macros to methods
mlarsson
parents:
26839
diff
changeset
|
474 |
// and possibly also overriding obj_size(), and adjust_obj_size(). |
fe43edc5046d
8043243: convert SCAN_AND_FORWARD, SCAN_AND_ADJUST_POINTERS, SCAN_AND_COMPACT macros to methods
mlarsson
parents:
26839
diff
changeset
|
475 |
// These functions should avoid virtual calls whenever possible. |
fe43edc5046d
8043243: convert SCAN_AND_FORWARD, SCAN_AND_ADJUST_POINTERS, SCAN_AND_COMPACT macros to methods
mlarsson
parents:
26839
diff
changeset
|
476 |
|
fe43edc5046d
8043243: convert SCAN_AND_FORWARD, SCAN_AND_ADJUST_POINTERS, SCAN_AND_COMPACT macros to methods
mlarsson
parents:
26839
diff
changeset
|
477 |
// Frequently calls adjust_obj_size(). |
fe43edc5046d
8043243: convert SCAN_AND_FORWARD, SCAN_AND_ADJUST_POINTERS, SCAN_AND_COMPACT macros to methods
mlarsson
parents:
26839
diff
changeset
|
478 |
template <class SpaceType> |
fe43edc5046d
8043243: convert SCAN_AND_FORWARD, SCAN_AND_ADJUST_POINTERS, SCAN_AND_COMPACT macros to methods
mlarsson
parents:
26839
diff
changeset
|
479 |
static inline void scan_and_adjust_pointers(SpaceType* space); |
fe43edc5046d
8043243: convert SCAN_AND_FORWARD, SCAN_AND_ADJUST_POINTERS, SCAN_AND_COMPACT macros to methods
mlarsson
parents:
26839
diff
changeset
|
480 |
|
fe43edc5046d
8043243: convert SCAN_AND_FORWARD, SCAN_AND_ADJUST_POINTERS, SCAN_AND_COMPACT macros to methods
mlarsson
parents:
26839
diff
changeset
|
481 |
// Frequently calls obj_size(). |
fe43edc5046d
8043243: convert SCAN_AND_FORWARD, SCAN_AND_ADJUST_POINTERS, SCAN_AND_COMPACT macros to methods
mlarsson
parents:
26839
diff
changeset
|
482 |
template <class SpaceType> |
fe43edc5046d
8043243: convert SCAN_AND_FORWARD, SCAN_AND_ADJUST_POINTERS, SCAN_AND_COMPACT macros to methods
mlarsson
parents:
26839
diff
changeset
|
483 |
static inline void scan_and_compact(SpaceType* space); |
fe43edc5046d
8043243: convert SCAN_AND_FORWARD, SCAN_AND_ADJUST_POINTERS, SCAN_AND_COMPACT macros to methods
mlarsson
parents:
26839
diff
changeset
|
484 |
|
fe43edc5046d
8043243: convert SCAN_AND_FORWARD, SCAN_AND_ADJUST_POINTERS, SCAN_AND_COMPACT macros to methods
mlarsson
parents:
26839
diff
changeset
|
485 |
// Frequently calls scanned_block_is_obj() and scanned_block_size(). |
fe43edc5046d
8043243: convert SCAN_AND_FORWARD, SCAN_AND_ADJUST_POINTERS, SCAN_AND_COMPACT macros to methods
mlarsson
parents:
26839
diff
changeset
|
486 |
// Requires the scan_limit() function. |
fe43edc5046d
8043243: convert SCAN_AND_FORWARD, SCAN_AND_ADJUST_POINTERS, SCAN_AND_COMPACT macros to methods
mlarsson
parents:
26839
diff
changeset
|
487 |
template <class SpaceType> |
fe43edc5046d
8043243: convert SCAN_AND_FORWARD, SCAN_AND_ADJUST_POINTERS, SCAN_AND_COMPACT macros to methods
mlarsson
parents:
26839
diff
changeset
|
488 |
static inline void scan_and_forward(SpaceType* space, CompactPoint* cp); |
1 | 489 |
}; |
490 |
||
971
f0b20be4165d
6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents:
360
diff
changeset
|
491 |
class GenSpaceMangler; |
f0b20be4165d
6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents:
360
diff
changeset
|
492 |
|
1 | 493 |
// A space in which the free area is contiguous. It therefore supports |
494 |
// faster allocation, and compaction. |
|
495 |
class ContiguousSpace: public CompactibleSpace { |
|
496 |
friend class VMStructs; |
|
27624
fe43edc5046d
8043243: convert SCAN_AND_FORWARD, SCAN_AND_ADJUST_POINTERS, SCAN_AND_COMPACT macros to methods
mlarsson
parents:
26839
diff
changeset
|
497 |
// Allow scan_and_forward function to call (private) overrides for auxiliary functions on this class |
fe43edc5046d
8043243: convert SCAN_AND_FORWARD, SCAN_AND_ADJUST_POINTERS, SCAN_AND_COMPACT macros to methods
mlarsson
parents:
26839
diff
changeset
|
498 |
template <typename SpaceType> |
fe43edc5046d
8043243: convert SCAN_AND_FORWARD, SCAN_AND_ADJUST_POINTERS, SCAN_AND_COMPACT macros to methods
mlarsson
parents:
26839
diff
changeset
|
499 |
friend void CompactibleSpace::scan_and_forward(SpaceType* space, CompactPoint* cp); |
fe43edc5046d
8043243: convert SCAN_AND_FORWARD, SCAN_AND_ADJUST_POINTERS, SCAN_AND_COMPACT macros to methods
mlarsson
parents:
26839
diff
changeset
|
500 |
|
fe43edc5046d
8043243: convert SCAN_AND_FORWARD, SCAN_AND_ADJUST_POINTERS, SCAN_AND_COMPACT macros to methods
mlarsson
parents:
26839
diff
changeset
|
501 |
private: |
fe43edc5046d
8043243: convert SCAN_AND_FORWARD, SCAN_AND_ADJUST_POINTERS, SCAN_AND_COMPACT macros to methods
mlarsson
parents:
26839
diff
changeset
|
502 |
// Auxiliary functions for scan_and_forward support. |
fe43edc5046d
8043243: convert SCAN_AND_FORWARD, SCAN_AND_ADJUST_POINTERS, SCAN_AND_COMPACT macros to methods
mlarsson
parents:
26839
diff
changeset
|
503 |
// See comments for CompactibleSpace for more information. |
fe43edc5046d
8043243: convert SCAN_AND_FORWARD, SCAN_AND_ADJUST_POINTERS, SCAN_AND_COMPACT macros to methods
mlarsson
parents:
26839
diff
changeset
|
504 |
inline HeapWord* scan_limit() const { |
fe43edc5046d
8043243: convert SCAN_AND_FORWARD, SCAN_AND_ADJUST_POINTERS, SCAN_AND_COMPACT macros to methods
mlarsson
parents:
26839
diff
changeset
|
505 |
return top(); |
fe43edc5046d
8043243: convert SCAN_AND_FORWARD, SCAN_AND_ADJUST_POINTERS, SCAN_AND_COMPACT macros to methods
mlarsson
parents:
26839
diff
changeset
|
506 |
} |
fe43edc5046d
8043243: convert SCAN_AND_FORWARD, SCAN_AND_ADJUST_POINTERS, SCAN_AND_COMPACT macros to methods
mlarsson
parents:
26839
diff
changeset
|
507 |
|
fe43edc5046d
8043243: convert SCAN_AND_FORWARD, SCAN_AND_ADJUST_POINTERS, SCAN_AND_COMPACT macros to methods
mlarsson
parents:
26839
diff
changeset
|
508 |
inline bool scanned_block_is_obj(const HeapWord* addr) const { |
fe43edc5046d
8043243: convert SCAN_AND_FORWARD, SCAN_AND_ADJUST_POINTERS, SCAN_AND_COMPACT macros to methods
mlarsson
parents:
26839
diff
changeset
|
509 |
return true; // Always true, since scan_limit is top |
fe43edc5046d
8043243: convert SCAN_AND_FORWARD, SCAN_AND_ADJUST_POINTERS, SCAN_AND_COMPACT macros to methods
mlarsson
parents:
26839
diff
changeset
|
510 |
} |
fe43edc5046d
8043243: convert SCAN_AND_FORWARD, SCAN_AND_ADJUST_POINTERS, SCAN_AND_COMPACT macros to methods
mlarsson
parents:
26839
diff
changeset
|
511 |
|
fe43edc5046d
8043243: convert SCAN_AND_FORWARD, SCAN_AND_ADJUST_POINTERS, SCAN_AND_COMPACT macros to methods
mlarsson
parents:
26839
diff
changeset
|
512 |
inline size_t scanned_block_size(const HeapWord* addr) const { |
fe43edc5046d
8043243: convert SCAN_AND_FORWARD, SCAN_AND_ADJUST_POINTERS, SCAN_AND_COMPACT macros to methods
mlarsson
parents:
26839
diff
changeset
|
513 |
return oop(addr)->size(); |
fe43edc5046d
8043243: convert SCAN_AND_FORWARD, SCAN_AND_ADJUST_POINTERS, SCAN_AND_COMPACT macros to methods
mlarsson
parents:
26839
diff
changeset
|
514 |
} |
fe43edc5046d
8043243: convert SCAN_AND_FORWARD, SCAN_AND_ADJUST_POINTERS, SCAN_AND_COMPACT macros to methods
mlarsson
parents:
26839
diff
changeset
|
515 |
|
1 | 516 |
protected: |
517 |
HeapWord* _top; |
|
518 |
HeapWord* _concurrent_iteration_safe_limit; |
|
971
f0b20be4165d
6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents:
360
diff
changeset
|
519 |
// A helper for mangling the unused area of the space in debug builds. |
f0b20be4165d
6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents:
360
diff
changeset
|
520 |
GenSpaceMangler* _mangler; |
f0b20be4165d
6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents:
360
diff
changeset
|
521 |
|
f0b20be4165d
6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents:
360
diff
changeset
|
522 |
GenSpaceMangler* mangler() { return _mangler; } |
1 | 523 |
|
524 |
// Allocation helpers (return NULL if full). |
|
27625 | 525 |
inline HeapWord* allocate_impl(size_t word_size); |
526 |
inline HeapWord* par_allocate_impl(size_t word_size); |
|
1 | 527 |
|
528 |
public: |
|
971
f0b20be4165d
6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents:
360
diff
changeset
|
529 |
ContiguousSpace(); |
f0b20be4165d
6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents:
360
diff
changeset
|
530 |
~ContiguousSpace(); |
f0b20be4165d
6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents:
360
diff
changeset
|
531 |
|
f0b20be4165d
6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents:
360
diff
changeset
|
532 |
virtual void initialize(MemRegion mr, bool clear_space, bool mangle_space); |
1388 | 533 |
virtual void clear(bool mangle_space); |
1 | 534 |
|
535 |
// Accessors |
|
536 |
HeapWord* top() const { return _top; } |
|
537 |
void set_top(HeapWord* value) { _top = value; } |
|
538 |
||
23537
3de0cad00ae1
8038405: Clean up some virtual fucntions in Space class hierarchy
mgerdin
parents:
23536
diff
changeset
|
539 |
void set_saved_mark() { _saved_mark_word = top(); } |
1374
4c24294029a9
6711316: Open source the Garbage-First garbage collector
ysr
parents:
360
diff
changeset
|
540 |
void reset_saved_mark() { _saved_mark_word = bottom(); } |
1 | 541 |
|
542 |
bool saved_mark_at_top() const { return saved_mark_word() == top(); } |
|
543 |
||
971
f0b20be4165d
6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents:
360
diff
changeset
|
544 |
// In debug mode mangle (write it with a particular bit |
f0b20be4165d
6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents:
360
diff
changeset
|
545 |
// pattern) the unused part of a space. |
f0b20be4165d
6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents:
360
diff
changeset
|
546 |
|
f0b20be4165d
6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents:
360
diff
changeset
|
547 |
// Used to save the an address in a space for later use during mangling. |
f0b20be4165d
6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents:
360
diff
changeset
|
548 |
void set_top_for_allocations(HeapWord* v) PRODUCT_RETURN; |
f0b20be4165d
6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents:
360
diff
changeset
|
549 |
// Used to save the space's current top for later use during mangling. |
f0b20be4165d
6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents:
360
diff
changeset
|
550 |
void set_top_for_allocations() PRODUCT_RETURN; |
f0b20be4165d
6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents:
360
diff
changeset
|
551 |
|
f0b20be4165d
6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents:
360
diff
changeset
|
552 |
// Mangle regions in the space from the current top up to the |
f0b20be4165d
6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents:
360
diff
changeset
|
553 |
// previously mangled part of the space. |
f0b20be4165d
6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents:
360
diff
changeset
|
554 |
void mangle_unused_area() PRODUCT_RETURN; |
f0b20be4165d
6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents:
360
diff
changeset
|
555 |
// Mangle [top, end) |
f0b20be4165d
6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents:
360
diff
changeset
|
556 |
void mangle_unused_area_complete() PRODUCT_RETURN; |
f0b20be4165d
6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents:
360
diff
changeset
|
557 |
|
f0b20be4165d
6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents:
360
diff
changeset
|
558 |
// Do some sparse checking on the area that should have been mangled. |
f0b20be4165d
6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents:
360
diff
changeset
|
559 |
void check_mangled_unused_area(HeapWord* limit) PRODUCT_RETURN; |
f0b20be4165d
6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents:
360
diff
changeset
|
560 |
// Check the complete area that should have been mangled. |
f0b20be4165d
6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents:
360
diff
changeset
|
561 |
// This code may be NULL depending on the macro DEBUG_MANGLING. |
f0b20be4165d
6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents:
360
diff
changeset
|
562 |
void check_mangled_unused_area_complete() PRODUCT_RETURN; |
1 | 563 |
|
564 |
// Size computations: sizes in bytes. |
|
565 |
size_t capacity() const { return byte_size(bottom(), end()); } |
|
566 |
size_t used() const { return byte_size(bottom(), top()); } |
|
567 |
size_t free() const { return byte_size(top(), end()); } |
|
568 |
||
569 |
virtual bool is_free_block(const HeapWord* p) const; |
|
570 |
||
571 |
// In a contiguous space we have a more obvious bound on what parts |
|
572 |
// contain objects. |
|
573 |
MemRegion used_region() const { return MemRegion(bottom(), top()); } |
|
574 |
||
575 |
// Allocation (return NULL if full) |
|
576 |
virtual HeapWord* allocate(size_t word_size); |
|
577 |
virtual HeapWord* par_allocate(size_t word_size); |
|
25905
04a3d83cc752
8031323: Optionally align objects copied to survivor spaces
jmasa
parents:
25730
diff
changeset
|
578 |
HeapWord* allocate_aligned(size_t word_size); |
1 | 579 |
|
580 |
// Iteration |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
581 |
void oop_iterate(ExtendedOopClosure* cl); |
1 | 582 |
void object_iterate(ObjectClosure* blk); |
1893
c82e388e17c5
6689653: JMapPerm fails with UseConcMarkSweepIncGC and compressed oops off
jmasa
parents:
1557
diff
changeset
|
583 |
// For contiguous spaces this method will iterate safely over objects |
c82e388e17c5
6689653: JMapPerm fails with UseConcMarkSweepIncGC and compressed oops off
jmasa
parents:
1557
diff
changeset
|
584 |
// in the space (i.e., between bottom and top) when at a safepoint. |
c82e388e17c5
6689653: JMapPerm fails with UseConcMarkSweepIncGC and compressed oops off
jmasa
parents:
1557
diff
changeset
|
585 |
void safe_object_iterate(ObjectClosure* blk); |
23536
5ad11152daa9
8038412: Move object_iterate_careful down from Space to ContigousSpace and CFLSpace
mgerdin
parents:
23535
diff
changeset
|
586 |
|
5ad11152daa9
8038412: Move object_iterate_careful down from Space to ContigousSpace and CFLSpace
mgerdin
parents:
23535
diff
changeset
|
587 |
// Iterate over as many initialized objects in the space as possible, |
5ad11152daa9
8038412: Move object_iterate_careful down from Space to ContigousSpace and CFLSpace
mgerdin
parents:
23535
diff
changeset
|
588 |
// calling "cl.do_object_careful" on each. Return NULL if all objects |
5ad11152daa9
8038412: Move object_iterate_careful down from Space to ContigousSpace and CFLSpace
mgerdin
parents:
23535
diff
changeset
|
589 |
// in the space (at the start of the iteration) were iterated over. |
5ad11152daa9
8038412: Move object_iterate_careful down from Space to ContigousSpace and CFLSpace
mgerdin
parents:
23535
diff
changeset
|
590 |
// Return an address indicating the extent of the iteration in the |
5ad11152daa9
8038412: Move object_iterate_careful down from Space to ContigousSpace and CFLSpace
mgerdin
parents:
23535
diff
changeset
|
591 |
// event that the iteration had to return because of finding an |
5ad11152daa9
8038412: Move object_iterate_careful down from Space to ContigousSpace and CFLSpace
mgerdin
parents:
23535
diff
changeset
|
592 |
// uninitialized object in the space, or if the closure "cl" |
5ad11152daa9
8038412: Move object_iterate_careful down from Space to ContigousSpace and CFLSpace
mgerdin
parents:
23535
diff
changeset
|
593 |
// signaled early termination. |
1 | 594 |
HeapWord* object_iterate_careful(ObjectClosureCareful* cl); |
12597
904566185bdf
7167437: Can't build on linux without precompiled headers
stefank
parents:
12379
diff
changeset
|
595 |
HeapWord* concurrent_iteration_safe_limit() { |
904566185bdf
7167437: Can't build on linux without precompiled headers
stefank
parents:
12379
diff
changeset
|
596 |
assert(_concurrent_iteration_safe_limit <= top(), |
904566185bdf
7167437: Can't build on linux without precompiled headers
stefank
parents:
12379
diff
changeset
|
597 |
"_concurrent_iteration_safe_limit update missed"); |
904566185bdf
7167437: Can't build on linux without precompiled headers
stefank
parents:
12379
diff
changeset
|
598 |
return _concurrent_iteration_safe_limit; |
904566185bdf
7167437: Can't build on linux without precompiled headers
stefank
parents:
12379
diff
changeset
|
599 |
} |
1 | 600 |
// changes the safe limit, all objects from bottom() to the new |
601 |
// limit should be properly initialized |
|
12597
904566185bdf
7167437: Can't build on linux without precompiled headers
stefank
parents:
12379
diff
changeset
|
602 |
void set_concurrent_iteration_safe_limit(HeapWord* new_limit) { |
904566185bdf
7167437: Can't build on linux without precompiled headers
stefank
parents:
12379
diff
changeset
|
603 |
assert(new_limit <= top(), "uninitialized objects in the safe range"); |
904566185bdf
7167437: Can't build on linux without precompiled headers
stefank
parents:
12379
diff
changeset
|
604 |
_concurrent_iteration_safe_limit = new_limit; |
904566185bdf
7167437: Can't build on linux without precompiled headers
stefank
parents:
12379
diff
changeset
|
605 |
} |
1 | 606 |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
607 |
|
15482
470d0b0c09f1
8005915: Unify SERIALGC and INCLUDE_ALTERNATE_GCS
jprovino
parents:
15088
diff
changeset
|
608 |
#if INCLUDE_ALL_GCS |
1 | 609 |
// In support of parallel oop_iterate. |
610 |
#define ContigSpace_PAR_OOP_ITERATE_DECL(OopClosureType, nv_suffix) \ |
|
611 |
void par_oop_iterate(MemRegion mr, OopClosureType* blk); |
|
612 |
||
613 |
ALL_PAR_OOP_ITERATE_CLOSURES(ContigSpace_PAR_OOP_ITERATE_DECL) |
|
614 |
#undef ContigSpace_PAR_OOP_ITERATE_DECL |
|
15482
470d0b0c09f1
8005915: Unify SERIALGC and INCLUDE_ALTERNATE_GCS
jprovino
parents:
15088
diff
changeset
|
615 |
#endif // INCLUDE_ALL_GCS |
1 | 616 |
|
617 |
// Compaction support |
|
618 |
virtual void reset_after_compaction() { |
|
619 |
assert(compaction_top() >= bottom() && compaction_top() <= end(), "should point inside space"); |
|
620 |
set_top(compaction_top()); |
|
621 |
// set new iteration safe limit |
|
622 |
set_concurrent_iteration_safe_limit(compaction_top()); |
|
623 |
} |
|
624 |
||
625 |
// Override. |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
626 |
DirtyCardToOopClosure* new_dcto_cl(ExtendedOopClosure* cl, |
1 | 627 |
CardTableModRefBS::PrecisionStyle precision, |
30870
3050fdcdc60b
8080112: Replace and remove the last usages of CollectedHeap::n_par_threads()
stefank
parents:
30764
diff
changeset
|
628 |
HeapWord* boundary, |
3050fdcdc60b
8080112: Replace and remove the last usages of CollectedHeap::n_par_threads()
stefank
parents:
30764
diff
changeset
|
629 |
bool parallel); |
1 | 630 |
|
631 |
// Apply "blk->do_oop" to the addresses of all reference fields in objects |
|
632 |
// starting with the _saved_mark_word, which was noted during a generation's |
|
633 |
// save_marks and is required to denote the head of an object. |
|
634 |
// Fields in objects allocated by applications of the closure |
|
635 |
// *are* included in the iteration. |
|
636 |
// Updates _saved_mark_word to point to just after the last object |
|
637 |
// iterated over. |
|
638 |
#define ContigSpace_OOP_SINCE_SAVE_MARKS_DECL(OopClosureType, nv_suffix) \ |
|
639 |
void oop_since_save_marks_iterate##nv_suffix(OopClosureType* blk); |
|
640 |
||
641 |
ALL_SINCE_SAVE_MARKS_CLOSURES(ContigSpace_OOP_SINCE_SAVE_MARKS_DECL) |
|
642 |
#undef ContigSpace_OOP_SINCE_SAVE_MARKS_DECL |
|
643 |
||
644 |
// Same as object_iterate, but starting from "mark", which is required |
|
645 |
// to denote the start of an object. Objects allocated by |
|
646 |
// applications of the closure *are* included in the iteration. |
|
33205 | 647 |
virtual void object_iterate_from(HeapWord* mark, ObjectClosure* blk); |
1 | 648 |
|
649 |
// Very inefficient implementation. |
|
1374
4c24294029a9
6711316: Open source the Garbage-First garbage collector
ysr
parents:
360
diff
changeset
|
650 |
virtual HeapWord* block_start_const(const void* p) const; |
1 | 651 |
size_t block_size(const HeapWord* p) const; |
652 |
// If a block is in the allocated area, it is an object. |
|
653 |
bool block_is_obj(const HeapWord* p) const { return p < top(); } |
|
654 |
||
655 |
// Addresses for inlined allocation |
|
656 |
HeapWord** top_addr() { return &_top; } |
|
657 |
HeapWord** end_addr() { return &_end; } |
|
658 |
||
659 |
// Overrides for more efficient compaction support. |
|
660 |
void prepare_for_compaction(CompactPoint* cp); |
|
661 |
||
662 |
// PrintHeapAtGC support. |
|
663 |
virtual void print_on(outputStream* st) const; |
|
664 |
||
665 |
// Checked dynamic downcasts. |
|
666 |
virtual ContiguousSpace* toContiguousSpace() { |
|
667 |
return this; |
|
668 |
} |
|
669 |
||
670 |
// Debugging |
|
12379 | 671 |
virtual void verify() const; |
1 | 672 |
|
673 |
// Used to increase collection frequency. "factor" of 0 means entire |
|
674 |
// space. |
|
675 |
void allocate_temporary_filler(int factor); |
|
676 |
}; |
|
677 |
||
678 |
||
679 |
// A dirty card to oop closure that does filtering. |
|
680 |
// It knows how to filter out objects that are outside of the _boundary. |
|
681 |
class Filtering_DCTOC : public DirtyCardToOopClosure { |
|
682 |
protected: |
|
683 |
// Override. |
|
684 |
void walk_mem_region(MemRegion mr, |
|
685 |
HeapWord* bottom, HeapWord* top); |
|
686 |
||
687 |
// Walk the given memory region, from bottom to top, applying |
|
688 |
// the given oop closure to (possibly) all objects found. The |
|
689 |
// given oop closure may or may not be the same as the oop |
|
690 |
// closure with which this closure was created, as it may |
|
691 |
// be a filtering closure which makes use of the _boundary. |
|
692 |
// We offer two signatures, so the FilteringClosure static type is |
|
693 |
// apparent. |
|
694 |
virtual void walk_mem_region_with_cl(MemRegion mr, |
|
695 |
HeapWord* bottom, HeapWord* top, |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
696 |
ExtendedOopClosure* cl) = 0; |
1 | 697 |
virtual void walk_mem_region_with_cl(MemRegion mr, |
698 |
HeapWord* bottom, HeapWord* top, |
|
699 |
FilteringClosure* cl) = 0; |
|
700 |
||
701 |
public: |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
702 |
Filtering_DCTOC(Space* sp, ExtendedOopClosure* cl, |
1 | 703 |
CardTableModRefBS::PrecisionStyle precision, |
704 |
HeapWord* boundary) : |
|
705 |
DirtyCardToOopClosure(sp, cl, precision, boundary) {} |
|
706 |
}; |
|
707 |
||
708 |
// A dirty card to oop closure for contiguous spaces |
|
709 |
// (ContiguousSpace and sub-classes). |
|
710 |
// It is a FilteringClosure, as defined above, and it knows: |
|
711 |
// |
|
712 |
// 1. That the actual top of any area in a memory region |
|
713 |
// contained by the space is bounded by the end of the contiguous |
|
714 |
// region of the space. |
|
715 |
// 2. That the space is really made up of objects and not just |
|
716 |
// blocks. |
|
717 |
||
718 |
class ContiguousSpaceDCTOC : public Filtering_DCTOC { |
|
719 |
protected: |
|
720 |
// Overrides. |
|
721 |
HeapWord* get_actual_top(HeapWord* top, HeapWord* top_obj); |
|
722 |
||
723 |
virtual void walk_mem_region_with_cl(MemRegion mr, |
|
724 |
HeapWord* bottom, HeapWord* top, |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
725 |
ExtendedOopClosure* cl); |
1 | 726 |
virtual void walk_mem_region_with_cl(MemRegion mr, |
727 |
HeapWord* bottom, HeapWord* top, |
|
728 |
FilteringClosure* cl); |
|
729 |
||
730 |
public: |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
731 |
ContiguousSpaceDCTOC(ContiguousSpace* sp, ExtendedOopClosure* cl, |
1 | 732 |
CardTableModRefBS::PrecisionStyle precision, |
733 |
HeapWord* boundary) : |
|
734 |
Filtering_DCTOC(sp, cl, precision, boundary) |
|
735 |
{} |
|
736 |
}; |
|
737 |
||
738 |
// A ContigSpace that Supports an efficient "block_start" operation via |
|
739 |
// a BlockOffsetArray (whose BlockOffsetSharedArray may be shared with |
|
740 |
// other spaces.) This is the abstract base class for old generation |
|
13728
882756847a04
6964458: Reimplement class meta-data storage to use native memory
coleenp
parents:
13195
diff
changeset
|
741 |
// (tenured) spaces. |
1 | 742 |
|
743 |
class OffsetTableContigSpace: public ContiguousSpace { |
|
744 |
friend class VMStructs; |
|
745 |
protected: |
|
746 |
BlockOffsetArrayContigSpace _offsets; |
|
747 |
Mutex _par_alloc_lock; |
|
748 |
||
749 |
public: |
|
750 |
// Constructor |
|
751 |
OffsetTableContigSpace(BlockOffsetSharedArray* sharedOffsetArray, |
|
752 |
MemRegion mr); |
|
753 |
||
754 |
void set_bottom(HeapWord* value); |
|
755 |
void set_end(HeapWord* value); |
|
756 |
||
971
f0b20be4165d
6672698: mangle_unused_area() should not remangle the entire heap at each collection.
jmasa
parents:
360
diff
changeset
|
757 |
void clear(bool mangle_space); |
1 | 758 |
|
1374
4c24294029a9
6711316: Open source the Garbage-First garbage collector
ysr
parents:
360
diff
changeset
|
759 |
inline HeapWord* block_start_const(const void* p) const; |
1 | 760 |
|
761 |
// Add offset table update. |
|
762 |
virtual inline HeapWord* allocate(size_t word_size); |
|
763 |
inline HeapWord* par_allocate(size_t word_size); |
|
764 |
||
765 |
// MarkSweep support phase3 |
|
766 |
virtual HeapWord* initialize_threshold(); |
|
767 |
virtual HeapWord* cross_threshold(HeapWord* start, HeapWord* end); |
|
768 |
||
769 |
virtual void print_on(outputStream* st) const; |
|
770 |
||
771 |
// Debugging |
|
12379 | 772 |
void verify() const; |
1 | 773 |
}; |
774 |
||
775 |
||
776 |
// Class TenuredSpace is used by TenuredGeneration |
|
777 |
||
778 |
class TenuredSpace: public OffsetTableContigSpace { |
|
779 |
friend class VMStructs; |
|
780 |
protected: |
|
781 |
// Mark sweep support |
|
1557 | 782 |
size_t allowed_dead_ratio() const; |
1 | 783 |
public: |
784 |
// Constructor |
|
785 |
TenuredSpace(BlockOffsetSharedArray* sharedOffsetArray, |
|
786 |
MemRegion mr) : |
|
787 |
OffsetTableContigSpace(sharedOffsetArray, mr) {} |
|
788 |
}; |
|
30764 | 789 |
#endif // SHARE_VM_GC_SHARED_SPACE_HPP |