hotspot/src/share/vm/gc/g1/collectionSetChooser.hpp
changeset 31592 43f48e165466
parent 31346 a70d45c06136
child 32745 d238cd8170fc
equal deleted inserted replaced
31401:1514c0a798d2 31592:43f48e165466
    90     assert(_curr_index < _length, "pre-condition");
    90     assert(_curr_index < _length, "pre-condition");
    91     assert(regions_at(_curr_index) == hr, "pre-condition");
    91     assert(regions_at(_curr_index) == hr, "pre-condition");
    92     regions_at_put(_curr_index, NULL);
    92     regions_at_put(_curr_index, NULL);
    93     assert(hr->reclaimable_bytes() <= _remaining_reclaimable_bytes,
    93     assert(hr->reclaimable_bytes() <= _remaining_reclaimable_bytes,
    94            err_msg("remaining reclaimable bytes inconsistent "
    94            err_msg("remaining reclaimable bytes inconsistent "
    95                    "from region: "SIZE_FORMAT" remaining: "SIZE_FORMAT,
    95                    "from region: " SIZE_FORMAT " remaining: " SIZE_FORMAT,
    96                    hr->reclaimable_bytes(), _remaining_reclaimable_bytes));
    96                    hr->reclaimable_bytes(), _remaining_reclaimable_bytes));
    97     _remaining_reclaimable_bytes -= hr->reclaimable_bytes();
    97     _remaining_reclaimable_bytes -= hr->reclaimable_bytes();
    98     _curr_index += 1;
    98     _curr_index += 1;
    99   }
    99   }
   100 
   100