< prev index next >

src/hotspot/share/cds/dumpAllocStats.cpp

Print this page

  6  * under the terms of the GNU General Public License version 2 only, as
  7  * published by the Free Software Foundation.
  8  *
  9  * This code is distributed in the hope that it will be useful, but WITHOUT
 10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
 12  * version 2 for more details (a copy is included in the LICENSE file that
 13  * accompanied this code).
 14  *
 15  * You should have received a copy of the GNU General Public License version
 16  * 2 along with this work; if not, write to the Free Software Foundation,
 17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
 18  *
 19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
 20  * or visit www.oracle.com if you need additional information or have any
 21  * questions.
 22  *
 23  */
 24 
 25 #include "cds/aotClassLinker.hpp"

 26 #include "cds/dumpAllocStats.hpp"
 27 #include "logging/log.hpp"
 28 #include "logging/logMessage.hpp"
 29 
 30 void DumpAllocStats::print_stats(int ro_all, int rw_all) {
 31   // symbols
 32   _counts[RO][SymbolHashentryType] = _symbol_stats.hashentry_count;
 33   _bytes [RO][SymbolHashentryType] = _symbol_stats.hashentry_bytes;
 34 
 35   _counts[RO][SymbolBucketType] = _symbol_stats.bucket_count;
 36   _bytes [RO][SymbolBucketType] = _symbol_stats.bucket_bytes;
 37 
 38   // strings
 39   _counts[RO][StringHashentryType] = _string_stats.hashentry_count;
 40   _bytes [RO][StringHashentryType] = _string_stats.hashentry_bytes;
 41 
 42   _counts[RO][StringBucketType] = _string_stats.bucket_count;
 43   _bytes [RO][StringBucketType] = _string_stats.bucket_bytes;
 44 
 45   int all_ro_count = 0;

101          ro_all, all_ro_bytes, rw_all, all_rw_bytes);
102 
103 #undef fmt_stats
104 
105   msg.info("Class  CP entries = %6d, archived = %6d (%5.1f%%), reverted = %6d",
106            _num_klass_cp_entries, _num_klass_cp_entries_archived,
107            percent_of(_num_klass_cp_entries_archived, _num_klass_cp_entries),
108            _num_klass_cp_entries_reverted);
109   msg.info("Field  CP entries = %6d, archived = %6d (%5.1f%%), reverted = %6d",
110            _num_field_cp_entries, _num_field_cp_entries_archived,
111            percent_of(_num_field_cp_entries_archived, _num_field_cp_entries),
112            _num_field_cp_entries_reverted);
113   msg.info("Method CP entries = %6d, archived = %6d (%5.1f%%), reverted = %6d",
114            _num_method_cp_entries, _num_method_cp_entries_archived,
115            percent_of(_num_method_cp_entries_archived, _num_method_cp_entries),
116            _num_method_cp_entries_reverted);
117   msg.info("Indy   CP entries = %6d, archived = %6d (%5.1f%%), reverted = %6d",
118            _num_indy_cp_entries, _num_indy_cp_entries_archived,
119            percent_of(_num_indy_cp_entries_archived, _num_indy_cp_entries),
120            _num_indy_cp_entries_reverted);
121   msg.info("Platform loader initiated classes = %5d", AOTClassLinker::num_platform_initiated_classes());
122   msg.info("App      loader initiated classes = %5d", AOTClassLinker::num_app_initiated_classes());








