hotspot/src/share/vm/runtime/aprofiler.cpp
author fparain
Wed, 17 Mar 2010 11:01:05 +0100
changeset 5089 0cce506a0158
parent 1 489c9b5090e2
child 5547 f4b087cbb361
permissions -rw-r--r--
6935224: Adding new DTrace probes to work with Palantir Summary: Adding probes related to thread scheduling and class initialization Reviewed-by: kamg, never
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
489c9b5090e2 Initial load
duke
parents:
diff changeset
     2
 * Copyright 1997-2002 Sun Microsystems, Inc.  All Rights Reserved.
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
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    19
 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    20
 * CA 95054 USA or visit www.sun.com if you need additional information or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    21
 * have any questions.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    22
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    23
 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    24
489c9b5090e2 Initial load
duke
parents:
diff changeset
    25
# include "incls/_precompiled.incl"
489c9b5090e2 Initial load
duke
parents:
diff changeset
    26
# include "incls/_aprofiler.cpp.incl"
489c9b5090e2 Initial load
duke
parents:
diff changeset
    27
489c9b5090e2 Initial load
duke
parents:
diff changeset
    28
489c9b5090e2 Initial load
duke
parents:
diff changeset
    29
bool AllocationProfiler::_active = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    30
GrowableArray<klassOop>* AllocationProfiler::_print_array = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    31
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
class AllocProfClosure : public ObjectClosure {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
  void do_object(oop obj) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
    Klass* k = obj->blueprint();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
    k->set_alloc_count(k->alloc_count() + 1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
    k->set_alloc_size(k->alloc_size() + obj->size());
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
class AllocProfResetClosure : public ObjectClosure {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
  void do_object(oop obj) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
    if (obj->is_klass()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
      Klass* k = Klass::cast(klassOop(obj));
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
      k->set_alloc_count(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
      k->set_alloc_size(0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
void AllocationProfiler::iterate_since_last_gc() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
  if (is_active()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
    AllocProfClosure blk;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
    GenCollectedHeap* heap = GenCollectedHeap::heap();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
    heap->object_iterate_since_last_GC(&blk);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
void AllocationProfiler::engage() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
  _active = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
void AllocationProfiler::disengage() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
  _active = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
void AllocationProfiler::add_class_to_array(klassOop k) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
  _print_array->append(k);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
void AllocationProfiler::add_classes_to_array(klassOop k) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
  // Iterate over klass and all array klasses for klass
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
  k->klass_part()->with_array_klasses_do(&AllocationProfiler::add_class_to_array);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
int AllocationProfiler::compare_classes(klassOop* k1, klassOop* k2) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
  // Sort by total allocation size
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
  return (*k2)->klass_part()->alloc_size() - (*k1)->klass_part()->alloc_size();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
int AllocationProfiler::average(size_t alloc_size, int alloc_count) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
  return (int) ((double) (alloc_size * BytesPerWord) / MAX2(alloc_count, 1) + 0.5);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
void AllocationProfiler::sort_and_print_array(size_t cutoff) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
  _print_array->sort(&AllocationProfiler::compare_classes);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
  tty->print_cr("________________Size"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
                "__Instances"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
                "__Average"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
                "__Class________________");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
  size_t total_alloc_size = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
  int total_alloc_count = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
  for (int index = 0; index < _print_array->length(); index++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
    klassOop k = _print_array->at(index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
    size_t alloc_size = k->klass_part()->alloc_size();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
    if (alloc_size > cutoff) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
      int alloc_count = k->klass_part()->alloc_count();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
#ifdef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
      const char* name = k->klass_part()->external_name();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
#else
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
      const char* name = k->klass_part()->internal_name();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
      tty->print_cr("%20u %10u %8u  %s",
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
        alloc_size * BytesPerWord,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
        alloc_count,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
        average(alloc_size, alloc_count),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
        name);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
      total_alloc_size += alloc_size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
      total_alloc_count += alloc_count;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
  tty->print_cr("%20u %10u %8u  --total--",
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
    total_alloc_size * BytesPerWord,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
    total_alloc_count,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
    average(total_alloc_size, total_alloc_count));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
  tty->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
void AllocationProfiler::print(size_t cutoff) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
  ResourceMark rm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
  assert(!is_active(), "AllocationProfiler cannot be active while printing profile");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
  tty->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
  tty->print_cr("Allocation profile (sizes in bytes, cutoff = %ld bytes):", cutoff * BytesPerWord);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
  tty->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
  // Print regular instance klasses and basic type array klasses
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
  _print_array = new GrowableArray<klassOop>(SystemDictionary::number_of_classes()*2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
  SystemDictionary::classes_do(&add_classes_to_array);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
  Universe::basic_type_classes_do(&add_classes_to_array);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
  sort_and_print_array(cutoff);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
  #ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
  tty->print_cr("Allocation profile for system classes (sizes in bytes, cutoff = %d bytes):", cutoff * BytesPerWord);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
  tty->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
  // Print system klasses (methods, symbols, constant pools, etc.)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
  _print_array = new GrowableArray<klassOop>(64);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
  Universe::system_classes_do(&add_classes_to_array);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
  sort_and_print_array(cutoff);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
  tty->print_cr("Permanent generation dump (sizes in bytes, cutoff = %d bytes):", cutoff * BytesPerWord);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
  tty->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
  AllocProfResetClosure resetblk;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
  Universe::heap()->permanent_object_iterate(&resetblk);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
  AllocProfClosure blk;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
  Universe::heap()->permanent_object_iterate(&blk);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
  _print_array = new GrowableArray<klassOop>(SystemDictionary::number_of_classes()*2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
  SystemDictionary::classes_do(&add_classes_to_array);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
  Universe::basic_type_classes_do(&add_classes_to_array);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
  Universe::system_classes_do(&add_classes_to_array);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
  sort_and_print_array(cutoff);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
  #endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
}