# HG changeset patch # User pliden # Date 1530090307 -7200 # Node ID 0d813fbd94edbed52613644c5a668c7e77d3b233 # Parent f533eb5e743031146d4013744356d3dc2250f985 8205663: ZGC: Log metaspace used/capacity/committed/reserved Reviewed-by: stefank, ehelin diff -r f533eb5e7430 -r 0d813fbd94ed src/hotspot/share/gc/z/zStat.cpp --- a/src/hotspot/share/gc/z/zStat.cpp Wed Jun 27 11:05:01 2018 +0200 +++ b/src/hotspot/share/gc/z/zStat.cpp Wed Jun 27 11:05:07 2018 +0200 @@ -623,7 +623,7 @@ } #define ZUSED_FMT SIZE_FORMAT "M(%.0lf%%)" -#define ZUSED_ARGS(size, max_capacity) ((size) / M), (percent_of(size, max_capacity)) +#define ZUSED_ARGS(size, max_capacity) ((size) / M), (percent_of(size, max_capacity)) void ZStatPhaseCycle::register_end(const Ticks& start, const Ticks& end) const { timer()->register_gc_end(end); @@ -641,6 +641,7 @@ ZStatMark::print(); ZStatRelocation::print(); ZStatNMethods::print(); + ZStatMetaspace::print(); ZStatReferences::print(); ZStatHeap::print(); @@ -1129,6 +1130,19 @@ } // +// Stat metaspace +// +void ZStatMetaspace::print() { + log_info(gc, metaspace)("Metaspace: " + SIZE_FORMAT "M used, " SIZE_FORMAT "M capacity, " + SIZE_FORMAT "M committed, " SIZE_FORMAT "M reserved", + MetaspaceUtils::used_bytes() / M, + MetaspaceUtils::capacity_bytes() / M, + MetaspaceUtils::committed_bytes() / M, + MetaspaceUtils::reserved_bytes() / M); +} + +// // Stat references // ZStatReferences::ZCount ZStatReferences::_soft; @@ -1187,7 +1201,7 @@ #define ZSIZE_NA "%9s", "-" #define ZSIZE_ARGS(size) SIZE_FORMAT_W(8) "M (%.0lf%%)", \ - ((size) / M), (percent_of(size, _at_initialize.max_capacity)) + ((size) / M), (percent_of(size, _at_initialize.max_capacity)) size_t ZStatHeap::available(size_t used) { return _at_initialize.max_capacity - used; diff -r f533eb5e7430 -r 0d813fbd94ed src/hotspot/share/gc/z/zStat.hpp --- a/src/hotspot/share/gc/z/zStat.hpp Wed Jun 27 11:05:01 2018 +0200 +++ b/src/hotspot/share/gc/z/zStat.hpp Wed Jun 27 11:05:07 2018 +0200 @@ -1,5 +1,5 @@ /* - * Copyright (c) 2015, 2017, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2015, 2018, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it @@ -407,6 +407,14 @@ }; // +// Stat metaspace +// +class ZStatMetaspace : public AllStatic { +public: + static void print(); +}; + +// // Stat references // class ZStatReferences : public AllStatic {