src/share/vm/memory/space.cpp

Thu, 12 Jun 2008 13:50:55 -0700

author
ysr
date
Thu, 12 Jun 2008 13:50:55 -0700
changeset 779
6aae2f9d0294
parent 777
37f87013dfd8
parent 602
feeb96a45707
child 782
60fb9c4db4e6
permissions
-rw-r--r--

Merge

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

mercurial