annotate src/share/vm/memory/space.hpp @ 113:ba764ed4b6f2

6420645: Create a vm that uses compressed oops for up to 32gb heapsizes Summary: Compressed oops in instances, arrays, and headers. Code contributors are coleenp, phh, never, swamyv Reviewed-by: jmasa, kamg, acorn, tbell, kvn, rasbold
author coleenp
date Sun, 13 Apr 2008 17:43:42 -0400
parents a61af66fc99e
children d1605aabd0a1 12eea04c8b06 37f87013dfd8
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 1997-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 // A space is an abstraction for the "storage units" backing
a61af66fc99e Initial load
duke
parents:
diff changeset
26 // up the generation abstraction. It includes specific
a61af66fc99e Initial load
duke
parents:
diff changeset
27 // implementations for keeping track of free and used space,
a61af66fc99e Initial load
duke
parents:
diff changeset
28 // for iterating over objects and free blocks, etc.
a61af66fc99e Initial load
duke
parents:
diff changeset
29
a61af66fc99e Initial load
duke
parents:
diff changeset
30 // Here's the Space hierarchy:
a61af66fc99e Initial load
duke
parents:
diff changeset
31 //
a61af66fc99e Initial load
duke
parents:
diff changeset
32 // - Space -- an asbtract base class describing a heap area
a61af66fc99e Initial load
duke
parents:
diff changeset
33 // - CompactibleSpace -- a space supporting compaction
a61af66fc99e Initial load
duke
parents:
diff changeset
34 // - CompactibleFreeListSpace -- (used for CMS generation)
a61af66fc99e Initial load
duke
parents:
diff changeset
35 // - ContiguousSpace -- a compactible space in which all free space
a61af66fc99e Initial load
duke
parents:
diff changeset
36 // is contiguous
a61af66fc99e Initial load
duke
parents:
diff changeset
37 // - EdenSpace -- contiguous space used as nursery
a61af66fc99e Initial load
duke
parents:
diff changeset
38 // - ConcEdenSpace -- contiguous space with a 'soft end safe' allocation
a61af66fc99e Initial load
duke
parents:
diff changeset
39 // - OffsetTableContigSpace -- contiguous space with a block offset array
a61af66fc99e Initial load
duke
parents:
diff changeset
40 // that allows "fast" block_start calls
a61af66fc99e Initial load
duke
parents:
diff changeset
41 // - TenuredSpace -- (used for TenuredGeneration)
a61af66fc99e Initial load
duke
parents:
diff changeset
42 // - ContigPermSpace -- an offset table contiguous space for perm gen
a61af66fc99e Initial load
duke
parents:
diff changeset
43
a61af66fc99e Initial load
duke
parents:
diff changeset
44 // Forward decls.
a61af66fc99e Initial load
duke
parents:
diff changeset
45 class Space;
a61af66fc99e Initial load
duke
parents:
diff changeset
46 class BlockOffsetArray;
a61af66fc99e Initial load
duke
parents:
diff changeset
47 class BlockOffsetArrayContigSpace;
a61af66fc99e Initial load
duke
parents:
diff changeset
48 class Generation;
a61af66fc99e Initial load
duke
parents:
diff changeset
49 class CompactibleSpace;
a61af66fc99e Initial load
duke
parents:
diff changeset
50 class BlockOffsetTable;
a61af66fc99e Initial load
duke
parents:
diff changeset
51 class GenRemSet;
a61af66fc99e Initial load
duke
parents:
diff changeset
52 class CardTableRS;
a61af66fc99e Initial load
duke
parents:
diff changeset
53 class DirtyCardToOopClosure;
a61af66fc99e Initial load
duke
parents:
diff changeset
54
a61af66fc99e Initial load
duke
parents:
diff changeset
55 // An oop closure that is circumscribed by a filtering memory region.
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
56 class SpaceMemRegionOopsIterClosure: public OopClosure {
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
57 private:
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
58 OopClosure* _cl;
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
59 MemRegion _mr;
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
60 protected:
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
61 template <class T> void do_oop_work(T* p) {
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
62 if (_mr.contains(p)) {
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
63 _cl->do_oop(p);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
64 }
a61af66fc99e Initial load
duke
parents:
diff changeset
65 }
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
66 public:
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
67 SpaceMemRegionOopsIterClosure(OopClosure* cl, MemRegion mr):
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
68 _cl(cl), _mr(mr) {}
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
69 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
70 virtual void do_oop(narrowOop* p);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
71 };
a61af66fc99e Initial load
duke
parents:
diff changeset
72
a61af66fc99e Initial load
duke
parents:
diff changeset
73 // A Space describes a heap area. Class Space is an abstract
a61af66fc99e Initial load
duke
parents:
diff changeset
74 // base class.
a61af66fc99e Initial load
duke
parents:
diff changeset
75 //
a61af66fc99e Initial load
duke
parents:
diff changeset
76 // Space supports allocation, size computation and GC support is provided.
a61af66fc99e Initial load
duke
parents:
diff changeset
77 //
a61af66fc99e Initial load
duke
parents:
diff changeset
78 // Invariant: bottom() and end() are on page_size boundaries and
a61af66fc99e Initial load
duke
parents:
diff changeset
79 // bottom() <= top() <= end()
a61af66fc99e Initial load
duke
parents:
diff changeset
80 // top() is inclusive and end() is exclusive.
a61af66fc99e Initial load
duke
parents:
diff changeset
81
a61af66fc99e Initial load
duke
parents:
diff changeset
82 class Space: public CHeapObj {
a61af66fc99e Initial load
duke
parents:
diff changeset
83 friend class VMStructs;
a61af66fc99e Initial load
duke
parents:
diff changeset
84 protected:
a61af66fc99e Initial load
duke
parents:
diff changeset
85 HeapWord* _bottom;
a61af66fc99e Initial load
duke
parents:
diff changeset
86 HeapWord* _end;
a61af66fc99e Initial load
duke
parents:
diff changeset
87
a61af66fc99e Initial load
duke
parents:
diff changeset
88 // Used in support of save_marks()
a61af66fc99e Initial load
duke
parents:
diff changeset
89 HeapWord* _saved_mark_word;
a61af66fc99e Initial load
duke
parents:
diff changeset
90
a61af66fc99e Initial load
duke
parents:
diff changeset
91 MemRegionClosure* _preconsumptionDirtyCardClosure;
a61af66fc99e Initial load
duke
parents:
diff changeset
92
a61af66fc99e Initial load
duke
parents:
diff changeset
93 // A sequential tasks done structure. This supports
a61af66fc99e Initial load
duke
parents:
diff changeset
94 // parallel GC, where we have threads dynamically
a61af66fc99e Initial load
duke
parents:
diff changeset
95 // claiming sub-tasks from a larger parallel task.
a61af66fc99e Initial load
duke
parents:
diff changeset
96 SequentialSubTasksDone _par_seq_tasks;
a61af66fc99e Initial load
duke
parents:
diff changeset
97
a61af66fc99e Initial load
duke
parents:
diff changeset
98 Space():
a61af66fc99e Initial load
duke
parents:
diff changeset
99 _bottom(NULL), _end(NULL), _preconsumptionDirtyCardClosure(NULL) { }
a61af66fc99e Initial load
duke
parents:
diff changeset
100
a61af66fc99e Initial load
duke
parents:
diff changeset
101 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
102 // Accessors
a61af66fc99e Initial load
duke
parents:
diff changeset
103 HeapWord* bottom() const { return _bottom; }
a61af66fc99e Initial load
duke
parents:
diff changeset
104 HeapWord* end() const { return _end; }
a61af66fc99e Initial load
duke
parents:
diff changeset
105 virtual void set_bottom(HeapWord* value) { _bottom = value; }
a61af66fc99e Initial load
duke
parents:
diff changeset
106 virtual void set_end(HeapWord* value) { _end = value; }
a61af66fc99e Initial load
duke
parents:
diff changeset
107
a61af66fc99e Initial load
duke
parents:
diff changeset
108 HeapWord* saved_mark_word() const { return _saved_mark_word; }
a61af66fc99e Initial load
duke
parents:
diff changeset
109 void set_saved_mark_word(HeapWord* p) { _saved_mark_word = p; }
a61af66fc99e Initial load
duke
parents:
diff changeset
110
a61af66fc99e Initial load
duke
parents:
diff changeset
111 MemRegionClosure* preconsumptionDirtyCardClosure() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
112 return _preconsumptionDirtyCardClosure;
a61af66fc99e Initial load
duke
parents:
diff changeset
113 }
a61af66fc99e Initial load
duke
parents:
diff changeset
114 void setPreconsumptionDirtyCardClosure(MemRegionClosure* cl) {
a61af66fc99e Initial load
duke
parents:
diff changeset
115 _preconsumptionDirtyCardClosure = cl;
a61af66fc99e Initial load
duke
parents:
diff changeset
116 }
a61af66fc99e Initial load
duke
parents:
diff changeset
117
a61af66fc99e Initial load
duke
parents:
diff changeset
118 // Returns a subregion of the space containing all the objects in
a61af66fc99e Initial load
duke
parents:
diff changeset
119 // the space.
a61af66fc99e Initial load
duke
parents:
diff changeset
120 virtual MemRegion used_region() const { return MemRegion(bottom(), end()); }
a61af66fc99e Initial load
duke
parents:
diff changeset
121
a61af66fc99e Initial load
duke
parents:
diff changeset
122 // Returns a region that is guaranteed to contain (at least) all objects
a61af66fc99e Initial load
duke
parents:
diff changeset
123 // allocated at the time of the last call to "save_marks". If the space
a61af66fc99e Initial load
duke
parents:
diff changeset
124 // initializes its DirtyCardToOopClosure's specifying the "contig" option
a61af66fc99e Initial load
duke
parents:
diff changeset
125 // (that is, if the space is contiguous), then this region must contain only
a61af66fc99e Initial load
duke
parents:
diff changeset
126 // such objects: the memregion will be from the bottom of the region to the
a61af66fc99e Initial load
duke
parents:
diff changeset
127 // saved mark. Otherwise, the "obj_allocated_since_save_marks" method of
a61af66fc99e Initial load
duke
parents:
diff changeset
128 // the space must distiguish between objects in the region allocated before
a61af66fc99e Initial load
duke
parents:
diff changeset
129 // and after the call to save marks.
a61af66fc99e Initial load
duke
parents:
diff changeset
130 virtual MemRegion used_region_at_save_marks() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
131 return MemRegion(bottom(), saved_mark_word());
a61af66fc99e Initial load
duke
parents:
diff changeset
132 }
a61af66fc99e Initial load
duke
parents:
diff changeset
133
a61af66fc99e Initial load
duke
parents:
diff changeset
134 // Initialization
a61af66fc99e Initial load
duke
parents:
diff changeset
135 virtual void initialize(MemRegion mr, bool clear_space);
a61af66fc99e Initial load
duke
parents:
diff changeset
136 virtual void clear();
a61af66fc99e Initial load
duke
parents:
diff changeset
137
a61af66fc99e Initial load
duke
parents:
diff changeset
138 // For detecting GC bugs. Should only be called at GC boundaries, since
a61af66fc99e Initial load
duke
parents:
diff changeset
139 // some unused space may be used as scratch space during GC's.
a61af66fc99e Initial load
duke
parents:
diff changeset
140 // Default implementation does nothing. We also call this when expanding
a61af66fc99e Initial load
duke
parents:
diff changeset
141 // a space to satisfy an allocation request. See bug #4668531
a61af66fc99e Initial load
duke
parents:
diff changeset
142 virtual void mangle_unused_area() {}
a61af66fc99e Initial load
duke
parents:
diff changeset
143 virtual void mangle_region(MemRegion mr) {}
a61af66fc99e Initial load
duke
parents:
diff changeset
144
a61af66fc99e Initial load
duke
parents:
diff changeset
145 // Testers
a61af66fc99e Initial load
duke
parents:
diff changeset
146 bool is_empty() const { return used() == 0; }
a61af66fc99e Initial load
duke
parents:
diff changeset
147 bool not_empty() const { return used() > 0; }
a61af66fc99e Initial load
duke
parents:
diff changeset
148
a61af66fc99e Initial load
duke
parents:
diff changeset
149 // Returns true iff the given the space contains the
a61af66fc99e Initial load
duke
parents:
diff changeset
150 // given address as part of an allocated object. For
a61af66fc99e Initial load
duke
parents:
diff changeset
151 // ceratin kinds of spaces, this might be a potentially
a61af66fc99e Initial load
duke
parents:
diff changeset
152 // expensive operation. To prevent performance problems
a61af66fc99e Initial load
duke
parents:
diff changeset
153 // on account of its inadvertent use in product jvm's,
a61af66fc99e Initial load
duke
parents:
diff changeset
154 // we restrict its use to assertion checks only.
a61af66fc99e Initial load
duke
parents:
diff changeset
155 virtual bool is_in(const void* p) const;
a61af66fc99e Initial load
duke
parents:
diff changeset
156
a61af66fc99e Initial load
duke
parents:
diff changeset
157 // Returns true iff the given reserved memory of the space contains the
a61af66fc99e Initial load
duke
parents:
diff changeset
158 // given address.
a61af66fc99e Initial load
duke
parents:
diff changeset
159 bool is_in_reserved(const void* p) const { return _bottom <= p && p < _end; }
a61af66fc99e Initial load
duke
parents:
diff changeset
160
a61af66fc99e Initial load
duke
parents:
diff changeset
161 // Returns true iff the given block is not allocated.
a61af66fc99e Initial load
duke
parents:
diff changeset
162 virtual bool is_free_block(const HeapWord* p) const = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
163
a61af66fc99e Initial load
duke
parents:
diff changeset
164 // Test whether p is double-aligned
a61af66fc99e Initial load
duke
parents:
diff changeset
165 static bool is_aligned(void* p) {
a61af66fc99e Initial load
duke
parents:
diff changeset
166 return ((intptr_t)p & (sizeof(double)-1)) == 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
167 }
a61af66fc99e Initial load
duke
parents:
diff changeset
168
a61af66fc99e Initial load
duke
parents:
diff changeset
169 // Size computations. Sizes are in bytes.
a61af66fc99e Initial load
duke
parents:
diff changeset
170 size_t capacity() const { return byte_size(bottom(), end()); }
a61af66fc99e Initial load
duke
parents:
diff changeset
171 virtual size_t used() const = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
172 virtual size_t free() const = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
173
a61af66fc99e Initial load
duke
parents:
diff changeset
174 // Iterate over all the ref-containing fields of all objects in the
a61af66fc99e Initial load
duke
parents:
diff changeset
175 // space, calling "cl.do_oop" on each. Fields in objects allocated by
a61af66fc99e Initial load
duke
parents:
diff changeset
176 // applications of the closure are not included in the iteration.
a61af66fc99e Initial load
duke
parents:
diff changeset
177 virtual void oop_iterate(OopClosure* cl);
a61af66fc99e Initial load
duke
parents:
diff changeset
178
a61af66fc99e Initial load
duke
parents:
diff changeset
179 // Same as above, restricted to the intersection of a memory region and
a61af66fc99e Initial load
duke
parents:
diff changeset
180 // the space. Fields in objects allocated by applications of the closure
a61af66fc99e Initial load
duke
parents:
diff changeset
181 // are not included in the iteration.
a61af66fc99e Initial load
duke
parents:
diff changeset
182 virtual void oop_iterate(MemRegion mr, OopClosure* cl) = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
183
a61af66fc99e Initial load
duke
parents:
diff changeset
184 // Iterate over all objects in the space, calling "cl.do_object" on
a61af66fc99e Initial load
duke
parents:
diff changeset
185 // each. Objects allocated by applications of the closure are not
a61af66fc99e Initial load
duke
parents:
diff changeset
186 // included in the iteration.
a61af66fc99e Initial load
duke
parents:
diff changeset
187 virtual void object_iterate(ObjectClosure* blk) = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
188
a61af66fc99e Initial load
duke
parents:
diff changeset
189 // Iterate over all objects that intersect with mr, calling "cl->do_object"
a61af66fc99e Initial load
duke
parents:
diff changeset
190 // on each. There is an exception to this: if this closure has already
a61af66fc99e Initial load
duke
parents:
diff changeset
191 // been invoked on an object, it may skip such objects in some cases. This is
a61af66fc99e Initial load
duke
parents:
diff changeset
192 // Most likely to happen in an "upwards" (ascending address) iteration of
a61af66fc99e Initial load
duke
parents:
diff changeset
193 // MemRegions.
a61af66fc99e Initial load
duke
parents:
diff changeset
194 virtual void object_iterate_mem(MemRegion mr, UpwardsObjectClosure* cl);
a61af66fc99e Initial load
duke
parents:
diff changeset
195
a61af66fc99e Initial load
duke
parents:
diff changeset
196 // Iterate over as many initialized objects in the space as possible,
a61af66fc99e Initial load
duke
parents:
diff changeset
197 // calling "cl.do_object_careful" on each. Return NULL if all objects
a61af66fc99e Initial load
duke
parents:
diff changeset
198 // in the space (at the start of the iteration) were iterated over.
a61af66fc99e Initial load
duke
parents:
diff changeset
199 // Return an address indicating the extent of the iteration in the
a61af66fc99e Initial load
duke
parents:
diff changeset
200 // event that the iteration had to return because of finding an
a61af66fc99e Initial load
duke
parents:
diff changeset
201 // uninitialized object in the space, or if the closure "cl"
a61af66fc99e Initial load
duke
parents:
diff changeset
202 // signalled early termination.
a61af66fc99e Initial load
duke
parents:
diff changeset
203 virtual HeapWord* object_iterate_careful(ObjectClosureCareful* cl);
a61af66fc99e Initial load
duke
parents:
diff changeset
204 virtual HeapWord* object_iterate_careful_m(MemRegion mr,
a61af66fc99e Initial load
duke
parents:
diff changeset
205 ObjectClosureCareful* cl);
a61af66fc99e Initial load
duke
parents:
diff changeset
206
a61af66fc99e Initial load
duke
parents:
diff changeset
207 // Create and return a new dirty card to oop closure. Can be
a61af66fc99e Initial load
duke
parents:
diff changeset
208 // overriden to return the appropriate type of closure
a61af66fc99e Initial load
duke
parents:
diff changeset
209 // depending on the type of space in which the closure will
a61af66fc99e Initial load
duke
parents:
diff changeset
210 // operate. ResourceArea allocated.
a61af66fc99e Initial load
duke
parents:
diff changeset
211 virtual DirtyCardToOopClosure* new_dcto_cl(OopClosure* cl,
a61af66fc99e Initial load
duke
parents:
diff changeset
212 CardTableModRefBS::PrecisionStyle precision,
a61af66fc99e Initial load
duke
parents:
diff changeset
213 HeapWord* boundary = NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
214
a61af66fc99e Initial load
duke
parents:
diff changeset
215 // If "p" is in the space, returns the address of the start of the
a61af66fc99e Initial load
duke
parents:
diff changeset
216 // "block" that contains "p". We say "block" instead of "object" since
a61af66fc99e Initial load
duke
parents:
diff changeset
217 // some heaps may not pack objects densely; a chunk may either be an
a61af66fc99e Initial load
duke
parents:
diff changeset
218 // object or a non-object. If "p" is not in the space, return NULL.
a61af66fc99e Initial load
duke
parents:
diff changeset
219 virtual HeapWord* block_start(const void* p) const = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
220
a61af66fc99e Initial load
duke
parents:
diff changeset
221 // Requires "addr" to be the start of a chunk, and returns its size.
a61af66fc99e Initial load
duke
parents:
diff changeset
222 // "addr + size" is required to be the start of a new chunk, or the end
a61af66fc99e Initial load
duke
parents:
diff changeset
223 // of the active area of the heap.
a61af66fc99e Initial load
duke
parents:
diff changeset
224 virtual size_t block_size(const HeapWord* addr) const = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
225
a61af66fc99e Initial load
duke
parents:
diff changeset
226 // Requires "addr" to be the start of a block, and returns "TRUE" iff
a61af66fc99e Initial load
duke
parents:
diff changeset
227 // the block is an object.
a61af66fc99e Initial load
duke
parents:
diff changeset
228 virtual bool block_is_obj(const HeapWord* addr) const = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
229
a61af66fc99e Initial load
duke
parents:
diff changeset
230 // Requires "addr" to be the start of a block, and returns "TRUE" iff
a61af66fc99e Initial load
duke
parents:
diff changeset
231 // the block is an object and the object is alive.
a61af66fc99e Initial load
duke
parents:
diff changeset
232 virtual bool obj_is_alive(const HeapWord* addr) const;
a61af66fc99e Initial load
duke
parents:
diff changeset
233
a61af66fc99e Initial load
duke
parents:
diff changeset
234 // Allocation (return NULL if full). Assumes the caller has established
a61af66fc99e Initial load
duke
parents:
diff changeset
235 // mutually exclusive access to the space.
a61af66fc99e Initial load
duke
parents:
diff changeset
236 virtual HeapWord* allocate(size_t word_size) = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
237
a61af66fc99e Initial load
duke
parents:
diff changeset
238 // Allocation (return NULL if full). Enforces mutual exclusion internally.
a61af66fc99e Initial load
duke
parents:
diff changeset
239 virtual HeapWord* par_allocate(size_t word_size) = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
240
a61af66fc99e Initial load
duke
parents:
diff changeset
241 // Returns true if this object has been allocated since a
a61af66fc99e Initial load
duke
parents:
diff changeset
242 // generation's "save_marks" call.
a61af66fc99e Initial load
duke
parents:
diff changeset
243 virtual bool obj_allocated_since_save_marks(const oop obj) const = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
244
a61af66fc99e Initial load
duke
parents:
diff changeset
245 // Mark-sweep-compact support: all spaces can update pointers to objects
a61af66fc99e Initial load
duke
parents:
diff changeset
246 // moving as a part of compaction.
a61af66fc99e Initial load
duke
parents:
diff changeset
247 virtual void adjust_pointers();
a61af66fc99e Initial load
duke
parents:
diff changeset
248
a61af66fc99e Initial load
duke
parents:
diff changeset
249 // PrintHeapAtGC support
a61af66fc99e Initial load
duke
parents:
diff changeset
250 virtual void print() const;
a61af66fc99e Initial load
duke
parents:
diff changeset
251 virtual void print_on(outputStream* st) const;
a61af66fc99e Initial load
duke
parents:
diff changeset
252 virtual void print_short() const;
a61af66fc99e Initial load
duke
parents:
diff changeset
253 virtual void print_short_on(outputStream* st) const;
a61af66fc99e Initial load
duke
parents:
diff changeset
254
a61af66fc99e Initial load
duke
parents:
diff changeset
255
a61af66fc99e Initial load
duke
parents:
diff changeset
256 // Accessor for parallel sequential tasks.
a61af66fc99e Initial load
duke
parents:
diff changeset
257 SequentialSubTasksDone* par_seq_tasks() { return &_par_seq_tasks; }
a61af66fc99e Initial load
duke
parents:
diff changeset
258
a61af66fc99e Initial load
duke
parents:
diff changeset
259 // IF "this" is a ContiguousSpace, return it, else return NULL.
a61af66fc99e Initial load
duke
parents:
diff changeset
260 virtual ContiguousSpace* toContiguousSpace() {
a61af66fc99e Initial load
duke
parents:
diff changeset
261 return NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
262 }
a61af66fc99e Initial load
duke
parents:
diff changeset
263
a61af66fc99e Initial load
duke
parents:
diff changeset
264 // Debugging
a61af66fc99e Initial load
duke
parents:
diff changeset
265 virtual void verify(bool allow_dirty) const = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
266 };
a61af66fc99e Initial load
duke
parents:
diff changeset
267
a61af66fc99e Initial load
duke
parents:
diff changeset
268 // A MemRegionClosure (ResourceObj) whose "do_MemRegion" function applies an
a61af66fc99e Initial load
duke
parents:
diff changeset
269 // OopClosure to (the addresses of) all the ref-containing fields that could
a61af66fc99e Initial load
duke
parents:
diff changeset
270 // be modified by virtue of the given MemRegion being dirty. (Note that
a61af66fc99e Initial load
duke
parents:
diff changeset
271 // because of the imprecise nature of the write barrier, this may iterate
a61af66fc99e Initial load
duke
parents:
diff changeset
272 // over oops beyond the region.)
a61af66fc99e Initial load
duke
parents:
diff changeset
273 // This base type for dirty card to oop closures handles memory regions
a61af66fc99e Initial load
duke
parents:
diff changeset
274 // in non-contiguous spaces with no boundaries, and should be sub-classed
a61af66fc99e Initial load
duke
parents:
diff changeset
275 // to support other space types. See ContiguousDCTOC for a sub-class
a61af66fc99e Initial load
duke
parents:
diff changeset
276 // that works with ContiguousSpaces.
a61af66fc99e Initial load
duke
parents:
diff changeset
277
a61af66fc99e Initial load
duke
parents:
diff changeset
278 class DirtyCardToOopClosure: public MemRegionClosureRO {
a61af66fc99e Initial load
duke
parents:
diff changeset
279 protected:
a61af66fc99e Initial load
duke
parents:
diff changeset
280 OopClosure* _cl;
a61af66fc99e Initial load
duke
parents:
diff changeset
281 Space* _sp;
a61af66fc99e Initial load
duke
parents:
diff changeset
282 CardTableModRefBS::PrecisionStyle _precision;
a61af66fc99e Initial load
duke
parents:
diff changeset
283 HeapWord* _boundary; // If non-NULL, process only non-NULL oops
a61af66fc99e Initial load
duke
parents:
diff changeset
284 // pointing below boundary.
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
285 HeapWord* _min_done; // ObjHeadPreciseArray precision requires
0
a61af66fc99e Initial load
duke
parents:
diff changeset
286 // a downwards traversal; this is the
a61af66fc99e Initial load
duke
parents:
diff changeset
287 // lowest location already done (or,
a61af66fc99e Initial load
duke
parents:
diff changeset
288 // alternatively, the lowest address that
a61af66fc99e Initial load
duke
parents:
diff changeset
289 // shouldn't be done again. NULL means infinity.)
a61af66fc99e Initial load
duke
parents:
diff changeset
290 NOT_PRODUCT(HeapWord* _last_bottom;)
a61af66fc99e Initial load
duke
parents:
diff changeset
291
a61af66fc99e Initial load
duke
parents:
diff changeset
292 // Get the actual top of the area on which the closure will
a61af66fc99e Initial load
duke
parents:
diff changeset
293 // operate, given where the top is assumed to be (the end of the
a61af66fc99e Initial load
duke
parents:
diff changeset
294 // memory region passed to do_MemRegion) and where the object
a61af66fc99e Initial load
duke
parents:
diff changeset
295 // at the top is assumed to start. For example, an object may
a61af66fc99e Initial load
duke
parents:
diff changeset
296 // start at the top but actually extend past the assumed top,
a61af66fc99e Initial load
duke
parents:
diff changeset
297 // in which case the top becomes the end of the object.
a61af66fc99e Initial load
duke
parents:
diff changeset
298 virtual HeapWord* get_actual_top(HeapWord* top, HeapWord* top_obj);
a61af66fc99e Initial load
duke
parents:
diff changeset
299
a61af66fc99e Initial load
duke
parents:
diff changeset
300 // Walk the given memory region from bottom to (actual) top
a61af66fc99e Initial load
duke
parents:
diff changeset
301 // looking for objects and applying the oop closure (_cl) to
a61af66fc99e Initial load
duke
parents:
diff changeset
302 // them. The base implementation of this treats the area as
a61af66fc99e Initial load
duke
parents:
diff changeset
303 // blocks, where a block may or may not be an object. Sub-
a61af66fc99e Initial load
duke
parents:
diff changeset
304 // classes should override this to provide more accurate
a61af66fc99e Initial load
duke
parents:
diff changeset
305 // or possibly more efficient walking.
a61af66fc99e Initial load
duke
parents:
diff changeset
306 virtual void walk_mem_region(MemRegion mr, HeapWord* bottom, HeapWord* top);
a61af66fc99e Initial load
duke
parents:
diff changeset
307
a61af66fc99e Initial load
duke
parents:
diff changeset
308 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
309 DirtyCardToOopClosure(Space* sp, OopClosure* cl,
a61af66fc99e Initial load
duke
parents:
diff changeset
310 CardTableModRefBS::PrecisionStyle precision,
a61af66fc99e Initial load
duke
parents:
diff changeset
311 HeapWord* boundary) :
a61af66fc99e Initial load
duke
parents:
diff changeset
312 _sp(sp), _cl(cl), _precision(precision), _boundary(boundary),
a61af66fc99e Initial load
duke
parents:
diff changeset
313 _min_done(NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
314 NOT_PRODUCT(_last_bottom = NULL;)
a61af66fc99e Initial load
duke
parents:
diff changeset
315 }
a61af66fc99e Initial load
duke
parents:
diff changeset
316
a61af66fc99e Initial load
duke
parents:
diff changeset
317 void do_MemRegion(MemRegion mr);
a61af66fc99e Initial load
duke
parents:
diff changeset
318
a61af66fc99e Initial load
duke
parents:
diff changeset
319 void set_min_done(HeapWord* min_done) {
a61af66fc99e Initial load
duke
parents:
diff changeset
320 _min_done = min_done;
a61af66fc99e Initial load
duke
parents:
diff changeset
321 }
a61af66fc99e Initial load
duke
parents:
diff changeset
322 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
323 void set_last_bottom(HeapWord* last_bottom) {
a61af66fc99e Initial load
duke
parents:
diff changeset
324 _last_bottom = last_bottom;
a61af66fc99e Initial load
duke
parents:
diff changeset
325 }
a61af66fc99e Initial load
duke
parents:
diff changeset
326 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
327 };
a61af66fc99e Initial load
duke
parents:
diff changeset
328
a61af66fc99e Initial load
duke
parents:
diff changeset
329 // A structure to represent a point at which objects are being copied
a61af66fc99e Initial load
duke
parents:
diff changeset
330 // during compaction.
a61af66fc99e Initial load
duke
parents:
diff changeset
331 class CompactPoint : public StackObj {
a61af66fc99e Initial load
duke
parents:
diff changeset
332 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
333 Generation* gen;
a61af66fc99e Initial load
duke
parents:
diff changeset
334 CompactibleSpace* space;
a61af66fc99e Initial load
duke
parents:
diff changeset
335 HeapWord* threshold;
a61af66fc99e Initial load
duke
parents:
diff changeset
336 CompactPoint(Generation* _gen, CompactibleSpace* _space,
a61af66fc99e Initial load
duke
parents:
diff changeset
337 HeapWord* _threshold) :
a61af66fc99e Initial load
duke
parents:
diff changeset
338 gen(_gen), space(_space), threshold(_threshold) {}
a61af66fc99e Initial load
duke
parents:
diff changeset
339 };
a61af66fc99e Initial load
duke
parents:
diff changeset
340
a61af66fc99e Initial load
duke
parents:
diff changeset
341
a61af66fc99e Initial load
duke
parents:
diff changeset
342 // A space that supports compaction operations. This is usually, but not
a61af66fc99e Initial load
duke
parents:
diff changeset
343 // necessarily, a space that is normally contiguous. But, for example, a
a61af66fc99e Initial load
duke
parents:
diff changeset
344 // free-list-based space whose normal collection is a mark-sweep without
a61af66fc99e Initial load
duke
parents:
diff changeset
345 // compaction could still support compaction in full GC's.
a61af66fc99e Initial load
duke
parents:
diff changeset
346
a61af66fc99e Initial load
duke
parents:
diff changeset
347 class CompactibleSpace: public Space {
a61af66fc99e Initial load
duke
parents:
diff changeset
348 friend class VMStructs;
a61af66fc99e Initial load
duke
parents:
diff changeset
349 friend class CompactibleFreeListSpace;
a61af66fc99e Initial load
duke
parents:
diff changeset
350 friend class CompactingPermGenGen;
a61af66fc99e Initial load
duke
parents:
diff changeset
351 friend class CMSPermGenGen;
a61af66fc99e Initial load
duke
parents:
diff changeset
352 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
353 HeapWord* _compaction_top;
a61af66fc99e Initial load
duke
parents:
diff changeset
354 CompactibleSpace* _next_compaction_space;
a61af66fc99e Initial load
duke
parents:
diff changeset
355
a61af66fc99e Initial load
duke
parents:
diff changeset
356 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
357 virtual void initialize(MemRegion mr, bool clear_space);
a61af66fc99e Initial load
duke
parents:
diff changeset
358
a61af66fc99e Initial load
duke
parents:
diff changeset
359 // Used temporarily during a compaction phase to hold the value
a61af66fc99e Initial load
duke
parents:
diff changeset
360 // top should have when compaction is complete.
a61af66fc99e Initial load
duke
parents:
diff changeset
361 HeapWord* compaction_top() const { return _compaction_top; }
a61af66fc99e Initial load
duke
parents:
diff changeset
362
a61af66fc99e Initial load
duke
parents:
diff changeset
363 void set_compaction_top(HeapWord* value) {
a61af66fc99e Initial load
duke
parents:
diff changeset
364 assert(value == NULL || (value >= bottom() && value <= end()),
a61af66fc99e Initial load
duke
parents:
diff changeset
365 "should point inside space");
a61af66fc99e Initial load
duke
parents:
diff changeset
366 _compaction_top = value;
a61af66fc99e Initial load
duke
parents:
diff changeset
367 }
a61af66fc99e Initial load
duke
parents:
diff changeset
368
a61af66fc99e Initial load
duke
parents:
diff changeset
369 // Perform operations on the space needed after a compaction
a61af66fc99e Initial load
duke
parents:
diff changeset
370 // has been performed.
a61af66fc99e Initial load
duke
parents:
diff changeset
371 virtual void reset_after_compaction() {}
a61af66fc99e Initial load
duke
parents:
diff changeset
372
a61af66fc99e Initial load
duke
parents:
diff changeset
373 // Returns the next space (in the current generation) to be compacted in
a61af66fc99e Initial load
duke
parents:
diff changeset
374 // the global compaction order. Also is used to select the next
a61af66fc99e Initial load
duke
parents:
diff changeset
375 // space into which to compact.
a61af66fc99e Initial load
duke
parents:
diff changeset
376
a61af66fc99e Initial load
duke
parents:
diff changeset
377 virtual CompactibleSpace* next_compaction_space() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
378 return _next_compaction_space;
a61af66fc99e Initial load
duke
parents:
diff changeset
379 }
a61af66fc99e Initial load
duke
parents:
diff changeset
380
a61af66fc99e Initial load
duke
parents:
diff changeset
381 void set_next_compaction_space(CompactibleSpace* csp) {
a61af66fc99e Initial load
duke
parents:
diff changeset
382 _next_compaction_space = csp;
a61af66fc99e Initial load
duke
parents:
diff changeset
383 }
a61af66fc99e Initial load
duke
parents:
diff changeset
384
a61af66fc99e Initial load
duke
parents:
diff changeset
385 // MarkSweep support phase2
a61af66fc99e Initial load
duke
parents:
diff changeset
386
a61af66fc99e Initial load
duke
parents:
diff changeset
387 // Start the process of compaction of the current space: compute
a61af66fc99e Initial load
duke
parents:
diff changeset
388 // post-compaction addresses, and insert forwarding pointers. The fields
a61af66fc99e Initial load
duke
parents:
diff changeset
389 // "cp->gen" and "cp->compaction_space" are the generation and space into
a61af66fc99e Initial load
duke
parents:
diff changeset
390 // which we are currently compacting. This call updates "cp" as necessary,
a61af66fc99e Initial load
duke
parents:
diff changeset
391 // and leaves the "compaction_top" of the final value of
a61af66fc99e Initial load
duke
parents:
diff changeset
392 // "cp->compaction_space" up-to-date. Offset tables may be updated in
a61af66fc99e Initial load
duke
parents:
diff changeset
393 // this phase as if the final copy had occurred; if so, "cp->threshold"
a61af66fc99e Initial load
duke
parents:
diff changeset
394 // indicates when the next such action should be taken.
a61af66fc99e Initial load
duke
parents:
diff changeset
395 virtual void prepare_for_compaction(CompactPoint* cp);
a61af66fc99e Initial load
duke
parents:
diff changeset
396 // MarkSweep support phase3
a61af66fc99e Initial load
duke
parents:
diff changeset
397 virtual void adjust_pointers();
a61af66fc99e Initial load
duke
parents:
diff changeset
398 // MarkSweep support phase4
a61af66fc99e Initial load
duke
parents:
diff changeset
399 virtual void compact();
a61af66fc99e Initial load
duke
parents:
diff changeset
400
a61af66fc99e Initial load
duke
parents:
diff changeset
401 // The maximum percentage of objects that can be dead in the compacted
a61af66fc99e Initial load
duke
parents:
diff changeset
402 // live part of a compacted space ("deadwood" support.)
a61af66fc99e Initial load
duke
parents:
diff changeset
403 virtual int allowed_dead_ratio() const { return 0; };
a61af66fc99e Initial load
duke
parents:
diff changeset
404
a61af66fc99e Initial load
duke
parents:
diff changeset
405 // Some contiguous spaces may maintain some data structures that should
a61af66fc99e Initial load
duke
parents:
diff changeset
406 // be updated whenever an allocation crosses a boundary. This function
a61af66fc99e Initial load
duke
parents:
diff changeset
407 // returns the first such boundary.
a61af66fc99e Initial load
duke
parents:
diff changeset
408 // (The default implementation returns the end of the space, so the
a61af66fc99e Initial load
duke
parents:
diff changeset
409 // boundary is never crossed.)
a61af66fc99e Initial load
duke
parents:
diff changeset
410 virtual HeapWord* initialize_threshold() { return end(); }
a61af66fc99e Initial load
duke
parents:
diff changeset
411
a61af66fc99e Initial load
duke
parents:
diff changeset
412 // "q" is an object of the given "size" that should be forwarded;
a61af66fc99e Initial load
duke
parents:
diff changeset
413 // "cp" names the generation ("gen") and containing "this" (which must
a61af66fc99e Initial load
duke
parents:
diff changeset
414 // also equal "cp->space"). "compact_top" is where in "this" the
a61af66fc99e Initial load
duke
parents:
diff changeset
415 // next object should be forwarded to. If there is room in "this" for
a61af66fc99e Initial load
duke
parents:
diff changeset
416 // the object, insert an appropriate forwarding pointer in "q".
a61af66fc99e Initial load
duke
parents:
diff changeset
417 // If not, go to the next compaction space (there must
a61af66fc99e Initial load
duke
parents:
diff changeset
418 // be one, since compaction must succeed -- we go to the first space of
a61af66fc99e Initial load
duke
parents:
diff changeset
419 // the previous generation if necessary, updating "cp"), reset compact_top
a61af66fc99e Initial load
duke
parents:
diff changeset
420 // and then forward. In either case, returns the new value of "compact_top".
a61af66fc99e Initial load
duke
parents:
diff changeset
421 // If the forwarding crosses "cp->threshold", invokes the "cross_threhold"
a61af66fc99e Initial load
duke
parents:
diff changeset
422 // function of the then-current compaction space, and updates "cp->threshold
a61af66fc99e Initial load
duke
parents:
diff changeset
423 // accordingly".
a61af66fc99e Initial load
duke
parents:
diff changeset
424 virtual HeapWord* forward(oop q, size_t size, CompactPoint* cp,
a61af66fc99e Initial load
duke
parents:
diff changeset
425 HeapWord* compact_top);
a61af66fc99e Initial load
duke
parents:
diff changeset
426
a61af66fc99e Initial load
duke
parents:
diff changeset
427 // Return a size with adjusments as required of the space.
a61af66fc99e Initial load
duke
parents:
diff changeset
428 virtual size_t adjust_object_size_v(size_t size) const { return size; }
a61af66fc99e Initial load
duke
parents:
diff changeset
429
a61af66fc99e Initial load
duke
parents:
diff changeset
430 protected:
a61af66fc99e Initial load
duke
parents:
diff changeset
431 // Used during compaction.
a61af66fc99e Initial load
duke
parents:
diff changeset
432 HeapWord* _first_dead;
a61af66fc99e Initial load
duke
parents:
diff changeset
433 HeapWord* _end_of_live;
a61af66fc99e Initial load
duke
parents:
diff changeset
434
a61af66fc99e Initial load
duke
parents:
diff changeset
435 // Minimum size of a free block.
a61af66fc99e Initial load
duke
parents:
diff changeset
436 virtual size_t minimum_free_block_size() const = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
437
a61af66fc99e Initial load
duke
parents:
diff changeset
438 // This the function is invoked when an allocation of an object covering
a61af66fc99e Initial load
duke
parents:
diff changeset
439 // "start" to "end occurs crosses the threshold; returns the next
a61af66fc99e Initial load
duke
parents:
diff changeset
440 // threshold. (The default implementation does nothing.)
a61af66fc99e Initial load
duke
parents:
diff changeset
441 virtual HeapWord* cross_threshold(HeapWord* start, HeapWord* the_end) {
a61af66fc99e Initial load
duke
parents:
diff changeset
442 return end();
a61af66fc99e Initial load
duke
parents:
diff changeset
443 }
a61af66fc99e Initial load
duke
parents:
diff changeset
444
a61af66fc99e Initial load
duke
parents:
diff changeset
445 // Requires "allowed_deadspace_words > 0", that "q" is the start of a
a61af66fc99e Initial load
duke
parents:
diff changeset
446 // free block of the given "word_len", and that "q", were it an object,
a61af66fc99e Initial load
duke
parents:
diff changeset
447 // would not move if forwared. If the size allows, fill the free
a61af66fc99e Initial load
duke
parents:
diff changeset
448 // block with an object, to prevent excessive compaction. Returns "true"
a61af66fc99e Initial load
duke
parents:
diff changeset
449 // iff the free region was made deadspace, and modifies
a61af66fc99e Initial load
duke
parents:
diff changeset
450 // "allowed_deadspace_words" to reflect the number of available deadspace
a61af66fc99e Initial load
duke
parents:
diff changeset
451 // words remaining after this operation.
a61af66fc99e Initial load
duke
parents:
diff changeset
452 bool insert_deadspace(size_t& allowed_deadspace_words, HeapWord* q,
a61af66fc99e Initial load
duke
parents:
diff changeset
453 size_t word_len);
a61af66fc99e Initial load
duke
parents:
diff changeset
454 };
a61af66fc99e Initial load
duke
parents:
diff changeset
455
a61af66fc99e Initial load
duke
parents:
diff changeset
456 #define SCAN_AND_FORWARD(cp,scan_limit,block_is_obj,block_size) { \
a61af66fc99e Initial load
duke
parents:
diff changeset
457 /* Compute the new addresses for the live objects and store it in the mark \
a61af66fc99e Initial load
duke
parents:
diff changeset
458 * Used by universe::mark_sweep_phase2() \
a61af66fc99e Initial load
duke
parents:
diff changeset
459 */ \
a61af66fc99e Initial load
duke
parents:
diff changeset
460 HeapWord* compact_top; /* This is where we are currently compacting to. */ \
a61af66fc99e Initial load
duke
parents:
diff changeset
461 \
a61af66fc99e Initial load
duke
parents:
diff changeset
462 /* We're sure to be here before any objects are compacted into this \
a61af66fc99e Initial load
duke
parents:
diff changeset
463 * space, so this is a good time to initialize this: \
a61af66fc99e Initial load
duke
parents:
diff changeset
464 */ \
a61af66fc99e Initial load
duke
parents:
diff changeset
465 set_compaction_top(bottom()); \
a61af66fc99e Initial load
duke
parents:
diff changeset
466 \
a61af66fc99e Initial load
duke
parents:
diff changeset
467 if (cp->space == NULL) { \
a61af66fc99e Initial load
duke
parents:
diff changeset
468 assert(cp->gen != NULL, "need a generation"); \
a61af66fc99e Initial load
duke
parents:
diff changeset
469 assert(cp->threshold == NULL, "just checking"); \
a61af66fc99e Initial load
duke
parents:
diff changeset
470 assert(cp->gen->first_compaction_space() == this, "just checking"); \
a61af66fc99e Initial load
duke
parents:
diff changeset
471 cp->space = cp->gen->first_compaction_space(); \
a61af66fc99e Initial load
duke
parents:
diff changeset
472 compact_top = cp->space->bottom(); \
a61af66fc99e Initial load
duke
parents:
diff changeset
473 cp->space->set_compaction_top(compact_top); \
a61af66fc99e Initial load
duke
parents:
diff changeset
474 cp->threshold = cp->space->initialize_threshold(); \
a61af66fc99e Initial load
duke
parents:
diff changeset
475 } else { \
a61af66fc99e Initial load
duke
parents:
diff changeset
476 compact_top = cp->space->compaction_top(); \
a61af66fc99e Initial load
duke
parents:
diff changeset
477 } \
a61af66fc99e Initial load
duke
parents:
diff changeset
478 \
a61af66fc99e Initial load
duke
parents:
diff changeset
479 /* We allow some amount of garbage towards the bottom of the space, so \
a61af66fc99e Initial load
duke
parents:
diff changeset
480 * we don't start compacting before there is a significant gain to be made.\
a61af66fc99e Initial load
duke
parents:
diff changeset
481 * Occasionally, we want to ensure a full compaction, which is determined \
a61af66fc99e Initial load
duke
parents:
diff changeset
482 * by the MarkSweepAlwaysCompactCount parameter. \
a61af66fc99e Initial load
duke
parents:
diff changeset
483 */ \
a61af66fc99e Initial load
duke
parents:
diff changeset
484 int invocations = SharedHeap::heap()->perm_gen()->stat_record()->invocations;\
a61af66fc99e Initial load
duke
parents:
diff changeset
485 bool skip_dead = ((invocations % MarkSweepAlwaysCompactCount) != 0); \
a61af66fc99e Initial load
duke
parents:
diff changeset
486 \
a61af66fc99e Initial load
duke
parents:
diff changeset
487 size_t allowed_deadspace = 0; \
a61af66fc99e Initial load
duke
parents:
diff changeset
488 if (skip_dead) { \
a61af66fc99e Initial load
duke
parents:
diff changeset
489 int ratio = allowed_dead_ratio(); \
a61af66fc99e Initial load
duke
parents:
diff changeset
490 allowed_deadspace = (capacity() * ratio / 100) / HeapWordSize; \
a61af66fc99e Initial load
duke
parents:
diff changeset
491 } \
a61af66fc99e Initial load
duke
parents:
diff changeset
492 \
a61af66fc99e Initial load
duke
parents:
diff changeset
493 HeapWord* q = bottom(); \
a61af66fc99e Initial load
duke
parents:
diff changeset
494 HeapWord* t = scan_limit(); \
a61af66fc99e Initial load
duke
parents:
diff changeset
495 \
a61af66fc99e Initial load
duke
parents:
diff changeset
496 HeapWord* end_of_live= q; /* One byte beyond the last byte of the last \
a61af66fc99e Initial load
duke
parents:
diff changeset
497 live object. */ \
a61af66fc99e Initial load
duke
parents:
diff changeset
498 HeapWord* first_dead = end();/* The first dead object. */ \
a61af66fc99e Initial load
duke
parents:
diff changeset
499 LiveRange* liveRange = NULL; /* The current live range, recorded in the \
a61af66fc99e Initial load
duke
parents:
diff changeset
500 first header of preceding free area. */ \
a61af66fc99e Initial load
duke
parents:
diff changeset
501 _first_dead = first_dead; \
a61af66fc99e Initial load
duke
parents:
diff changeset
502 \
a61af66fc99e Initial load
duke
parents:
diff changeset
503 const intx interval = PrefetchScanIntervalInBytes; \
a61af66fc99e Initial load
duke
parents:
diff changeset
504 \
a61af66fc99e Initial load
duke
parents:
diff changeset
505 while (q < t) { \
a61af66fc99e Initial load
duke
parents:
diff changeset
506 assert(!block_is_obj(q) || \
a61af66fc99e Initial load
duke
parents:
diff changeset
507 oop(q)->mark()->is_marked() || oop(q)->mark()->is_unlocked() || \
a61af66fc99e Initial load
duke
parents:
diff changeset
508 oop(q)->mark()->has_bias_pattern(), \
a61af66fc99e Initial load
duke
parents:
diff changeset
509 "these are the only valid states during a mark sweep"); \
a61af66fc99e Initial load
duke
parents:
diff changeset
510 if (block_is_obj(q) && oop(q)->is_gc_marked()) { \
a61af66fc99e Initial load
duke
parents:
diff changeset
511 /* prefetch beyond q */ \
a61af66fc99e Initial load
duke
parents:
diff changeset
512 Prefetch::write(q, interval); \
a61af66fc99e Initial load
duke
parents:
diff changeset
513 /* size_t size = oop(q)->size(); changing this for cms for perm gen */\
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
514 size_t size = block_size(q); \
0
a61af66fc99e Initial load
duke
parents:
diff changeset
515 compact_top = cp->space->forward(oop(q), size, cp, compact_top); \
a61af66fc99e Initial load
duke
parents:
diff changeset
516 q += size; \
a61af66fc99e Initial load
duke
parents:
diff changeset
517 end_of_live = q; \
a61af66fc99e Initial load
duke
parents:
diff changeset
518 } else { \
a61af66fc99e Initial load
duke
parents:
diff changeset
519 /* run over all the contiguous dead objects */ \
a61af66fc99e Initial load
duke
parents:
diff changeset
520 HeapWord* end = q; \
a61af66fc99e Initial load
duke
parents:
diff changeset
521 do { \
a61af66fc99e Initial load
duke
parents:
diff changeset
522 /* prefetch beyond end */ \
a61af66fc99e Initial load
duke
parents:
diff changeset
523 Prefetch::write(end, interval); \
a61af66fc99e Initial load
duke
parents:
diff changeset
524 end += block_size(end); \
a61af66fc99e Initial load
duke
parents:
diff changeset
525 } while (end < t && (!block_is_obj(end) || !oop(end)->is_gc_marked()));\
a61af66fc99e Initial load
duke
parents:
diff changeset
526 \
a61af66fc99e Initial load
duke
parents:
diff changeset
527 /* see if we might want to pretend this object is alive so that \
a61af66fc99e Initial load
duke
parents:
diff changeset
528 * we don't have to compact quite as often. \
a61af66fc99e Initial load
duke
parents:
diff changeset
529 */ \
a61af66fc99e Initial load
duke
parents:
diff changeset
530 if (allowed_deadspace > 0 && q == compact_top) { \
a61af66fc99e Initial load
duke
parents:
diff changeset
531 size_t sz = pointer_delta(end, q); \
a61af66fc99e Initial load
duke
parents:
diff changeset
532 if (insert_deadspace(allowed_deadspace, q, sz)) { \
a61af66fc99e Initial load
duke
parents:
diff changeset
533 compact_top = cp->space->forward(oop(q), sz, cp, compact_top); \
a61af66fc99e Initial load
duke
parents:
diff changeset
534 q = end; \
a61af66fc99e Initial load
duke
parents:
diff changeset
535 end_of_live = end; \
a61af66fc99e Initial load
duke
parents:
diff changeset
536 continue; \
a61af66fc99e Initial load
duke
parents:
diff changeset
537 } \
a61af66fc99e Initial load
duke
parents:
diff changeset
538 } \
a61af66fc99e Initial load
duke
parents:
diff changeset
539 \
a61af66fc99e Initial load
duke
parents:
diff changeset
540 /* otherwise, it really is a free region. */ \
a61af66fc99e Initial load
duke
parents:
diff changeset
541 \
a61af66fc99e Initial load
duke
parents:
diff changeset
542 /* for the previous LiveRange, record the end of the live objects. */ \
a61af66fc99e Initial load
duke
parents:
diff changeset
543 if (liveRange) { \
a61af66fc99e Initial load
duke
parents:
diff changeset
544 liveRange->set_end(q); \
a61af66fc99e Initial load
duke
parents:
diff changeset
545 } \
a61af66fc99e Initial load
duke
parents:
diff changeset
546 \
a61af66fc99e Initial load
duke
parents:
diff changeset
547 /* record the current LiveRange object. \
a61af66fc99e Initial load
duke
parents:
diff changeset
548 * liveRange->start() is overlaid on the mark word. \
a61af66fc99e Initial load
duke
parents:
diff changeset
549 */ \
a61af66fc99e Initial load
duke
parents:
diff changeset
550 liveRange = (LiveRange*)q; \
a61af66fc99e Initial load
duke
parents:
diff changeset
551 liveRange->set_start(end); \
a61af66fc99e Initial load
duke
parents:
diff changeset
552 liveRange->set_end(end); \
a61af66fc99e Initial load
duke
parents:
diff changeset
553 \
a61af66fc99e Initial load
duke
parents:
diff changeset
554 /* see if this is the first dead region. */ \
a61af66fc99e Initial load
duke
parents:
diff changeset
555 if (q < first_dead) { \
a61af66fc99e Initial load
duke
parents:
diff changeset
556 first_dead = q; \
a61af66fc99e Initial load
duke
parents:
diff changeset
557 } \
a61af66fc99e Initial load
duke
parents:
diff changeset
558 \
a61af66fc99e Initial load
duke
parents:
diff changeset
559 /* move on to the next object */ \
a61af66fc99e Initial load
duke
parents:
diff changeset
560 q = end; \
a61af66fc99e Initial load
duke
parents:
diff changeset
561 } \
a61af66fc99e Initial load
duke
parents:
diff changeset
562 } \
a61af66fc99e Initial load
duke
parents:
diff changeset
563 \
a61af66fc99e Initial load
duke
parents:
diff changeset
564 assert(q == t, "just checking"); \
a61af66fc99e Initial load
duke
parents:
diff changeset
565 if (liveRange != NULL) { \
a61af66fc99e Initial load
duke
parents:
diff changeset
566 liveRange->set_end(q); \
a61af66fc99e Initial load
duke
parents:
diff changeset
567 } \
a61af66fc99e Initial load
duke
parents:
diff changeset
568 _end_of_live = end_of_live; \
a61af66fc99e Initial load
duke
parents:
diff changeset
569 if (end_of_live < first_dead) { \
a61af66fc99e Initial load
duke
parents:
diff changeset
570 first_dead = end_of_live; \
a61af66fc99e Initial load
duke
parents:
diff changeset
571 } \
a61af66fc99e Initial load
duke
parents:
diff changeset
572 _first_dead = first_dead; \
a61af66fc99e Initial load
duke
parents:
diff changeset
573 \
a61af66fc99e Initial load
duke
parents:
diff changeset
574 /* save the compaction_top of the compaction space. */ \
a61af66fc99e Initial load
duke
parents:
diff changeset
575 cp->space->set_compaction_top(compact_top); \
a61af66fc99e Initial load
duke
parents:
diff changeset
576 }
a61af66fc99e Initial load
duke
parents:
diff changeset
577
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
578 #define SCAN_AND_ADJUST_POINTERS(adjust_obj_size) { \
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
579 /* adjust all the interior pointers to point at the new locations of objects \
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
580 * Used by MarkSweep::mark_sweep_phase3() */ \
0
a61af66fc99e Initial load
duke
parents:
diff changeset
581 \
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
582 HeapWord* q = bottom(); \
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
583 HeapWord* t = _end_of_live; /* Established by "prepare_for_compaction". */ \
0
a61af66fc99e Initial load
duke
parents:
diff changeset
584 \
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
585 assert(_first_dead <= _end_of_live, "Stands to reason, no?"); \
0
a61af66fc99e Initial load
duke
parents:
diff changeset
586 \
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
587 if (q < t && _first_dead > q && \
0
a61af66fc99e Initial load
duke
parents:
diff changeset
588 !oop(q)->is_gc_marked()) { \
a61af66fc99e Initial load
duke
parents:
diff changeset
589 /* we have a chunk of the space which hasn't moved and we've \
a61af66fc99e Initial load
duke
parents:
diff changeset
590 * reinitialized the mark word during the previous pass, so we can't \
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
591 * use is_gc_marked for the traversal. */ \
0
a61af66fc99e Initial load
duke
parents:
diff changeset
592 HeapWord* end = _first_dead; \
a61af66fc99e Initial load
duke
parents:
diff changeset
593 \
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
594 while (q < end) { \
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
595 /* I originally tried to conjoin "block_start(q) == q" to the \
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
596 * assertion below, but that doesn't work, because you can't \
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
597 * accurately traverse previous objects to get to the current one \
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
598 * after their pointers (including pointers into permGen) have been \
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
599 * updated, until the actual compaction is done. dld, 4/00 */ \
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
600 assert(block_is_obj(q), \
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
601 "should be at block boundaries, and should be looking at objs"); \
0
a61af66fc99e Initial load
duke
parents:
diff changeset
602 \
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
603 VALIDATE_MARK_SWEEP_ONLY(MarkSweep::track_interior_pointers(oop(q))); \
0
a61af66fc99e Initial load
duke
parents:
diff changeset
604 \
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
605 /* point all the oops to the new location */ \
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
606 size_t size = oop(q)->adjust_pointers(); \
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
607 size = adjust_obj_size(size); \
0
a61af66fc99e Initial load
duke
parents:
diff changeset
608 \
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
609 VALIDATE_MARK_SWEEP_ONLY(MarkSweep::check_interior_pointers()); \
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
610 \
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
611 VALIDATE_MARK_SWEEP_ONLY(MarkSweep::validate_live_oop(oop(q), size)); \
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
612 \
0
a61af66fc99e Initial load
duke
parents:
diff changeset
613 q += size; \
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
614 } \
0
a61af66fc99e Initial load
duke
parents:
diff changeset
615 \
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
616 if (_first_dead == t) { \
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
617 q = t; \
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
618 } else { \
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
619 /* $$$ This is funky. Using this to read the previously written \
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
620 * LiveRange. See also use below. */ \
0
a61af66fc99e Initial load
duke
parents:
diff changeset
621 q = (HeapWord*)oop(_first_dead)->mark()->decode_pointer(); \
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
622 } \
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
623 } \
0
a61af66fc99e Initial load
duke
parents:
diff changeset
624 \
a61af66fc99e Initial load
duke
parents:
diff changeset
625 const intx interval = PrefetchScanIntervalInBytes; \
a61af66fc99e Initial load
duke
parents:
diff changeset
626 \
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
627 debug_only(HeapWord* prev_q = NULL); \
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
628 while (q < t) { \
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
629 /* prefetch beyond q */ \
0
a61af66fc99e Initial load
duke
parents:
diff changeset
630 Prefetch::write(q, interval); \
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
631 if (oop(q)->is_gc_marked()) { \
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
632 /* q is alive */ \
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
633 VALIDATE_MARK_SWEEP_ONLY(MarkSweep::track_interior_pointers(oop(q))); \
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
634 /* point all the oops to the new location */ \
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
635 size_t size = oop(q)->adjust_pointers(); \
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
636 size = adjust_obj_size(size); \
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
637 VALIDATE_MARK_SWEEP_ONLY(MarkSweep::check_interior_pointers()); \
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
638 VALIDATE_MARK_SWEEP_ONLY(MarkSweep::validate_live_oop(oop(q), size)); \
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
639 debug_only(prev_q = q); \
0
a61af66fc99e Initial load
duke
parents:
diff changeset
640 q += size; \
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
641 } else { \
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
642 /* q is not a live object, so its mark should point at the next \
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
643 * live object */ \
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
644 debug_only(prev_q = q); \
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
645 q = (HeapWord*) oop(q)->mark()->decode_pointer(); \
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
646 assert(q > prev_q, "we should be moving forward through memory"); \
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
647 } \
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
648 } \
0
a61af66fc99e Initial load
duke
parents:
diff changeset
649 \
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
650 assert(q == t, "just checking"); \
0
a61af66fc99e Initial load
duke
parents:
diff changeset
651 }
a61af66fc99e Initial load
duke
parents:
diff changeset
652
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
653 #define SCAN_AND_COMPACT(obj_size) { \
0
a61af66fc99e Initial load
duke
parents:
diff changeset
654 /* Copy all live objects to their new location \
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
655 * Used by MarkSweep::mark_sweep_phase4() */ \
0
a61af66fc99e Initial load
duke
parents:
diff changeset
656 \
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
657 HeapWord* q = bottom(); \
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
658 HeapWord* const t = _end_of_live; \
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
659 debug_only(HeapWord* prev_q = NULL); \
0
a61af66fc99e Initial load
duke
parents:
diff changeset
660 \
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
661 if (q < t && _first_dead > q && \
0
a61af66fc99e Initial load
duke
parents:
diff changeset
662 !oop(q)->is_gc_marked()) { \
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
663 debug_only( \
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
664 /* we have a chunk of the space which hasn't moved and we've reinitialized \
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
665 * the mark word during the previous pass, so we can't use is_gc_marked for \
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
666 * the traversal. */ \
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
667 HeapWord* const end = _first_dead; \
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
668 \
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
669 while (q < end) { \
0
a61af66fc99e Initial load
duke
parents:
diff changeset
670 size_t size = obj_size(q); \
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
671 assert(!oop(q)->is_gc_marked(), \
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
672 "should be unmarked (special dense prefix handling)"); \
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
673 VALIDATE_MARK_SWEEP_ONLY(MarkSweep::live_oop_moved_to(q, size, q)); \
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
674 debug_only(prev_q = q); \
0
a61af66fc99e Initial load
duke
parents:
diff changeset
675 q += size; \
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
676 } \
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
677 ) /* debug_only */ \
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
678 \
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
679 if (_first_dead == t) { \
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
680 q = t; \
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
681 } else { \
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
682 /* $$$ Funky */ \
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
683 q = (HeapWord*) oop(_first_dead)->mark()->decode_pointer(); \
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
684 } \
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
685 } \
0
a61af66fc99e Initial load
duke
parents:
diff changeset
686 \
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
687 const intx scan_interval = PrefetchScanIntervalInBytes; \
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
688 const intx copy_interval = PrefetchCopyIntervalInBytes; \
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
689 while (q < t) { \
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
690 if (!oop(q)->is_gc_marked()) { \
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
691 /* mark is pointer to next marked oop */ \
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
692 debug_only(prev_q = q); \
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
693 q = (HeapWord*) oop(q)->mark()->decode_pointer(); \
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
694 assert(q > prev_q, "we should be moving forward through memory"); \
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
695 } else { \
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
696 /* prefetch beyond q */ \
0
a61af66fc99e Initial load
duke
parents:
diff changeset
697 Prefetch::read(q, scan_interval); \
a61af66fc99e Initial load
duke
parents:
diff changeset
698 \
a61af66fc99e Initial load
duke
parents:
diff changeset
699 /* size and destination */ \
a61af66fc99e Initial load
duke
parents:
diff changeset
700 size_t size = obj_size(q); \
a61af66fc99e Initial load
duke
parents:
diff changeset
701 HeapWord* compaction_top = (HeapWord*)oop(q)->forwardee(); \
a61af66fc99e Initial load
duke
parents:
diff changeset
702 \
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
703 /* prefetch beyond compaction_top */ \
0
a61af66fc99e Initial load
duke
parents:
diff changeset
704 Prefetch::write(compaction_top, copy_interval); \
a61af66fc99e Initial load
duke
parents:
diff changeset
705 \
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
706 /* copy object and reinit its mark */ \
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
707 VALIDATE_MARK_SWEEP_ONLY(MarkSweep::live_oop_moved_to(q, size, \
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
708 compaction_top)); \
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
709 assert(q != compaction_top, "everything in this pass should be moving"); \
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
710 Copy::aligned_conjoint_words(q, compaction_top, size); \
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
711 oop(compaction_top)->init_mark(); \
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
712 assert(oop(compaction_top)->klass() != NULL, "should have a class"); \
0
a61af66fc99e Initial load
duke
parents:
diff changeset
713 \
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
714 debug_only(prev_q = q); \
0
a61af66fc99e Initial load
duke
parents:
diff changeset
715 q += size; \
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
716 } \
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
717 } \
0
a61af66fc99e Initial load
duke
parents:
diff changeset
718 \
a61af66fc99e Initial load
duke
parents:
diff changeset
719 /* Reset space after compaction is complete */ \
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
720 reset_after_compaction(); \
0
a61af66fc99e Initial load
duke
parents:
diff changeset
721 /* We do this clear, below, since it has overloaded meanings for some */ \
a61af66fc99e Initial load
duke
parents:
diff changeset
722 /* space subtypes. For example, OffsetTableContigSpace's that were */ \
a61af66fc99e Initial load
duke
parents:
diff changeset
723 /* compacted into will have had their offset table thresholds updated */ \
a61af66fc99e Initial load
duke
parents:
diff changeset
724 /* continuously, but those that weren't need to have their thresholds */ \
a61af66fc99e Initial load
duke
parents:
diff changeset
725 /* re-initialized. Also mangles unused area for debugging. */ \
a61af66fc99e Initial load
duke
parents:
diff changeset
726 if (is_empty()) { \
a61af66fc99e Initial load
duke
parents:
diff changeset
727 clear(); \
a61af66fc99e Initial load
duke
parents:
diff changeset
728 } else { \
a61af66fc99e Initial load
duke
parents:
diff changeset
729 if (ZapUnusedHeapArea) mangle_unused_area(); \
a61af66fc99e Initial load
duke
parents:
diff changeset
730 } \
a61af66fc99e Initial load
duke
parents:
diff changeset
731 }
a61af66fc99e Initial load
duke
parents:
diff changeset
732
a61af66fc99e Initial load
duke
parents:
diff changeset
733 // A space in which the free area is contiguous. It therefore supports
a61af66fc99e Initial load
duke
parents:
diff changeset
734 // faster allocation, and compaction.
a61af66fc99e Initial load
duke
parents:
diff changeset
735 class ContiguousSpace: public CompactibleSpace {
a61af66fc99e Initial load
duke
parents:
diff changeset
736 friend class OneContigSpaceCardGeneration;
a61af66fc99e Initial load
duke
parents:
diff changeset
737 friend class VMStructs;
a61af66fc99e Initial load
duke
parents:
diff changeset
738 protected:
a61af66fc99e Initial load
duke
parents:
diff changeset
739 HeapWord* _top;
a61af66fc99e Initial load
duke
parents:
diff changeset
740 HeapWord* _concurrent_iteration_safe_limit;
a61af66fc99e Initial load
duke
parents:
diff changeset
741
a61af66fc99e Initial load
duke
parents:
diff changeset
742 // Allocation helpers (return NULL if full).
a61af66fc99e Initial load
duke
parents:
diff changeset
743 inline HeapWord* allocate_impl(size_t word_size, HeapWord* end_value);
a61af66fc99e Initial load
duke
parents:
diff changeset
744 inline HeapWord* par_allocate_impl(size_t word_size, HeapWord* end_value);
a61af66fc99e Initial load
duke
parents:
diff changeset
745
a61af66fc99e Initial load
duke
parents:
diff changeset
746 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
747 virtual void initialize(MemRegion mr, bool clear_space);
a61af66fc99e Initial load
duke
parents:
diff changeset
748
a61af66fc99e Initial load
duke
parents:
diff changeset
749 // Accessors
a61af66fc99e Initial load
duke
parents:
diff changeset
750 HeapWord* top() const { return _top; }
a61af66fc99e Initial load
duke
parents:
diff changeset
751 void set_top(HeapWord* value) { _top = value; }
a61af66fc99e Initial load
duke
parents:
diff changeset
752
a61af66fc99e Initial load
duke
parents:
diff changeset
753 void set_saved_mark() { _saved_mark_word = top(); }
a61af66fc99e Initial load
duke
parents:
diff changeset
754 void reset_saved_mark() { _saved_mark_word = bottom(); }
a61af66fc99e Initial load
duke
parents:
diff changeset
755
a61af66fc99e Initial load
duke
parents:
diff changeset
756 virtual void clear();
a61af66fc99e Initial load
duke
parents:
diff changeset
757
a61af66fc99e Initial load
duke
parents:
diff changeset
758 WaterMark bottom_mark() { return WaterMark(this, bottom()); }
a61af66fc99e Initial load
duke
parents:
diff changeset
759 WaterMark top_mark() { return WaterMark(this, top()); }
a61af66fc99e Initial load
duke
parents:
diff changeset
760 WaterMark saved_mark() { return WaterMark(this, saved_mark_word()); }
a61af66fc99e Initial load
duke
parents:
diff changeset
761 bool saved_mark_at_top() const { return saved_mark_word() == top(); }
a61af66fc99e Initial load
duke
parents:
diff changeset
762
a61af66fc99e Initial load
duke
parents:
diff changeset
763 void mangle_unused_area();
a61af66fc99e Initial load
duke
parents:
diff changeset
764 void mangle_region(MemRegion mr);
a61af66fc99e Initial load
duke
parents:
diff changeset
765
a61af66fc99e Initial load
duke
parents:
diff changeset
766 // Size computations: sizes in bytes.
a61af66fc99e Initial load
duke
parents:
diff changeset
767 size_t capacity() const { return byte_size(bottom(), end()); }
a61af66fc99e Initial load
duke
parents:
diff changeset
768 size_t used() const { return byte_size(bottom(), top()); }
a61af66fc99e Initial load
duke
parents:
diff changeset
769 size_t free() const { return byte_size(top(), end()); }
a61af66fc99e Initial load
duke
parents:
diff changeset
770
a61af66fc99e Initial load
duke
parents:
diff changeset
771 // Override from space.
a61af66fc99e Initial load
duke
parents:
diff changeset
772 bool is_in(const void* p) const;
a61af66fc99e Initial load
duke
parents:
diff changeset
773
a61af66fc99e Initial load
duke
parents:
diff changeset
774 virtual bool is_free_block(const HeapWord* p) const;
a61af66fc99e Initial load
duke
parents:
diff changeset
775
a61af66fc99e Initial load
duke
parents:
diff changeset
776 // In a contiguous space we have a more obvious bound on what parts
a61af66fc99e Initial load
duke
parents:
diff changeset
777 // contain objects.
a61af66fc99e Initial load
duke
parents:
diff changeset
778 MemRegion used_region() const { return MemRegion(bottom(), top()); }
a61af66fc99e Initial load
duke
parents:
diff changeset
779
a61af66fc99e Initial load
duke
parents:
diff changeset
780 MemRegion used_region_at_save_marks() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
781 return MemRegion(bottom(), saved_mark_word());
a61af66fc99e Initial load
duke
parents:
diff changeset
782 }
a61af66fc99e Initial load
duke
parents:
diff changeset
783
a61af66fc99e Initial load
duke
parents:
diff changeset
784 // Allocation (return NULL if full)
a61af66fc99e Initial load
duke
parents:
diff changeset
785 virtual HeapWord* allocate(size_t word_size);
a61af66fc99e Initial load
duke
parents:
diff changeset
786 virtual HeapWord* par_allocate(size_t word_size);
a61af66fc99e Initial load
duke
parents:
diff changeset
787
a61af66fc99e Initial load
duke
parents:
diff changeset
788 virtual bool obj_allocated_since_save_marks(const oop obj) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
789 return (HeapWord*)obj >= saved_mark_word();
a61af66fc99e Initial load
duke
parents:
diff changeset
790 }
a61af66fc99e Initial load
duke
parents:
diff changeset
791
a61af66fc99e Initial load
duke
parents:
diff changeset
792 // Iteration
a61af66fc99e Initial load
duke
parents:
diff changeset
793 void oop_iterate(OopClosure* cl);
a61af66fc99e Initial load
duke
parents:
diff changeset
794 void oop_iterate(MemRegion mr, OopClosure* cl);
a61af66fc99e Initial load
duke
parents:
diff changeset
795 void object_iterate(ObjectClosure* blk);
a61af66fc99e Initial load
duke
parents:
diff changeset
796 void object_iterate_mem(MemRegion mr, UpwardsObjectClosure* cl);
a61af66fc99e Initial load
duke
parents:
diff changeset
797 // iterates on objects up to the safe limit
a61af66fc99e Initial load
duke
parents:
diff changeset
798 HeapWord* object_iterate_careful(ObjectClosureCareful* cl);
a61af66fc99e Initial load
duke
parents:
diff changeset
799 inline HeapWord* concurrent_iteration_safe_limit();
a61af66fc99e Initial load
duke
parents:
diff changeset
800 // changes the safe limit, all objects from bottom() to the new
a61af66fc99e Initial load
duke
parents:
diff changeset
801 // limit should be properly initialized
a61af66fc99e Initial load
duke
parents:
diff changeset
802 inline void set_concurrent_iteration_safe_limit(HeapWord* new_limit);
a61af66fc99e Initial load
duke
parents:
diff changeset
803
a61af66fc99e Initial load
duke
parents:
diff changeset
804 #ifndef SERIALGC
a61af66fc99e Initial load
duke
parents:
diff changeset
805 // In support of parallel oop_iterate.
a61af66fc99e Initial load
duke
parents:
diff changeset
806 #define ContigSpace_PAR_OOP_ITERATE_DECL(OopClosureType, nv_suffix) \
a61af66fc99e Initial load
duke
parents:
diff changeset
807 void par_oop_iterate(MemRegion mr, OopClosureType* blk);
a61af66fc99e Initial load
duke
parents:
diff changeset
808
a61af66fc99e Initial load
duke
parents:
diff changeset
809 ALL_PAR_OOP_ITERATE_CLOSURES(ContigSpace_PAR_OOP_ITERATE_DECL)
a61af66fc99e Initial load
duke
parents:
diff changeset
810 #undef ContigSpace_PAR_OOP_ITERATE_DECL
a61af66fc99e Initial load
duke
parents:
diff changeset
811 #endif // SERIALGC
a61af66fc99e Initial load
duke
parents:
diff changeset
812
a61af66fc99e Initial load
duke
parents:
diff changeset
813 // Compaction support
a61af66fc99e Initial load
duke
parents:
diff changeset
814 virtual void reset_after_compaction() {
a61af66fc99e Initial load
duke
parents:
diff changeset
815 assert(compaction_top() >= bottom() && compaction_top() <= end(), "should point inside space");
a61af66fc99e Initial load
duke
parents:
diff changeset
816 set_top(compaction_top());
a61af66fc99e Initial load
duke
parents:
diff changeset
817 // set new iteration safe limit
a61af66fc99e Initial load
duke
parents:
diff changeset
818 set_concurrent_iteration_safe_limit(compaction_top());
a61af66fc99e Initial load
duke
parents:
diff changeset
819 }
a61af66fc99e Initial load
duke
parents:
diff changeset
820 virtual size_t minimum_free_block_size() const { return 0; }
a61af66fc99e Initial load
duke
parents:
diff changeset
821
a61af66fc99e Initial load
duke
parents:
diff changeset
822 // Override.
a61af66fc99e Initial load
duke
parents:
diff changeset
823 DirtyCardToOopClosure* new_dcto_cl(OopClosure* cl,
a61af66fc99e Initial load
duke
parents:
diff changeset
824 CardTableModRefBS::PrecisionStyle precision,
a61af66fc99e Initial load
duke
parents:
diff changeset
825 HeapWord* boundary = NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
826
a61af66fc99e Initial load
duke
parents:
diff changeset
827 // Apply "blk->do_oop" to the addresses of all reference fields in objects
a61af66fc99e Initial load
duke
parents:
diff changeset
828 // starting with the _saved_mark_word, which was noted during a generation's
a61af66fc99e Initial load
duke
parents:
diff changeset
829 // save_marks and is required to denote the head of an object.
a61af66fc99e Initial load
duke
parents:
diff changeset
830 // Fields in objects allocated by applications of the closure
a61af66fc99e Initial load
duke
parents:
diff changeset
831 // *are* included in the iteration.
a61af66fc99e Initial load
duke
parents:
diff changeset
832 // Updates _saved_mark_word to point to just after the last object
a61af66fc99e Initial load
duke
parents:
diff changeset
833 // iterated over.
a61af66fc99e Initial load
duke
parents:
diff changeset
834 #define ContigSpace_OOP_SINCE_SAVE_MARKS_DECL(OopClosureType, nv_suffix) \
a61af66fc99e Initial load
duke
parents:
diff changeset
835 void oop_since_save_marks_iterate##nv_suffix(OopClosureType* blk);
a61af66fc99e Initial load
duke
parents:
diff changeset
836
a61af66fc99e Initial load
duke
parents:
diff changeset
837 ALL_SINCE_SAVE_MARKS_CLOSURES(ContigSpace_OOP_SINCE_SAVE_MARKS_DECL)
a61af66fc99e Initial load
duke
parents:
diff changeset
838 #undef ContigSpace_OOP_SINCE_SAVE_MARKS_DECL
a61af66fc99e Initial load
duke
parents:
diff changeset
839
a61af66fc99e Initial load
duke
parents:
diff changeset
840 // Same as object_iterate, but starting from "mark", which is required
a61af66fc99e Initial load
duke
parents:
diff changeset
841 // to denote the start of an object. Objects allocated by
a61af66fc99e Initial load
duke
parents:
diff changeset
842 // applications of the closure *are* included in the iteration.
a61af66fc99e Initial load
duke
parents:
diff changeset
843 virtual void object_iterate_from(WaterMark mark, ObjectClosure* blk);
a61af66fc99e Initial load
duke
parents:
diff changeset
844
a61af66fc99e Initial load
duke
parents:
diff changeset
845 // Very inefficient implementation.
a61af66fc99e Initial load
duke
parents:
diff changeset
846 virtual HeapWord* block_start(const void* p) const;
a61af66fc99e Initial load
duke
parents:
diff changeset
847 size_t block_size(const HeapWord* p) const;
a61af66fc99e Initial load
duke
parents:
diff changeset
848 // If a block is in the allocated area, it is an object.
a61af66fc99e Initial load
duke
parents:
diff changeset
849 bool block_is_obj(const HeapWord* p) const { return p < top(); }
a61af66fc99e Initial load
duke
parents:
diff changeset
850
a61af66fc99e Initial load
duke
parents:
diff changeset
851 // Addresses for inlined allocation
a61af66fc99e Initial load
duke
parents:
diff changeset
852 HeapWord** top_addr() { return &_top; }
a61af66fc99e Initial load
duke
parents:
diff changeset
853 HeapWord** end_addr() { return &_end; }
a61af66fc99e Initial load
duke
parents:
diff changeset
854
a61af66fc99e Initial load
duke
parents:
diff changeset
855 // Overrides for more efficient compaction support.
a61af66fc99e Initial load
duke
parents:
diff changeset
856 void prepare_for_compaction(CompactPoint* cp);
a61af66fc99e Initial load
duke
parents:
diff changeset
857
a61af66fc99e Initial load
duke
parents:
diff changeset
858 // PrintHeapAtGC support.
a61af66fc99e Initial load
duke
parents:
diff changeset
859 virtual void print_on(outputStream* st) const;
a61af66fc99e Initial load
duke
parents:
diff changeset
860
a61af66fc99e Initial load
duke
parents:
diff changeset
861 // Checked dynamic downcasts.
a61af66fc99e Initial load
duke
parents:
diff changeset
862 virtual ContiguousSpace* toContiguousSpace() {
a61af66fc99e Initial load
duke
parents:
diff changeset
863 return this;
a61af66fc99e Initial load
duke
parents:
diff changeset
864 }
a61af66fc99e Initial load
duke
parents:
diff changeset
865
a61af66fc99e Initial load
duke
parents:
diff changeset
866 // Debugging
a61af66fc99e Initial load
duke
parents:
diff changeset
867 virtual void verify(bool allow_dirty) const;
a61af66fc99e Initial load
duke
parents:
diff changeset
868
a61af66fc99e Initial load
duke
parents:
diff changeset
869 // Used to increase collection frequency. "factor" of 0 means entire
a61af66fc99e Initial load
duke
parents:
diff changeset
870 // space.
a61af66fc99e Initial load
duke
parents:
diff changeset
871 void allocate_temporary_filler(int factor);
a61af66fc99e Initial load
duke
parents:
diff changeset
872
a61af66fc99e Initial load
duke
parents:
diff changeset
873 };
a61af66fc99e Initial load
duke
parents:
diff changeset
874
a61af66fc99e Initial load
duke
parents:
diff changeset
875
a61af66fc99e Initial load
duke
parents:
diff changeset
876 // A dirty card to oop closure that does filtering.
a61af66fc99e Initial load
duke
parents:
diff changeset
877 // It knows how to filter out objects that are outside of the _boundary.
a61af66fc99e Initial load
duke
parents:
diff changeset
878 class Filtering_DCTOC : public DirtyCardToOopClosure {
a61af66fc99e Initial load
duke
parents:
diff changeset
879 protected:
a61af66fc99e Initial load
duke
parents:
diff changeset
880 // Override.
a61af66fc99e Initial load
duke
parents:
diff changeset
881 void walk_mem_region(MemRegion mr,
a61af66fc99e Initial load
duke
parents:
diff changeset
882 HeapWord* bottom, HeapWord* top);
a61af66fc99e Initial load
duke
parents:
diff changeset
883
a61af66fc99e Initial load
duke
parents:
diff changeset
884 // Walk the given memory region, from bottom to top, applying
a61af66fc99e Initial load
duke
parents:
diff changeset
885 // the given oop closure to (possibly) all objects found. The
a61af66fc99e Initial load
duke
parents:
diff changeset
886 // given oop closure may or may not be the same as the oop
a61af66fc99e Initial load
duke
parents:
diff changeset
887 // closure with which this closure was created, as it may
a61af66fc99e Initial load
duke
parents:
diff changeset
888 // be a filtering closure which makes use of the _boundary.
a61af66fc99e Initial load
duke
parents:
diff changeset
889 // We offer two signatures, so the FilteringClosure static type is
a61af66fc99e Initial load
duke
parents:
diff changeset
890 // apparent.
a61af66fc99e Initial load
duke
parents:
diff changeset
891 virtual void walk_mem_region_with_cl(MemRegion mr,
a61af66fc99e Initial load
duke
parents:
diff changeset
892 HeapWord* bottom, HeapWord* top,
a61af66fc99e Initial load
duke
parents:
diff changeset
893 OopClosure* cl) = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
894 virtual void walk_mem_region_with_cl(MemRegion mr,
a61af66fc99e Initial load
duke
parents:
diff changeset
895 HeapWord* bottom, HeapWord* top,
a61af66fc99e Initial load
duke
parents:
diff changeset
896 FilteringClosure* cl) = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
897
a61af66fc99e Initial load
duke
parents:
diff changeset
898 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
899 Filtering_DCTOC(Space* sp, OopClosure* cl,
a61af66fc99e Initial load
duke
parents:
diff changeset
900 CardTableModRefBS::PrecisionStyle precision,
a61af66fc99e Initial load
duke
parents:
diff changeset
901 HeapWord* boundary) :
a61af66fc99e Initial load
duke
parents:
diff changeset
902 DirtyCardToOopClosure(sp, cl, precision, boundary) {}
a61af66fc99e Initial load
duke
parents:
diff changeset
903 };
a61af66fc99e Initial load
duke
parents:
diff changeset
904
a61af66fc99e Initial load
duke
parents:
diff changeset
905 // A dirty card to oop closure for contiguous spaces
a61af66fc99e Initial load
duke
parents:
diff changeset
906 // (ContiguousSpace and sub-classes).
a61af66fc99e Initial load
duke
parents:
diff changeset
907 // It is a FilteringClosure, as defined above, and it knows:
a61af66fc99e Initial load
duke
parents:
diff changeset
908 //
a61af66fc99e Initial load
duke
parents:
diff changeset
909 // 1. That the actual top of any area in a memory region
a61af66fc99e Initial load
duke
parents:
diff changeset
910 // contained by the space is bounded by the end of the contiguous
a61af66fc99e Initial load
duke
parents:
diff changeset
911 // region of the space.
a61af66fc99e Initial load
duke
parents:
diff changeset
912 // 2. That the space is really made up of objects and not just
a61af66fc99e Initial load
duke
parents:
diff changeset
913 // blocks.
a61af66fc99e Initial load
duke
parents:
diff changeset
914
a61af66fc99e Initial load
duke
parents:
diff changeset
915 class ContiguousSpaceDCTOC : public Filtering_DCTOC {
a61af66fc99e Initial load
duke
parents:
diff changeset
916 protected:
a61af66fc99e Initial load
duke
parents:
diff changeset
917 // Overrides.
a61af66fc99e Initial load
duke
parents:
diff changeset
918 HeapWord* get_actual_top(HeapWord* top, HeapWord* top_obj);
a61af66fc99e Initial load
duke
parents:
diff changeset
919
a61af66fc99e Initial load
duke
parents:
diff changeset
920 virtual void walk_mem_region_with_cl(MemRegion mr,
a61af66fc99e Initial load
duke
parents:
diff changeset
921 HeapWord* bottom, HeapWord* top,
a61af66fc99e Initial load
duke
parents:
diff changeset
922 OopClosure* cl);
a61af66fc99e Initial load
duke
parents:
diff changeset
923 virtual void walk_mem_region_with_cl(MemRegion mr,
a61af66fc99e Initial load
duke
parents:
diff changeset
924 HeapWord* bottom, HeapWord* top,
a61af66fc99e Initial load
duke
parents:
diff changeset
925 FilteringClosure* cl);
a61af66fc99e Initial load
duke
parents:
diff changeset
926
a61af66fc99e Initial load
duke
parents:
diff changeset
927 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
928 ContiguousSpaceDCTOC(ContiguousSpace* sp, OopClosure* cl,
a61af66fc99e Initial load
duke
parents:
diff changeset
929 CardTableModRefBS::PrecisionStyle precision,
a61af66fc99e Initial load
duke
parents:
diff changeset
930 HeapWord* boundary) :
a61af66fc99e Initial load
duke
parents:
diff changeset
931 Filtering_DCTOC(sp, cl, precision, boundary)
a61af66fc99e Initial load
duke
parents:
diff changeset
932 {}
a61af66fc99e Initial load
duke
parents:
diff changeset
933 };
a61af66fc99e Initial load
duke
parents:
diff changeset
934
a61af66fc99e Initial load
duke
parents:
diff changeset
935
a61af66fc99e Initial load
duke
parents:
diff changeset
936 // Class EdenSpace describes eden-space in new generation.
a61af66fc99e Initial load
duke
parents:
diff changeset
937
a61af66fc99e Initial load
duke
parents:
diff changeset
938 class DefNewGeneration;
a61af66fc99e Initial load
duke
parents:
diff changeset
939
a61af66fc99e Initial load
duke
parents:
diff changeset
940 class EdenSpace : public ContiguousSpace {
a61af66fc99e Initial load
duke
parents:
diff changeset
941 friend class VMStructs;
a61af66fc99e Initial load
duke
parents:
diff changeset
942 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
943 DefNewGeneration* _gen;
a61af66fc99e Initial load
duke
parents:
diff changeset
944
a61af66fc99e Initial load
duke
parents:
diff changeset
945 // _soft_end is used as a soft limit on allocation. As soft limits are
a61af66fc99e Initial load
duke
parents:
diff changeset
946 // reached, the slow-path allocation code can invoke other actions and then
a61af66fc99e Initial load
duke
parents:
diff changeset
947 // adjust _soft_end up to a new soft limit or to end().
a61af66fc99e Initial load
duke
parents:
diff changeset
948 HeapWord* _soft_end;
a61af66fc99e Initial load
duke
parents:
diff changeset
949
a61af66fc99e Initial load
duke
parents:
diff changeset
950 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
951 EdenSpace(DefNewGeneration* gen) : _gen(gen) { _soft_end = NULL; }
a61af66fc99e Initial load
duke
parents:
diff changeset
952
a61af66fc99e Initial load
duke
parents:
diff changeset
953 // Get/set just the 'soft' limit.
a61af66fc99e Initial load
duke
parents:
diff changeset
954 HeapWord* soft_end() { return _soft_end; }
a61af66fc99e Initial load
duke
parents:
diff changeset
955 HeapWord** soft_end_addr() { return &_soft_end; }
a61af66fc99e Initial load
duke
parents:
diff changeset
956 void set_soft_end(HeapWord* value) { _soft_end = value; }
a61af66fc99e Initial load
duke
parents:
diff changeset
957
a61af66fc99e Initial load
duke
parents:
diff changeset
958 // Override.
a61af66fc99e Initial load
duke
parents:
diff changeset
959 void clear();
a61af66fc99e Initial load
duke
parents:
diff changeset
960
a61af66fc99e Initial load
duke
parents:
diff changeset
961 // Set both the 'hard' and 'soft' limits (_end and _soft_end).
a61af66fc99e Initial load
duke
parents:
diff changeset
962 void set_end(HeapWord* value) {
a61af66fc99e Initial load
duke
parents:
diff changeset
963 set_soft_end(value);
a61af66fc99e Initial load
duke
parents:
diff changeset
964 ContiguousSpace::set_end(value);
a61af66fc99e Initial load
duke
parents:
diff changeset
965 }
a61af66fc99e Initial load
duke
parents:
diff changeset
966
a61af66fc99e Initial load
duke
parents:
diff changeset
967 // Allocation (return NULL if full)
a61af66fc99e Initial load
duke
parents:
diff changeset
968 HeapWord* allocate(size_t word_size);
a61af66fc99e Initial load
duke
parents:
diff changeset
969 HeapWord* par_allocate(size_t word_size);
a61af66fc99e Initial load
duke
parents:
diff changeset
970 };
a61af66fc99e Initial load
duke
parents:
diff changeset
971
a61af66fc99e Initial load
duke
parents:
diff changeset
972 // Class ConcEdenSpace extends EdenSpace for the sake of safe
a61af66fc99e Initial load
duke
parents:
diff changeset
973 // allocation while soft-end is being modified concurrently
a61af66fc99e Initial load
duke
parents:
diff changeset
974
a61af66fc99e Initial load
duke
parents:
diff changeset
975 class ConcEdenSpace : public EdenSpace {
a61af66fc99e Initial load
duke
parents:
diff changeset
976 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
977 ConcEdenSpace(DefNewGeneration* gen) : EdenSpace(gen) { }
a61af66fc99e Initial load
duke
parents:
diff changeset
978
a61af66fc99e Initial load
duke
parents:
diff changeset
979 // Allocation (return NULL if full)
a61af66fc99e Initial load
duke
parents:
diff changeset
980 HeapWord* par_allocate(size_t word_size);
a61af66fc99e Initial load
duke
parents:
diff changeset
981 };
a61af66fc99e Initial load
duke
parents:
diff changeset
982
a61af66fc99e Initial load
duke
parents:
diff changeset
983
a61af66fc99e Initial load
duke
parents:
diff changeset
984 // A ContigSpace that Supports an efficient "block_start" operation via
a61af66fc99e Initial load
duke
parents:
diff changeset
985 // a BlockOffsetArray (whose BlockOffsetSharedArray may be shared with
a61af66fc99e Initial load
duke
parents:
diff changeset
986 // other spaces.) This is the abstract base class for old generation
a61af66fc99e Initial load
duke
parents:
diff changeset
987 // (tenured, perm) spaces.
a61af66fc99e Initial load
duke
parents:
diff changeset
988
a61af66fc99e Initial load
duke
parents:
diff changeset
989 class OffsetTableContigSpace: public ContiguousSpace {
a61af66fc99e Initial load
duke
parents:
diff changeset
990 friend class VMStructs;
a61af66fc99e Initial load
duke
parents:
diff changeset
991 protected:
a61af66fc99e Initial load
duke
parents:
diff changeset
992 BlockOffsetArrayContigSpace _offsets;
a61af66fc99e Initial load
duke
parents:
diff changeset
993 Mutex _par_alloc_lock;
a61af66fc99e Initial load
duke
parents:
diff changeset
994
a61af66fc99e Initial load
duke
parents:
diff changeset
995 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
996 // Constructor
a61af66fc99e Initial load
duke
parents:
diff changeset
997 OffsetTableContigSpace(BlockOffsetSharedArray* sharedOffsetArray,
a61af66fc99e Initial load
duke
parents:
diff changeset
998 MemRegion mr);
a61af66fc99e Initial load
duke
parents:
diff changeset
999
a61af66fc99e Initial load
duke
parents:
diff changeset
1000 void set_bottom(HeapWord* value);
a61af66fc99e Initial load
duke
parents:
diff changeset
1001 void set_end(HeapWord* value);
a61af66fc99e Initial load
duke
parents:
diff changeset
1002
a61af66fc99e Initial load
duke
parents:
diff changeset
1003 void clear();
a61af66fc99e Initial load
duke
parents:
diff changeset
1004
a61af66fc99e Initial load
duke
parents:
diff changeset
1005 inline HeapWord* block_start(const void* p) const;
a61af66fc99e Initial load
duke
parents:
diff changeset
1006
a61af66fc99e Initial load
duke
parents:
diff changeset
1007 // Add offset table update.
a61af66fc99e Initial load
duke
parents:
diff changeset
1008 virtual inline HeapWord* allocate(size_t word_size);
a61af66fc99e Initial load
duke
parents:
diff changeset
1009 inline HeapWord* par_allocate(size_t word_size);
a61af66fc99e Initial load
duke
parents:
diff changeset
1010
a61af66fc99e Initial load
duke
parents:
diff changeset
1011 // MarkSweep support phase3
a61af66fc99e Initial load
duke
parents:
diff changeset
1012 virtual HeapWord* initialize_threshold();
a61af66fc99e Initial load
duke
parents:
diff changeset
1013 virtual HeapWord* cross_threshold(HeapWord* start, HeapWord* end);
a61af66fc99e Initial load
duke
parents:
diff changeset
1014
a61af66fc99e Initial load
duke
parents:
diff changeset
1015 virtual void print_on(outputStream* st) const;
a61af66fc99e Initial load
duke
parents:
diff changeset
1016
a61af66fc99e Initial load
duke
parents:
diff changeset
1017 // Debugging
a61af66fc99e Initial load
duke
parents:
diff changeset
1018 void verify(bool allow_dirty) const;
a61af66fc99e Initial load
duke
parents:
diff changeset
1019
a61af66fc99e Initial load
duke
parents:
diff changeset
1020 // Shared space support
a61af66fc99e Initial load
duke
parents:
diff changeset
1021 void serialize_block_offset_array_offsets(SerializeOopClosure* soc);
a61af66fc99e Initial load
duke
parents:
diff changeset
1022 };
a61af66fc99e Initial load
duke
parents:
diff changeset
1023
a61af66fc99e Initial load
duke
parents:
diff changeset
1024
a61af66fc99e Initial load
duke
parents:
diff changeset
1025 // Class TenuredSpace is used by TenuredGeneration
a61af66fc99e Initial load
duke
parents:
diff changeset
1026
a61af66fc99e Initial load
duke
parents:
diff changeset
1027 class TenuredSpace: public OffsetTableContigSpace {
a61af66fc99e Initial load
duke
parents:
diff changeset
1028 friend class VMStructs;
a61af66fc99e Initial load
duke
parents:
diff changeset
1029 protected:
a61af66fc99e Initial load
duke
parents:
diff changeset
1030 // Mark sweep support
a61af66fc99e Initial load
duke
parents:
diff changeset
1031 int allowed_dead_ratio() const;
a61af66fc99e Initial load
duke
parents:
diff changeset
1032 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
1033 // Constructor
a61af66fc99e Initial load
duke
parents:
diff changeset
1034 TenuredSpace(BlockOffsetSharedArray* sharedOffsetArray,
a61af66fc99e Initial load
duke
parents:
diff changeset
1035 MemRegion mr) :
a61af66fc99e Initial load
duke
parents:
diff changeset
1036 OffsetTableContigSpace(sharedOffsetArray, mr) {}
a61af66fc99e Initial load
duke
parents:
diff changeset
1037 };
a61af66fc99e Initial load
duke
parents:
diff changeset
1038
a61af66fc99e Initial load
duke
parents:
diff changeset
1039
a61af66fc99e Initial load
duke
parents:
diff changeset
1040 // Class ContigPermSpace is used by CompactingPermGen
a61af66fc99e Initial load
duke
parents:
diff changeset
1041
a61af66fc99e Initial load
duke
parents:
diff changeset
1042 class ContigPermSpace: public OffsetTableContigSpace {
a61af66fc99e Initial load
duke
parents:
diff changeset
1043 friend class VMStructs;
a61af66fc99e Initial load
duke
parents:
diff changeset
1044 protected:
a61af66fc99e Initial load
duke
parents:
diff changeset
1045 // Mark sweep support
a61af66fc99e Initial load
duke
parents:
diff changeset
1046 int allowed_dead_ratio() const;
a61af66fc99e Initial load
duke
parents:
diff changeset
1047 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
1048 // Constructor
a61af66fc99e Initial load
duke
parents:
diff changeset
1049 ContigPermSpace(BlockOffsetSharedArray* sharedOffsetArray, MemRegion mr) :
a61af66fc99e Initial load
duke
parents:
diff changeset
1050 OffsetTableContigSpace(sharedOffsetArray, mr) {}
a61af66fc99e Initial load
duke
parents:
diff changeset
1051 };