src/hotspot/share/gc/g1/g1CollectedHeap.cpp
changeset 54716 61d0e96a6b2d
parent 54678 93f09ca4a7f8
child 54726 671e35cf611b
equal deleted inserted replaced
54715:239bc23e76cc 54716:61d0e96a6b2d
  1090   // objects marked during a full GC against the previous bitmap.
  1090   // objects marked during a full GC against the previous bitmap.
  1091   // But we need to clear it before calling check_bitmaps below since
  1091   // But we need to clear it before calling check_bitmaps below since
  1092   // the full GC has compacted objects and updated TAMS but not updated
  1092   // the full GC has compacted objects and updated TAMS but not updated
  1093   // the prev bitmap.
  1093   // the prev bitmap.
  1094   if (G1VerifyBitmaps) {
  1094   if (G1VerifyBitmaps) {
  1095     GCTraceTime(Debug, gc)("Clear Prev Bitmap for Verification");
  1095     GCTraceTime(Debug, gc) tm("Clear Prev Bitmap for Verification");
  1096     _cm->clear_prev_bitmap(workers());
  1096     _cm->clear_prev_bitmap(workers());
  1097   }
  1097   }
  1098   // This call implicitly verifies that the next bitmap is clear after Full GC.
  1098   // This call implicitly verifies that the next bitmap is clear after Full GC.
  1099   _verifier->check_bitmaps("Full GC End");
  1099   _verifier->check_bitmaps("Full GC End");
  1100 
  1100