hotspot/src/share/vm/runtime/aprofiler.cpp
author coleenp
Mon, 02 Jul 2012 13:11:28 -0400
changeset 13196 6b399731153b
parent 7397 5b173b4ca846
child 13728 882756847a04
permissions -rw-r--r--
Merge
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
     2
 * Copyright (c) 1997, 2010, Oracle and/or its affiliates. All rights reserved.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     4
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
489c9b5090e2 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
489c9b5090e2 Initial load
duke
parents:
diff changeset
     7
 * published by the Free Software Foundation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     8
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
489c9b5090e2 Initial load
duke
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
489c9b5090e2 Initial load
duke
parents:
diff changeset
    13
 * accompanied this code).
489c9b5090e2 Initial load
duke
parents:
diff changeset
    14
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
489c9b5090e2 Initial load
duke
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    18
 *
5547
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1
diff changeset
    21
 * questions.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    22
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    23
 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    24
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    25
#include "precompiled.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    26
#include "classfile/systemDictionary.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    27
#include "gc_interface/collectedHeap.inline.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    28
#include "memory/permGen.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    29
#include "memory/resourceArea.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    30
#include "memory/space.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    31
#include "oops/oop.inline.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    32
#include "oops/oop.inline2.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    33
#include "runtime/aprofiler.hpp"
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
bool AllocationProfiler::_active = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
GrowableArray<klassOop>* AllocationProfiler::_print_array = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
class AllocProfClosure : public ObjectClosure {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
  void do_object(oop obj) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
    Klass* k = obj->blueprint();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
    k->set_alloc_count(k->alloc_count() + 1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
    k->set_alloc_size(k->alloc_size() + obj->size());
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
class AllocProfResetClosure : public ObjectClosure {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
  void do_object(oop obj) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
    if (obj->is_klass()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
      Klass* k = Klass::cast(klassOop(obj));
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
      k->set_alloc_count(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
      k->set_alloc_size(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
void AllocationProfiler::iterate_since_last_gc() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
  if (is_active()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
    AllocProfClosure blk;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
    GenCollectedHeap* heap = GenCollectedHeap::heap();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
    heap->object_iterate_since_last_GC(&blk);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
void AllocationProfiler::engage() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
  _active = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
void AllocationProfiler::disengage() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
  _active = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
void AllocationProfiler::add_class_to_array(klassOop k) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
  _print_array->append(k);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
void AllocationProfiler::add_classes_to_array(klassOop k) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
  // Iterate over klass and all array klasses for klass
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
  k->klass_part()->with_array_klasses_do(&AllocationProfiler::add_class_to_array);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
int AllocationProfiler::compare_classes(klassOop* k1, klassOop* k2) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
  // Sort by total allocation size
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
  return (*k2)->klass_part()->alloc_size() - (*k1)->klass_part()->alloc_size();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
int AllocationProfiler::average(size_t alloc_size, int alloc_count) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
  return (int) ((double) (alloc_size * BytesPerWord) / MAX2(alloc_count, 1) + 0.5);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
void AllocationProfiler::sort_and_print_array(size_t cutoff) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
  _print_array->sort(&AllocationProfiler::compare_classes);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
  tty->print_cr("________________Size"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
                "__Instances"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
                "__Average"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
                "__Class________________");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
  size_t total_alloc_size = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
  int total_alloc_count = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
  for (int index = 0; index < _print_array->length(); index++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
    klassOop k = _print_array->at(index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
    size_t alloc_size = k->klass_part()->alloc_size();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
    if (alloc_size > cutoff) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
      int alloc_count = k->klass_part()->alloc_count();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
#ifdef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
      const char* name = k->klass_part()->external_name();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
#else
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
      const char* name = k->klass_part()->internal_name();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
      tty->print_cr("%20u %10u %8u  %s",
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
        alloc_size * BytesPerWord,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
        alloc_count,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
        average(alloc_size, alloc_count),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
        name);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
      total_alloc_size += alloc_size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
      total_alloc_count += alloc_count;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
  tty->print_cr("%20u %10u %8u  --total--",
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
    total_alloc_size * BytesPerWord,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
    total_alloc_count,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
    average(total_alloc_size, total_alloc_count));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
  tty->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
void AllocationProfiler::print(size_t cutoff) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
  ResourceMark rm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
  assert(!is_active(), "AllocationProfiler cannot be active while printing profile");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
  tty->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
  tty->print_cr("Allocation profile (sizes in bytes, cutoff = %ld bytes):", cutoff * BytesPerWord);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
  tty->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
  // Print regular instance klasses and basic type array klasses
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
  _print_array = new GrowableArray<klassOop>(SystemDictionary::number_of_classes()*2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
  SystemDictionary::classes_do(&add_classes_to_array);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
  Universe::basic_type_classes_do(&add_classes_to_array);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
  sort_and_print_array(cutoff);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
  #ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
  tty->print_cr("Allocation profile for system classes (sizes in bytes, cutoff = %d bytes):", cutoff * BytesPerWord);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
  tty->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
  // Print system klasses (methods, symbols, constant pools, etc.)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
  _print_array = new GrowableArray<klassOop>(64);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
  Universe::system_classes_do(&add_classes_to_array);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
  sort_and_print_array(cutoff);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
  tty->print_cr("Permanent generation dump (sizes in bytes, cutoff = %d bytes):", cutoff * BytesPerWord);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
  tty->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
  AllocProfResetClosure resetblk;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
  Universe::heap()->permanent_object_iterate(&resetblk);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
  AllocProfClosure blk;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
  Universe::heap()->permanent_object_iterate(&blk);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
  _print_array = new GrowableArray<klassOop>(SystemDictionary::number_of_classes()*2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
  SystemDictionary::classes_do(&add_classes_to_array);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
  Universe::basic_type_classes_do(&add_classes_to_array);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
  Universe::system_classes_do(&add_classes_to_array);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
  sort_and_print_array(cutoff);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
  #endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
}