123 }
124 
125 #ifdef ASSERT
126 void DumpAllocStats::verify(int expected_byte_size, bool read_only) const {
127   int bytes = 0;
128   const int what = (int)(read_only ? RO : RW);
129   for (int type = 0; type < int(_number_of_types); type ++) {
130     bytes += _bytes[what][type];
131   }
132   assert(bytes == expected_byte_size, "counter mismatch (%s: %d vs %d)",
133          (read_only ? "RO" : "RW"), bytes, expected_byte_size);
134 }
135 #endif // ASSERT

  6  * under the terms of the GNU General Public License version 2 only, as
  7  * published by the Free Software Foundation.
  8  *
  9  * This code is distributed in the hope that it will be useful, but WITHOUT
 10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
 12  * version 2 for more details (a copy is included in the LICENSE file that
 13  * accompanied this code).
 14  *
 15  * You should have received a copy of the GNU General Public License version
 16  * 2 along with this work; if not, write to the Free Software Foundation,
 17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
 18  *
 19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
 20  * or visit www.oracle.com if you need additional information or have any
 21  * questions.
 22  *
 23  */
 24 
 25 #include "cds/aotClassLinker.hpp"
 26 #include "cds/cdsConfig.hpp"
 27 #include "cds/dumpAllocStats.hpp"
 28 #include "logging/log.hpp"
 29 #include "logging/logMessage.hpp"
 30 
 31 void DumpAllocStats::print_stats(int ro_all, int rw_all) {
 32   // symbols
 33   _counts[RO][SymbolHashentryType] = _symbol_stats.hashentry_count;
 34   _bytes [RO][SymbolHashentryType] = _symbol_stats.hashentry_bytes;
 35 
 36   _counts[RO][SymbolBucketType] = _symbol_stats.bucket_count;
 37   _bytes [RO][SymbolBucketType] = _symbol_stats.bucket_bytes;
 38 
 39   // strings
 40   _counts[RO][StringHashentryType] = _string_stats.hashentry_count;
 41   _bytes [RO][StringHashentryType] = _string_stats.hashentry_bytes;
 42 
 43   _counts[RO][StringBucketType] = _string_stats.bucket_count;
 44   _bytes [RO][StringBucketType] = _string_stats.bucket_bytes;
 45 
 46   int all_ro_count = 0;

102          ro_all, all_ro_bytes, rw_all, all_rw_bytes);
103 
104 #undef fmt_stats
105 
106   msg.info("Class  CP entries = %6d, archived = %6d (%5.1f%%), reverted = %6d",
107            _num_klass_cp_entries, _num_klass_cp_entries_archived,
108            percent_of(_num_klass_cp_entries_archived, _num_klass_cp_entries),
109            _num_klass_cp_entries_reverted);
110   msg.info("Field  CP entries = %6d, archived = %6d (%5.1f%%), reverted = %6d",
111            _num_field_cp_entries, _num_field_cp_entries_archived,
112            percent_of(_num_field_cp_entries_archived, _num_field_cp_entries),
113            _num_field_cp_entries_reverted);
114   msg.info("Method CP entries = %6d, archived = %6d (%5.1f%%), reverted = %6d",
115            _num_method_cp_entries, _num_method_cp_entries_archived,
116            percent_of(_num_method_cp_entries_archived, _num_method_cp_entries),
117            _num_method_cp_entries_reverted);
118   msg.info("Indy   CP entries = %6d, archived = %6d (%5.1f%%), reverted = %6d",
119            _num_indy_cp_entries, _num_indy_cp_entries_archived,
120            percent_of(_num_indy_cp_entries_archived, _num_indy_cp_entries),
121            _num_indy_cp_entries_reverted);
122   msg.info("Platform loader initiated classes = %6d", AOTClassLinker::num_platform_initiated_classes());
123   msg.info("App      loader initiated classes = %6d", AOTClassLinker::num_app_initiated_classes());
124   msg.info("Dynamic proxy classes             = %6d%s", _num_dynamic_proxy_classes,
125            CDSConfig::is_dumping_full_module_graph() ? "" : " (not archiving FMG)");
126   msg.info("MethodCounters                    = %6d (%8d bytes)", _counts[RW][MethodCountersType],
127                                                                   _bytes [RW][MethodCountersType]);
128   msg.info("KlassTrainingData                 = %6d (%8d bytes)", _counts[RW][KlassTrainingDataType],
129                                                                   _bytes [RW][KlassTrainingDataType]);
130   msg.info("MethodTrainingData                = %6d (%8d bytes)", _counts[RW][MethodTrainingDataType],
131                                                                   _bytes [RW][MethodTrainingDataType]);
132 }
133 
134 #ifdef ASSERT
135 void DumpAllocStats::verify(int expected_byte_size, bool read_only) const {
136   int bytes = 0;
137   const int what = (int)(read_only ? RO : RW);
138   for (int type = 0; type < int(_number_of_types); type ++) {
139     bytes += _bytes[what][type];
140   }
141   assert(bytes == expected_byte_size, "counter mismatch (%s: %d vs %d)",
142          (read_only ? "RO" : "RW"), bytes, expected_byte_size);
143 }
144 #endif // ASSERT
< prev index next >