annotate src/share/vm/services/management.hpp @ 452:00b023ae2d78

6722113: CMS: Incorrect overflow handling during precleaning of Reference lists Summary: When we encounter marking stack overflow during precleaning of Reference lists, we were using the overflow list mechanism, which can cause problems on account of mutating the mark word of the header because of conflicts with mutator accesses and updates of that field. Instead we should use the usual mechanism for overflow handling in concurrent phases, namely dirtying of the card on which the overflowed object lies. Since precleaning effectively does a form of discovered list processing, albeit with discovery enabled, we needed to adjust some code to be correct in the face of interleaved processing and discovery. Reviewed-by: apetrusenko, jcoomes
author ysr
date Thu, 20 Nov 2008 12:27:41 -0800
parents a61af66fc99e
children c18cbe5936b8
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
a61af66fc99e Initial load
duke
parents:
diff changeset
2 * Copyright 2003-2005 Sun Microsystems, Inc. All Rights Reserved.
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 *
a61af66fc99e Initial load
duke
parents:
diff changeset
19 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
a61af66fc99e Initial load
duke
parents:
diff changeset
20 * CA 95054 USA or visit www.sun.com if you need additional information or
a61af66fc99e Initial load
duke
parents:
diff changeset
21 * have any questions.
a61af66fc99e Initial load
duke
parents:
diff changeset
22 *
a61af66fc99e Initial load
duke
parents:
diff changeset
23 */
a61af66fc99e Initial load
duke
parents:
diff changeset
24
a61af66fc99e Initial load
duke
parents:
diff changeset
25 class OopClosure;
a61af66fc99e Initial load
duke
parents:
diff changeset
26 class ThreadSnapshot;
a61af66fc99e Initial load
duke
parents:
diff changeset
27
a61af66fc99e Initial load
duke
parents:
diff changeset
28 class Management : public AllStatic {
a61af66fc99e Initial load
duke
parents:
diff changeset
29 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
30 static PerfVariable* _begin_vm_creation_time;
a61af66fc99e Initial load
duke
parents:
diff changeset
31 static PerfVariable* _end_vm_creation_time;
a61af66fc99e Initial load
duke
parents:
diff changeset
32 static PerfVariable* _vm_init_done_time;
a61af66fc99e Initial load
duke
parents:
diff changeset
33 static jmmOptionalSupport _optional_support;
a61af66fc99e Initial load
duke
parents:
diff changeset
34 static TimeStamp _stamp; // Timestamp since vm init done time
a61af66fc99e Initial load
duke
parents:
diff changeset
35
a61af66fc99e Initial load
duke
parents:
diff changeset
36 // Management klasses
a61af66fc99e Initial load
duke
parents:
diff changeset
37 static klassOop _sensor_klass;
a61af66fc99e Initial load
duke
parents:
diff changeset
38 static klassOop _threadInfo_klass;
a61af66fc99e Initial load
duke
parents:
diff changeset
39 static klassOop _memoryUsage_klass;
a61af66fc99e Initial load
duke
parents:
diff changeset
40 static klassOop _memoryPoolMXBean_klass;
a61af66fc99e Initial load
duke
parents:
diff changeset
41 static klassOop _memoryManagerMXBean_klass;
a61af66fc99e Initial load
duke
parents:
diff changeset
42 static klassOop _garbageCollectorMXBean_klass;
a61af66fc99e Initial load
duke
parents:
diff changeset
43 static klassOop _managementFactory_klass;
a61af66fc99e Initial load
duke
parents:
diff changeset
44
a61af66fc99e Initial load
duke
parents:
diff changeset
45 static klassOop load_and_initialize_klass(symbolHandle sh, TRAPS);
a61af66fc99e Initial load
duke
parents:
diff changeset
46
a61af66fc99e Initial load
duke
parents:
diff changeset
47 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
48 static void init();
a61af66fc99e Initial load
duke
parents:
diff changeset
49 static void initialize(TRAPS);
a61af66fc99e Initial load
duke
parents:
diff changeset
50
a61af66fc99e Initial load
duke
parents:
diff changeset
51 static jlong ticks_to_ms(jlong ticks);
a61af66fc99e Initial load
duke
parents:
diff changeset
52 static jlong timestamp();
a61af66fc99e Initial load
duke
parents:
diff changeset
53
a61af66fc99e Initial load
duke
parents:
diff changeset
54 static void oops_do(OopClosure* f);
a61af66fc99e Initial load
duke
parents:
diff changeset
55 static void* get_jmm_interface(int version);
a61af66fc99e Initial load
duke
parents:
diff changeset
56 static void get_optional_support(jmmOptionalSupport* support);
a61af66fc99e Initial load
duke
parents:
diff changeset
57
a61af66fc99e Initial load
duke
parents:
diff changeset
58 static void get_loaded_classes(JavaThread* cur_thread, GrowableArray<KlassHandle>* klass_handle_array);
a61af66fc99e Initial load
duke
parents:
diff changeset
59
a61af66fc99e Initial load
duke
parents:
diff changeset
60 static void record_vm_startup_time(jlong begin, jlong duration);
a61af66fc99e Initial load
duke
parents:
diff changeset
61 static void record_vm_init_completed() {
a61af66fc99e Initial load
duke
parents:
diff changeset
62 // Initialize the timestamp to get the current time
a61af66fc99e Initial load
duke
parents:
diff changeset
63 _vm_init_done_time->set_value(os::javaTimeMillis());
a61af66fc99e Initial load
duke
parents:
diff changeset
64
a61af66fc99e Initial load
duke
parents:
diff changeset
65 // Update the timestamp to the vm init done time
a61af66fc99e Initial load
duke
parents:
diff changeset
66 _stamp.update();
a61af66fc99e Initial load
duke
parents:
diff changeset
67 }
a61af66fc99e Initial load
duke
parents:
diff changeset
68
a61af66fc99e Initial load
duke
parents:
diff changeset
69 static jlong vm_init_done_time() {
a61af66fc99e Initial load
duke
parents:
diff changeset
70 return _vm_init_done_time->get_value();
a61af66fc99e Initial load
duke
parents:
diff changeset
71 }
a61af66fc99e Initial load
duke
parents:
diff changeset
72
a61af66fc99e Initial load
duke
parents:
diff changeset
73 // methods to return a klassOop.
a61af66fc99e Initial load
duke
parents:
diff changeset
74 static klassOop java_lang_management_ThreadInfo_klass(TRAPS);
a61af66fc99e Initial load
duke
parents:
diff changeset
75 static klassOop java_lang_management_MemoryUsage_klass(TRAPS);
a61af66fc99e Initial load
duke
parents:
diff changeset
76 static klassOop java_lang_management_MemoryPoolMXBean_klass(TRAPS);
a61af66fc99e Initial load
duke
parents:
diff changeset
77 static klassOop java_lang_management_MemoryManagerMXBean_klass(TRAPS);
a61af66fc99e Initial load
duke
parents:
diff changeset
78 static klassOop java_lang_management_GarbageCollectorMXBean_klass(TRAPS);
a61af66fc99e Initial load
duke
parents:
diff changeset
79 static klassOop sun_management_Sensor_klass(TRAPS);
a61af66fc99e Initial load
duke
parents:
diff changeset
80 static klassOop sun_management_ManagementFactory_klass(TRAPS);
a61af66fc99e Initial load
duke
parents:
diff changeset
81
a61af66fc99e Initial load
duke
parents:
diff changeset
82 static instanceOop create_thread_info_instance(ThreadSnapshot* snapshot, TRAPS);
a61af66fc99e Initial load
duke
parents:
diff changeset
83 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
84 };
a61af66fc99e Initial load
duke
parents:
diff changeset
85
a61af66fc99e Initial load
duke
parents:
diff changeset
86 class TraceVmCreationTime : public StackObj {
a61af66fc99e Initial load
duke
parents:
diff changeset
87 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
88 TimeStamp _timer;
a61af66fc99e Initial load
duke
parents:
diff changeset
89 jlong _begin_time;
a61af66fc99e Initial load
duke
parents:
diff changeset
90
a61af66fc99e Initial load
duke
parents:
diff changeset
91 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
92 TraceVmCreationTime() {}
a61af66fc99e Initial load
duke
parents:
diff changeset
93 ~TraceVmCreationTime() {}
a61af66fc99e Initial load
duke
parents:
diff changeset
94
a61af66fc99e Initial load
duke
parents:
diff changeset
95 void start()
a61af66fc99e Initial load
duke
parents:
diff changeset
96 { _timer.update_to(0); _begin_time = os::javaTimeMillis(); }
a61af66fc99e Initial load
duke
parents:
diff changeset
97
a61af66fc99e Initial load
duke
parents:
diff changeset
98 /**
a61af66fc99e Initial load
duke
parents:
diff changeset
99 * Only call this if initialization completes successfully; it will
a61af66fc99e Initial load
duke
parents:
diff changeset
100 * crash if PerfMemory_exit() has already been called (usually by
a61af66fc99e Initial load
duke
parents:
diff changeset
101 * os::shutdown() when there was an initialization failure).
a61af66fc99e Initial load
duke
parents:
diff changeset
102 */
a61af66fc99e Initial load
duke
parents:
diff changeset
103 void end()
a61af66fc99e Initial load
duke
parents:
diff changeset
104 { Management::record_vm_startup_time(_begin_time, _timer.milliseconds()); }
a61af66fc99e Initial load
duke
parents:
diff changeset
105
a61af66fc99e Initial load
duke
parents:
diff changeset
106 };