src/share/vm/services/memReporter.cpp

Wed, 27 Aug 2014 09:36:55 +0200

author
tschatzl
date
Wed, 27 Aug 2014 09:36:55 +0200
changeset 7073
4d3a43351904
parent 6680
78bbf4d43a14
child 6876
710a3c8b516e
child 7074
833b0f92429a
permissions
-rw-r--r--

Merge

zgu@3900 1 /*
drchase@6680 2 * Copyright (c) 2012, 2014, Oracle and/or its affiliates. All rights reserved.
zgu@3900 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
zgu@3900 4 *
zgu@3900 5 * This code is free software; you can redistribute it and/or modify it
zgu@3900 6 * under the terms of the GNU General Public License version 2 only, as
zgu@3900 7 * published by the Free Software Foundation.
zgu@3900 8 *
zgu@3900 9 * This code is distributed in the hope that it will be useful, but WITHOUT
zgu@3900 10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
zgu@3900 11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
zgu@3900 12 * version 2 for more details (a copy is included in the LICENSE file that
zgu@3900 13 * accompanied this code).
zgu@3900 14 *
zgu@3900 15 * You should have received a copy of the GNU General Public License version
zgu@3900 16 * 2 along with this work; if not, write to the Free Software Foundation,
zgu@3900 17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
zgu@3900 18 *
zgu@3900 19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
zgu@3900 20 * or visit www.oracle.com if you need additional information or have any
zgu@3900 21 * questions.
zgu@3900 22 *
zgu@3900 23 */
zgu@3900 24 #include "precompiled.hpp"
zgu@3900 25 #include "classfile/systemDictionary.hpp"
zgu@3900 26 #include "runtime/os.hpp"
zgu@3900 27 #include "services/memReporter.hpp"
zgu@3900 28 #include "services/memPtrArray.hpp"
zgu@3900 29 #include "services/memTracker.hpp"
zgu@3900 30
drchase@6680 31 PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC
drchase@6680 32
zgu@3900 33 const char* BaselineOutputer::memory_unit(size_t scale) {
zgu@3900 34 switch(scale) {
zgu@3900 35 case K: return "KB";
zgu@3900 36 case M: return "MB";
zgu@3900 37 case G: return "GB";
zgu@3900 38 }
zgu@3900 39 ShouldNotReachHere();
zgu@3900 40 return NULL;
zgu@3900 41 }
zgu@3900 42
zgu@3900 43
zgu@3900 44 void BaselineReporter::report_baseline(const MemBaseline& baseline, bool summary_only) {
zgu@3900 45 assert(MemTracker::is_on(), "Native memory tracking is off");
zgu@3900 46 _outputer.start(scale());
zgu@3900 47 _outputer.total_usage(
zgu@3900 48 amount_in_current_scale(baseline.total_malloc_amount() + baseline.total_reserved_amount()),
zgu@3900 49 amount_in_current_scale(baseline.total_malloc_amount() + baseline.total_committed_amount()));
zgu@3900 50
zgu@3900 51 _outputer.num_of_classes(baseline.number_of_classes());
zgu@3900 52 _outputer.num_of_threads(baseline.number_of_threads());
zgu@3900 53
zgu@3900 54 report_summaries(baseline);
zgu@3900 55 if (!summary_only && MemTracker::track_callsite()) {
zgu@4193 56 report_virtual_memory_map(baseline);
zgu@3900 57 report_callsites(baseline);
zgu@3900 58 }
zgu@3900 59 _outputer.done();
zgu@3900 60 }
zgu@3900 61
zgu@3900 62 void BaselineReporter::report_summaries(const MemBaseline& baseline) {
zgu@3900 63 _outputer.start_category_summary();
zgu@3900 64 MEMFLAGS type;
zgu@3900 65
zgu@3900 66 for (int index = 0; index < NUMBER_OF_MEMORY_TYPE; index ++) {
zgu@3900 67 type = MemBaseline::MemType2NameMap[index]._flag;
zgu@3900 68 _outputer.category_summary(type,
zgu@3900 69 amount_in_current_scale(baseline.reserved_amount(type)),
zgu@3900 70 amount_in_current_scale(baseline.committed_amount(type)),
zgu@3900 71 amount_in_current_scale(baseline.malloc_amount(type)),
zgu@3900 72 baseline.malloc_count(type),
zgu@3900 73 amount_in_current_scale(baseline.arena_amount(type)),
zgu@3900 74 baseline.arena_count(type));
zgu@3900 75 }
zgu@3900 76
zgu@3900 77 _outputer.done_category_summary();
zgu@3900 78 }
zgu@3900 79
zgu@4193 80 void BaselineReporter::report_virtual_memory_map(const MemBaseline& baseline) {
zgu@4193 81 _outputer.start_virtual_memory_map();
zgu@4193 82 MemBaseline* pBL = const_cast<MemBaseline*>(&baseline);
zgu@4193 83 MemPointerArrayIteratorImpl itr = MemPointerArrayIteratorImpl(pBL->_vm_map);
zgu@4193 84 VMMemRegionEx* rgn = (VMMemRegionEx*)itr.current();
zgu@4193 85 while (rgn != NULL) {
zgu@4193 86 if (rgn->is_reserved_region()) {
zgu@4193 87 _outputer.reserved_memory_region(FLAGS_TO_MEMORY_TYPE(rgn->flags()),
zgu@4193 88 rgn->base(), rgn->base() + rgn->size(), amount_in_current_scale(rgn->size()), rgn->pc());
zgu@4193 89 } else {
zgu@4193 90 _outputer.committed_memory_region(rgn->base(), rgn->base() + rgn->size(),
zgu@4193 91 amount_in_current_scale(rgn->size()), rgn->pc());
zgu@4193 92 }
zgu@4193 93 rgn = (VMMemRegionEx*)itr.next();
zgu@4193 94 }
zgu@4193 95
zgu@4193 96 _outputer.done_virtual_memory_map();
zgu@4193 97 }
zgu@4193 98
zgu@3900 99 void BaselineReporter::report_callsites(const MemBaseline& baseline) {
zgu@3900 100 _outputer.start_callsite();
zgu@3900 101 MemBaseline* pBL = const_cast<MemBaseline*>(&baseline);
zgu@3900 102
zgu@3900 103 pBL->_malloc_cs->sort((FN_SORT)MemBaseline::bl_malloc_sort_by_size);
zgu@3900 104 pBL->_vm_cs->sort((FN_SORT)MemBaseline::bl_vm_sort_by_size);
zgu@3900 105
zgu@3900 106 // walk malloc callsites
zgu@3900 107 MemPointerArrayIteratorImpl malloc_itr(pBL->_malloc_cs);
zgu@3900 108 MallocCallsitePointer* malloc_callsite =
zgu@3900 109 (MallocCallsitePointer*)malloc_itr.current();
zgu@3900 110 while (malloc_callsite != NULL) {
zgu@3900 111 _outputer.malloc_callsite(malloc_callsite->addr(),
zgu@3900 112 amount_in_current_scale(malloc_callsite->amount()), malloc_callsite->count());
zgu@3900 113 malloc_callsite = (MallocCallsitePointer*)malloc_itr.next();
zgu@3900 114 }
zgu@3900 115
zgu@3900 116 // walk virtual memory callsite
zgu@3900 117 MemPointerArrayIteratorImpl vm_itr(pBL->_vm_cs);
zgu@3900 118 VMCallsitePointer* vm_callsite = (VMCallsitePointer*)vm_itr.current();
zgu@3900 119 while (vm_callsite != NULL) {
zgu@3900 120 _outputer.virtual_memory_callsite(vm_callsite->addr(),
zgu@3900 121 amount_in_current_scale(vm_callsite->reserved_amount()),
zgu@3900 122 amount_in_current_scale(vm_callsite->committed_amount()));
zgu@3900 123 vm_callsite = (VMCallsitePointer*)vm_itr.next();
zgu@3900 124 }
zgu@3900 125 pBL->_malloc_cs->sort((FN_SORT)MemBaseline::bl_malloc_sort_by_pc);
zgu@3900 126 pBL->_vm_cs->sort((FN_SORT)MemBaseline::bl_vm_sort_by_pc);
zgu@3900 127 _outputer.done_callsite();
zgu@3900 128 }
zgu@3900 129
zgu@3900 130 void BaselineReporter::diff_baselines(const MemBaseline& cur, const MemBaseline& prev,
zgu@3900 131 bool summary_only) {
zgu@3900 132 assert(MemTracker::is_on(), "Native memory tracking is off");
zgu@3900 133 _outputer.start(scale());
zgu@3900 134 size_t total_reserved = cur.total_malloc_amount() + cur.total_reserved_amount();
zgu@3900 135 size_t total_committed = cur.total_malloc_amount() + cur.total_committed_amount();
zgu@3900 136
zgu@3900 137 _outputer.diff_total_usage(
zgu@3900 138 amount_in_current_scale(total_reserved), amount_in_current_scale(total_committed),
zgu@3900 139 diff_in_current_scale(total_reserved, (prev.total_malloc_amount() + prev.total_reserved_amount())),
zgu@3900 140 diff_in_current_scale(total_committed, (prev.total_committed_amount() + prev.total_malloc_amount())));
zgu@3900 141
zgu@3900 142 _outputer.diff_num_of_classes(cur.number_of_classes(),
zgu@3900 143 diff(cur.number_of_classes(), prev.number_of_classes()));
zgu@3900 144 _outputer.diff_num_of_threads(cur.number_of_threads(),
zgu@3900 145 diff(cur.number_of_threads(), prev.number_of_threads()));
zgu@3900 146
zgu@3900 147 diff_summaries(cur, prev);
zgu@3900 148 if (!summary_only && MemTracker::track_callsite()) {
zgu@3900 149 diff_callsites(cur, prev);
zgu@3900 150 }
zgu@3900 151 _outputer.done();
zgu@3900 152 }
zgu@3900 153
zgu@3900 154 void BaselineReporter::diff_summaries(const MemBaseline& cur, const MemBaseline& prev) {
zgu@3900 155 _outputer.start_category_summary();
zgu@3900 156 MEMFLAGS type;
zgu@3900 157
zgu@3900 158 for (int index = 0; index < NUMBER_OF_MEMORY_TYPE; index ++) {
zgu@3900 159 type = MemBaseline::MemType2NameMap[index]._flag;
zgu@3900 160 _outputer.diff_category_summary(type,
zgu@3900 161 amount_in_current_scale(cur.reserved_amount(type)),
zgu@3900 162 amount_in_current_scale(cur.committed_amount(type)),
zgu@3900 163 amount_in_current_scale(cur.malloc_amount(type)),
zgu@3900 164 cur.malloc_count(type),
zgu@3900 165 amount_in_current_scale(cur.arena_amount(type)),
zgu@3900 166 cur.arena_count(type),
zgu@3900 167 diff_in_current_scale(cur.reserved_amount(type), prev.reserved_amount(type)),
zgu@3900 168 diff_in_current_scale(cur.committed_amount(type), prev.committed_amount(type)),
zgu@3900 169 diff_in_current_scale(cur.malloc_amount(type), prev.malloc_amount(type)),
zgu@3900 170 diff(cur.malloc_count(type), prev.malloc_count(type)),
zgu@3900 171 diff_in_current_scale(cur.arena_amount(type), prev.arena_amount(type)),
zgu@3900 172 diff(cur.arena_count(type), prev.arena_count(type)));
zgu@3900 173 }
zgu@3900 174
zgu@3900 175 _outputer.done_category_summary();
zgu@3900 176 }
zgu@3900 177
zgu@3900 178 void BaselineReporter::diff_callsites(const MemBaseline& cur, const MemBaseline& prev) {
zgu@3900 179 _outputer.start_callsite();
zgu@3900 180 MemBaseline* pBL_cur = const_cast<MemBaseline*>(&cur);
zgu@3900 181 MemBaseline* pBL_prev = const_cast<MemBaseline*>(&prev);
zgu@3900 182
zgu@3900 183 // walk malloc callsites
zgu@3900 184 MemPointerArrayIteratorImpl cur_malloc_itr(pBL_cur->_malloc_cs);
zgu@3900 185 MemPointerArrayIteratorImpl prev_malloc_itr(pBL_prev->_malloc_cs);
zgu@3900 186
zgu@3900 187 MallocCallsitePointer* cur_malloc_callsite =
zgu@3900 188 (MallocCallsitePointer*)cur_malloc_itr.current();
zgu@3900 189 MallocCallsitePointer* prev_malloc_callsite =
zgu@3900 190 (MallocCallsitePointer*)prev_malloc_itr.current();
zgu@3900 191
zgu@3900 192 while (cur_malloc_callsite != NULL || prev_malloc_callsite != NULL) {
zgu@5325 193 if (prev_malloc_callsite == NULL) {
zgu@5325 194 assert(cur_malloc_callsite != NULL, "sanity check");
zgu@5270 195 // this is a new callsite
zgu@3900 196 _outputer.diff_malloc_callsite(cur_malloc_callsite->addr(),
zgu@3900 197 amount_in_current_scale(cur_malloc_callsite->amount()),
zgu@3900 198 cur_malloc_callsite->count(),
zgu@3900 199 diff_in_current_scale(cur_malloc_callsite->amount(), 0),
zgu@3900 200 diff(cur_malloc_callsite->count(), 0));
zgu@3900 201 cur_malloc_callsite = (MallocCallsitePointer*)cur_malloc_itr.next();
zgu@5325 202 } else if (cur_malloc_callsite == NULL) {
zgu@5325 203 assert(prev_malloc_callsite != NULL, "Sanity check");
zgu@5270 204 // this callsite is already gone
zgu@5270 205 _outputer.diff_malloc_callsite(prev_malloc_callsite->addr(),
zgu@5325 206 0, 0,
zgu@3900 207 diff_in_current_scale(0, prev_malloc_callsite->amount()),
zgu@3900 208 diff(0, prev_malloc_callsite->count()));
zgu@3900 209 prev_malloc_callsite = (MallocCallsitePointer*)prev_malloc_itr.next();
zgu@5325 210 } else {
zgu@5325 211 assert(cur_malloc_callsite != NULL, "Sanity check");
zgu@5325 212 assert(prev_malloc_callsite != NULL, "Sanity check");
zgu@5325 213 if (cur_malloc_callsite->addr() < prev_malloc_callsite->addr()) {
zgu@5325 214 // this is a new callsite
zgu@5325 215 _outputer.diff_malloc_callsite(cur_malloc_callsite->addr(),
zgu@5325 216 amount_in_current_scale(cur_malloc_callsite->amount()),
zgu@5325 217 cur_malloc_callsite->count(),
zgu@5325 218 diff_in_current_scale(cur_malloc_callsite->amount(), 0),
zgu@5325 219 diff(cur_malloc_callsite->count(), 0));
zgu@5325 220 cur_malloc_callsite = (MallocCallsitePointer*)cur_malloc_itr.next();
zgu@5325 221 } else if (cur_malloc_callsite->addr() > prev_malloc_callsite->addr()) {
zgu@5325 222 // this callsite is already gone
zgu@5325 223 _outputer.diff_malloc_callsite(prev_malloc_callsite->addr(),
zgu@5325 224 0, 0,
zgu@5325 225 diff_in_current_scale(0, prev_malloc_callsite->amount()),
zgu@5325 226 diff(0, prev_malloc_callsite->count()));
zgu@5325 227 prev_malloc_callsite = (MallocCallsitePointer*)prev_malloc_itr.next();
zgu@5325 228 } else {
zgu@5325 229 // the same callsite
zgu@5325 230 _outputer.diff_malloc_callsite(cur_malloc_callsite->addr(),
zgu@5325 231 amount_in_current_scale(cur_malloc_callsite->amount()),
zgu@5325 232 cur_malloc_callsite->count(),
zgu@5325 233 diff_in_current_scale(cur_malloc_callsite->amount(), prev_malloc_callsite->amount()),
zgu@5325 234 diff(cur_malloc_callsite->count(), prev_malloc_callsite->count()));
zgu@5325 235 cur_malloc_callsite = (MallocCallsitePointer*)cur_malloc_itr.next();
zgu@5325 236 prev_malloc_callsite = (MallocCallsitePointer*)prev_malloc_itr.next();
zgu@5325 237 }
zgu@3900 238 }
zgu@3900 239 }
zgu@3900 240
zgu@3900 241 // walk virtual memory callsite
zgu@3900 242 MemPointerArrayIteratorImpl cur_vm_itr(pBL_cur->_vm_cs);
zgu@3900 243 MemPointerArrayIteratorImpl prev_vm_itr(pBL_prev->_vm_cs);
zgu@3900 244 VMCallsitePointer* cur_vm_callsite = (VMCallsitePointer*)cur_vm_itr.current();
zgu@3900 245 VMCallsitePointer* prev_vm_callsite = (VMCallsitePointer*)prev_vm_itr.current();
zgu@3900 246 while (cur_vm_callsite != NULL || prev_vm_callsite != NULL) {
zgu@3900 247 if (prev_vm_callsite == NULL || cur_vm_callsite->addr() < prev_vm_callsite->addr()) {
zgu@5270 248 // this is a new callsite
zgu@3900 249 _outputer.diff_virtual_memory_callsite(cur_vm_callsite->addr(),
zgu@3900 250 amount_in_current_scale(cur_vm_callsite->reserved_amount()),
zgu@3900 251 amount_in_current_scale(cur_vm_callsite->committed_amount()),
zgu@3900 252 diff_in_current_scale(cur_vm_callsite->reserved_amount(), 0),
zgu@3900 253 diff_in_current_scale(cur_vm_callsite->committed_amount(), 0));
zgu@3900 254 cur_vm_callsite = (VMCallsitePointer*)cur_vm_itr.next();
zgu@3900 255 } else if (cur_vm_callsite == NULL || cur_vm_callsite->addr() > prev_vm_callsite->addr()) {
zgu@5270 256 // this callsite is already gone
zgu@3900 257 _outputer.diff_virtual_memory_callsite(prev_vm_callsite->addr(),
zgu@5270 258 amount_in_current_scale(0),
zgu@5270 259 amount_in_current_scale(0),
zgu@3900 260 diff_in_current_scale(0, prev_vm_callsite->reserved_amount()),
zgu@3900 261 diff_in_current_scale(0, prev_vm_callsite->committed_amount()));
zgu@3900 262 prev_vm_callsite = (VMCallsitePointer*)prev_vm_itr.next();
zgu@3900 263 } else { // the same callsite
zgu@3900 264 _outputer.diff_virtual_memory_callsite(cur_vm_callsite->addr(),
zgu@3900 265 amount_in_current_scale(cur_vm_callsite->reserved_amount()),
zgu@3900 266 amount_in_current_scale(cur_vm_callsite->committed_amount()),
zgu@3900 267 diff_in_current_scale(cur_vm_callsite->reserved_amount(), prev_vm_callsite->reserved_amount()),
zgu@3900 268 diff_in_current_scale(cur_vm_callsite->committed_amount(), prev_vm_callsite->committed_amount()));
zgu@3900 269 cur_vm_callsite = (VMCallsitePointer*)cur_vm_itr.next();
zgu@3900 270 prev_vm_callsite = (VMCallsitePointer*)prev_vm_itr.next();
zgu@3900 271 }
zgu@3900 272 }
zgu@3900 273
zgu@3900 274 _outputer.done_callsite();
zgu@3900 275 }
zgu@3900 276
zgu@3900 277 size_t BaselineReporter::amount_in_current_scale(size_t amt) const {
zgu@3900 278 return (size_t)(((float)amt/(float)_scale) + 0.5);
zgu@3900 279 }
zgu@3900 280
zgu@3900 281 int BaselineReporter::diff_in_current_scale(size_t value1, size_t value2) const {
zgu@3900 282 return (int)(((float)value1 - (float)value2)/((float)_scale) + 0.5);
zgu@3900 283 }
zgu@3900 284
zgu@3900 285 int BaselineReporter::diff(size_t value1, size_t value2) const {
zgu@3900 286 return ((int)value1 - (int)value2);
zgu@3900 287 }
zgu@3900 288
zgu@3900 289 void BaselineTTYOutputer::start(size_t scale, bool report_diff) {
zgu@3900 290 _scale = scale;
zgu@3900 291 _output->print_cr(" ");
zgu@3900 292 _output->print_cr("Native Memory Tracking:");
zgu@3900 293 _output->print_cr(" ");
zgu@3900 294 }
zgu@3900 295
zgu@3900 296 void BaselineTTYOutputer::done() {
zgu@3900 297
zgu@3900 298 }
zgu@3900 299
zgu@3900 300 void BaselineTTYOutputer::total_usage(size_t total_reserved, size_t total_committed) {
zgu@3900 301 const char* unit = memory_unit(_scale);
zgu@3900 302 _output->print_cr("Total: reserved=%d%s, committed=%d%s",
zgu@3900 303 total_reserved, unit, total_committed, unit);
zgu@3900 304 }
zgu@3900 305
zgu@3900 306 void BaselineTTYOutputer::start_category_summary() {
zgu@3900 307 _output->print_cr(" ");
zgu@3900 308 }
zgu@3900 309
zgu@3900 310 /**
zgu@3900 311 * report a summary of memory type
zgu@3900 312 */
zgu@3900 313 void BaselineTTYOutputer::category_summary(MEMFLAGS type,
zgu@3900 314 size_t reserved_amt, size_t committed_amt, size_t malloc_amt,
zgu@3900 315 size_t malloc_count, size_t arena_amt, size_t arena_count) {
zgu@3900 316
zgu@3900 317 // we report mtThreadStack under mtThread category
zgu@3900 318 if (type == mtThreadStack) {
zgu@3900 319 assert(malloc_amt == 0 && malloc_count == 0 && arena_amt == 0,
zgu@3900 320 "Just check");
zgu@3900 321 _thread_stack_reserved = reserved_amt;
zgu@3900 322 _thread_stack_committed = committed_amt;
zgu@3900 323 } else {
zgu@3900 324 const char* unit = memory_unit(_scale);
zgu@3900 325 size_t total_reserved = (reserved_amt + malloc_amt + arena_amt);
zgu@3900 326 size_t total_committed = (committed_amt + malloc_amt + arena_amt);
zgu@3900 327 if (type == mtThread) {
zgu@3900 328 total_reserved += _thread_stack_reserved;
zgu@3900 329 total_committed += _thread_stack_committed;
zgu@3900 330 }
zgu@3900 331
zgu@3900 332 if (total_reserved > 0) {
zgu@3900 333 _output->print_cr("-%26s (reserved=%d%s, committed=%d%s)",
zgu@3900 334 MemBaseline::type2name(type), total_reserved, unit,
zgu@3900 335 total_committed, unit);
zgu@3900 336
zgu@3900 337 if (type == mtClass) {
zgu@3900 338 _output->print_cr("%27s (classes #%d)", " ", _num_of_classes);
zgu@3900 339 } else if (type == mtThread) {
zgu@3900 340 _output->print_cr("%27s (thread #%d)", " ", _num_of_threads);
zgu@3900 341 _output->print_cr("%27s (stack: reserved=%d%s, committed=%d%s)", " ",
zgu@3900 342 _thread_stack_reserved, unit, _thread_stack_committed, unit);
zgu@3900 343 }
zgu@3900 344
zgu@3900 345 if (malloc_amt > 0) {
zgu@3900 346 if (type != mtChunk) {
zgu@3900 347 _output->print_cr("%27s (malloc=%d%s, #%d)", " ", malloc_amt, unit,
zgu@3900 348 malloc_count);
zgu@3900 349 } else {
zgu@3900 350 _output->print_cr("%27s (malloc=%d%s)", " ", malloc_amt, unit);
zgu@3900 351 }
zgu@3900 352 }
zgu@3900 353
zgu@3900 354 if (reserved_amt > 0) {
zgu@3900 355 _output->print_cr("%27s (mmap: reserved=%d%s, committed=%d%s)",
zgu@3900 356 " ", reserved_amt, unit, committed_amt, unit);
zgu@3900 357 }
zgu@3900 358
zgu@3900 359 if (arena_amt > 0) {
zgu@3900 360 _output->print_cr("%27s (arena=%d%s, #%d)", " ", arena_amt, unit, arena_count);
zgu@3900 361 }
zgu@3900 362
zgu@3900 363 _output->print_cr(" ");
zgu@3900 364 }
zgu@3900 365 }
zgu@3900 366 }
zgu@3900 367
zgu@3900 368 void BaselineTTYOutputer::done_category_summary() {
zgu@3900 369 _output->print_cr(" ");
zgu@3900 370 }
zgu@3900 371
zgu@4193 372
zgu@4193 373 void BaselineTTYOutputer::start_virtual_memory_map() {
zgu@4193 374 _output->print_cr("Virtual memory map:");
zgu@4193 375 }
zgu@4193 376
zgu@4193 377 void BaselineTTYOutputer::reserved_memory_region(MEMFLAGS type, address base, address end,
zgu@4193 378 size_t size, address pc) {
zgu@4193 379 const char* unit = memory_unit(_scale);
zgu@4193 380 char buf[128];
zgu@4193 381 int offset;
zgu@4193 382 _output->print_cr(" ");
zgu@4193 383 _output->print_cr("[" PTR_FORMAT " - " PTR_FORMAT "] reserved %d%s for %s", base, end, size, unit,
zgu@4193 384 MemBaseline::type2name(type));
zgu@4193 385 if (os::dll_address_to_function_name(pc, buf, sizeof(buf), &offset)) {
zgu@4193 386 _output->print_cr("\t\tfrom [%s+0x%x]", buf, offset);
zgu@4193 387 }
zgu@4193 388 }
zgu@4193 389
zgu@4193 390 void BaselineTTYOutputer::committed_memory_region(address base, address end, size_t size, address pc) {
zgu@4193 391 const char* unit = memory_unit(_scale);
zgu@4193 392 char buf[128];
zgu@4193 393 int offset;
zgu@4193 394 _output->print("\t[" PTR_FORMAT " - " PTR_FORMAT "] committed %d%s", base, end, size, unit);
zgu@4193 395 if (os::dll_address_to_function_name(pc, buf, sizeof(buf), &offset)) {
zgu@4193 396 _output->print_cr(" from [%s+0x%x]", buf, offset);
zgu@4193 397 }
zgu@4193 398 }
zgu@4193 399
zgu@4193 400 void BaselineTTYOutputer::done_virtual_memory_map() {
zgu@4193 401 _output->print_cr(" ");
zgu@4193 402 }
zgu@4193 403
zgu@4193 404
zgu@4193 405
zgu@3900 406 void BaselineTTYOutputer::start_callsite() {
zgu@3900 407 _output->print_cr("Details:");
zgu@3900 408 _output->print_cr(" ");
zgu@3900 409 }
zgu@3900 410
zgu@3900 411 void BaselineTTYOutputer::done_callsite() {
zgu@3900 412 _output->print_cr(" ");
zgu@3900 413 }
zgu@3900 414
zgu@3900 415 void BaselineTTYOutputer::malloc_callsite(address pc, size_t malloc_amt,
zgu@3900 416 size_t malloc_count) {
zgu@3900 417 if (malloc_amt > 0) {
zgu@3900 418 const char* unit = memory_unit(_scale);
zgu@4193 419 char buf[128];
zgu@3900 420 int offset;
zgu@3900 421 if (pc == 0) {
zgu@3900 422 _output->print("[BOOTSTRAP]%18s", " ");
zgu@3900 423 } else if (os::dll_address_to_function_name(pc, buf, sizeof(buf), &offset)) {
zgu@3900 424 _output->print_cr("[" PTR_FORMAT "] %s+0x%x", pc, buf, offset);
zgu@3900 425 _output->print("%28s", " ");
zgu@3900 426 } else {
zgu@3900 427 _output->print("[" PTR_FORMAT "]%18s", pc, " ");
zgu@3900 428 }
zgu@3900 429
zgu@3900 430 _output->print_cr("(malloc=%d%s #%d)", malloc_amt, unit, malloc_count);
zgu@3900 431 _output->print_cr(" ");
zgu@3900 432 }
zgu@3900 433 }
zgu@3900 434
zgu@3900 435 void BaselineTTYOutputer::virtual_memory_callsite(address pc, size_t reserved_amt,
zgu@3900 436 size_t committed_amt) {
zgu@3900 437 if (reserved_amt > 0) {
zgu@3900 438 const char* unit = memory_unit(_scale);
zgu@4193 439 char buf[128];
zgu@3900 440 int offset;
zgu@3900 441 if (pc == 0) {
zgu@3900 442 _output->print("[BOOTSTRAP]%18s", " ");
zgu@3900 443 } else if (os::dll_address_to_function_name(pc, buf, sizeof(buf), &offset)) {
zgu@3900 444 _output->print_cr("[" PTR_FORMAT "] %s+0x%x", pc, buf, offset);
zgu@3900 445 _output->print("%28s", " ");
zgu@3900 446 } else {
mikael@4668 447 _output->print("[" PTR_FORMAT "]%18s", pc, " ");
zgu@3900 448 }
zgu@3900 449
zgu@3900 450 _output->print_cr("(mmap: reserved=%d%s, committed=%d%s)",
zgu@3900 451 reserved_amt, unit, committed_amt, unit);
zgu@3900 452 _output->print_cr(" ");
zgu@3900 453 }
zgu@3900 454 }
zgu@3900 455
zgu@3900 456 void BaselineTTYOutputer::diff_total_usage(size_t total_reserved,
zgu@3900 457 size_t total_committed, int reserved_diff, int committed_diff) {
zgu@3900 458 const char* unit = memory_unit(_scale);
zgu@3900 459 _output->print_cr("Total: reserved=%d%s %+d%s, committed=%d%s %+d%s",
zgu@3900 460 total_reserved, unit, reserved_diff, unit, total_committed, unit,
zgu@3900 461 committed_diff, unit);
zgu@3900 462 }
zgu@3900 463
zgu@3900 464 void BaselineTTYOutputer::diff_category_summary(MEMFLAGS type,
zgu@3900 465 size_t cur_reserved_amt, size_t cur_committed_amt,
zgu@3900 466 size_t cur_malloc_amt, size_t cur_malloc_count,
zgu@3900 467 size_t cur_arena_amt, size_t cur_arena_count,
zgu@3900 468 int reserved_diff, int committed_diff, int malloc_diff,
zgu@3900 469 int malloc_count_diff, int arena_diff, int arena_count_diff) {
zgu@3900 470
zgu@3900 471 if (type == mtThreadStack) {
zgu@3900 472 assert(cur_malloc_amt == 0 && cur_malloc_count == 0 &&
zgu@3900 473 cur_arena_amt == 0, "Just check");
zgu@3900 474 _thread_stack_reserved = cur_reserved_amt;
zgu@3900 475 _thread_stack_committed = cur_committed_amt;
zgu@3900 476 _thread_stack_reserved_diff = reserved_diff;
zgu@3900 477 _thread_stack_committed_diff = committed_diff;
zgu@3900 478 } else {
zgu@3900 479 const char* unit = memory_unit(_scale);
zgu@3900 480 size_t total_reserved = (cur_reserved_amt + cur_malloc_amt + cur_arena_amt);
zgu@3900 481 // nothing to report in this category
zgu@3900 482 if (total_reserved == 0) {
zgu@3900 483 return;
zgu@3900 484 }
zgu@3900 485 int diff_reserved = (reserved_diff + malloc_diff + arena_diff);
zgu@3900 486
zgu@3900 487 // category summary
zgu@3900 488 _output->print("-%26s (reserved=%d%s", MemBaseline::type2name(type),
zgu@3900 489 total_reserved, unit);
zgu@3900 490
zgu@3900 491 if (diff_reserved != 0) {
zgu@3900 492 _output->print(" %+d%s", diff_reserved, unit);
zgu@3900 493 }
zgu@3900 494
zgu@3900 495 size_t total_committed = cur_committed_amt + cur_malloc_amt + cur_arena_amt;
zgu@3900 496 _output->print(", committed=%d%s", total_committed, unit);
zgu@3900 497
zgu@3900 498 int total_committed_diff = committed_diff + malloc_diff + arena_diff;
zgu@3900 499 if (total_committed_diff != 0) {
zgu@3900 500 _output->print(" %+d%s", total_committed_diff, unit);
zgu@3900 501 }
zgu@3900 502
zgu@3900 503 _output->print_cr(")");
zgu@3900 504
zgu@3900 505 // special cases
zgu@3900 506 if (type == mtClass) {
zgu@3900 507 _output->print("%27s (classes #%d", " ", _num_of_classes);
zgu@3900 508 if (_num_of_classes_diff != 0) {
zgu@3900 509 _output->print(" %+d", _num_of_classes_diff);
zgu@3900 510 }
zgu@3900 511 _output->print_cr(")");
zgu@3900 512 } else if (type == mtThread) {
zgu@3900 513 // thread count
zgu@3900 514 _output->print("%27s (thread #%d", " ", _num_of_threads);
zgu@3900 515 if (_num_of_threads_diff != 0) {
zgu@3900 516 _output->print_cr(" %+d)", _num_of_threads_diff);
zgu@3900 517 } else {
zgu@3900 518 _output->print_cr(")");
zgu@3900 519 }
zgu@3900 520 _output->print("%27s (stack: reserved=%d%s", " ", _thread_stack_reserved, unit);
zgu@3900 521 if (_thread_stack_reserved_diff != 0) {
zgu@3900 522 _output->print(" %+d%s", _thread_stack_reserved_diff, unit);
zgu@3900 523 }
zgu@3900 524
zgu@3900 525 _output->print(", committed=%d%s", _thread_stack_committed, unit);
zgu@3900 526 if (_thread_stack_committed_diff != 0) {
zgu@3900 527 _output->print(" %+d%s",_thread_stack_committed_diff, unit);
zgu@3900 528 }
zgu@3900 529
zgu@3900 530 _output->print_cr(")");
zgu@3900 531 }
zgu@3900 532
zgu@3900 533 // malloc'd memory
zgu@3900 534 if (cur_malloc_amt > 0) {
zgu@3900 535 _output->print("%27s (malloc=%d%s", " ", cur_malloc_amt, unit);
zgu@3900 536 if (malloc_diff != 0) {
zgu@3900 537 _output->print(" %+d%s", malloc_diff, unit);
zgu@3900 538 }
zgu@3900 539 if (type != mtChunk) {
zgu@3900 540 _output->print(", #%d", cur_malloc_count);
zgu@3900 541 if (malloc_count_diff) {
zgu@3900 542 _output->print(" %+d", malloc_count_diff);
zgu@3900 543 }
zgu@3900 544 }
zgu@3900 545 _output->print_cr(")");
zgu@3900 546 }
zgu@3900 547
zgu@3900 548 // mmap'd memory
zgu@3900 549 if (cur_reserved_amt > 0) {
zgu@3900 550 _output->print("%27s (mmap: reserved=%d%s", " ", cur_reserved_amt, unit);
zgu@3900 551 if (reserved_diff != 0) {
zgu@3900 552 _output->print(" %+d%s", reserved_diff, unit);
zgu@3900 553 }
zgu@3900 554
zgu@3900 555 _output->print(", committed=%d%s", cur_committed_amt, unit);
zgu@3900 556 if (committed_diff != 0) {
zgu@3900 557 _output->print(" %+d%s", committed_diff, unit);
zgu@3900 558 }
zgu@3900 559 _output->print_cr(")");
zgu@3900 560 }
zgu@3900 561
zgu@3900 562 // arena memory
zgu@3900 563 if (cur_arena_amt > 0) {
zgu@3900 564 _output->print("%27s (arena=%d%s", " ", cur_arena_amt, unit);
zgu@3900 565 if (arena_diff != 0) {
zgu@3900 566 _output->print(" %+d%s", arena_diff, unit);
zgu@3900 567 }
zgu@3900 568 _output->print(", #%d", cur_arena_count);
zgu@3900 569 if (arena_count_diff != 0) {
zgu@3900 570 _output->print(" %+d", arena_count_diff);
zgu@3900 571 }
zgu@3900 572 _output->print_cr(")");
zgu@3900 573 }
zgu@3900 574
zgu@3900 575 _output->print_cr(" ");
zgu@3900 576 }
zgu@3900 577 }
zgu@3900 578
zgu@3900 579 void BaselineTTYOutputer::diff_malloc_callsite(address pc,
zgu@3900 580 size_t cur_malloc_amt, size_t cur_malloc_count,
zgu@3900 581 int malloc_diff, int malloc_count_diff) {
zgu@3900 582 if (malloc_diff != 0) {
zgu@3900 583 const char* unit = memory_unit(_scale);
zgu@4193 584 char buf[128];
zgu@3900 585 int offset;
zgu@3900 586 if (pc == 0) {
zgu@3900 587 _output->print_cr("[BOOTSTRAP]%18s", " ");
zgu@3900 588 } else {
zgu@3900 589 if (os::dll_address_to_function_name(pc, buf, sizeof(buf), &offset)) {
zgu@3900 590 _output->print_cr("[" PTR_FORMAT "] %s+0x%x", pc, buf, offset);
zgu@3900 591 _output->print("%28s", " ");
zgu@3900 592 } else {
zgu@3900 593 _output->print("[" PTR_FORMAT "]%18s", pc, " ");
zgu@3900 594 }
zgu@3900 595 }
zgu@3900 596
zgu@3900 597 _output->print("(malloc=%d%s", cur_malloc_amt, unit);
zgu@3900 598 if (malloc_diff != 0) {
zgu@3900 599 _output->print(" %+d%s", malloc_diff, unit);
zgu@3900 600 }
zgu@3900 601 _output->print(", #%d", cur_malloc_count);
zgu@3900 602 if (malloc_count_diff != 0) {
zgu@3900 603 _output->print(" %+d", malloc_count_diff);
zgu@3900 604 }
zgu@3900 605 _output->print_cr(")");
zgu@3900 606 _output->print_cr(" ");
zgu@3900 607 }
zgu@3900 608 }
zgu@3900 609
zgu@3900 610 void BaselineTTYOutputer::diff_virtual_memory_callsite(address pc,
zgu@3900 611 size_t cur_reserved_amt, size_t cur_committed_amt,
zgu@3900 612 int reserved_diff, int committed_diff) {
zgu@3900 613 if (reserved_diff != 0 || committed_diff != 0) {
zgu@3900 614 const char* unit = memory_unit(_scale);
zgu@3900 615 char buf[64];
zgu@3900 616 int offset;
zgu@3900 617 if (pc == 0) {
zgu@3900 618 _output->print_cr("[BOOSTRAP]%18s", " ");
zgu@3900 619 } else {
zgu@3900 620 if (os::dll_address_to_function_name(pc, buf, sizeof(buf), &offset)) {
zgu@3900 621 _output->print_cr("[" PTR_FORMAT "] %s+0x%x", pc, buf, offset);
zgu@3900 622 _output->print("%28s", " ");
zgu@3900 623 } else {
mikael@4668 624 _output->print("[" PTR_FORMAT "]%18s", pc, " ");
zgu@3900 625 }
zgu@3900 626 }
zgu@3900 627
zgu@3900 628 _output->print("(mmap: reserved=%d%s", cur_reserved_amt, unit);
zgu@3900 629 if (reserved_diff != 0) {
zgu@3900 630 _output->print(" %+d%s", reserved_diff, unit);
zgu@3900 631 }
zgu@3900 632 _output->print(", committed=%d%s", cur_committed_amt, unit);
zgu@3900 633 if (committed_diff != 0) {
zgu@3900 634 _output->print(" %+d%s", committed_diff, unit);
zgu@3900 635 }
zgu@3900 636 _output->print_cr(")");
zgu@3900 637 _output->print_cr(" ");
zgu@3900 638 }
zgu@3900 639 }

mercurial