annotate src/share/vm/services/management.hpp @ 10215:31a4e55f8c9d

8004095: Add support for JMX interface to Diagnostic Framework and Commands Reviewed-by: acorn, sla
author fparain
date Fri, 03 May 2013 05:05:31 -0700
parents fb19af007ffc
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
10215
31a4e55f8c9d 8004095: Add support for JMX interface to Diagnostic Framework and Commands
fparain
parents: 6854
diff changeset
2 * Copyright (c) 2003, 2013, 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_MANAGEMENT_HPP
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
26 #define SHARE_VM_SERVICES_MANAGEMENT_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 "memory/allocation.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
29 #include "runtime/handles.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
30 #include "runtime/timer.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
31 #include "services/jmm.h"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
32
0
a61af66fc99e Initial load
duke
parents:
diff changeset
33 class OopClosure;
a61af66fc99e Initial load
duke
parents:
diff changeset
34 class ThreadSnapshot;
a61af66fc99e Initial load
duke
parents:
diff changeset
35
a61af66fc99e Initial load
duke
parents:
diff changeset
36 class Management : public AllStatic {
a61af66fc99e Initial load
duke
parents:
diff changeset
37 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
38 static PerfVariable* _begin_vm_creation_time;
a61af66fc99e Initial load
duke
parents:
diff changeset
39 static PerfVariable* _end_vm_creation_time;
a61af66fc99e Initial load
duke
parents:
diff changeset
40 static PerfVariable* _vm_init_done_time;
a61af66fc99e Initial load
duke
parents:
diff changeset
41 static jmmOptionalSupport _optional_support;
a61af66fc99e Initial load
duke
parents:
diff changeset
42 static TimeStamp _stamp; // Timestamp since vm init done time
a61af66fc99e Initial load
duke
parents:
diff changeset
43
a61af66fc99e Initial load
duke
parents:
diff changeset
44 // Management klasses
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 4753
diff changeset
45 static Klass* _sensor_klass;
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 4753
diff changeset
46 static Klass* _threadInfo_klass;
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 4753
diff changeset
47 static Klass* _memoryUsage_klass;
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 4753
diff changeset
48 static Klass* _memoryPoolMXBean_klass;
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 4753
diff changeset
49 static Klass* _memoryManagerMXBean_klass;
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 4753
diff changeset
50 static Klass* _garbageCollectorMXBean_klass;
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 4753
diff changeset
51 static Klass* _managementFactory_klass;
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 4753
diff changeset
52 static Klass* _garbageCollectorImpl_klass;
10215
31a4e55f8c9d 8004095: Add support for JMX interface to Diagnostic Framework and Commands
fparain
parents: 6854
diff changeset
53 static Klass* _diagnosticCommandImpl_klass;
31a4e55f8c9d 8004095: Add support for JMX interface to Diagnostic Framework and Commands
fparain
parents: 6854
diff changeset
54 static Klass* _managementFactoryHelper_klass;
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 4753
diff changeset
55 static Klass* _gcInfo_klass;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
56
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 4753
diff changeset
57 static Klass* load_and_initialize_klass(Symbol* sh, TRAPS);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
58
a61af66fc99e Initial load
duke
parents:
diff changeset
59 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
60 static void init();
a61af66fc99e Initial load
duke
parents:
diff changeset
61 static void initialize(TRAPS);
a61af66fc99e Initial load
duke
parents:
diff changeset
62
6854
fb19af007ffc 7189254: Change makefiles for more flexibility to override defaults
jprovino
parents: 6725
diff changeset
63 static jlong ticks_to_ms(jlong ticks) NOT_MANAGEMENT_RETURN_(0L);
fb19af007ffc 7189254: Change makefiles for more flexibility to override defaults
jprovino
parents: 6725
diff changeset
64 static jlong timestamp() NOT_MANAGEMENT_RETURN_(0L);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
65
6854
fb19af007ffc 7189254: Change makefiles for more flexibility to override defaults
jprovino
parents: 6725
diff changeset
66 static void oops_do(OopClosure* f) NOT_MANAGEMENT_RETURN;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
67 static void* get_jmm_interface(int version);
a61af66fc99e Initial load
duke
parents:
diff changeset
68 static void get_optional_support(jmmOptionalSupport* support);
a61af66fc99e Initial load
duke
parents:
diff changeset
69
a61af66fc99e Initial load
duke
parents:
diff changeset
70 static void get_loaded_classes(JavaThread* cur_thread, GrowableArray<KlassHandle>* klass_handle_array);
a61af66fc99e Initial load
duke
parents:
diff changeset
71
6854
fb19af007ffc 7189254: Change makefiles for more flexibility to override defaults
jprovino
parents: 6725
diff changeset
72 static void record_vm_startup_time(jlong begin, jlong duration)
fb19af007ffc 7189254: Change makefiles for more flexibility to override defaults
jprovino
parents: 6725
diff changeset
73 NOT_MANAGEMENT_RETURN;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
74 static void record_vm_init_completed() {
a61af66fc99e Initial load
duke
parents:
diff changeset
75 // Initialize the timestamp to get the current time
a61af66fc99e Initial load
duke
parents:
diff changeset
76 _vm_init_done_time->set_value(os::javaTimeMillis());
a61af66fc99e Initial load
duke
parents:
diff changeset
77
a61af66fc99e Initial load
duke
parents:
diff changeset
78 // Update the timestamp to the vm init done time
a61af66fc99e Initial load
duke
parents:
diff changeset
79 _stamp.update();
a61af66fc99e Initial load
duke
parents:
diff changeset
80 }
a61af66fc99e Initial load
duke
parents:
diff changeset
81
4753
2e0ef19fc891 7126480: Make JVM start time in milliseconds since the Java epoch available
phh
parents: 3356
diff changeset
82 static jlong begin_vm_creation_time() {
2e0ef19fc891 7126480: Make JVM start time in milliseconds since the Java epoch available
phh
parents: 3356
diff changeset
83 return _begin_vm_creation_time->get_value();
2e0ef19fc891 7126480: Make JVM start time in milliseconds since the Java epoch available
phh
parents: 3356
diff changeset
84 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
85 static jlong vm_init_done_time() {
a61af66fc99e Initial load
duke
parents:
diff changeset
86 return _vm_init_done_time->get_value();
a61af66fc99e Initial load
duke
parents:
diff changeset
87 }
a61af66fc99e Initial load
duke
parents:
diff changeset
88
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 4753
diff changeset
89 // methods to return a Klass*.
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 4753
diff changeset
90 static Klass* java_lang_management_ThreadInfo_klass(TRAPS);
6854
fb19af007ffc 7189254: Change makefiles for more flexibility to override defaults
jprovino
parents: 6725
diff changeset
91 static Klass* java_lang_management_MemoryUsage_klass(TRAPS)
fb19af007ffc 7189254: Change makefiles for more flexibility to override defaults
jprovino
parents: 6725
diff changeset
92 NOT_MANAGEMENT_RETURN_(NULL);
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 4753
diff changeset
93 static Klass* java_lang_management_MemoryPoolMXBean_klass(TRAPS);
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 4753
diff changeset
94 static Klass* java_lang_management_MemoryManagerMXBean_klass(TRAPS);
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 4753
diff changeset
95 static Klass* java_lang_management_GarbageCollectorMXBean_klass(TRAPS);
6854
fb19af007ffc 7189254: Change makefiles for more flexibility to override defaults
jprovino
parents: 6725
diff changeset
96 static Klass* sun_management_Sensor_klass(TRAPS)
fb19af007ffc 7189254: Change makefiles for more flexibility to override defaults
jprovino
parents: 6725
diff changeset
97 NOT_MANAGEMENT_RETURN_(NULL);
fb19af007ffc 7189254: Change makefiles for more flexibility to override defaults
jprovino
parents: 6725
diff changeset
98 static Klass* sun_management_ManagementFactory_klass(TRAPS)
fb19af007ffc 7189254: Change makefiles for more flexibility to override defaults
jprovino
parents: 6725
diff changeset
99 NOT_MANAGEMENT_RETURN_(NULL);
fb19af007ffc 7189254: Change makefiles for more flexibility to override defaults
jprovino
parents: 6725
diff changeset
100 static Klass* sun_management_GarbageCollectorImpl_klass(TRAPS)
fb19af007ffc 7189254: Change makefiles for more flexibility to override defaults
jprovino
parents: 6725
diff changeset
101 NOT_MANAGEMENT_RETURN_(NULL);
fb19af007ffc 7189254: Change makefiles for more flexibility to override defaults
jprovino
parents: 6725
diff changeset
102 static Klass* com_sun_management_GcInfo_klass(TRAPS)
fb19af007ffc 7189254: Change makefiles for more flexibility to override defaults
jprovino
parents: 6725
diff changeset
103 NOT_MANAGEMENT_RETURN_(NULL);
10215
31a4e55f8c9d 8004095: Add support for JMX interface to Diagnostic Framework and Commands
fparain
parents: 6854
diff changeset
104 static Klass* sun_management_DiagnosticCommandImpl_klass(TRAPS)
31a4e55f8c9d 8004095: Add support for JMX interface to Diagnostic Framework and Commands
fparain
parents: 6854
diff changeset
105 NOT_MANAGEMENT_RETURN_(NULL);
31a4e55f8c9d 8004095: Add support for JMX interface to Diagnostic Framework and Commands
fparain
parents: 6854
diff changeset
106 static Klass* sun_management_ManagementFactoryHelper_klass(TRAPS)
31a4e55f8c9d 8004095: Add support for JMX interface to Diagnostic Framework and Commands
fparain
parents: 6854
diff changeset
107 NOT_MANAGEMENT_RETURN_(NULL);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
108
a61af66fc99e Initial load
duke
parents:
diff changeset
109 static instanceOop create_thread_info_instance(ThreadSnapshot* snapshot, TRAPS);
a61af66fc99e Initial load
duke
parents:
diff changeset
110 static instanceOop create_thread_info_instance(ThreadSnapshot* snapshot, objArrayHandle monitors_array, typeArrayHandle depths_array, objArrayHandle synchronizers_array, TRAPS);
a61af66fc99e Initial load
duke
parents:
diff changeset
111 };
a61af66fc99e Initial load
duke
parents:
diff changeset
112
a61af66fc99e Initial load
duke
parents:
diff changeset
113 class TraceVmCreationTime : public StackObj {
a61af66fc99e Initial load
duke
parents:
diff changeset
114 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
115 TimeStamp _timer;
a61af66fc99e Initial load
duke
parents:
diff changeset
116 jlong _begin_time;
a61af66fc99e Initial load
duke
parents:
diff changeset
117
a61af66fc99e Initial load
duke
parents:
diff changeset
118 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
119 TraceVmCreationTime() {}
a61af66fc99e Initial load
duke
parents:
diff changeset
120 ~TraceVmCreationTime() {}
a61af66fc99e Initial load
duke
parents:
diff changeset
121
a61af66fc99e Initial load
duke
parents:
diff changeset
122 void start()
a61af66fc99e Initial load
duke
parents:
diff changeset
123 { _timer.update_to(0); _begin_time = os::javaTimeMillis(); }
a61af66fc99e Initial load
duke
parents:
diff changeset
124
a61af66fc99e Initial load
duke
parents:
diff changeset
125 /**
a61af66fc99e Initial load
duke
parents:
diff changeset
126 * Only call this if initialization completes successfully; it will
a61af66fc99e Initial load
duke
parents:
diff changeset
127 * crash if PerfMemory_exit() has already been called (usually by
a61af66fc99e Initial load
duke
parents:
diff changeset
128 * os::shutdown() when there was an initialization failure).
a61af66fc99e Initial load
duke
parents:
diff changeset
129 */
a61af66fc99e Initial load
duke
parents:
diff changeset
130 void end()
a61af66fc99e Initial load
duke
parents:
diff changeset
131 { Management::record_vm_startup_time(_begin_time, _timer.milliseconds()); }
a61af66fc99e Initial load
duke
parents:
diff changeset
132
a61af66fc99e Initial load
duke
parents:
diff changeset
133 };
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
134
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
135 #endif // SHARE_VM_SERVICES_MANAGEMENT_HPP