src/share/vm/gc_implementation/g1/satbQueue.cpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File
*** old/src/share/vm/gc_implementation/g1/satbQueue.cpp	Thu Jan 30 13:10:45 2014
--- new/src/share/vm/gc_implementation/g1/satbQueue.cpp	Thu Jan 30 13:10:45 2014

*** 89,99 **** --- 89,99 ---- bool retain = g1h->is_obj_ill(obj); if (retain) { assert(new_index > 0, "we should not have already filled up the buffer"); new_index -= oopSize; assert(new_index >= i, - "new_index should never be below i, as we alwaysr compact 'up'"); oop* new_p = (oop*) &buf[byte_index_to_index((int) new_index)]; assert(new_p >= p, "the destination location should never be below " "the source as we always compact 'up'"); assert(*new_p == NULL, "we should have already cleared the destination location");

src/share/vm/gc_implementation/g1/satbQueue.cpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File