annotate src/share/vm/services/classLoadingService.hpp @ 8733:9def4075da6d

8008079: G1: Add nextObject routine to CMBitMapRO and replace nextWord Summary: Update the task local finger to the start of the next object when marking aborts, in order to avoid the redundant scanning of all 0's when the marking task restarts, if otherwise updating to the next word. In addition, reuse the routine nextObject() in routine iterate(). Reviewed-by: johnc, ysr Contributed-by: tamao <tao.mao@oracle.com>
author tamao
date Tue, 05 Mar 2013 15:36:56 -0800
parents db9981fd3124
children de6a9e811145
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
6854
fb19af007ffc 7189254: Change makefiles for more flexibility to override defaults
jprovino
parents: 6725
diff changeset
2 * Copyright (c) 2003, 2010, Oracle and/or its affiliates. All rights reserved.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
a61af66fc99e Initial load
duke
parents:
diff changeset
4 *
a61af66fc99e Initial load
duke
parents:
diff changeset
5 * This code is free software; you can redistribute it and/or modify it
a61af66fc99e Initial load
duke
parents:
diff changeset
6 * under the terms of the GNU General Public License version 2 only, as
a61af66fc99e Initial load
duke
parents:
diff changeset
7 * published by the Free Software Foundation.
a61af66fc99e Initial load
duke
parents:
diff changeset
8 *
a61af66fc99e Initial load
duke
parents:
diff changeset
9 * This code is distributed in the hope that it will be useful, but WITHOUT
a61af66fc99e Initial load
duke
parents:
diff changeset
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
a61af66fc99e Initial load
duke
parents:
diff changeset
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
a61af66fc99e Initial load
duke
parents:
diff changeset
12 * version 2 for more details (a copy is included in the LICENSE file that
a61af66fc99e Initial load
duke
parents:
diff changeset
13 * accompanied this code).
a61af66fc99e Initial load
duke
parents:
diff changeset
14 *
a61af66fc99e Initial load
duke
parents:
diff changeset
15 * You should have received a copy of the GNU General Public License version
a61af66fc99e Initial load
duke
parents:
diff changeset
16 * 2 along with this work; if not, write to the Free Software Foundation,
a61af66fc99e Initial load
duke
parents:
diff changeset
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
a61af66fc99e Initial load
duke
parents:
diff changeset
18 *
1552
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 0
diff changeset
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 0
diff changeset
20 * or visit www.oracle.com if you need additional information or have any
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 0
diff changeset
21 * questions.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
22 *
a61af66fc99e Initial load
duke
parents:
diff changeset
23 */
a61af66fc99e Initial load
duke
parents:
diff changeset
24
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
25 #ifndef SHARE_VM_SERVICES_CLASSLOADINGSERVICE_HPP
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
26 #define SHARE_VM_SERVICES_CLASSLOADINGSERVICE_HPP
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
27
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
28 #include "runtime/handles.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
29 #include "runtime/perfData.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
30 #include "utilities/growableArray.hpp"
8001
db9981fd3124 8005915: Unify SERIALGC and INCLUDE_ALTERNATE_GCS
jprovino
parents: 6983
diff changeset
31 #include "utilities/macros.hpp"
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
32
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 1972
diff changeset
33 class InstanceKlass;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
34
a61af66fc99e Initial load
duke
parents:
diff changeset
35 // VM monitoring and management support for the Class Loading subsystem
a61af66fc99e Initial load
duke
parents:
diff changeset
36 class ClassLoadingService : public AllStatic {
a61af66fc99e Initial load
duke
parents:
diff changeset
37 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
38 // Counters for classes loaded from class files
a61af66fc99e Initial load
duke
parents:
diff changeset
39 static PerfCounter* _classes_loaded_count;
a61af66fc99e Initial load
duke
parents:
diff changeset
40 static PerfCounter* _classes_unloaded_count;
a61af66fc99e Initial load
duke
parents:
diff changeset
41 static PerfCounter* _classbytes_loaded;
a61af66fc99e Initial load
duke
parents:
diff changeset
42 static PerfCounter* _classbytes_unloaded;
a61af66fc99e Initial load
duke
parents:
diff changeset
43
a61af66fc99e Initial load
duke
parents:
diff changeset
44 // Counters for classes loaded from shared archive
a61af66fc99e Initial load
duke
parents:
diff changeset
45 static PerfCounter* _shared_classes_loaded_count;
a61af66fc99e Initial load
duke
parents:
diff changeset
46 static PerfCounter* _shared_classes_unloaded_count;
a61af66fc99e Initial load
duke
parents:
diff changeset
47 static PerfCounter* _shared_classbytes_loaded;
a61af66fc99e Initial load
duke
parents:
diff changeset
48 static PerfCounter* _shared_classbytes_unloaded;
a61af66fc99e Initial load
duke
parents:
diff changeset
49
a61af66fc99e Initial load
duke
parents:
diff changeset
50 static PerfVariable* _class_methods_size;
a61af66fc99e Initial load
duke
parents:
diff changeset
51
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 1972
diff changeset
52 static size_t compute_class_size(InstanceKlass* k);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
53
a61af66fc99e Initial load
duke
parents:
diff changeset
54 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
55 static void init();
a61af66fc99e Initial load
duke
parents:
diff changeset
56
a61af66fc99e Initial load
duke
parents:
diff changeset
57 static bool get_verbose() { return TraceClassLoading; }
a61af66fc99e Initial load
duke
parents:
diff changeset
58 static bool set_verbose(bool verbose);
6854
fb19af007ffc 7189254: Change makefiles for more flexibility to override defaults
jprovino
parents: 6725
diff changeset
59 static void reset_trace_class_unloading() NOT_MANAGEMENT_RETURN;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
60
a61af66fc99e Initial load
duke
parents:
diff changeset
61 static jlong loaded_class_count() {
a61af66fc99e Initial load
duke
parents:
diff changeset
62 return _classes_loaded_count->get_value() + _shared_classes_loaded_count->get_value();
a61af66fc99e Initial load
duke
parents:
diff changeset
63 }
a61af66fc99e Initial load
duke
parents:
diff changeset
64 static jlong unloaded_class_count() {
a61af66fc99e Initial load
duke
parents:
diff changeset
65 return _classes_unloaded_count->get_value() + _shared_classes_unloaded_count->get_value();
a61af66fc99e Initial load
duke
parents:
diff changeset
66 }
a61af66fc99e Initial load
duke
parents:
diff changeset
67 static jlong loaded_class_bytes() {
a61af66fc99e Initial load
duke
parents:
diff changeset
68 if (UsePerfData) {
a61af66fc99e Initial load
duke
parents:
diff changeset
69 return _classbytes_loaded->get_value() + _shared_classbytes_loaded->get_value();
a61af66fc99e Initial load
duke
parents:
diff changeset
70 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
71 return -1;
a61af66fc99e Initial load
duke
parents:
diff changeset
72 }
a61af66fc99e Initial load
duke
parents:
diff changeset
73 }
a61af66fc99e Initial load
duke
parents:
diff changeset
74 static jlong unloaded_class_bytes() {
a61af66fc99e Initial load
duke
parents:
diff changeset
75 if (UsePerfData) {
a61af66fc99e Initial load
duke
parents:
diff changeset
76 return _classbytes_unloaded->get_value() + _shared_classbytes_unloaded->get_value();
a61af66fc99e Initial load
duke
parents:
diff changeset
77 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
78 return -1;
a61af66fc99e Initial load
duke
parents:
diff changeset
79 }
a61af66fc99e Initial load
duke
parents:
diff changeset
80 }
a61af66fc99e Initial load
duke
parents:
diff changeset
81
a61af66fc99e Initial load
duke
parents:
diff changeset
82 static jlong loaded_shared_class_count() {
a61af66fc99e Initial load
duke
parents:
diff changeset
83 return _shared_classes_loaded_count->get_value();
a61af66fc99e Initial load
duke
parents:
diff changeset
84 }
a61af66fc99e Initial load
duke
parents:
diff changeset
85 static jlong unloaded_shared_class_count() {
a61af66fc99e Initial load
duke
parents:
diff changeset
86 return _shared_classes_unloaded_count->get_value();
a61af66fc99e Initial load
duke
parents:
diff changeset
87 }
a61af66fc99e Initial load
duke
parents:
diff changeset
88 static jlong loaded_shared_class_bytes() {
a61af66fc99e Initial load
duke
parents:
diff changeset
89 if (UsePerfData) {
a61af66fc99e Initial load
duke
parents:
diff changeset
90 return _shared_classbytes_loaded->get_value();
a61af66fc99e Initial load
duke
parents:
diff changeset
91 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
92 return -1;
a61af66fc99e Initial load
duke
parents:
diff changeset
93 }
a61af66fc99e Initial load
duke
parents:
diff changeset
94 }
a61af66fc99e Initial load
duke
parents:
diff changeset
95 static jlong unloaded_shared_class_bytes() {
a61af66fc99e Initial load
duke
parents:
diff changeset
96 if (UsePerfData) {
a61af66fc99e Initial load
duke
parents:
diff changeset
97 return _shared_classbytes_unloaded->get_value();
a61af66fc99e Initial load
duke
parents:
diff changeset
98 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
99 return -1;
a61af66fc99e Initial load
duke
parents:
diff changeset
100 }
a61af66fc99e Initial load
duke
parents:
diff changeset
101 }
a61af66fc99e Initial load
duke
parents:
diff changeset
102 static jlong class_method_data_size() {
a61af66fc99e Initial load
duke
parents:
diff changeset
103 return (UsePerfData ? _class_methods_size->get_value() : -1);
a61af66fc99e Initial load
duke
parents:
diff changeset
104 }
a61af66fc99e Initial load
duke
parents:
diff changeset
105
6854
fb19af007ffc 7189254: Change makefiles for more flexibility to override defaults
jprovino
parents: 6725
diff changeset
106 static void notify_class_loaded(InstanceKlass* k, bool shared_class)
fb19af007ffc 7189254: Change makefiles for more flexibility to override defaults
jprovino
parents: 6725
diff changeset
107 NOT_MANAGEMENT_RETURN;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
108 // All unloaded classes are non-shared
6854
fb19af007ffc 7189254: Change makefiles for more flexibility to override defaults
jprovino
parents: 6725
diff changeset
109 static void notify_class_unloaded(InstanceKlass* k) NOT_MANAGEMENT_RETURN;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
110 static void add_class_method_size(int size) {
6854
fb19af007ffc 7189254: Change makefiles for more flexibility to override defaults
jprovino
parents: 6725
diff changeset
111 #if INCLUDE_MANAGEMENT
0
a61af66fc99e Initial load
duke
parents:
diff changeset
112 if (UsePerfData) {
a61af66fc99e Initial load
duke
parents:
diff changeset
113 _class_methods_size->inc(size);
a61af66fc99e Initial load
duke
parents:
diff changeset
114 }
6854
fb19af007ffc 7189254: Change makefiles for more flexibility to override defaults
jprovino
parents: 6725
diff changeset
115 #endif // INCLUDE_MANAGEMENT
0
a61af66fc99e Initial load
duke
parents:
diff changeset
116 }
a61af66fc99e Initial load
duke
parents:
diff changeset
117 };
a61af66fc99e Initial load
duke
parents:
diff changeset
118
a61af66fc99e Initial load
duke
parents:
diff changeset
119 // FIXME: make this piece of code to be shared by M&M and JVMTI
a61af66fc99e Initial load
duke
parents:
diff changeset
120 class LoadedClassesEnumerator : public StackObj {
a61af66fc99e Initial load
duke
parents:
diff changeset
121 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
122 static GrowableArray<KlassHandle>* _loaded_classes;
a61af66fc99e Initial load
duke
parents:
diff changeset
123 // _current_thread is for creating a KlassHandle with a faster version constructor
a61af66fc99e Initial load
duke
parents:
diff changeset
124 static Thread* _current_thread;
a61af66fc99e Initial load
duke
parents:
diff changeset
125
a61af66fc99e Initial load
duke
parents:
diff changeset
126 GrowableArray<KlassHandle>* _klass_handle_array;
a61af66fc99e Initial load
duke
parents:
diff changeset
127
a61af66fc99e Initial load
duke
parents:
diff changeset
128 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
129 LoadedClassesEnumerator(Thread* cur_thread);
a61af66fc99e Initial load
duke
parents:
diff changeset
130
a61af66fc99e Initial load
duke
parents:
diff changeset
131 int num_loaded_classes() { return _klass_handle_array->length(); }
a61af66fc99e Initial load
duke
parents:
diff changeset
132 KlassHandle get_klass(int index) { return _klass_handle_array->at(index); }
a61af66fc99e Initial load
duke
parents:
diff changeset
133
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 1972
diff changeset
134 static void add_loaded_class(Klass* k) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
135 // FIXME: For now - don't include array klasses
a61af66fc99e Initial load
duke
parents:
diff changeset
136 // The spec is unclear at this point to count array klasses or not
a61af66fc99e Initial load
duke
parents:
diff changeset
137 // and also indirect creation of array of super class and secondaries
a61af66fc99e Initial load
duke
parents:
diff changeset
138 //
6983
070d523b96a7 8001471: Klass::cast() does nothing
hseigel
parents: 6854
diff changeset
139 // for (Klass* l = k; l != NULL; l = l->array_klass_or_null()) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
140 // KlassHandle h(_current_thread, l);
a61af66fc99e Initial load
duke
parents:
diff changeset
141 // _loaded_classes->append(h);
a61af66fc99e Initial load
duke
parents:
diff changeset
142 // }
a61af66fc99e Initial load
duke
parents:
diff changeset
143 KlassHandle h(_current_thread, k);
a61af66fc99e Initial load
duke
parents:
diff changeset
144 _loaded_classes->append(h);
a61af66fc99e Initial load
duke
parents:
diff changeset
145 }
a61af66fc99e Initial load
duke
parents:
diff changeset
146 };
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
147
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
148 #endif // SHARE_VM_SERVICES_CLASSLOADINGSERVICE_HPP