hotspot/src/share/vm/gc_implementation/g1/concurrentMark.cpp
changeset 23505 b3c5e757bbb7
parent 23471 ec9427262f0a
child 23855 c4574075402c
equal deleted inserted replaced
23504:6636d4e1b042 23505:b3c5e757bbb7
  2016   if (VerifyDuringGC) {
  2016   if (VerifyDuringGC) {
  2017     // Verify that the counting data accumulated during marking matches
  2017     // Verify that the counting data accumulated during marking matches
  2018     // that calculated by walking the marking bitmap.
  2018     // that calculated by walking the marking bitmap.
  2019 
  2019 
  2020     // Bitmaps to hold expected values
  2020     // Bitmaps to hold expected values
  2021     BitMap expected_region_bm(_region_bm.size(), false);
  2021     BitMap expected_region_bm(_region_bm.size(), true);
  2022     BitMap expected_card_bm(_card_bm.size(), false);
  2022     BitMap expected_card_bm(_card_bm.size(), true);
  2023 
  2023 
  2024     G1ParVerifyFinalCountTask g1_par_verify_task(g1h,
  2024     G1ParVerifyFinalCountTask g1_par_verify_task(g1h,
  2025                                                  &_region_bm,
  2025                                                  &_region_bm,
  2026                                                  &_card_bm,
  2026                                                  &_card_bm,
  2027                                                  &expected_region_bm,
  2027                                                  &expected_region_bm,