comparison src/share/vm/gc_implementation/g1/survRateGroup.cpp @ 17937:78bbf4d43a14

8037816: Fix for 8036122 breaks build with Xcode5/clang 8043029: Change 8037816 breaks HS build with older GCC versions which don't support diagnostic pragmas 8043164: Format warning in traceStream.hpp Summary: Backport of main fix + two corrections, enables clang compilation, turns on format attributes, corrects/mutes warnings Reviewed-by: kvn, coleenp, iveresov, twisti
author drchase
date Thu, 22 May 2014 15:52:41 -0400
parents d2a62e0f25eb
children
comparison
equal deleted inserted replaced
17935:7384f6a12fc1 17937:78bbf4d43a14
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 %d)", _name, length-1); 208 gclog_or_tty->print_cr("%s Rate Summary (for up to age %d)", _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;