src/hotspot/share/gc/g1/g1ConcurrentMark.cpp
changeset 47679 4cfcb7be4984
parent 47678 c84eeb55c55e
child 47682 e4a89dfa1247
equal deleted inserted replaced
47678:c84eeb55c55e 47679:4cfcb7be4984
  2994                          G1PPRL_SUM_MB_PERC_FORMAT("next-live")
  2994                          G1PPRL_SUM_MB_PERC_FORMAT("next-live")
  2995                          G1PPRL_SUM_MB_FORMAT("remset")
  2995                          G1PPRL_SUM_MB_FORMAT("remset")
  2996                          G1PPRL_SUM_MB_FORMAT("code-roots"),
  2996                          G1PPRL_SUM_MB_FORMAT("code-roots"),
  2997                          bytes_to_mb(_total_capacity_bytes),
  2997                          bytes_to_mb(_total_capacity_bytes),
  2998                          bytes_to_mb(_total_used_bytes),
  2998                          bytes_to_mb(_total_used_bytes),
  2999                          perc(_total_used_bytes, _total_capacity_bytes),
  2999                          percent_of(_total_used_bytes, _total_capacity_bytes),
  3000                          bytes_to_mb(_total_prev_live_bytes),
  3000                          bytes_to_mb(_total_prev_live_bytes),
  3001                          perc(_total_prev_live_bytes, _total_capacity_bytes),
  3001                          percent_of(_total_prev_live_bytes, _total_capacity_bytes),
  3002                          bytes_to_mb(_total_next_live_bytes),
  3002                          bytes_to_mb(_total_next_live_bytes),
  3003                          perc(_total_next_live_bytes, _total_capacity_bytes),
  3003                          percent_of(_total_next_live_bytes, _total_capacity_bytes),
  3004                          bytes_to_mb(_total_remset_bytes),
  3004                          bytes_to_mb(_total_remset_bytes),
  3005                          bytes_to_mb(_total_strong_code_roots_bytes));
  3005                          bytes_to_mb(_total_strong_code_roots_bytes));
  3006 }
  3006 }