RFR(S): 8010738: G1: Output for full GCs with +PrintGCDetails should contain perm gen size/meta data change info

John Cuthbertson john.cuthbertson at oracle.com
Wed May 8 23:42:29 UTC 2013


Hi Bengt,

Thanks for looking at the changes. Reply inline....

On 5/8/2013 9:18 AM, Bengt Rutisson wrote:
>
> John, I just noticed one thing that I find a bit odd. The 
> G1CollectorPolicy::print_detailed_heap_transition() method is only 
> called from G1CollectedHeap::do_collection(), so it really doesn't 
> have to take the full parameter. It could always print the metaspace 
> information, right?

There are two calls to 
G1CollectorPolicy::print_detailed_heap_transition(). The other is from 
G1CollectedHeap::log_gc_footer():

> void G1CollectedHeap::log_gc_footer(double pause_time_sec) {
>   if (!G1Log::fine()) {
>     return;
>   }
>
>   if (G1Log::finer()) {
>     if (evacuation_failed()) {
>       gclog_or_tty->print(" (to-space exhausted)");
>     }
>     gclog_or_tty->print_cr(", %3.7f secs]", pause_time_sec);
>     g1_policy()->phase_times()->note_gc_end();
>     g1_policy()->phase_times()->print(pause_time_sec);
>     g1_policy()->print_detailed_heap_transition();
>   } else {
>     if (evacuation_failed()) {
>       gclog_or_tty->print("--");
>     }
>     g1_policy()->print_heap_transition();
>     gclog_or_tty->print_cr(", %3.7f secs]", pause_time_sec);
>   }
>   gclog_or_tty->flush();
> }

and comes at the end of an evacuation pause. So I think we need the 
parameter - unless we decide to include in the output for each GC.

JohnC
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://mail.openjdk.org/pipermail/hotspot-gc-dev/attachments/20130508/06591237/attachment.htm>


More information about the hotspot-gc-dev mailing list