hotspot/src/share/vm/gc/shared/blockOffsetTable.cpp
changeset 31592 43f48e165466
parent 30764 fec48bf5a827
child 32746 11ab01b37e82
equal deleted inserted replaced
31401:1514c0a798d2 31592:43f48e165466
   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,