hotspot/src/share/vm/runtime/aprofiler.cpp
author hseigel
Thu, 17 Jan 2013 10:25:16 -0500
changeset 15228 e92acc84ade3
parent 13728 882756847a04
permissions -rw-r--r--
7102489: RFE: cleanup jlong typedef on __APPLE__and _LLP64 systems. Summary: Define jlong as long on all LP64 platforms and add JLONG_FORMAT macro. Reviewed-by: dholmes, coleenp, mikael, kvn
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
15228
e92acc84ade3 7102489: RFE: cleanup jlong typedef on __APPLE__and _LLP64 systems.
hseigel
parents: 13728
diff changeset
     2
 * Copyright (c) 1997, 2013, 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/resourceArea.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    29
#include "memory/space.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    30
#include "oops/oop.inline.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    31
#include "oops/oop.inline2.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    32
#include "runtime/aprofiler.hpp"
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
bool AllocationProfiler::_active = false;
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 7397
diff changeset
    36
GrowableArray<Klass*>* AllocationProfiler::_print_array = NULL;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
class AllocProfClosure : public ObjectClosure {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
  void do_object(oop obj) {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 7397
diff changeset
    42
    Klass* k = obj->klass();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
    k->set_alloc_count(k->alloc_count() + 1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
    k->set_alloc_size(k->alloc_size() + obj->size());
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
  }
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
void AllocationProfiler::iterate_since_last_gc() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
  if (is_active()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
    AllocProfClosure blk;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
    GenCollectedHeap* heap = GenCollectedHeap::heap();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
    heap->object_iterate_since_last_GC(&blk);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
void AllocationProfiler::engage() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
  _active = true;
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
void AllocationProfiler::disengage() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
  _active = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 7397
diff changeset
    68
void AllocationProfiler::add_class_to_array(Klass* k) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
  _print_array->append(k);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 7397
diff changeset
    73
void AllocationProfiler::add_classes_to_array(Klass* k) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
  // Iterate over klass and all array klasses for klass
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 7397
diff changeset
    75
  k->with_array_klasses_do(&AllocationProfiler::add_class_to_array);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 7397
diff changeset
    79
int AllocationProfiler::compare_classes(Klass** k1, Klass** k2) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
  // Sort by total allocation size
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 7397
diff changeset
    81
  return (*k2)->alloc_size() - (*k1)->alloc_size();
1
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
int AllocationProfiler::average(size_t alloc_size, int alloc_count) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
  return (int) ((double) (alloc_size * BytesPerWord) / MAX2(alloc_count, 1) + 0.5);
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::sort_and_print_array(size_t cutoff) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
  _print_array->sort(&AllocationProfiler::compare_classes);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
  tty->print_cr("________________Size"
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
                "__Instances"
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
                "__Average"
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
                "__Class________________");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
  size_t total_alloc_size = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
  int total_alloc_count = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
  for (int index = 0; index < _print_array->length(); index++) {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 7397
diff changeset
    99
    Klass* k = _print_array->at(index);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 7397
diff changeset
   100
    size_t alloc_size = k->alloc_size();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
    if (alloc_size > cutoff) {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 7397
diff changeset
   102
      int alloc_count = k->alloc_count();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
#ifdef PRODUCT
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 7397
diff changeset
   104
      const char* name = k->external_name();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
#else
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 7397
diff changeset
   106
      const char* name = k->internal_name();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
      tty->print_cr("%20u %10u %8u  %s",
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
        alloc_size * BytesPerWord,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
        alloc_count,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
        average(alloc_size, alloc_count),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
        name);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
      total_alloc_size += alloc_size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
      total_alloc_count += alloc_count;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
    }
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 7397
diff changeset
   116
    k->set_alloc_count(0);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 7397
diff changeset
   117
    k->set_alloc_size(0);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
  tty->print_cr("%20u %10u %8u  --total--",
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
    total_alloc_size * BytesPerWord,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
    total_alloc_count,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
    average(total_alloc_size, total_alloc_count));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
  tty->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
void AllocationProfiler::print(size_t cutoff) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
  ResourceMark rm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
  assert(!is_active(), "AllocationProfiler cannot be active while printing profile");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
  tty->cr();
15228
e92acc84ade3 7102489: RFE: cleanup jlong typedef on __APPLE__and _LLP64 systems.
hseigel
parents: 13728
diff changeset
   132
  tty->print_cr("Allocation profile (sizes in bytes, cutoff = " SIZE_FORMAT " bytes):", cutoff * BytesPerWord);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
  tty->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
  // Print regular instance klasses and basic type array klasses
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 7397
diff changeset
   136
  _print_array = new GrowableArray<Klass*>(SystemDictionary::number_of_classes()*2);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
  SystemDictionary::classes_do(&add_classes_to_array);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
  Universe::basic_type_classes_do(&add_classes_to_array);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
  sort_and_print_array(cutoff);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 7397
diff changeset
   141
  // This used to print metadata in the permgen but since there isn't a permgen
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 7397
diff changeset
   142
  // anymore, it is not yet implemented.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
}