hotspot/src/share/vm/code/codeCache.cpp
void print(const char* title) {
{- -------------------------------------------
(1) 集めた情報を出力する
---------------------------------------- -}
tty->print_cr(" #%d %s = %dK (hdr %d%%, loc %d%%, code %d%%, stub %d%%, [oops %d%%, data %d%%, pcs %d%%])",
count,
title,
total() / K,
header_size * 100 / total_size,
relocation_size * 100 / total_size,
code_size * 100 / total_size,
stub_size * 100 / total_size,
scopes_oop_size * 100 / total_size,
scopes_data_size * 100 / total_size,
scopes_pcs_size * 100 / total_size);
}
This document is available under the GNU GENERAL PUBLIC LICENSE Version 2.