hotspot/src/share/vm/gc_implementation/g1/survRateGroup.cpp
changeset 24424 2658d7834c6e
parent 24092 e274d864545a
child 27880 afb974a04396
equal deleted inserted replaced
24358:8528b67f6562 24424:2658d7834c6e
     1 /*
     1 /*
     2  * Copyright (c) 2001, 2012, Oracle and/or its affiliates. All rights reserved.
     2  * Copyright (c) 2001, 2014, Oracle and/or its affiliates. All rights reserved.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     4  *
     4  *
     5  * This code is free software; you can redistribute it and/or modify it
     5  * This code is free software; you can redistribute it and/or modify it
     6  * under the terms of the GNU General Public License version 2 only, as
     6  * under the terms of the GNU General Public License version 2 only, as
     7  * published by the Free Software Foundation.
     7  * published by the Free Software Foundation.
    26 #include "gc_implementation/g1/g1CollectedHeap.inline.hpp"
    26 #include "gc_implementation/g1/g1CollectedHeap.inline.hpp"
    27 #include "gc_implementation/g1/g1CollectorPolicy.hpp"
    27 #include "gc_implementation/g1/g1CollectorPolicy.hpp"
    28 #include "gc_implementation/g1/heapRegion.hpp"
    28 #include "gc_implementation/g1/heapRegion.hpp"
    29 #include "gc_implementation/g1/survRateGroup.hpp"
    29 #include "gc_implementation/g1/survRateGroup.hpp"
    30 #include "memory/allocation.hpp"
    30 #include "memory/allocation.hpp"
       
    31 
       
    32 PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC
    31 
    33 
    32 SurvRateGroup::SurvRateGroup(G1CollectorPolicy* g1p,
    34 SurvRateGroup::SurvRateGroup(G1CollectorPolicy* g1p,
    33                              const char* name,
    35                              const char* name,
    34                              size_t summary_surv_rates_len) :
    36                              size_t summary_surv_rates_len) :
    35     _g1p(g1p), _name(name),
    37     _g1p(g1p), _name(name),
   200 SurvRateGroup::print_surv_rate_summary() {
   202 SurvRateGroup::print_surv_rate_summary() {
   201   size_t length = _summary_surv_rates_max_len;
   203   size_t length = _summary_surv_rates_max_len;
   202   if (length == 0)
   204   if (length == 0)
   203     return;
   205     return;
   204 
   206 
   205   gclog_or_tty->print_cr("");
   207   gclog_or_tty->cr();
   206   gclog_or_tty->print_cr("%s Rate Summary (for up to age " SIZE_FORMAT ")", _name, length-1);
   208   gclog_or_tty->print_cr("%s Rate Summary (for up to age " SIZE_FORMAT ")", _name, length-1);
   207   gclog_or_tty->print_cr("      age range     survival rate (avg)      samples (avg)");
   209   gclog_or_tty->print_cr("      age range     survival rate (avg)      samples (avg)");
   208   gclog_or_tty->print_cr("  ---------------------------------------------------------");
   210   gclog_or_tty->print_cr("  ---------------------------------------------------------");
   209 
   211 
   210   size_t index = 0;
   212   size_t index = 0;