Path: blob/aarch64-shenandoah-jdk8u272-b10/hotspot/src/share/vm/services/classLoadingService.hpp
32285 views
/*1* Copyright (c) 2003, 2013, Oracle and/or its affiliates. All rights reserved.2* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.3*4* This code is free software; you can redistribute it and/or modify it5* under the terms of the GNU General Public License version 2 only, as6* published by the Free Software Foundation.7*8* This code is distributed in the hope that it will be useful, but WITHOUT9* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or10* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License11* version 2 for more details (a copy is included in the LICENSE file that12* accompanied this code).13*14* You should have received a copy of the GNU General Public License version15* 2 along with this work; if not, write to the Free Software Foundation,16* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.17*18* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA19* or visit www.oracle.com if you need additional information or have any20* questions.21*22*/2324#ifndef SHARE_VM_SERVICES_CLASSLOADINGSERVICE_HPP25#define SHARE_VM_SERVICES_CLASSLOADINGSERVICE_HPP2627#include "runtime/handles.hpp"28#include "runtime/perfData.hpp"29#include "utilities/growableArray.hpp"30#include "utilities/macros.hpp"3132class InstanceKlass;3334// VM monitoring and management support for the Class Loading subsystem35class ClassLoadingService : public AllStatic {36private:37// Counters for classes loaded from class files38static PerfCounter* _classes_loaded_count;39static PerfCounter* _classes_unloaded_count;40static PerfCounter* _classbytes_loaded;41static PerfCounter* _classbytes_unloaded;4243// Counters for classes loaded from shared archive44static PerfCounter* _shared_classes_loaded_count;45static PerfCounter* _shared_classes_unloaded_count;46static PerfCounter* _shared_classbytes_loaded;47static PerfCounter* _shared_classbytes_unloaded;4849static PerfVariable* _class_methods_size;5051static size_t compute_class_size(InstanceKlass* k);5253public:54static void init();5556static bool get_verbose() { return TraceClassLoading; }57static bool set_verbose(bool verbose);58static void reset_trace_class_unloading() NOT_MANAGEMENT_RETURN;5960static jlong loaded_class_count() {61return _classes_loaded_count->get_value() + _shared_classes_loaded_count->get_value();62}63static jlong unloaded_class_count() {64return _classes_unloaded_count->get_value() + _shared_classes_unloaded_count->get_value();65}66static jlong loaded_class_bytes() {67if (UsePerfData) {68return _classbytes_loaded->get_value() + _shared_classbytes_loaded->get_value();69} else {70return -1;71}72}73static jlong unloaded_class_bytes() {74if (UsePerfData) {75return _classbytes_unloaded->get_value() + _shared_classbytes_unloaded->get_value();76} else {77return -1;78}79}8081static jlong loaded_shared_class_count() {82return _shared_classes_loaded_count->get_value();83}84static jlong unloaded_shared_class_count() {85return _shared_classes_unloaded_count->get_value();86}87static jlong loaded_shared_class_bytes() {88if (UsePerfData) {89return _shared_classbytes_loaded->get_value();90} else {91return -1;92}93}94static jlong unloaded_shared_class_bytes() {95if (UsePerfData) {96return _shared_classbytes_unloaded->get_value();97} else {98return -1;99}100}101static jlong class_method_data_size() {102return (UsePerfData ? _class_methods_size->get_value() : -1);103}104105static void notify_class_loaded(InstanceKlass* k, bool shared_class)106NOT_MANAGEMENT_RETURN;107// All unloaded classes are non-shared108static void notify_class_unloaded(InstanceKlass* k) NOT_MANAGEMENT_RETURN;109static void add_class_method_size(int size) {110#if INCLUDE_MANAGEMENT111if (UsePerfData) {112_class_methods_size->inc(size);113}114#endif // INCLUDE_MANAGEMENT115}116};117118// FIXME: make this piece of code to be shared by M&M and JVMTI119class LoadedClassesEnumerator : public StackObj {120private:121static GrowableArray<KlassHandle>* _loaded_classes;122// _current_thread is for creating a KlassHandle with a faster version constructor123static Thread* _current_thread;124125GrowableArray<KlassHandle>* _klass_handle_array;126127public:128LoadedClassesEnumerator(Thread* cur_thread);129130int num_loaded_classes() { return _klass_handle_array->length(); }131KlassHandle get_klass(int index) { return _klass_handle_array->at(index); }132133static void add_loaded_class(Klass* k) {134// FIXME: For now - don't include array klasses135// The spec is unclear at this point to count array klasses or not136// and also indirect creation of array of super class and secondaries137//138// for (Klass* l = k; l != NULL; l = l->array_klass_or_null()) {139// KlassHandle h(_current_thread, l);140// _loaded_classes->append(h);141// }142KlassHandle h(_current_thread, k);143_loaded_classes->append(h);144}145};146147#endif // SHARE_VM_SERVICES_CLASSLOADINGSERVICE_HPP148149150