hotspot/src/share/vm/services/classLoadingService.hpp
author duke
Sat, 01 Dec 2007 00:00:00 +0000
changeset 1 489c9b5090e2
child 5547 f4b087cbb361
permissions -rw-r--r--
Initial load
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 2003-2005 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
class instanceKlass;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    26
489c9b5090e2 Initial load
duke
parents:
diff changeset
    27
// VM monitoring and management support for the Class Loading subsystem
489c9b5090e2 Initial load
duke
parents:
diff changeset
    28
class ClassLoadingService : public AllStatic {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    29
private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    30
  // Counters for classes loaded from class files
489c9b5090e2 Initial load
duke
parents:
diff changeset
    31
  static PerfCounter*  _classes_loaded_count;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
  static PerfCounter*  _classes_unloaded_count;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
  static PerfCounter*  _classbytes_loaded;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
  static PerfCounter*  _classbytes_unloaded;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
  // Counters for classes loaded from shared archive
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
  static PerfCounter*  _shared_classes_loaded_count;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
  static PerfCounter*  _shared_classes_unloaded_count;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
  static PerfCounter*  _shared_classbytes_loaded;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
  static PerfCounter*  _shared_classbytes_unloaded;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
  static PerfVariable* _class_methods_size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
  static size_t compute_class_size(instanceKlass* k);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
  static void init();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
  static bool get_verbose() { return TraceClassLoading; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
  static bool set_verbose(bool verbose);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
  static void reset_trace_class_unloading();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
  static jlong loaded_class_count() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
    return _classes_loaded_count->get_value() + _shared_classes_loaded_count->get_value();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
  static jlong unloaded_class_count() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
    return _classes_unloaded_count->get_value() + _shared_classes_unloaded_count->get_value();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
  static jlong loaded_class_bytes() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
    if (UsePerfData) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
      return _classbytes_loaded->get_value() + _shared_classbytes_loaded->get_value();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
      return -1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
  static jlong unloaded_class_bytes() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
    if (UsePerfData) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
      return _classbytes_unloaded->get_value() + _shared_classbytes_unloaded->get_value();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
      return -1;
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
  static jlong loaded_shared_class_count() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
    return _shared_classes_loaded_count->get_value();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
  static jlong unloaded_shared_class_count() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
    return _shared_classes_unloaded_count->get_value();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
  static jlong loaded_shared_class_bytes() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
    if (UsePerfData) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
      return _shared_classbytes_loaded->get_value();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
      return -1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
  static jlong unloaded_shared_class_bytes() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
    if (UsePerfData) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
      return _shared_classbytes_unloaded->get_value();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
      return -1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
  static jlong class_method_data_size() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
    return (UsePerfData ? _class_methods_size->get_value() : -1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
  static void notify_class_loaded(instanceKlass* k, bool shared_class);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
  // All unloaded classes are non-shared
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
  static void notify_class_unloaded(instanceKlass* k);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
  static void add_class_method_size(int size) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
    if (UsePerfData) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
      _class_methods_size->inc(size);
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
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
// FIXME: make this piece of code to be shared by M&M and JVMTI
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
class LoadedClassesEnumerator : public StackObj {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
  static GrowableArray<KlassHandle>* _loaded_classes;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
  // _current_thread is for creating a KlassHandle with a faster version constructor
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
  static Thread*                     _current_thread;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
  GrowableArray<KlassHandle>* _klass_handle_array;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
  LoadedClassesEnumerator(Thread* cur_thread);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
  int num_loaded_classes()         { return _klass_handle_array->length(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
  KlassHandle get_klass(int index) { return _klass_handle_array->at(index); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
  static void add_loaded_class(klassOop k) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
    // FIXME: For now - don't include array klasses
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
    // The spec is unclear at this point to count array klasses or not
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
    // and also indirect creation of array of super class and secondaries
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
    //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
    // for (klassOop l = k; l != NULL; l = Klass::cast(l)->array_klass_or_null()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
    //  KlassHandle h(_current_thread, l);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
    //  _loaded_classes->append(h);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
    // }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
    KlassHandle h(_current_thread, k);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
    _loaded_classes->append(h);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
};