src/share/vm/memory/blockOffsetTable.cpp

changeset 9327
f96fcd9e1e1b
parent 6680
78bbf4d43a14
child 9448
73d689add964
equal deleted inserted replaced
9324:efdbe9b904ad 9327:f96fcd9e1e1b
558 while (n <= addr) { 558 while (n <= addr) {
559 debug_only(HeapWord* last = q); // for debugging 559 debug_only(HeapWord* last = q); // for debugging
560 q = n; 560 q = n;
561 n += _sp->block_size(n); 561 n += _sp->block_size(n);
562 assert(n > q, 562 assert(n > q,
563 err_msg("Looping at n = " PTR_FORMAT " with last = " PTR_FORMAT"," 563 err_msg("Looping at n = " PTR_FORMAT " with last = " PTR_FORMAT ","
564 " while querying blk_start(" PTR_FORMAT ")" 564 " while querying blk_start(" PTR_FORMAT ")"
565 " on _sp = [" PTR_FORMAT "," PTR_FORMAT ")", 565 " on _sp = [" PTR_FORMAT "," PTR_FORMAT ")",
566 p2i(n), p2i(last), p2i(addr), p2i(_sp->bottom()), p2i(_sp->end()))); 566 p2i(n), p2i(last), p2i(addr), p2i(_sp->bottom()), p2i(_sp->end())));
567 } 567 }
568 assert(q <= addr, 568 assert(q <= addr,

mercurial