< prev index next >

src/share/vm/gc_implementation/g1/g1CollectorPolicy.cpp

Print this page

        

*** 20,34 **** * or visit www.oracle.com if you need additional information or have any * questions. * */ - #ifndef __clang_major__ - // FIXME, formats have issues. Disable this macro definition, compile, and study warnings for more information. - #define ATTRIBUTE_PRINTF(x,y) - #endif - #include "precompiled.hpp" #include "gc_implementation/g1/concurrentG1Refine.hpp" #include "gc_implementation/g1/concurrentMark.hpp" #include "gc_implementation/g1/concurrentMarkThread.inline.hpp" #include "gc_implementation/g1/g1CollectedHeap.inline.hpp" --- 20,29 ----
*** 300,310 **** uintx reserve_perc = G1ReservePercent; // Put an artificial ceiling on this so that it's not set to a silly value. if (reserve_perc > 50) { reserve_perc = 50; warning("G1ReservePercent is set to a value that is too large, " ! "it's been updated to %u", reserve_perc); } _reserve_factor = (double) reserve_perc / 100.0; // This will be set when the heap is expanded // for the first time during initialization. _reserve_regions = 0; --- 295,305 ---- uintx reserve_perc = G1ReservePercent; // Put an artificial ceiling on this so that it's not set to a silly value. if (reserve_perc > 50) { reserve_perc = 50; warning("G1ReservePercent is set to a value that is too large, " ! "it's been updated to " UINTX_FORMAT, reserve_perc); } _reserve_factor = (double) reserve_perc / 100.0; // This will be set when the heap is expanded // for the first time during initialization. _reserve_regions = 0;
*** 1798,1808 **** while (csr != NULL) { HeapRegion* next = csr->next_in_collection_set(); assert(csr->in_collection_set(), "bad CS"); st->print_cr(" "HR_FORMAT", P: "PTR_FORMAT "N: "PTR_FORMAT", age: %4d", HR_FORMAT_PARAMS(csr), ! csr->prev_top_at_mark_start(), csr->next_top_at_mark_start(), csr->age_in_surv_rate_group_cond()); csr = next; } } #endif // !PRODUCT --- 1793,1803 ---- while (csr != NULL) { HeapRegion* next = csr->next_in_collection_set(); assert(csr->in_collection_set(), "bad CS"); st->print_cr(" "HR_FORMAT", P: "PTR_FORMAT "N: "PTR_FORMAT", age: %4d", HR_FORMAT_PARAMS(csr), ! p2i(csr->prev_top_at_mark_start()), p2i(csr->next_top_at_mark_start()), csr->age_in_surv_rate_group_cond()); csr = next; } } #endif // !PRODUCT
*** 2164,2174 **** } void TraceYoungGenTimeData::print_summary_sd(const char* str, const NumberSeq* seq) const { print_summary(str, seq); ! gclog_or_tty->print_cr("%+45s = %5d, std dev = %8.2lf ms, max = %8.2lf ms)", "(num", seq->num(), seq->sd(), seq->maximum()); } void TraceYoungGenTimeData::print() const { if (!TraceYoungGenTime) { --- 2159,2169 ---- } void TraceYoungGenTimeData::print_summary_sd(const char* str, const NumberSeq* seq) const { print_summary(str, seq); ! gclog_or_tty->print_cr("%45s = %5d, std dev = %8.2lf ms, max = %8.2lf ms)", "(num", seq->num(), seq->sd(), seq->maximum()); } void TraceYoungGenTimeData::print() const { if (!TraceYoungGenTime) {
< prev index next >