src/hotspot/share/services/classLoadingService.hpp
author coleenp
Thu, 10 Jan 2019 15:13:51 -0500
changeset 53244 9807daeb47c4
parent 47216 71c04702a3d5
permissions -rw-r--r--
8216167: Update include guards to reflect correct directories Summary: Use script and some manual fixup to fix directores names in include guards. Reviewed-by: lfoltan, eosterlund, kbarrett
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
53244
9807daeb47c4 8216167: Update include guards to reflect correct directories
coleenp
parents: 47216
diff changeset
     2
 * Copyright (c) 2003, 2019, 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
53244
9807daeb47c4 8216167: Update include guards to reflect correct directories
coleenp
parents: 47216
diff changeset
    25
#ifndef SHARE_SERVICES_CLASSLOADINGSERVICE_HPP
9807daeb47c4 8216167: Update include guards to reflect correct directories
coleenp
parents: 47216
diff changeset
    26
#define SHARE_SERVICES_CLASSLOADINGSERVICE_HPP
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    27
35917
463d67f86eaa 8079408: Reimplement TraceClassLoading, TraceClassUnloading, and TraceClassLoaderData with Unified Logging.
mockner
parents: 22234
diff changeset
    28
#include "logging/log.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    29
#include "runtime/handles.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    30
#include "runtime/perfData.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    31
#include "utilities/growableArray.hpp"
15482
470d0b0c09f1 8005915: Unify SERIALGC and INCLUDE_ALTERNATE_GCS
jprovino
parents: 14488
diff changeset
    32
#include "utilities/macros.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    33
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 7397
diff changeset
    34
class InstanceKlass;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
// VM monitoring and management support for the Class Loading subsystem
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
class ClassLoadingService : public AllStatic {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
  // Counters for classes loaded from class files
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
  static PerfCounter*  _classes_loaded_count;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
  static PerfCounter*  _classes_unloaded_count;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
  static PerfCounter*  _classbytes_loaded;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
  static PerfCounter*  _classbytes_unloaded;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
  // Counters for classes loaded from shared archive
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
  static PerfCounter*  _shared_classes_loaded_count;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
  static PerfCounter*  _shared_classes_unloaded_count;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
  static PerfCounter*  _shared_classbytes_loaded;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
  static PerfCounter*  _shared_classbytes_unloaded;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
  static PerfVariable* _class_methods_size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 7397
diff changeset
    53
  static size_t compute_class_size(InstanceKlass* k);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
  static void init();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
38151
fffedc5e5cf8 8154110: Update class* and safepoint* logging subsystems
mockner
parents: 35917
diff changeset
    58
  static bool get_verbose() { return log_is_enabled(Info, class, load); }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
  static bool set_verbose(bool verbose);
13975
2f7431485cfa 7189254: Change makefiles for more flexibility to override defaults
jprovino
parents: 13728
diff changeset
    60
  static void reset_trace_class_unloading() NOT_MANAGEMENT_RETURN;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
  static jlong loaded_class_count() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
    return _classes_loaded_count->get_value() + _shared_classes_loaded_count->get_value();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
  static jlong unloaded_class_count() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
    return _classes_unloaded_count->get_value() + _shared_classes_unloaded_count->get_value();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
  static jlong loaded_class_bytes() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
    if (UsePerfData) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
      return _classbytes_loaded->get_value() + _shared_classbytes_loaded->get_value();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
      return -1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
  static jlong unloaded_class_bytes() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
    if (UsePerfData) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
      return _classbytes_unloaded->get_value() + _shared_classbytes_unloaded->get_value();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
      return -1;
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
  static jlong loaded_shared_class_count() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
    return _shared_classes_loaded_count->get_value();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
  static jlong unloaded_shared_class_count() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
    return _shared_classes_unloaded_count->get_value();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
  static jlong loaded_shared_class_bytes() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
    if (UsePerfData) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
      return _shared_classbytes_loaded->get_value();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
      return -1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
  static jlong unloaded_shared_class_bytes() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
    if (UsePerfData) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
      return _shared_classbytes_unloaded->get_value();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
      return -1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
  static jlong class_method_data_size() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
    return (UsePerfData ? _class_methods_size->get_value() : -1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
13975
2f7431485cfa 7189254: Change makefiles for more flexibility to override defaults
jprovino
parents: 13728
diff changeset
   107
  static void notify_class_loaded(InstanceKlass* k, bool shared_class)
2f7431485cfa 7189254: Change makefiles for more flexibility to override defaults
jprovino
parents: 13728
diff changeset
   108
      NOT_MANAGEMENT_RETURN;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
  // All unloaded classes are non-shared
13975
2f7431485cfa 7189254: Change makefiles for more flexibility to override defaults
jprovino
parents: 13728
diff changeset
   110
  static void notify_class_unloaded(InstanceKlass* k) NOT_MANAGEMENT_RETURN;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
  static void add_class_method_size(int size) {
13975
2f7431485cfa 7189254: Change makefiles for more flexibility to override defaults
jprovino
parents: 13728
diff changeset
   112
#if INCLUDE_MANAGEMENT
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
    if (UsePerfData) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
      _class_methods_size->inc(size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
    }
13975
2f7431485cfa 7189254: Change makefiles for more flexibility to override defaults
jprovino
parents: 13728
diff changeset
   116
#endif // INCLUDE_MANAGEMENT
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
53244
9807daeb47c4 8216167: Update include guards to reflect correct directories
coleenp
parents: 47216
diff changeset
   120
#endif // SHARE_SERVICES_CLASSLOADINGSERVICE_HPP