annotate src/share/vm/memory/space.cpp @ 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 feeb96a45707 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-2006 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 # include "incls/_precompiled.incl"
a61af66fc99e Initial load
duke
parents:
diff changeset
26 # include "incls/_space.cpp.incl"
a61af66fc99e Initial load
duke
parents:
diff changeset
27
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
28 void SpaceMemRegionOopsIterClosure::do_oop(oop* p) { SpaceMemRegionOopsIterClosure::do_oop_work(p); }
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
29 void SpaceMemRegionOopsIterClosure::do_oop(narrowOop* p) { SpaceMemRegionOopsIterClosure::do_oop_work(p); }
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
30
0
a61af66fc99e Initial load
duke
parents:
diff changeset
31 HeapWord* DirtyCardToOopClosure::get_actual_top(HeapWord* top,
a61af66fc99e Initial load
duke
parents:
diff changeset
32 HeapWord* top_obj) {
a61af66fc99e Initial load
duke
parents:
diff changeset
33 if (top_obj != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
34 if (_sp->block_is_obj(top_obj)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
35 if (_precision == CardTableModRefBS::ObjHeadPreciseArray) {
a61af66fc99e Initial load
duke
parents:
diff changeset
36 if (oop(top_obj)->is_objArray() || oop(top_obj)->is_typeArray()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
37 // An arrayOop is starting on the dirty card - since we do exact
a61af66fc99e Initial load
duke
parents:
diff changeset
38 // store checks for objArrays we are done.
a61af66fc99e Initial load
duke
parents:
diff changeset
39 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
40 // Otherwise, it is possible that the object starting on the dirty
a61af66fc99e Initial load
duke
parents:
diff changeset
41 // card spans the entire card, and that the store happened on a
a61af66fc99e Initial load
duke
parents:
diff changeset
42 // later card. Figure out where the object ends.
a61af66fc99e Initial load
duke
parents:
diff changeset
43 // Use the block_size() method of the space over which
a61af66fc99e Initial load
duke
parents:
diff changeset
44 // the iteration is being done. That space (e.g. CMS) may have
a61af66fc99e Initial load
duke
parents:
diff changeset
45 // specific requirements on object sizes which will
a61af66fc99e Initial load
duke
parents:
diff changeset
46 // be reflected in the block_size() method.
a61af66fc99e Initial load
duke
parents:
diff changeset
47 top = top_obj + oop(top_obj)->size();
a61af66fc99e Initial load
duke
parents:
diff changeset
48 }
a61af66fc99e Initial load
duke
parents:
diff changeset
49 }
a61af66fc99e Initial load
duke
parents:
diff changeset
50 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
51 top = top_obj;
a61af66fc99e Initial load
duke
parents:
diff changeset
52 }
a61af66fc99e Initial load
duke
parents:
diff changeset
53 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
54 assert(top == _sp->end(), "only case where top_obj == NULL");
a61af66fc99e Initial load
duke
parents:
diff changeset
55 }
a61af66fc99e Initial load
duke
parents:
diff changeset
56 return top;
a61af66fc99e Initial load
duke
parents:
diff changeset
57 }
a61af66fc99e Initial load
duke
parents:
diff changeset
58
a61af66fc99e Initial load
duke
parents:
diff changeset
59 void DirtyCardToOopClosure::walk_mem_region(MemRegion mr,
a61af66fc99e Initial load
duke
parents:
diff changeset
60 HeapWord* bottom,
a61af66fc99e Initial load
duke
parents:
diff changeset
61 HeapWord* top) {
a61af66fc99e Initial load
duke
parents:
diff changeset
62 // 1. Blocks may or may not be objects.
a61af66fc99e Initial load
duke
parents:
diff changeset
63 // 2. Even when a block_is_obj(), it may not entirely
a61af66fc99e Initial load
duke
parents:
diff changeset
64 // occupy the block if the block quantum is larger than
a61af66fc99e Initial load
duke
parents:
diff changeset
65 // the object size.
a61af66fc99e Initial load
duke
parents:
diff changeset
66 // We can and should try to optimize by calling the non-MemRegion
a61af66fc99e Initial load
duke
parents:
diff changeset
67 // version of oop_iterate() for all but the extremal objects
a61af66fc99e Initial load
duke
parents:
diff changeset
68 // (for which we need to call the MemRegion version of
a61af66fc99e Initial load
duke
parents:
diff changeset
69 // oop_iterate()) To be done post-beta XXX
a61af66fc99e Initial load
duke
parents:
diff changeset
70 for (; bottom < top; bottom += _sp->block_size(bottom)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
71 // As in the case of contiguous space above, we'd like to
a61af66fc99e Initial load
duke
parents:
diff changeset
72 // just use the value returned by oop_iterate to increment the
a61af66fc99e Initial load
duke
parents:
diff changeset
73 // current pointer; unfortunately, that won't work in CMS because
a61af66fc99e Initial load
duke
parents:
diff changeset
74 // we'd need an interface change (it seems) to have the space
a61af66fc99e Initial load
duke
parents:
diff changeset
75 // "adjust the object size" (for instance pad it up to its
a61af66fc99e Initial load
duke
parents:
diff changeset
76 // block alignment or minimum block size restrictions. XXX
a61af66fc99e Initial load
duke
parents:
diff changeset
77 if (_sp->block_is_obj(bottom) &&
a61af66fc99e Initial load
duke
parents:
diff changeset
78 !_sp->obj_allocated_since_save_marks(oop(bottom))) {
a61af66fc99e Initial load
duke
parents:
diff changeset
79 oop(bottom)->oop_iterate(_cl, mr);
a61af66fc99e Initial load
duke
parents:
diff changeset
80 }
a61af66fc99e Initial load
duke
parents:
diff changeset
81 }
a61af66fc99e Initial load
duke
parents:
diff changeset
82 }
a61af66fc99e Initial load
duke
parents:
diff changeset
83
a61af66fc99e Initial load
duke
parents:
diff changeset
84 void DirtyCardToOopClosure::do_MemRegion(MemRegion mr) {
a61af66fc99e Initial load
duke
parents:
diff changeset
85
a61af66fc99e Initial load
duke
parents:
diff changeset
86 // Some collectors need to do special things whenever their dirty
a61af66fc99e Initial load
duke
parents:
diff changeset
87 // cards are processed. For instance, CMS must remember mutator updates
a61af66fc99e Initial load
duke
parents:
diff changeset
88 // (i.e. dirty cards) so as to re-scan mutated objects.
a61af66fc99e Initial load
duke
parents:
diff changeset
89 // Such work can be piggy-backed here on dirty card scanning, so as to make
a61af66fc99e Initial load
duke
parents:
diff changeset
90 // it slightly more efficient than doing a complete non-detructive pre-scan
a61af66fc99e Initial load
duke
parents:
diff changeset
91 // of the card table.
a61af66fc99e Initial load
duke
parents:
diff changeset
92 MemRegionClosure* pCl = _sp->preconsumptionDirtyCardClosure();
a61af66fc99e Initial load
duke
parents:
diff changeset
93 if (pCl != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
94 pCl->do_MemRegion(mr);
a61af66fc99e Initial load
duke
parents:
diff changeset
95 }
a61af66fc99e Initial load
duke
parents:
diff changeset
96
a61af66fc99e Initial load
duke
parents:
diff changeset
97 HeapWord* bottom = mr.start();
a61af66fc99e Initial load
duke
parents:
diff changeset
98 HeapWord* last = mr.last();
a61af66fc99e Initial load
duke
parents:
diff changeset
99 HeapWord* top = mr.end();
a61af66fc99e Initial load
duke
parents:
diff changeset
100 HeapWord* bottom_obj;
a61af66fc99e Initial load
duke
parents:
diff changeset
101 HeapWord* top_obj;
a61af66fc99e Initial load
duke
parents:
diff changeset
102
a61af66fc99e Initial load
duke
parents:
diff changeset
103 assert(_precision == CardTableModRefBS::ObjHeadPreciseArray ||
a61af66fc99e Initial load
duke
parents:
diff changeset
104 _precision == CardTableModRefBS::Precise,
a61af66fc99e Initial load
duke
parents:
diff changeset
105 "Only ones we deal with for now.");
a61af66fc99e Initial load
duke
parents:
diff changeset
106
a61af66fc99e Initial load
duke
parents:
diff changeset
107 assert(_precision != CardTableModRefBS::ObjHeadPreciseArray ||
a61af66fc99e Initial load
duke
parents:
diff changeset
108 _last_bottom == NULL ||
a61af66fc99e Initial load
duke
parents:
diff changeset
109 top <= _last_bottom,
a61af66fc99e Initial load
duke
parents:
diff changeset
110 "Not decreasing");
a61af66fc99e Initial load
duke
parents:
diff changeset
111 NOT_PRODUCT(_last_bottom = mr.start());
a61af66fc99e Initial load
duke
parents:
diff changeset
112
a61af66fc99e Initial load
duke
parents:
diff changeset
113 bottom_obj = _sp->block_start(bottom);
a61af66fc99e Initial load
duke
parents:
diff changeset
114 top_obj = _sp->block_start(last);
a61af66fc99e Initial load
duke
parents:
diff changeset
115
a61af66fc99e Initial load
duke
parents:
diff changeset
116 assert(bottom_obj <= bottom, "just checking");
a61af66fc99e Initial load
duke
parents:
diff changeset
117 assert(top_obj <= top, "just checking");
a61af66fc99e Initial load
duke
parents:
diff changeset
118
a61af66fc99e Initial load
duke
parents:
diff changeset
119 // Given what we think is the top of the memory region and
a61af66fc99e Initial load
duke
parents:
diff changeset
120 // the start of the object at the top, get the actual
a61af66fc99e Initial load
duke
parents:
diff changeset
121 // value of the top.
a61af66fc99e Initial load
duke
parents:
diff changeset
122 top = get_actual_top(top, top_obj);
a61af66fc99e Initial load
duke
parents:
diff changeset
123
a61af66fc99e Initial load
duke
parents:
diff changeset
124 // If the previous call did some part of this region, don't redo.
a61af66fc99e Initial load
duke
parents:
diff changeset
125 if (_precision == CardTableModRefBS::ObjHeadPreciseArray &&
a61af66fc99e Initial load
duke
parents:
diff changeset
126 _min_done != NULL &&
a61af66fc99e Initial load
duke
parents:
diff changeset
127 _min_done < top) {
a61af66fc99e Initial load
duke
parents:
diff changeset
128 top = _min_done;
a61af66fc99e Initial load
duke
parents:
diff changeset
129 }
a61af66fc99e Initial load
duke
parents:
diff changeset
130
a61af66fc99e Initial load
duke
parents:
diff changeset
131 // Top may have been reset, and in fact may be below bottom,
a61af66fc99e Initial load
duke
parents:
diff changeset
132 // e.g. the dirty card region is entirely in a now free object
a61af66fc99e Initial load
duke
parents:
diff changeset
133 // -- something that could happen with a concurrent sweeper.
a61af66fc99e Initial load
duke
parents:
diff changeset
134 bottom = MIN2(bottom, top);
a61af66fc99e Initial load
duke
parents:
diff changeset
135 mr = MemRegion(bottom, top);
a61af66fc99e Initial load
duke
parents:
diff changeset
136 assert(bottom <= top &&
a61af66fc99e Initial load
duke
parents:
diff changeset
137 (_precision != CardTableModRefBS::ObjHeadPreciseArray ||
a61af66fc99e Initial load
duke
parents:
diff changeset
138 _min_done == NULL ||
a61af66fc99e Initial load
duke
parents:
diff changeset
139 top <= _min_done),
a61af66fc99e Initial load
duke
parents:
diff changeset
140 "overlap!");
a61af66fc99e Initial load
duke
parents:
diff changeset
141
a61af66fc99e Initial load
duke
parents:
diff changeset
142 // Walk the region if it is not empty; otherwise there is nothing to do.
a61af66fc99e Initial load
duke
parents:
diff changeset
143 if (!mr.is_empty()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
144 walk_mem_region(mr, bottom_obj, top);
a61af66fc99e Initial load
duke
parents:
diff changeset
145 }
a61af66fc99e Initial load
duke
parents:
diff changeset
146
a61af66fc99e Initial load
duke
parents:
diff changeset
147 _min_done = bottom;
a61af66fc99e Initial load
duke
parents:
diff changeset
148 }
a61af66fc99e Initial load
duke
parents:
diff changeset
149
a61af66fc99e Initial load
duke
parents:
diff changeset
150 DirtyCardToOopClosure* Space::new_dcto_cl(OopClosure* cl,
a61af66fc99e Initial load
duke
parents:
diff changeset
151 CardTableModRefBS::PrecisionStyle precision,
a61af66fc99e Initial load
duke
parents:
diff changeset
152 HeapWord* boundary) {
a61af66fc99e Initial load
duke
parents:
diff changeset
153 return new DirtyCardToOopClosure(this, cl, precision, boundary);
a61af66fc99e Initial load
duke
parents:
diff changeset
154 }
a61af66fc99e Initial load
duke
parents:
diff changeset
155
a61af66fc99e Initial load
duke
parents:
diff changeset
156 HeapWord* ContiguousSpaceDCTOC::get_actual_top(HeapWord* top,
a61af66fc99e Initial load
duke
parents:
diff changeset
157 HeapWord* top_obj) {
a61af66fc99e Initial load
duke
parents:
diff changeset
158 if (top_obj != NULL && top_obj < (_sp->toContiguousSpace())->top()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
159 if (_precision == CardTableModRefBS::ObjHeadPreciseArray) {
a61af66fc99e Initial load
duke
parents:
diff changeset
160 if (oop(top_obj)->is_objArray() || oop(top_obj)->is_typeArray()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
161 // An arrayOop is starting on the dirty card - since we do exact
a61af66fc99e Initial load
duke
parents:
diff changeset
162 // store checks for objArrays we are done.
a61af66fc99e Initial load
duke
parents:
diff changeset
163 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
164 // Otherwise, it is possible that the object starting on the dirty
a61af66fc99e Initial load
duke
parents:
diff changeset
165 // card spans the entire card, and that the store happened on a
a61af66fc99e Initial load
duke
parents:
diff changeset
166 // later card. Figure out where the object ends.
a61af66fc99e Initial load
duke
parents:
diff changeset
167 assert(_sp->block_size(top_obj) == (size_t) oop(top_obj)->size(),
a61af66fc99e Initial load
duke
parents:
diff changeset
168 "Block size and object size mismatch");
a61af66fc99e Initial load
duke
parents:
diff changeset
169 top = top_obj + oop(top_obj)->size();
a61af66fc99e Initial load
duke
parents:
diff changeset
170 }
a61af66fc99e Initial load
duke
parents:
diff changeset
171 }
a61af66fc99e Initial load
duke
parents:
diff changeset
172 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
173 top = (_sp->toContiguousSpace())->top();
a61af66fc99e Initial load
duke
parents:
diff changeset
174 }
a61af66fc99e Initial load
duke
parents:
diff changeset
175 return top;
a61af66fc99e Initial load
duke
parents:
diff changeset
176 }
a61af66fc99e Initial load
duke
parents:
diff changeset
177
a61af66fc99e Initial load
duke
parents:
diff changeset
178 void Filtering_DCTOC::walk_mem_region(MemRegion mr,
a61af66fc99e Initial load
duke
parents:
diff changeset
179 HeapWord* bottom,
a61af66fc99e Initial load
duke
parents:
diff changeset
180 HeapWord* top) {
a61af66fc99e Initial load
duke
parents:
diff changeset
181 // Note that this assumption won't hold if we have a concurrent
a61af66fc99e Initial load
duke
parents:
diff changeset
182 // collector in this space, which may have freed up objects after
a61af66fc99e Initial load
duke
parents:
diff changeset
183 // they were dirtied and before the stop-the-world GC that is
a61af66fc99e Initial load
duke
parents:
diff changeset
184 // examining cards here.
a61af66fc99e Initial load
duke
parents:
diff changeset
185 assert(bottom < top, "ought to be at least one obj on a dirty card.");
a61af66fc99e Initial load
duke
parents:
diff changeset
186
a61af66fc99e Initial load
duke
parents:
diff changeset
187 if (_boundary != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
188 // We have a boundary outside of which we don't want to look
a61af66fc99e Initial load
duke
parents:
diff changeset
189 // at objects, so create a filtering closure around the
a61af66fc99e Initial load
duke
parents:
diff changeset
190 // oop closure before walking the region.
a61af66fc99e Initial load
duke
parents:
diff changeset
191 FilteringClosure filter(_boundary, _cl);
a61af66fc99e Initial load
duke
parents:
diff changeset
192 walk_mem_region_with_cl(mr, bottom, top, &filter);
a61af66fc99e Initial load
duke
parents:
diff changeset
193 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
194 // No boundary, simply walk the heap with the oop closure.
a61af66fc99e Initial load
duke
parents:
diff changeset
195 walk_mem_region_with_cl(mr, bottom, top, _cl);
a61af66fc99e Initial load
duke
parents:
diff changeset
196 }
a61af66fc99e Initial load
duke
parents:
diff changeset
197
a61af66fc99e Initial load
duke
parents:
diff changeset
198 }
a61af66fc99e Initial load
duke
parents:
diff changeset
199
a61af66fc99e Initial load
duke
parents:
diff changeset
200 // We must replicate this so that the static type of "FilteringClosure"
a61af66fc99e Initial load
duke
parents:
diff changeset
201 // (see above) is apparent at the oop_iterate calls.
a61af66fc99e Initial load
duke
parents:
diff changeset
202 #define ContiguousSpaceDCTOC__walk_mem_region_with_cl_DEFN(ClosureType) \
a61af66fc99e Initial load
duke
parents:
diff changeset
203 void ContiguousSpaceDCTOC::walk_mem_region_with_cl(MemRegion mr, \
a61af66fc99e Initial load
duke
parents:
diff changeset
204 HeapWord* bottom, \
a61af66fc99e Initial load
duke
parents:
diff changeset
205 HeapWord* top, \
a61af66fc99e Initial load
duke
parents:
diff changeset
206 ClosureType* cl) { \
a61af66fc99e Initial load
duke
parents:
diff changeset
207 bottom += oop(bottom)->oop_iterate(cl, mr); \
a61af66fc99e Initial load
duke
parents:
diff changeset
208 if (bottom < top) { \
a61af66fc99e Initial load
duke
parents:
diff changeset
209 HeapWord* next_obj = bottom + oop(bottom)->size(); \
a61af66fc99e Initial load
duke
parents:
diff changeset
210 while (next_obj < top) { \
a61af66fc99e Initial load
duke
parents:
diff changeset
211 /* Bottom lies entirely below top, so we can call the */ \
a61af66fc99e Initial load
duke
parents:
diff changeset
212 /* non-memRegion version of oop_iterate below. */ \
a61af66fc99e Initial load
duke
parents:
diff changeset
213 oop(bottom)->oop_iterate(cl); \
a61af66fc99e Initial load
duke
parents:
diff changeset
214 bottom = next_obj; \
a61af66fc99e Initial load
duke
parents:
diff changeset
215 next_obj = bottom + oop(bottom)->size(); \
a61af66fc99e Initial load
duke
parents:
diff changeset
216 } \
a61af66fc99e Initial load
duke
parents:
diff changeset
217 /* Last object. */ \
a61af66fc99e Initial load
duke
parents:
diff changeset
218 oop(bottom)->oop_iterate(cl, mr); \
a61af66fc99e Initial load
duke
parents:
diff changeset
219 } \
a61af66fc99e Initial load
duke
parents:
diff changeset
220 }
a61af66fc99e Initial load
duke
parents:
diff changeset
221
a61af66fc99e Initial load
duke
parents:
diff changeset
222 // (There are only two of these, rather than N, because the split is due
a61af66fc99e Initial load
duke
parents:
diff changeset
223 // only to the introduction of the FilteringClosure, a local part of the
a61af66fc99e Initial load
duke
parents:
diff changeset
224 // impl of this abstraction.)
a61af66fc99e Initial load
duke
parents:
diff changeset
225 ContiguousSpaceDCTOC__walk_mem_region_with_cl_DEFN(OopClosure)
a61af66fc99e Initial load
duke
parents:
diff changeset
226 ContiguousSpaceDCTOC__walk_mem_region_with_cl_DEFN(FilteringClosure)
a61af66fc99e Initial load
duke
parents:
diff changeset
227
a61af66fc99e Initial load
duke
parents:
diff changeset
228 DirtyCardToOopClosure*
a61af66fc99e Initial load
duke
parents:
diff changeset
229 ContiguousSpace::new_dcto_cl(OopClosure* cl,
a61af66fc99e Initial load
duke
parents:
diff changeset
230 CardTableModRefBS::PrecisionStyle precision,
a61af66fc99e Initial load
duke
parents:
diff changeset
231 HeapWord* boundary) {
a61af66fc99e Initial load
duke
parents:
diff changeset
232 return new ContiguousSpaceDCTOC(this, cl, precision, boundary);
a61af66fc99e Initial load
duke
parents:
diff changeset
233 }
a61af66fc99e Initial load
duke
parents:
diff changeset
234
a61af66fc99e Initial load
duke
parents:
diff changeset
235 void Space::initialize(MemRegion mr, bool clear_space) {
a61af66fc99e Initial load
duke
parents:
diff changeset
236 HeapWord* bottom = mr.start();
a61af66fc99e Initial load
duke
parents:
diff changeset
237 HeapWord* end = mr.end();
a61af66fc99e Initial load
duke
parents:
diff changeset
238 assert(Universe::on_page_boundary(bottom) && Universe::on_page_boundary(end),
a61af66fc99e Initial load
duke
parents:
diff changeset
239 "invalid space boundaries");
a61af66fc99e Initial load
duke
parents:
diff changeset
240 set_bottom(bottom);
a61af66fc99e Initial load
duke
parents:
diff changeset
241 set_end(end);
a61af66fc99e Initial load
duke
parents:
diff changeset
242 if (clear_space) clear();
a61af66fc99e Initial load
duke
parents:
diff changeset
243 }
a61af66fc99e Initial load
duke
parents:
diff changeset
244
a61af66fc99e Initial load
duke
parents:
diff changeset
245 void Space::clear() {
a61af66fc99e Initial load
duke
parents:
diff changeset
246 if (ZapUnusedHeapArea) mangle_unused_area();
a61af66fc99e Initial load
duke
parents:
diff changeset
247 }
a61af66fc99e Initial load
duke
parents:
diff changeset
248
a61af66fc99e Initial load
duke
parents:
diff changeset
249 void ContiguousSpace::initialize(MemRegion mr, bool clear_space)
a61af66fc99e Initial load
duke
parents:
diff changeset
250 {
a61af66fc99e Initial load
duke
parents:
diff changeset
251 CompactibleSpace::initialize(mr, clear_space);
a61af66fc99e Initial load
duke
parents:
diff changeset
252 _concurrent_iteration_safe_limit = top();
a61af66fc99e Initial load
duke
parents:
diff changeset
253 }
a61af66fc99e Initial load
duke
parents:
diff changeset
254
a61af66fc99e Initial load
duke
parents:
diff changeset
255 void ContiguousSpace::clear() {
a61af66fc99e Initial load
duke
parents:
diff changeset
256 set_top(bottom());
a61af66fc99e Initial load
duke
parents:
diff changeset
257 set_saved_mark();
a61af66fc99e Initial load
duke
parents:
diff changeset
258 Space::clear();
a61af66fc99e Initial load
duke
parents:
diff changeset
259 }
a61af66fc99e Initial load
duke
parents:
diff changeset
260
a61af66fc99e Initial load
duke
parents:
diff changeset
261 bool Space::is_in(const void* p) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
262 HeapWord* b = block_start(p);
a61af66fc99e Initial load
duke
parents:
diff changeset
263 return b != NULL && block_is_obj(b);
a61af66fc99e Initial load
duke
parents:
diff changeset
264 }
a61af66fc99e Initial load
duke
parents:
diff changeset
265
a61af66fc99e Initial load
duke
parents:
diff changeset
266 bool ContiguousSpace::is_in(const void* p) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
267 return _bottom <= p && p < _top;
a61af66fc99e Initial load
duke
parents:
diff changeset
268 }
a61af66fc99e Initial load
duke
parents:
diff changeset
269
a61af66fc99e Initial load
duke
parents:
diff changeset
270 bool ContiguousSpace::is_free_block(const HeapWord* p) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
271 return p >= _top;
a61af66fc99e Initial load
duke
parents:
diff changeset
272 }
a61af66fc99e Initial load
duke
parents:
diff changeset
273
a61af66fc99e Initial load
duke
parents:
diff changeset
274 void OffsetTableContigSpace::clear() {
a61af66fc99e Initial load
duke
parents:
diff changeset
275 ContiguousSpace::clear();
a61af66fc99e Initial load
duke
parents:
diff changeset
276 _offsets.initialize_threshold();
a61af66fc99e Initial load
duke
parents:
diff changeset
277 }
a61af66fc99e Initial load
duke
parents:
diff changeset
278
a61af66fc99e Initial load
duke
parents:
diff changeset
279 void OffsetTableContigSpace::set_bottom(HeapWord* new_bottom) {
a61af66fc99e Initial load
duke
parents:
diff changeset
280 Space::set_bottom(new_bottom);
a61af66fc99e Initial load
duke
parents:
diff changeset
281 _offsets.set_bottom(new_bottom);
a61af66fc99e Initial load
duke
parents:
diff changeset
282 }
a61af66fc99e Initial load
duke
parents:
diff changeset
283
a61af66fc99e Initial load
duke
parents:
diff changeset
284 void OffsetTableContigSpace::set_end(HeapWord* new_end) {
a61af66fc99e Initial load
duke
parents:
diff changeset
285 // Space should not advertize an increase in size
a61af66fc99e Initial load
duke
parents:
diff changeset
286 // until after the underlying offest table has been enlarged.
a61af66fc99e Initial load
duke
parents:
diff changeset
287 _offsets.resize(pointer_delta(new_end, bottom()));
a61af66fc99e Initial load
duke
parents:
diff changeset
288 Space::set_end(new_end);
a61af66fc99e Initial load
duke
parents:
diff changeset
289 }
a61af66fc99e Initial load
duke
parents:
diff changeset
290
a61af66fc99e Initial load
duke
parents:
diff changeset
291 void ContiguousSpace::mangle_unused_area() {
a61af66fc99e Initial load
duke
parents:
diff changeset
292 // to-space is used for storing marks during mark-sweep
a61af66fc99e Initial load
duke
parents:
diff changeset
293 mangle_region(MemRegion(top(), end()));
a61af66fc99e Initial load
duke
parents:
diff changeset
294 }
a61af66fc99e Initial load
duke
parents:
diff changeset
295
a61af66fc99e Initial load
duke
parents:
diff changeset
296 void ContiguousSpace::mangle_region(MemRegion mr) {
a61af66fc99e Initial load
duke
parents:
diff changeset
297 debug_only(Copy::fill_to_words(mr.start(), mr.word_size(), badHeapWord));
a61af66fc99e Initial load
duke
parents:
diff changeset
298 }
a61af66fc99e Initial load
duke
parents:
diff changeset
299
a61af66fc99e Initial load
duke
parents:
diff changeset
300 void CompactibleSpace::initialize(MemRegion mr, bool clear_space) {
a61af66fc99e Initial load
duke
parents:
diff changeset
301 Space::initialize(mr, clear_space);
a61af66fc99e Initial load
duke
parents:
diff changeset
302 _compaction_top = bottom();
a61af66fc99e Initial load
duke
parents:
diff changeset
303 _next_compaction_space = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
304 }
a61af66fc99e Initial load
duke
parents:
diff changeset
305
a61af66fc99e Initial load
duke
parents:
diff changeset
306 HeapWord* CompactibleSpace::forward(oop q, size_t size,
a61af66fc99e Initial load
duke
parents:
diff changeset
307 CompactPoint* cp, HeapWord* compact_top) {
a61af66fc99e Initial load
duke
parents:
diff changeset
308 // q is alive
a61af66fc99e Initial load
duke
parents:
diff changeset
309 // First check if we should switch compaction space
a61af66fc99e Initial load
duke
parents:
diff changeset
310 assert(this == cp->space, "'this' should be current compaction space.");
a61af66fc99e Initial load
duke
parents:
diff changeset
311 size_t compaction_max_size = pointer_delta(end(), compact_top);
a61af66fc99e Initial load
duke
parents:
diff changeset
312 while (size > compaction_max_size) {
a61af66fc99e Initial load
duke
parents:
diff changeset
313 // switch to next compaction space
a61af66fc99e Initial load
duke
parents:
diff changeset
314 cp->space->set_compaction_top(compact_top);
a61af66fc99e Initial load
duke
parents:
diff changeset
315 cp->space = cp->space->next_compaction_space();
a61af66fc99e Initial load
duke
parents:
diff changeset
316 if (cp->space == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
317 cp->gen = GenCollectedHeap::heap()->prev_gen(cp->gen);
a61af66fc99e Initial load
duke
parents:
diff changeset
318 assert(cp->gen != NULL, "compaction must succeed");
a61af66fc99e Initial load
duke
parents:
diff changeset
319 cp->space = cp->gen->first_compaction_space();
a61af66fc99e Initial load
duke
parents:
diff changeset
320 assert(cp->space != NULL, "generation must have a first compaction space");
a61af66fc99e Initial load
duke
parents:
diff changeset
321 }
a61af66fc99e Initial load
duke
parents:
diff changeset
322 compact_top = cp->space->bottom();
a61af66fc99e Initial load
duke
parents:
diff changeset
323 cp->space->set_compaction_top(compact_top);
a61af66fc99e Initial load
duke
parents:
diff changeset
324 cp->threshold = cp->space->initialize_threshold();
a61af66fc99e Initial load
duke
parents:
diff changeset
325 compaction_max_size = pointer_delta(cp->space->end(), compact_top);
a61af66fc99e Initial load
duke
parents:
diff changeset
326 }
a61af66fc99e Initial load
duke
parents:
diff changeset
327
a61af66fc99e Initial load
duke
parents:
diff changeset
328 // store the forwarding pointer into the mark word
a61af66fc99e Initial load
duke
parents:
diff changeset
329 if ((HeapWord*)q != compact_top) {
a61af66fc99e Initial load
duke
parents:
diff changeset
330 q->forward_to(oop(compact_top));
a61af66fc99e Initial load
duke
parents:
diff changeset
331 assert(q->is_gc_marked(), "encoding the pointer should preserve the mark");
a61af66fc99e Initial load
duke
parents:
diff changeset
332 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
333 // if the object isn't moving we can just set the mark to the default
a61af66fc99e Initial load
duke
parents:
diff changeset
334 // mark and handle it specially later on.
a61af66fc99e Initial load
duke
parents:
diff changeset
335 q->init_mark();
a61af66fc99e Initial load
duke
parents:
diff changeset
336 assert(q->forwardee() == NULL, "should be forwarded to NULL");
a61af66fc99e Initial load
duke
parents:
diff changeset
337 }
a61af66fc99e Initial load
duke
parents:
diff changeset
338
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
339 VALIDATE_MARK_SWEEP_ONLY(MarkSweep::register_live_oop(q, size));
0
a61af66fc99e Initial load
duke
parents:
diff changeset
340 compact_top += size;
a61af66fc99e Initial load
duke
parents:
diff changeset
341
a61af66fc99e Initial load
duke
parents:
diff changeset
342 // we need to update the offset table so that the beginnings of objects can be
a61af66fc99e Initial load
duke
parents:
diff changeset
343 // found during scavenge. Note that we are updating the offset table based on
a61af66fc99e Initial load
duke
parents:
diff changeset
344 // where the object will be once the compaction phase finishes.
a61af66fc99e Initial load
duke
parents:
diff changeset
345 if (compact_top > cp->threshold)
a61af66fc99e Initial load
duke
parents:
diff changeset
346 cp->threshold =
a61af66fc99e Initial load
duke
parents:
diff changeset
347 cp->space->cross_threshold(compact_top - size, compact_top);
a61af66fc99e Initial load
duke
parents:
diff changeset
348 return compact_top;
a61af66fc99e Initial load
duke
parents:
diff changeset
349 }
a61af66fc99e Initial load
duke
parents:
diff changeset
350
a61af66fc99e Initial load
duke
parents:
diff changeset
351
a61af66fc99e Initial load
duke
parents:
diff changeset
352 bool CompactibleSpace::insert_deadspace(size_t& allowed_deadspace_words,
a61af66fc99e Initial load
duke
parents:
diff changeset
353 HeapWord* q, size_t deadlength) {
a61af66fc99e Initial load
duke
parents:
diff changeset
354 if (allowed_deadspace_words >= deadlength) {
a61af66fc99e Initial load
duke
parents:
diff changeset
355 allowed_deadspace_words -= deadlength;
a61af66fc99e Initial load
duke
parents:
diff changeset
356 oop(q)->set_mark(markOopDesc::prototype()->set_marked());
a61af66fc99e Initial load
duke
parents:
diff changeset
357 const size_t min_int_array_size = typeArrayOopDesc::header_size(T_INT);
a61af66fc99e Initial load
duke
parents:
diff changeset
358 if (deadlength >= min_int_array_size) {
a61af66fc99e Initial load
duke
parents:
diff changeset
359 oop(q)->set_klass(Universe::intArrayKlassObj());
a61af66fc99e Initial load
duke
parents:
diff changeset
360 typeArrayOop(q)->set_length((int)((deadlength - min_int_array_size)
a61af66fc99e Initial load
duke
parents:
diff changeset
361 * (HeapWordSize/sizeof(jint))));
a61af66fc99e Initial load
duke
parents:
diff changeset
362 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
363 assert((int) deadlength == instanceOopDesc::header_size(),
a61af66fc99e Initial load
duke
parents:
diff changeset
364 "size for smallest fake dead object doesn't match");
a61af66fc99e Initial load
duke
parents:
diff changeset
365 oop(q)->set_klass(SystemDictionary::object_klass());
a61af66fc99e Initial load
duke
parents:
diff changeset
366 }
a61af66fc99e Initial load
duke
parents:
diff changeset
367 assert((int) deadlength == oop(q)->size(),
a61af66fc99e Initial load
duke
parents:
diff changeset
368 "make sure size for fake dead object match");
a61af66fc99e Initial load
duke
parents:
diff changeset
369 // Recall that we required "q == compaction_top".
a61af66fc99e Initial load
duke
parents:
diff changeset
370 return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
371 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
372 allowed_deadspace_words = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
373 return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
374 }
a61af66fc99e Initial load
duke
parents:
diff changeset
375 }
a61af66fc99e Initial load
duke
parents:
diff changeset
376
a61af66fc99e Initial load
duke
parents:
diff changeset
377 #define block_is_always_obj(q) true
a61af66fc99e Initial load
duke
parents:
diff changeset
378 #define obj_size(q) oop(q)->size()
a61af66fc99e Initial load
duke
parents:
diff changeset
379 #define adjust_obj_size(s) s
a61af66fc99e Initial load
duke
parents:
diff changeset
380
a61af66fc99e Initial load
duke
parents:
diff changeset
381 void CompactibleSpace::prepare_for_compaction(CompactPoint* cp) {
a61af66fc99e Initial load
duke
parents:
diff changeset
382 SCAN_AND_FORWARD(cp, end, block_is_obj, block_size);
a61af66fc99e Initial load
duke
parents:
diff changeset
383 }
a61af66fc99e Initial load
duke
parents:
diff changeset
384
a61af66fc99e Initial load
duke
parents:
diff changeset
385 // Faster object search.
a61af66fc99e Initial load
duke
parents:
diff changeset
386 void ContiguousSpace::prepare_for_compaction(CompactPoint* cp) {
a61af66fc99e Initial load
duke
parents:
diff changeset
387 SCAN_AND_FORWARD(cp, top, block_is_always_obj, obj_size);
a61af66fc99e Initial load
duke
parents:
diff changeset
388 }
a61af66fc99e Initial load
duke
parents:
diff changeset
389
a61af66fc99e Initial load
duke
parents:
diff changeset
390 void Space::adjust_pointers() {
a61af66fc99e Initial load
duke
parents:
diff changeset
391 // adjust all the interior pointers to point at the new locations of objects
a61af66fc99e Initial load
duke
parents:
diff changeset
392 // Used by MarkSweep::mark_sweep_phase3()
a61af66fc99e Initial load
duke
parents:
diff changeset
393
a61af66fc99e Initial load
duke
parents:
diff changeset
394 // First check to see if there is any work to be done.
a61af66fc99e Initial load
duke
parents:
diff changeset
395 if (used() == 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
396 return; // Nothing to do.
a61af66fc99e Initial load
duke
parents:
diff changeset
397 }
a61af66fc99e Initial load
duke
parents:
diff changeset
398
a61af66fc99e Initial load
duke
parents:
diff changeset
399 // Otherwise...
a61af66fc99e Initial load
duke
parents:
diff changeset
400 HeapWord* q = bottom();
a61af66fc99e Initial load
duke
parents:
diff changeset
401 HeapWord* t = end();
a61af66fc99e Initial load
duke
parents:
diff changeset
402
a61af66fc99e Initial load
duke
parents:
diff changeset
403 debug_only(HeapWord* prev_q = NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
404 while (q < t) {
a61af66fc99e Initial load
duke
parents:
diff changeset
405 if (oop(q)->is_gc_marked()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
406 // q is alive
a61af66fc99e Initial load
duke
parents:
diff changeset
407
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
408 VALIDATE_MARK_SWEEP_ONLY(MarkSweep::track_interior_pointers(oop(q)));
0
a61af66fc99e Initial load
duke
parents:
diff changeset
409 // point all the oops to the new location
a61af66fc99e Initial load
duke
parents:
diff changeset
410 size_t size = oop(q)->adjust_pointers();
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
411 VALIDATE_MARK_SWEEP_ONLY(MarkSweep::check_interior_pointers());
0
a61af66fc99e Initial load
duke
parents:
diff changeset
412
a61af66fc99e Initial load
duke
parents:
diff changeset
413 debug_only(prev_q = q);
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
414 VALIDATE_MARK_SWEEP_ONLY(MarkSweep::validate_live_oop(oop(q), size));
0
a61af66fc99e Initial load
duke
parents:
diff changeset
415
a61af66fc99e Initial load
duke
parents:
diff changeset
416 q += size;
a61af66fc99e Initial load
duke
parents:
diff changeset
417 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
418 // q is not a live object. But we're not in a compactible space,
a61af66fc99e Initial load
duke
parents:
diff changeset
419 // So we don't have live ranges.
a61af66fc99e Initial load
duke
parents:
diff changeset
420 debug_only(prev_q = q);
a61af66fc99e Initial load
duke
parents:
diff changeset
421 q += block_size(q);
a61af66fc99e Initial load
duke
parents:
diff changeset
422 assert(q > prev_q, "we should be moving forward through memory");
a61af66fc99e Initial load
duke
parents:
diff changeset
423 }
a61af66fc99e Initial load
duke
parents:
diff changeset
424 }
a61af66fc99e Initial load
duke
parents:
diff changeset
425 assert(q == t, "just checking");
a61af66fc99e Initial load
duke
parents:
diff changeset
426 }
a61af66fc99e Initial load
duke
parents:
diff changeset
427
a61af66fc99e Initial load
duke
parents:
diff changeset
428 void CompactibleSpace::adjust_pointers() {
a61af66fc99e Initial load
duke
parents:
diff changeset
429 // Check first is there is any work to do.
a61af66fc99e Initial load
duke
parents:
diff changeset
430 if (used() == 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
431 return; // Nothing to do.
a61af66fc99e Initial load
duke
parents:
diff changeset
432 }
a61af66fc99e Initial load
duke
parents:
diff changeset
433
a61af66fc99e Initial load
duke
parents:
diff changeset
434 SCAN_AND_ADJUST_POINTERS(adjust_obj_size);
a61af66fc99e Initial load
duke
parents:
diff changeset
435 }
a61af66fc99e Initial load
duke
parents:
diff changeset
436
a61af66fc99e Initial load
duke
parents:
diff changeset
437 void CompactibleSpace::compact() {
a61af66fc99e Initial load
duke
parents:
diff changeset
438 SCAN_AND_COMPACT(obj_size);
a61af66fc99e Initial load
duke
parents:
diff changeset
439 }
a61af66fc99e Initial load
duke
parents:
diff changeset
440
a61af66fc99e Initial load
duke
parents:
diff changeset
441 void Space::print_short() const { print_short_on(tty); }
a61af66fc99e Initial load
duke
parents:
diff changeset
442
a61af66fc99e Initial load
duke
parents:
diff changeset
443 void Space::print_short_on(outputStream* st) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
444 st->print(" space " SIZE_FORMAT "K, %3d%% used", capacity() / K,
a61af66fc99e Initial load
duke
parents:
diff changeset
445 (int) ((double) used() * 100 / capacity()));
a61af66fc99e Initial load
duke
parents:
diff changeset
446 }
a61af66fc99e Initial load
duke
parents:
diff changeset
447
a61af66fc99e Initial load
duke
parents:
diff changeset
448 void Space::print() const { print_on(tty); }
a61af66fc99e Initial load
duke
parents:
diff changeset
449
a61af66fc99e Initial load
duke
parents:
diff changeset
450 void Space::print_on(outputStream* st) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
451 print_short_on(st);
a61af66fc99e Initial load
duke
parents:
diff changeset
452 st->print_cr(" [" INTPTR_FORMAT ", " INTPTR_FORMAT ")",
a61af66fc99e Initial load
duke
parents:
diff changeset
453 bottom(), end());
a61af66fc99e Initial load
duke
parents:
diff changeset
454 }
a61af66fc99e Initial load
duke
parents:
diff changeset
455
a61af66fc99e Initial load
duke
parents:
diff changeset
456 void ContiguousSpace::print_on(outputStream* st) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
457 print_short_on(st);
a61af66fc99e Initial load
duke
parents:
diff changeset
458 st->print_cr(" [" INTPTR_FORMAT ", " INTPTR_FORMAT ", " INTPTR_FORMAT ")",
a61af66fc99e Initial load
duke
parents:
diff changeset
459 bottom(), top(), end());
a61af66fc99e Initial load
duke
parents:
diff changeset
460 }
a61af66fc99e Initial load
duke
parents:
diff changeset
461
a61af66fc99e Initial load
duke
parents:
diff changeset
462 void OffsetTableContigSpace::print_on(outputStream* st) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
463 print_short_on(st);
a61af66fc99e Initial load
duke
parents:
diff changeset
464 st->print_cr(" [" INTPTR_FORMAT ", " INTPTR_FORMAT ", "
a61af66fc99e Initial load
duke
parents:
diff changeset
465 INTPTR_FORMAT ", " INTPTR_FORMAT ")",
a61af66fc99e Initial load
duke
parents:
diff changeset
466 bottom(), top(), _offsets.threshold(), end());
a61af66fc99e Initial load
duke
parents:
diff changeset
467 }
a61af66fc99e Initial load
duke
parents:
diff changeset
468
a61af66fc99e Initial load
duke
parents:
diff changeset
469 void ContiguousSpace::verify(bool allow_dirty) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
470 HeapWord* p = bottom();
a61af66fc99e Initial load
duke
parents:
diff changeset
471 HeapWord* t = top();
a61af66fc99e Initial load
duke
parents:
diff changeset
472 HeapWord* prev_p = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
473 while (p < t) {
a61af66fc99e Initial load
duke
parents:
diff changeset
474 oop(p)->verify();
a61af66fc99e Initial load
duke
parents:
diff changeset
475 prev_p = p;
a61af66fc99e Initial load
duke
parents:
diff changeset
476 p += oop(p)->size();
a61af66fc99e Initial load
duke
parents:
diff changeset
477 }
a61af66fc99e Initial load
duke
parents:
diff changeset
478 guarantee(p == top(), "end of last object must match end of space");
a61af66fc99e Initial load
duke
parents:
diff changeset
479 if (top() != end()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
480 guarantee(top() == block_start(end()-1) &&
a61af66fc99e Initial load
duke
parents:
diff changeset
481 top() == block_start(top()),
a61af66fc99e Initial load
duke
parents:
diff changeset
482 "top should be start of unallocated block, if it exists");
a61af66fc99e Initial load
duke
parents:
diff changeset
483 }
a61af66fc99e Initial load
duke
parents:
diff changeset
484 }
a61af66fc99e Initial load
duke
parents:
diff changeset
485
a61af66fc99e Initial load
duke
parents:
diff changeset
486 void Space::oop_iterate(OopClosure* blk) {
a61af66fc99e Initial load
duke
parents:
diff changeset
487 ObjectToOopClosure blk2(blk);
a61af66fc99e Initial load
duke
parents:
diff changeset
488 object_iterate(&blk2);
a61af66fc99e Initial load
duke
parents:
diff changeset
489 }
a61af66fc99e Initial load
duke
parents:
diff changeset
490
a61af66fc99e Initial load
duke
parents:
diff changeset
491 HeapWord* Space::object_iterate_careful(ObjectClosureCareful* cl) {
a61af66fc99e Initial load
duke
parents:
diff changeset
492 guarantee(false, "NYI");
a61af66fc99e Initial load
duke
parents:
diff changeset
493 return bottom();
a61af66fc99e Initial load
duke
parents:
diff changeset
494 }
a61af66fc99e Initial load
duke
parents:
diff changeset
495
a61af66fc99e Initial load
duke
parents:
diff changeset
496 HeapWord* Space::object_iterate_careful_m(MemRegion mr,
a61af66fc99e Initial load
duke
parents:
diff changeset
497 ObjectClosureCareful* cl) {
a61af66fc99e Initial load
duke
parents:
diff changeset
498 guarantee(false, "NYI");
a61af66fc99e Initial load
duke
parents:
diff changeset
499 return bottom();
a61af66fc99e Initial load
duke
parents:
diff changeset
500 }
a61af66fc99e Initial load
duke
parents:
diff changeset
501
a61af66fc99e Initial load
duke
parents:
diff changeset
502
a61af66fc99e Initial load
duke
parents:
diff changeset
503 void Space::object_iterate_mem(MemRegion mr, UpwardsObjectClosure* cl) {
a61af66fc99e Initial load
duke
parents:
diff changeset
504 assert(!mr.is_empty(), "Should be non-empty");
a61af66fc99e Initial load
duke
parents:
diff changeset
505 // We use MemRegion(bottom(), end()) rather than used_region() below
a61af66fc99e Initial load
duke
parents:
diff changeset
506 // because the two are not necessarily equal for some kinds of
a61af66fc99e Initial load
duke
parents:
diff changeset
507 // spaces, in particular, certain kinds of free list spaces.
a61af66fc99e Initial load
duke
parents:
diff changeset
508 // We could use the more complicated but more precise:
a61af66fc99e Initial load
duke
parents:
diff changeset
509 // MemRegion(used_region().start(), round_to(used_region().end(), CardSize))
a61af66fc99e Initial load
duke
parents:
diff changeset
510 // but the slight imprecision seems acceptable in the assertion check.
a61af66fc99e Initial load
duke
parents:
diff changeset
511 assert(MemRegion(bottom(), end()).contains(mr),
a61af66fc99e Initial load
duke
parents:
diff changeset
512 "Should be within used space");
a61af66fc99e Initial load
duke
parents:
diff changeset
513 HeapWord* prev = cl->previous(); // max address from last time
a61af66fc99e Initial load
duke
parents:
diff changeset
514 if (prev >= mr.end()) { // nothing to do
a61af66fc99e Initial load
duke
parents:
diff changeset
515 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
516 }
a61af66fc99e Initial load
duke
parents:
diff changeset
517 // This assert will not work when we go from cms space to perm
a61af66fc99e Initial load
duke
parents:
diff changeset
518 // space, and use same closure. Easy fix deferred for later. XXX YSR
a61af66fc99e Initial load
duke
parents:
diff changeset
519 // assert(prev == NULL || contains(prev), "Should be within space");
a61af66fc99e Initial load
duke
parents:
diff changeset
520
a61af66fc99e Initial load
duke
parents:
diff changeset
521 bool last_was_obj_array = false;
a61af66fc99e Initial load
duke
parents:
diff changeset
522 HeapWord *blk_start_addr, *region_start_addr;
a61af66fc99e Initial load
duke
parents:
diff changeset
523 if (prev > mr.start()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
524 region_start_addr = prev;
a61af66fc99e Initial load
duke
parents:
diff changeset
525 blk_start_addr = prev;
a61af66fc99e Initial load
duke
parents:
diff changeset
526 assert(blk_start_addr == block_start(region_start_addr), "invariant");
a61af66fc99e Initial load
duke
parents:
diff changeset
527 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
528 region_start_addr = mr.start();
a61af66fc99e Initial load
duke
parents:
diff changeset
529 blk_start_addr = block_start(region_start_addr);
a61af66fc99e Initial load
duke
parents:
diff changeset
530 }
a61af66fc99e Initial load
duke
parents:
diff changeset
531 HeapWord* region_end_addr = mr.end();
a61af66fc99e Initial load
duke
parents:
diff changeset
532 MemRegion derived_mr(region_start_addr, region_end_addr);
a61af66fc99e Initial load
duke
parents:
diff changeset
533 while (blk_start_addr < region_end_addr) {
a61af66fc99e Initial load
duke
parents:
diff changeset
534 const size_t size = block_size(blk_start_addr);
a61af66fc99e Initial load
duke
parents:
diff changeset
535 if (block_is_obj(blk_start_addr)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
536 last_was_obj_array = cl->do_object_bm(oop(blk_start_addr), derived_mr);
a61af66fc99e Initial load
duke
parents:
diff changeset
537 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
538 last_was_obj_array = false;
a61af66fc99e Initial load
duke
parents:
diff changeset
539 }
a61af66fc99e Initial load
duke
parents:
diff changeset
540 blk_start_addr += size;
a61af66fc99e Initial load
duke
parents:
diff changeset
541 }
a61af66fc99e Initial load
duke
parents:
diff changeset
542 if (!last_was_obj_array) {
a61af66fc99e Initial load
duke
parents:
diff changeset
543 assert((bottom() <= blk_start_addr) && (blk_start_addr <= end()),
a61af66fc99e Initial load
duke
parents:
diff changeset
544 "Should be within (closed) used space");
a61af66fc99e Initial load
duke
parents:
diff changeset
545 assert(blk_start_addr > prev, "Invariant");
a61af66fc99e Initial load
duke
parents:
diff changeset
546 cl->set_previous(blk_start_addr); // min address for next time
a61af66fc99e Initial load
duke
parents:
diff changeset
547 }
a61af66fc99e Initial load
duke
parents:
diff changeset
548 }
a61af66fc99e Initial load
duke
parents:
diff changeset
549
a61af66fc99e Initial load
duke
parents:
diff changeset
550 bool Space::obj_is_alive(const HeapWord* p) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
551 assert (block_is_obj(p), "The address should point to an object");
a61af66fc99e Initial load
duke
parents:
diff changeset
552 return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
553 }
a61af66fc99e Initial load
duke
parents:
diff changeset
554
a61af66fc99e Initial load
duke
parents:
diff changeset
555 void ContiguousSpace::object_iterate_mem(MemRegion mr, UpwardsObjectClosure* cl) {
a61af66fc99e Initial load
duke
parents:
diff changeset
556 assert(!mr.is_empty(), "Should be non-empty");
a61af66fc99e Initial load
duke
parents:
diff changeset
557 assert(used_region().contains(mr), "Should be within used space");
a61af66fc99e Initial load
duke
parents:
diff changeset
558 HeapWord* prev = cl->previous(); // max address from last time
a61af66fc99e Initial load
duke
parents:
diff changeset
559 if (prev >= mr.end()) { // nothing to do
a61af66fc99e Initial load
duke
parents:
diff changeset
560 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
561 }
a61af66fc99e Initial load
duke
parents:
diff changeset
562 // See comment above (in more general method above) in case you
a61af66fc99e Initial load
duke
parents:
diff changeset
563 // happen to use this method.
a61af66fc99e Initial load
duke
parents:
diff changeset
564 assert(prev == NULL || is_in_reserved(prev), "Should be within space");
a61af66fc99e Initial load
duke
parents:
diff changeset
565
a61af66fc99e Initial load
duke
parents:
diff changeset
566 bool last_was_obj_array = false;
a61af66fc99e Initial load
duke
parents:
diff changeset
567 HeapWord *obj_start_addr, *region_start_addr;
a61af66fc99e Initial load
duke
parents:
diff changeset
568 if (prev > mr.start()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
569 region_start_addr = prev;
a61af66fc99e Initial load
duke
parents:
diff changeset
570 obj_start_addr = prev;
a61af66fc99e Initial load
duke
parents:
diff changeset
571 assert(obj_start_addr == block_start(region_start_addr), "invariant");
a61af66fc99e Initial load
duke
parents:
diff changeset
572 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
573 region_start_addr = mr.start();
a61af66fc99e Initial load
duke
parents:
diff changeset
574 obj_start_addr = block_start(region_start_addr);
a61af66fc99e Initial load
duke
parents:
diff changeset
575 }
a61af66fc99e Initial load
duke
parents:
diff changeset
576 HeapWord* region_end_addr = mr.end();
a61af66fc99e Initial load
duke
parents:
diff changeset
577 MemRegion derived_mr(region_start_addr, region_end_addr);
a61af66fc99e Initial load
duke
parents:
diff changeset
578 while (obj_start_addr < region_end_addr) {
a61af66fc99e Initial load
duke
parents:
diff changeset
579 oop obj = oop(obj_start_addr);
a61af66fc99e Initial load
duke
parents:
diff changeset
580 const size_t size = obj->size();
a61af66fc99e Initial load
duke
parents:
diff changeset
581 last_was_obj_array = cl->do_object_bm(obj, derived_mr);
a61af66fc99e Initial load
duke
parents:
diff changeset
582 obj_start_addr += size;
a61af66fc99e Initial load
duke
parents:
diff changeset
583 }
a61af66fc99e Initial load
duke
parents:
diff changeset
584 if (!last_was_obj_array) {
a61af66fc99e Initial load
duke
parents:
diff changeset
585 assert((bottom() <= obj_start_addr) && (obj_start_addr <= end()),
a61af66fc99e Initial load
duke
parents:
diff changeset
586 "Should be within (closed) used space");
a61af66fc99e Initial load
duke
parents:
diff changeset
587 assert(obj_start_addr > prev, "Invariant");
a61af66fc99e Initial load
duke
parents:
diff changeset
588 cl->set_previous(obj_start_addr); // min address for next time
a61af66fc99e Initial load
duke
parents:
diff changeset
589 }
a61af66fc99e Initial load
duke
parents:
diff changeset
590 }
a61af66fc99e Initial load
duke
parents:
diff changeset
591
a61af66fc99e Initial load
duke
parents:
diff changeset
592 #ifndef SERIALGC
a61af66fc99e Initial load
duke
parents:
diff changeset
593 #define ContigSpace_PAR_OOP_ITERATE_DEFN(OopClosureType, nv_suffix) \
a61af66fc99e Initial load
duke
parents:
diff changeset
594 \
a61af66fc99e Initial load
duke
parents:
diff changeset
595 void ContiguousSpace::par_oop_iterate(MemRegion mr, OopClosureType* blk) {\
a61af66fc99e Initial load
duke
parents:
diff changeset
596 HeapWord* obj_addr = mr.start(); \
a61af66fc99e Initial load
duke
parents:
diff changeset
597 HeapWord* t = mr.end(); \
a61af66fc99e Initial load
duke
parents:
diff changeset
598 while (obj_addr < t) { \
a61af66fc99e Initial load
duke
parents:
diff changeset
599 assert(oop(obj_addr)->is_oop(), "Should be an oop"); \
a61af66fc99e Initial load
duke
parents:
diff changeset
600 obj_addr += oop(obj_addr)->oop_iterate(blk); \
a61af66fc99e Initial load
duke
parents:
diff changeset
601 } \
a61af66fc99e Initial load
duke
parents:
diff changeset
602 }
a61af66fc99e Initial load
duke
parents:
diff changeset
603
a61af66fc99e Initial load
duke
parents:
diff changeset
604 ALL_PAR_OOP_ITERATE_CLOSURES(ContigSpace_PAR_OOP_ITERATE_DEFN)
a61af66fc99e Initial load
duke
parents:
diff changeset
605
a61af66fc99e Initial load
duke
parents:
diff changeset
606 #undef ContigSpace_PAR_OOP_ITERATE_DEFN
a61af66fc99e Initial load
duke
parents:
diff changeset
607 #endif // SERIALGC
a61af66fc99e Initial load
duke
parents:
diff changeset
608
a61af66fc99e Initial load
duke
parents:
diff changeset
609 void ContiguousSpace::oop_iterate(OopClosure* blk) {
a61af66fc99e Initial load
duke
parents:
diff changeset
610 if (is_empty()) return;
a61af66fc99e Initial load
duke
parents:
diff changeset
611 HeapWord* obj_addr = bottom();
a61af66fc99e Initial load
duke
parents:
diff changeset
612 HeapWord* t = top();
a61af66fc99e Initial load
duke
parents:
diff changeset
613 // Could call objects iterate, but this is easier.
a61af66fc99e Initial load
duke
parents:
diff changeset
614 while (obj_addr < t) {
a61af66fc99e Initial load
duke
parents:
diff changeset
615 obj_addr += oop(obj_addr)->oop_iterate(blk);
a61af66fc99e Initial load
duke
parents:
diff changeset
616 }
a61af66fc99e Initial load
duke
parents:
diff changeset
617 }
a61af66fc99e Initial load
duke
parents:
diff changeset
618
a61af66fc99e Initial load
duke
parents:
diff changeset
619 void ContiguousSpace::oop_iterate(MemRegion mr, OopClosure* blk) {
a61af66fc99e Initial load
duke
parents:
diff changeset
620 if (is_empty()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
621 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
622 }
a61af66fc99e Initial load
duke
parents:
diff changeset
623 MemRegion cur = MemRegion(bottom(), top());
a61af66fc99e Initial load
duke
parents:
diff changeset
624 mr = mr.intersection(cur);
a61af66fc99e Initial load
duke
parents:
diff changeset
625 if (mr.is_empty()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
626 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
627 }
a61af66fc99e Initial load
duke
parents:
diff changeset
628 if (mr.equals(cur)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
629 oop_iterate(blk);
a61af66fc99e Initial load
duke
parents:
diff changeset
630 return;
a61af66fc99e Initial load
duke
parents:
diff changeset
631 }
a61af66fc99e Initial load
duke
parents:
diff changeset
632 assert(mr.end() <= top(), "just took an intersection above");
a61af66fc99e Initial load
duke
parents:
diff changeset
633 HeapWord* obj_addr = block_start(mr.start());
a61af66fc99e Initial load
duke
parents:
diff changeset
634 HeapWord* t = mr.end();
a61af66fc99e Initial load
duke
parents:
diff changeset
635
a61af66fc99e Initial load
duke
parents:
diff changeset
636 // Handle first object specially.
a61af66fc99e Initial load
duke
parents:
diff changeset
637 oop obj = oop(obj_addr);
a61af66fc99e Initial load
duke
parents:
diff changeset
638 SpaceMemRegionOopsIterClosure smr_blk(blk, mr);
a61af66fc99e Initial load
duke
parents:
diff changeset
639 obj_addr += obj->oop_iterate(&smr_blk);
a61af66fc99e Initial load
duke
parents:
diff changeset
640 while (obj_addr < t) {
a61af66fc99e Initial load
duke
parents:
diff changeset
641 oop obj = oop(obj_addr);
a61af66fc99e Initial load
duke
parents:
diff changeset
642 assert(obj->is_oop(), "expected an oop");
a61af66fc99e Initial load
duke
parents:
diff changeset
643 obj_addr += obj->size();
a61af66fc99e Initial load
duke
parents:
diff changeset
644 // If "obj_addr" is not greater than top, then the
a61af66fc99e Initial load
duke
parents:
diff changeset
645 // entire object "obj" is within the region.
a61af66fc99e Initial load
duke
parents:
diff changeset
646 if (obj_addr <= t) {
a61af66fc99e Initial load
duke
parents:
diff changeset
647 obj->oop_iterate(blk);
a61af66fc99e Initial load
duke
parents:
diff changeset
648 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
649 // "obj" extends beyond end of region
a61af66fc99e Initial load
duke
parents:
diff changeset
650 obj->oop_iterate(&smr_blk);
a61af66fc99e Initial load
duke
parents:
diff changeset
651 break;
a61af66fc99e Initial load
duke
parents:
diff changeset
652 }
a61af66fc99e Initial load
duke
parents:
diff changeset
653 };
a61af66fc99e Initial load
duke
parents:
diff changeset
654 }
a61af66fc99e Initial load
duke
parents:
diff changeset
655
a61af66fc99e Initial load
duke
parents:
diff changeset
656 void ContiguousSpace::object_iterate(ObjectClosure* blk) {
a61af66fc99e Initial load
duke
parents:
diff changeset
657 if (is_empty()) return;
a61af66fc99e Initial load
duke
parents:
diff changeset
658 WaterMark bm = bottom_mark();
a61af66fc99e Initial load
duke
parents:
diff changeset
659 object_iterate_from(bm, blk);
a61af66fc99e Initial load
duke
parents:
diff changeset
660 }
a61af66fc99e Initial load
duke
parents:
diff changeset
661
a61af66fc99e Initial load
duke
parents:
diff changeset
662 void ContiguousSpace::object_iterate_from(WaterMark mark, ObjectClosure* blk) {
a61af66fc99e Initial load
duke
parents:
diff changeset
663 assert(mark.space() == this, "Mark does not match space");
a61af66fc99e Initial load
duke
parents:
diff changeset
664 HeapWord* p = mark.point();
a61af66fc99e Initial load
duke
parents:
diff changeset
665 while (p < top()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
666 blk->do_object(oop(p));
a61af66fc99e Initial load
duke
parents:
diff changeset
667 p += oop(p)->size();
a61af66fc99e Initial load
duke
parents:
diff changeset
668 }
a61af66fc99e Initial load
duke
parents:
diff changeset
669 }
a61af66fc99e Initial load
duke
parents:
diff changeset
670
a61af66fc99e Initial load
duke
parents:
diff changeset
671 HeapWord*
a61af66fc99e Initial load
duke
parents:
diff changeset
672 ContiguousSpace::object_iterate_careful(ObjectClosureCareful* blk) {
a61af66fc99e Initial load
duke
parents:
diff changeset
673 HeapWord * limit = concurrent_iteration_safe_limit();
a61af66fc99e Initial load
duke
parents:
diff changeset
674 assert(limit <= top(), "sanity check");
a61af66fc99e Initial load
duke
parents:
diff changeset
675 for (HeapWord* p = bottom(); p < limit;) {
a61af66fc99e Initial load
duke
parents:
diff changeset
676 size_t size = blk->do_object_careful(oop(p));
a61af66fc99e Initial load
duke
parents:
diff changeset
677 if (size == 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
678 return p; // failed at p
a61af66fc99e Initial load
duke
parents:
diff changeset
679 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
680 p += size;
a61af66fc99e Initial load
duke
parents:
diff changeset
681 }
a61af66fc99e Initial load
duke
parents:
diff changeset
682 }
a61af66fc99e Initial load
duke
parents:
diff changeset
683 return NULL; // all done
a61af66fc99e Initial load
duke
parents:
diff changeset
684 }
a61af66fc99e Initial load
duke
parents:
diff changeset
685
a61af66fc99e Initial load
duke
parents:
diff changeset
686 #define ContigSpace_OOP_SINCE_SAVE_MARKS_DEFN(OopClosureType, nv_suffix) \
a61af66fc99e Initial load
duke
parents:
diff changeset
687 \
a61af66fc99e Initial load
duke
parents:
diff changeset
688 void ContiguousSpace:: \
a61af66fc99e Initial load
duke
parents:
diff changeset
689 oop_since_save_marks_iterate##nv_suffix(OopClosureType* blk) { \
a61af66fc99e Initial load
duke
parents:
diff changeset
690 HeapWord* t; \
a61af66fc99e Initial load
duke
parents:
diff changeset
691 HeapWord* p = saved_mark_word(); \
a61af66fc99e Initial load
duke
parents:
diff changeset
692 assert(p != NULL, "expected saved mark"); \
a61af66fc99e Initial load
duke
parents:
diff changeset
693 \
a61af66fc99e Initial load
duke
parents:
diff changeset
694 const intx interval = PrefetchScanIntervalInBytes; \
a61af66fc99e Initial load
duke
parents:
diff changeset
695 do { \
a61af66fc99e Initial load
duke
parents:
diff changeset
696 t = top(); \
a61af66fc99e Initial load
duke
parents:
diff changeset
697 while (p < t) { \
a61af66fc99e Initial load
duke
parents:
diff changeset
698 Prefetch::write(p, interval); \
a61af66fc99e Initial load
duke
parents:
diff changeset
699 debug_only(HeapWord* prev = p); \
a61af66fc99e Initial load
duke
parents:
diff changeset
700 oop m = oop(p); \
a61af66fc99e Initial load
duke
parents:
diff changeset
701 p += m->oop_iterate(blk); \
a61af66fc99e Initial load
duke
parents:
diff changeset
702 } \
a61af66fc99e Initial load
duke
parents:
diff changeset
703 } while (t < top()); \
a61af66fc99e Initial load
duke
parents:
diff changeset
704 \
a61af66fc99e Initial load
duke
parents:
diff changeset
705 set_saved_mark_word(p); \
a61af66fc99e Initial load
duke
parents:
diff changeset
706 }
a61af66fc99e Initial load
duke
parents:
diff changeset
707
a61af66fc99e Initial load
duke
parents:
diff changeset
708 ALL_SINCE_SAVE_MARKS_CLOSURES(ContigSpace_OOP_SINCE_SAVE_MARKS_DEFN)
a61af66fc99e Initial load
duke
parents:
diff changeset
709
a61af66fc99e Initial load
duke
parents:
diff changeset
710 #undef ContigSpace_OOP_SINCE_SAVE_MARKS_DEFN
a61af66fc99e Initial load
duke
parents:
diff changeset
711
a61af66fc99e Initial load
duke
parents:
diff changeset
712 // Very general, slow implementation.
a61af66fc99e Initial load
duke
parents:
diff changeset
713 HeapWord* ContiguousSpace::block_start(const void* p) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
714 assert(MemRegion(bottom(), end()).contains(p), "p not in space");
a61af66fc99e Initial load
duke
parents:
diff changeset
715 if (p >= top()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
716 return top();
a61af66fc99e Initial load
duke
parents:
diff changeset
717 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
718 HeapWord* last = bottom();
a61af66fc99e Initial load
duke
parents:
diff changeset
719 HeapWord* cur = last;
a61af66fc99e Initial load
duke
parents:
diff changeset
720 while (cur <= p) {
a61af66fc99e Initial load
duke
parents:
diff changeset
721 last = cur;
a61af66fc99e Initial load
duke
parents:
diff changeset
722 cur += oop(cur)->size();
a61af66fc99e Initial load
duke
parents:
diff changeset
723 }
a61af66fc99e Initial load
duke
parents:
diff changeset
724 assert(oop(last)->is_oop(), "Should be an object start");
a61af66fc99e Initial load
duke
parents:
diff changeset
725 return last;
a61af66fc99e Initial load
duke
parents:
diff changeset
726 }
a61af66fc99e Initial load
duke
parents:
diff changeset
727 }
a61af66fc99e Initial load
duke
parents:
diff changeset
728
a61af66fc99e Initial load
duke
parents:
diff changeset
729 size_t ContiguousSpace::block_size(const HeapWord* p) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
730 assert(MemRegion(bottom(), end()).contains(p), "p not in space");
a61af66fc99e Initial load
duke
parents:
diff changeset
731 HeapWord* current_top = top();
a61af66fc99e Initial load
duke
parents:
diff changeset
732 assert(p <= current_top, "p is not a block start");
a61af66fc99e Initial load
duke
parents:
diff changeset
733 assert(p == current_top || oop(p)->is_oop(), "p is not a block start");
a61af66fc99e Initial load
duke
parents:
diff changeset
734 if (p < current_top)
a61af66fc99e Initial load
duke
parents:
diff changeset
735 return oop(p)->size();
a61af66fc99e Initial load
duke
parents:
diff changeset
736 else {
a61af66fc99e Initial load
duke
parents:
diff changeset
737 assert(p == current_top, "just checking");
a61af66fc99e Initial load
duke
parents:
diff changeset
738 return pointer_delta(end(), (HeapWord*) p);
a61af66fc99e Initial load
duke
parents:
diff changeset
739 }
a61af66fc99e Initial load
duke
parents:
diff changeset
740 }
a61af66fc99e Initial load
duke
parents:
diff changeset
741
a61af66fc99e Initial load
duke
parents:
diff changeset
742 // This version requires locking.
a61af66fc99e Initial load
duke
parents:
diff changeset
743 inline HeapWord* ContiguousSpace::allocate_impl(size_t size,
a61af66fc99e Initial load
duke
parents:
diff changeset
744 HeapWord* const end_value) {
a61af66fc99e Initial load
duke
parents:
diff changeset
745 assert(Heap_lock->owned_by_self() ||
a61af66fc99e Initial load
duke
parents:
diff changeset
746 (SafepointSynchronize::is_at_safepoint() &&
a61af66fc99e Initial load
duke
parents:
diff changeset
747 Thread::current()->is_VM_thread()),
a61af66fc99e Initial load
duke
parents:
diff changeset
748 "not locked");
a61af66fc99e Initial load
duke
parents:
diff changeset
749 HeapWord* obj = top();
a61af66fc99e Initial load
duke
parents:
diff changeset
750 if (pointer_delta(end_value, obj) >= size) {
a61af66fc99e Initial load
duke
parents:
diff changeset
751 HeapWord* new_top = obj + size;
a61af66fc99e Initial load
duke
parents:
diff changeset
752 set_top(new_top);
a61af66fc99e Initial load
duke
parents:
diff changeset
753 assert(is_aligned(obj) && is_aligned(new_top), "checking alignment");
a61af66fc99e Initial load
duke
parents:
diff changeset
754 return obj;
a61af66fc99e Initial load
duke
parents:
diff changeset
755 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
756 return NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
757 }
a61af66fc99e Initial load
duke
parents:
diff changeset
758 }
a61af66fc99e Initial load
duke
parents:
diff changeset
759
a61af66fc99e Initial load
duke
parents:
diff changeset
760 // This version is lock-free.
a61af66fc99e Initial load
duke
parents:
diff changeset
761 inline HeapWord* ContiguousSpace::par_allocate_impl(size_t size,
a61af66fc99e Initial load
duke
parents:
diff changeset
762 HeapWord* const end_value) {
a61af66fc99e Initial load
duke
parents:
diff changeset
763 do {
a61af66fc99e Initial load
duke
parents:
diff changeset
764 HeapWord* obj = top();
a61af66fc99e Initial load
duke
parents:
diff changeset
765 if (pointer_delta(end_value, obj) >= size) {
a61af66fc99e Initial load
duke
parents:
diff changeset
766 HeapWord* new_top = obj + size;
a61af66fc99e Initial load
duke
parents:
diff changeset
767 HeapWord* result = (HeapWord*)Atomic::cmpxchg_ptr(new_top, top_addr(), obj);
a61af66fc99e Initial load
duke
parents:
diff changeset
768 // result can be one of two:
a61af66fc99e Initial load
duke
parents:
diff changeset
769 // the old top value: the exchange succeeded
a61af66fc99e Initial load
duke
parents:
diff changeset
770 // otherwise: the new value of the top is returned.
a61af66fc99e Initial load
duke
parents:
diff changeset
771 if (result == obj) {
a61af66fc99e Initial load
duke
parents:
diff changeset
772 assert(is_aligned(obj) && is_aligned(new_top), "checking alignment");
a61af66fc99e Initial load
duke
parents:
diff changeset
773 return obj;
a61af66fc99e Initial load
duke
parents:
diff changeset
774 }
a61af66fc99e Initial load
duke
parents:
diff changeset
775 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
776 return NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
777 }
a61af66fc99e Initial load
duke
parents:
diff changeset
778 } while (true);
a61af66fc99e Initial load
duke
parents:
diff changeset
779 }
a61af66fc99e Initial load
duke
parents:
diff changeset
780
a61af66fc99e Initial load
duke
parents:
diff changeset
781 // Requires locking.
a61af66fc99e Initial load
duke
parents:
diff changeset
782 HeapWord* ContiguousSpace::allocate(size_t size) {
a61af66fc99e Initial load
duke
parents:
diff changeset
783 return allocate_impl(size, end());
a61af66fc99e Initial load
duke
parents:
diff changeset
784 }
a61af66fc99e Initial load
duke
parents:
diff changeset
785
a61af66fc99e Initial load
duke
parents:
diff changeset
786 // Lock-free.
a61af66fc99e Initial load
duke
parents:
diff changeset
787 HeapWord* ContiguousSpace::par_allocate(size_t size) {
a61af66fc99e Initial load
duke
parents:
diff changeset
788 return par_allocate_impl(size, end());
a61af66fc99e Initial load
duke
parents:
diff changeset
789 }
a61af66fc99e Initial load
duke
parents:
diff changeset
790
a61af66fc99e Initial load
duke
parents:
diff changeset
791 void ContiguousSpace::allocate_temporary_filler(int factor) {
a61af66fc99e Initial load
duke
parents:
diff changeset
792 // allocate temporary type array decreasing free size with factor 'factor'
a61af66fc99e Initial load
duke
parents:
diff changeset
793 assert(factor >= 0, "just checking");
a61af66fc99e Initial load
duke
parents:
diff changeset
794 size_t size = pointer_delta(end(), top());
a61af66fc99e Initial load
duke
parents:
diff changeset
795
a61af66fc99e Initial load
duke
parents:
diff changeset
796 // if space is full, return
a61af66fc99e Initial load
duke
parents:
diff changeset
797 if (size == 0) return;
a61af66fc99e Initial load
duke
parents:
diff changeset
798
a61af66fc99e Initial load
duke
parents:
diff changeset
799 if (factor > 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
800 size -= size/factor;
a61af66fc99e Initial load
duke
parents:
diff changeset
801 }
a61af66fc99e Initial load
duke
parents:
diff changeset
802 size = align_object_size(size);
a61af66fc99e Initial load
duke
parents:
diff changeset
803
a61af66fc99e Initial load
duke
parents:
diff changeset
804 const size_t min_int_array_size = typeArrayOopDesc::header_size(T_INT);
a61af66fc99e Initial load
duke
parents:
diff changeset
805 if (size >= min_int_array_size) {
a61af66fc99e Initial load
duke
parents:
diff changeset
806 size_t length = (size - min_int_array_size) * (HeapWordSize / sizeof(jint));
a61af66fc99e Initial load
duke
parents:
diff changeset
807 // allocate uninitialized int array
a61af66fc99e Initial load
duke
parents:
diff changeset
808 typeArrayOop t = (typeArrayOop) allocate(size);
a61af66fc99e Initial load
duke
parents:
diff changeset
809 assert(t != NULL, "allocation should succeed");
a61af66fc99e Initial load
duke
parents:
diff changeset
810 t->set_mark(markOopDesc::prototype());
a61af66fc99e Initial load
duke
parents:
diff changeset
811 t->set_klass(Universe::intArrayKlassObj());
a61af66fc99e Initial load
duke
parents:
diff changeset
812 t->set_length((int)length);
a61af66fc99e Initial load
duke
parents:
diff changeset
813 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
814 assert((int) size == instanceOopDesc::header_size(),
a61af66fc99e Initial load
duke
parents:
diff changeset
815 "size for smallest fake object doesn't match");
a61af66fc99e Initial load
duke
parents:
diff changeset
816 instanceOop obj = (instanceOop) allocate(size);
a61af66fc99e Initial load
duke
parents:
diff changeset
817 obj->set_mark(markOopDesc::prototype());
a61af66fc99e Initial load
duke
parents:
diff changeset
818 obj->set_klass(SystemDictionary::object_klass());
a61af66fc99e Initial load
duke
parents:
diff changeset
819 }
a61af66fc99e Initial load
duke
parents:
diff changeset
820 }
a61af66fc99e Initial load
duke
parents:
diff changeset
821
a61af66fc99e Initial load
duke
parents:
diff changeset
822 void EdenSpace::clear() {
a61af66fc99e Initial load
duke
parents:
diff changeset
823 ContiguousSpace::clear();
a61af66fc99e Initial load
duke
parents:
diff changeset
824 set_soft_end(end());
a61af66fc99e Initial load
duke
parents:
diff changeset
825 }
a61af66fc99e Initial load
duke
parents:
diff changeset
826
a61af66fc99e Initial load
duke
parents:
diff changeset
827 // Requires locking.
a61af66fc99e Initial load
duke
parents:
diff changeset
828 HeapWord* EdenSpace::allocate(size_t size) {
a61af66fc99e Initial load
duke
parents:
diff changeset
829 return allocate_impl(size, soft_end());
a61af66fc99e Initial load
duke
parents:
diff changeset
830 }
a61af66fc99e Initial load
duke
parents:
diff changeset
831
a61af66fc99e Initial load
duke
parents:
diff changeset
832 // Lock-free.
a61af66fc99e Initial load
duke
parents:
diff changeset
833 HeapWord* EdenSpace::par_allocate(size_t size) {
a61af66fc99e Initial load
duke
parents:
diff changeset
834 return par_allocate_impl(size, soft_end());
a61af66fc99e Initial load
duke
parents:
diff changeset
835 }
a61af66fc99e Initial load
duke
parents:
diff changeset
836
a61af66fc99e Initial load
duke
parents:
diff changeset
837 HeapWord* ConcEdenSpace::par_allocate(size_t size)
a61af66fc99e Initial load
duke
parents:
diff changeset
838 {
a61af66fc99e Initial load
duke
parents:
diff changeset
839 do {
a61af66fc99e Initial load
duke
parents:
diff changeset
840 // The invariant is top() should be read before end() because
a61af66fc99e Initial load
duke
parents:
diff changeset
841 // top() can't be greater than end(), so if an update of _soft_end
a61af66fc99e Initial load
duke
parents:
diff changeset
842 // occurs between 'end_val = end();' and 'top_val = top();' top()
a61af66fc99e Initial load
duke
parents:
diff changeset
843 // also can grow up to the new end() and the condition
a61af66fc99e Initial load
duke
parents:
diff changeset
844 // 'top_val > end_val' is true. To ensure the loading order
a61af66fc99e Initial load
duke
parents:
diff changeset
845 // OrderAccess::loadload() is required after top() read.
a61af66fc99e Initial load
duke
parents:
diff changeset
846 HeapWord* obj = top();
a61af66fc99e Initial load
duke
parents:
diff changeset
847 OrderAccess::loadload();
a61af66fc99e Initial load
duke
parents:
diff changeset
848 if (pointer_delta(*soft_end_addr(), obj) >= size) {
a61af66fc99e Initial load
duke
parents:
diff changeset
849 HeapWord* new_top = obj + size;
a61af66fc99e Initial load
duke
parents:
diff changeset
850 HeapWord* result = (HeapWord*)Atomic::cmpxchg_ptr(new_top, top_addr(), obj);
a61af66fc99e Initial load
duke
parents:
diff changeset
851 // result can be one of two:
a61af66fc99e Initial load
duke
parents:
diff changeset
852 // the old top value: the exchange succeeded
a61af66fc99e Initial load
duke
parents:
diff changeset
853 // otherwise: the new value of the top is returned.
a61af66fc99e Initial load
duke
parents:
diff changeset
854 if (result == obj) {
a61af66fc99e Initial load
duke
parents:
diff changeset
855 assert(is_aligned(obj) && is_aligned(new_top), "checking alignment");
a61af66fc99e Initial load
duke
parents:
diff changeset
856 return obj;
a61af66fc99e Initial load
duke
parents:
diff changeset
857 }
a61af66fc99e Initial load
duke
parents:
diff changeset
858 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
859 return NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
860 }
a61af66fc99e Initial load
duke
parents:
diff changeset
861 } while (true);
a61af66fc99e Initial load
duke
parents:
diff changeset
862 }
a61af66fc99e Initial load
duke
parents:
diff changeset
863
a61af66fc99e Initial load
duke
parents:
diff changeset
864
a61af66fc99e Initial load
duke
parents:
diff changeset
865 HeapWord* OffsetTableContigSpace::initialize_threshold() {
a61af66fc99e Initial load
duke
parents:
diff changeset
866 return _offsets.initialize_threshold();
a61af66fc99e Initial load
duke
parents:
diff changeset
867 }
a61af66fc99e Initial load
duke
parents:
diff changeset
868
a61af66fc99e Initial load
duke
parents:
diff changeset
869 HeapWord* OffsetTableContigSpace::cross_threshold(HeapWord* start, HeapWord* end) {
a61af66fc99e Initial load
duke
parents:
diff changeset
870 _offsets.alloc_block(start, end);
a61af66fc99e Initial load
duke
parents:
diff changeset
871 return _offsets.threshold();
a61af66fc99e Initial load
duke
parents:
diff changeset
872 }
a61af66fc99e Initial load
duke
parents:
diff changeset
873
a61af66fc99e Initial load
duke
parents:
diff changeset
874 OffsetTableContigSpace::OffsetTableContigSpace(BlockOffsetSharedArray* sharedOffsetArray,
a61af66fc99e Initial load
duke
parents:
diff changeset
875 MemRegion mr) :
a61af66fc99e Initial load
duke
parents:
diff changeset
876 _offsets(sharedOffsetArray, mr),
a61af66fc99e Initial load
duke
parents:
diff changeset
877 _par_alloc_lock(Mutex::leaf, "OffsetTableContigSpace par alloc lock", true)
a61af66fc99e Initial load
duke
parents:
diff changeset
878 {
a61af66fc99e Initial load
duke
parents:
diff changeset
879 _offsets.set_contig_space(this);
a61af66fc99e Initial load
duke
parents:
diff changeset
880 initialize(mr, true);
a61af66fc99e Initial load
duke
parents:
diff changeset
881 }
a61af66fc99e Initial load
duke
parents:
diff changeset
882
a61af66fc99e Initial load
duke
parents:
diff changeset
883
a61af66fc99e Initial load
duke
parents:
diff changeset
884 class VerifyOldOopClosure : public OopClosure {
a61af66fc99e Initial load
duke
parents:
diff changeset
885 public:
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
886 oop _the_obj;
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
887 bool _allow_dirty;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
888 void do_oop(oop* p) {
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
889 _the_obj->verify_old_oop(p, _allow_dirty);
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
890 }
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
891 void do_oop(narrowOop* p) {
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
892 _the_obj->verify_old_oop(p, _allow_dirty);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
893 }
a61af66fc99e Initial load
duke
parents:
diff changeset
894 };
a61af66fc99e Initial load
duke
parents:
diff changeset
895
a61af66fc99e Initial load
duke
parents:
diff changeset
896 #define OBJ_SAMPLE_INTERVAL 0
a61af66fc99e Initial load
duke
parents:
diff changeset
897 #define BLOCK_SAMPLE_INTERVAL 100
a61af66fc99e Initial load
duke
parents:
diff changeset
898
a61af66fc99e Initial load
duke
parents:
diff changeset
899 void OffsetTableContigSpace::verify(bool allow_dirty) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
900 HeapWord* p = bottom();
a61af66fc99e Initial load
duke
parents:
diff changeset
901 HeapWord* prev_p = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
902 VerifyOldOopClosure blk; // Does this do anything?
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
903 blk._allow_dirty = allow_dirty;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
904 int objs = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
905 int blocks = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
906
a61af66fc99e Initial load
duke
parents:
diff changeset
907 if (VerifyObjectStartArray) {
a61af66fc99e Initial load
duke
parents:
diff changeset
908 _offsets.verify();
a61af66fc99e Initial load
duke
parents:
diff changeset
909 }
a61af66fc99e Initial load
duke
parents:
diff changeset
910
a61af66fc99e Initial load
duke
parents:
diff changeset
911 while (p < top()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
912 size_t size = oop(p)->size();
a61af66fc99e Initial load
duke
parents:
diff changeset
913 // For a sampling of objects in the space, find it using the
a61af66fc99e Initial load
duke
parents:
diff changeset
914 // block offset table.
a61af66fc99e Initial load
duke
parents:
diff changeset
915 if (blocks == BLOCK_SAMPLE_INTERVAL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
916 guarantee(p == block_start(p + (size/2)), "check offset computation");
a61af66fc99e Initial load
duke
parents:
diff changeset
917 blocks = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
918 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
919 blocks++;
a61af66fc99e Initial load
duke
parents:
diff changeset
920 }
a61af66fc99e Initial load
duke
parents:
diff changeset
921
a61af66fc99e Initial load
duke
parents:
diff changeset
922 if (objs == OBJ_SAMPLE_INTERVAL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
923 oop(p)->verify();
113
ba764ed4b6f2 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 0
diff changeset
924 blk._the_obj = oop(p);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
925 oop(p)->oop_iterate(&blk);
a61af66fc99e Initial load
duke
parents:
diff changeset
926 objs = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
927 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
928 objs++;
a61af66fc99e Initial load
duke
parents:
diff changeset
929 }
a61af66fc99e Initial load
duke
parents:
diff changeset
930 prev_p = p;
a61af66fc99e Initial load
duke
parents:
diff changeset
931 p += size;
a61af66fc99e Initial load
duke
parents:
diff changeset
932 }
a61af66fc99e Initial load
duke
parents:
diff changeset
933 guarantee(p == top(), "end of last object must match end of space");
a61af66fc99e Initial load
duke
parents:
diff changeset
934 }
a61af66fc99e Initial load
duke
parents:
diff changeset
935
a61af66fc99e Initial load
duke
parents:
diff changeset
936 void OffsetTableContigSpace::serialize_block_offset_array_offsets(
a61af66fc99e Initial load
duke
parents:
diff changeset
937 SerializeOopClosure* soc) {
a61af66fc99e Initial load
duke
parents:
diff changeset
938 _offsets.serialize(soc);
a61af66fc99e Initial load
duke
parents:
diff changeset
939 }
a61af66fc99e Initial load
duke
parents:
diff changeset
940
a61af66fc99e Initial load
duke
parents:
diff changeset
941
a61af66fc99e Initial load
duke
parents:
diff changeset
942 int TenuredSpace::allowed_dead_ratio() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
943 return MarkSweepDeadRatio;
a61af66fc99e Initial load
duke
parents:
diff changeset
944 }
a61af66fc99e Initial load
duke
parents:
diff changeset
945
a61af66fc99e Initial load
duke
parents:
diff changeset
946
a61af66fc99e Initial load
duke
parents:
diff changeset
947 int ContigPermSpace::allowed_dead_ratio() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
948 return PermMarkSweepDeadRatio;
a61af66fc99e Initial load
duke
parents:
diff changeset
949 }