< prev index next >

src/share/vm/gc/g1/g1EvacStats.cpp

Print this page

        

*** 43,59 **** assert(is_object_aligned(max_size()) && min_size() <= max_size(), "PLAB clipping computation may be incorrect"); if (_allocated == 0) { assert((_unused == 0), ! err_msg("Inconsistency in PLAB stats: " "_allocated: " SIZE_FORMAT ", " "_wasted: " SIZE_FORMAT ", " "_region_end_waste: " SIZE_FORMAT ", " "_unused: " SIZE_FORMAT ", " "_used : " SIZE_FORMAT, ! _allocated, _wasted, _region_end_waste, _unused, used())); _allocated = 1; } // The size of the PLAB caps the amount of space that can be wasted at the // end of the collection. In the worst case the last PLAB could be completely // empty. --- 43,59 ---- assert(is_object_aligned(max_size()) && min_size() <= max_size(), "PLAB clipping computation may be incorrect"); if (_allocated == 0) { assert((_unused == 0), ! "Inconsistency in PLAB stats: " "_allocated: " SIZE_FORMAT ", " "_wasted: " SIZE_FORMAT ", " "_region_end_waste: " SIZE_FORMAT ", " "_unused: " SIZE_FORMAT ", " "_used : " SIZE_FORMAT, ! _allocated, _wasted, _region_end_waste, _unused, used()); _allocated = 1; } // The size of the PLAB caps the amount of space that can be wasted at the // end of the collection. In the worst case the last PLAB could be completely // empty.
< prev index next >