hotspot/src/share/vm/gc_implementation/g1/g1CollectorPolicy.cpp
changeset 10535 891f353a95c0
parent 10529 9d5bbffbb322
child 10667 90a451f6e3eb
equal deleted inserted replaced
10534:d7fd2e3bfd5d 10535:891f353a95c0
  3040                           ergo_format_ms("remaining time"),
  3040                           ergo_format_ms("remaining time"),
  3041                           time_remaining_ms);
  3041                           time_remaining_ms);
  3042             should_continue = false;
  3042             should_continue = false;
  3043           }
  3043           }
  3044         } else {
  3044         } else {
  3045           if (_collection_set_size < _young_list_fixed_length) {
  3045           if (_collection_set_size >= _young_list_fixed_length) {
  3046             ergo_verbose2(ErgoCSetConstruction,
  3046             ergo_verbose2(ErgoCSetConstruction,
  3047                           "stop adding old regions to CSet",
  3047                           "stop adding old regions to CSet",
  3048                           ergo_format_reason("CSet length lower than target")
  3048                           ergo_format_reason("CSet length reached target")
  3049                           ergo_format_region("CSet")
  3049                           ergo_format_region("CSet")
  3050                           ergo_format_region("young target"),
  3050                           ergo_format_region("young target"),
  3051                           _collection_set_size, _young_list_fixed_length);
  3051                           _collection_set_size, _young_list_fixed_length);
  3052             should_continue = false;
  3052             should_continue = false;
  3053           }
  3053           }