Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
PojavLauncherTeam
GitHub Repository: PojavLauncherTeam/openjdk-multiarch-jdk8u
Path: blob/aarch64-shenandoah-jdk8u272-b10/hotspot/src/share/vm/services/management.cpp
32285 views
1
/*
2
* Copyright (c) 2003, 2019, Oracle and/or its affiliates. All rights reserved.
3
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4
*
5
* This code is free software; you can redistribute it and/or modify it
6
* under the terms of the GNU General Public License version 2 only, as
7
* published by the Free Software Foundation.
8
*
9
* This code is distributed in the hope that it will be useful, but WITHOUT
10
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
12
* version 2 for more details (a copy is included in the LICENSE file that
13
* accompanied this code).
14
*
15
* You should have received a copy of the GNU General Public License version
16
* 2 along with this work; if not, write to the Free Software Foundation,
17
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
18
*
19
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20
* or visit www.oracle.com if you need additional information or have any
21
* questions.
22
*
23
*/
24
25
#include "precompiled.hpp"
26
#include "classfile/systemDictionary.hpp"
27
#include "compiler/compileBroker.hpp"
28
#include "memory/iterator.hpp"
29
#include "memory/oopFactory.hpp"
30
#include "memory/resourceArea.hpp"
31
#include "oops/klass.hpp"
32
#include "oops/objArrayKlass.hpp"
33
#include "oops/oop.inline.hpp"
34
#include "runtime/arguments.hpp"
35
#include "runtime/globals.hpp"
36
#include "runtime/handles.inline.hpp"
37
#include "runtime/interfaceSupport.hpp"
38
#include "runtime/javaCalls.hpp"
39
#include "runtime/jniHandles.hpp"
40
#include "runtime/os.hpp"
41
#include "runtime/serviceThread.hpp"
42
#include "runtime/thread.inline.hpp"
43
#include "services/classLoadingService.hpp"
44
#include "services/diagnosticCommand.hpp"
45
#include "services/diagnosticFramework.hpp"
46
#include "services/heapDumper.hpp"
47
#include "services/jmm.h"
48
#include "services/lowMemoryDetector.hpp"
49
#include "services/gcNotifier.hpp"
50
#include "services/nmtDCmd.hpp"
51
#include "services/management.hpp"
52
#include "services/memoryManager.hpp"
53
#include "services/memoryPool.hpp"
54
#include "services/memoryService.hpp"
55
#include "services/runtimeService.hpp"
56
#include "services/threadService.hpp"
57
#include "utilities/macros.hpp"
58
59
PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC
60
61
PerfVariable* Management::_begin_vm_creation_time = NULL;
62
PerfVariable* Management::_end_vm_creation_time = NULL;
63
PerfVariable* Management::_vm_init_done_time = NULL;
64
65
Klass* Management::_sensor_klass = NULL;
66
Klass* Management::_threadInfo_klass = NULL;
67
Klass* Management::_memoryUsage_klass = NULL;
68
Klass* Management::_memoryPoolMXBean_klass = NULL;
69
Klass* Management::_memoryManagerMXBean_klass = NULL;
70
Klass* Management::_garbageCollectorMXBean_klass = NULL;
71
Klass* Management::_managementFactory_klass = NULL;
72
Klass* Management::_garbageCollectorImpl_klass = NULL;
73
Klass* Management::_gcInfo_klass = NULL;
74
Klass* Management::_diagnosticCommandImpl_klass = NULL;
75
Klass* Management::_managementFactoryHelper_klass = NULL;
76
77
78
jmmOptionalSupport Management::_optional_support = {0};
79
TimeStamp Management::_stamp;
80
81
void management_init() {
82
#if INCLUDE_MANAGEMENT
83
Management::init();
84
ThreadService::init();
85
RuntimeService::init();
86
ClassLoadingService::init();
87
#else
88
ThreadService::init();
89
// Make sure the VM version is initialized
90
// This is normally called by RuntimeService::init().
91
// Since that is conditionalized out, we need to call it here.
92
Abstract_VM_Version::initialize();
93
#endif // INCLUDE_MANAGEMENT
94
}
95
96
#if INCLUDE_MANAGEMENT
97
98
void Management::init() {
99
EXCEPTION_MARK;
100
101
// These counters are for java.lang.management API support.
102
// They are created even if -XX:-UsePerfData is set and in
103
// that case, they will be allocated on C heap.
104
105
_begin_vm_creation_time =
106
PerfDataManager::create_variable(SUN_RT, "createVmBeginTime",
107
PerfData::U_None, CHECK);
108
109
_end_vm_creation_time =
110
PerfDataManager::create_variable(SUN_RT, "createVmEndTime",
111
PerfData::U_None, CHECK);
112
113
_vm_init_done_time =
114
PerfDataManager::create_variable(SUN_RT, "vmInitDoneTime",
115
PerfData::U_None, CHECK);
116
117
// Initialize optional support
118
_optional_support.isLowMemoryDetectionSupported = 1;
119
_optional_support.isCompilationTimeMonitoringSupported = 1;
120
_optional_support.isThreadContentionMonitoringSupported = 1;
121
122
if (os::is_thread_cpu_time_supported()) {
123
_optional_support.isCurrentThreadCpuTimeSupported = 1;
124
_optional_support.isOtherThreadCpuTimeSupported = 1;
125
} else {
126
_optional_support.isCurrentThreadCpuTimeSupported = 0;
127
_optional_support.isOtherThreadCpuTimeSupported = 0;
128
}
129
130
_optional_support.isBootClassPathSupported = 1;
131
_optional_support.isObjectMonitorUsageSupported = 1;
132
#if INCLUDE_SERVICES
133
// This depends on the heap inspector
134
_optional_support.isSynchronizerUsageSupported = 1;
135
#endif // INCLUDE_SERVICES
136
_optional_support.isThreadAllocatedMemorySupported = 1;
137
_optional_support.isRemoteDiagnosticCommandsSupported = 1;
138
139
// Registration of the diagnostic commands
140
DCmdRegistrant::register_dcmds();
141
DCmdRegistrant::register_dcmds_ext();
142
uint32_t full_export = DCmd_Source_Internal | DCmd_Source_AttachAPI
143
| DCmd_Source_MBean;
144
DCmdFactory::register_DCmdFactory(new DCmdFactoryImpl<NMTDCmd>(full_export, true, false));
145
}
146
147
void Management::initialize(TRAPS) {
148
// Start the service thread
149
ServiceThread::initialize();
150
151
if (ManagementServer) {
152
ResourceMark rm(THREAD);
153
HandleMark hm(THREAD);
154
155
// Load and initialize the sun.management.Agent class
156
// invoke startAgent method to start the management server
157
Handle loader = Handle(THREAD, SystemDictionary::java_system_loader());
158
Klass* k = SystemDictionary::resolve_or_null(vmSymbols::sun_management_Agent(),
159
loader,
160
Handle(),
161
THREAD);
162
if (k == NULL) {
163
vm_exit_during_initialization("Management agent initialization failure: "
164
"class sun.management.Agent not found.");
165
}
166
instanceKlassHandle ik (THREAD, k);
167
168
JavaValue result(T_VOID);
169
JavaCalls::call_static(&result,
170
ik,
171
vmSymbols::startAgent_name(),
172
vmSymbols::void_method_signature(),
173
CHECK);
174
}
175
}
176
177
void Management::get_optional_support(jmmOptionalSupport* support) {
178
memcpy(support, &_optional_support, sizeof(jmmOptionalSupport));
179
}
180
181
Klass* Management::load_and_initialize_klass(Symbol* sh, TRAPS) {
182
Klass* k = SystemDictionary::resolve_or_fail(sh, true, CHECK_NULL);
183
instanceKlassHandle ik (THREAD, k);
184
if (ik->should_be_initialized()) {
185
ik->initialize(CHECK_NULL);
186
}
187
// If these classes change to not be owned by the boot loader, they need
188
// to be walked to keep their class loader alive in oops_do.
189
assert(ik->class_loader() == NULL, "need to follow in oops_do");
190
return ik();
191
}
192
193
void Management::record_vm_startup_time(jlong begin, jlong duration) {
194
// if the performance counter is not initialized,
195
// then vm initialization failed; simply return.
196
if (_begin_vm_creation_time == NULL) return;
197
198
_begin_vm_creation_time->set_value(begin);
199
_end_vm_creation_time->set_value(begin + duration);
200
PerfMemory::set_accessible(true);
201
}
202
203
jlong Management::timestamp() {
204
TimeStamp t;
205
t.update();
206
return t.ticks() - _stamp.ticks();
207
}
208
209
void Management::oops_do(OopClosure* f) {
210
MemoryService::oops_do(f);
211
ThreadService::oops_do(f);
212
}
213
214
Klass* Management::java_lang_management_ThreadInfo_klass(TRAPS) {
215
if (_threadInfo_klass == NULL) {
216
_threadInfo_klass = load_and_initialize_klass(vmSymbols::java_lang_management_ThreadInfo(), CHECK_NULL);
217
}
218
return _threadInfo_klass;
219
}
220
221
Klass* Management::java_lang_management_MemoryUsage_klass(TRAPS) {
222
if (_memoryUsage_klass == NULL) {
223
_memoryUsage_klass = load_and_initialize_klass(vmSymbols::java_lang_management_MemoryUsage(), CHECK_NULL);
224
}
225
return _memoryUsage_klass;
226
}
227
228
Klass* Management::java_lang_management_MemoryPoolMXBean_klass(TRAPS) {
229
if (_memoryPoolMXBean_klass == NULL) {
230
_memoryPoolMXBean_klass = load_and_initialize_klass(vmSymbols::java_lang_management_MemoryPoolMXBean(), CHECK_NULL);
231
}
232
return _memoryPoolMXBean_klass;
233
}
234
235
Klass* Management::java_lang_management_MemoryManagerMXBean_klass(TRAPS) {
236
if (_memoryManagerMXBean_klass == NULL) {
237
_memoryManagerMXBean_klass = load_and_initialize_klass(vmSymbols::java_lang_management_MemoryManagerMXBean(), CHECK_NULL);
238
}
239
return _memoryManagerMXBean_klass;
240
}
241
242
Klass* Management::java_lang_management_GarbageCollectorMXBean_klass(TRAPS) {
243
if (_garbageCollectorMXBean_klass == NULL) {
244
_garbageCollectorMXBean_klass = load_and_initialize_klass(vmSymbols::java_lang_management_GarbageCollectorMXBean(), CHECK_NULL);
245
}
246
return _garbageCollectorMXBean_klass;
247
}
248
249
Klass* Management::sun_management_Sensor_klass(TRAPS) {
250
if (_sensor_klass == NULL) {
251
_sensor_klass = load_and_initialize_klass(vmSymbols::sun_management_Sensor(), CHECK_NULL);
252
}
253
return _sensor_klass;
254
}
255
256
Klass* Management::sun_management_ManagementFactory_klass(TRAPS) {
257
if (_managementFactory_klass == NULL) {
258
_managementFactory_klass = load_and_initialize_klass(vmSymbols::sun_management_ManagementFactory(), CHECK_NULL);
259
}
260
return _managementFactory_klass;
261
}
262
263
Klass* Management::sun_management_GarbageCollectorImpl_klass(TRAPS) {
264
if (_garbageCollectorImpl_klass == NULL) {
265
_garbageCollectorImpl_klass = load_and_initialize_klass(vmSymbols::sun_management_GarbageCollectorImpl(), CHECK_NULL);
266
}
267
return _garbageCollectorImpl_klass;
268
}
269
270
Klass* Management::com_sun_management_GcInfo_klass(TRAPS) {
271
if (_gcInfo_klass == NULL) {
272
_gcInfo_klass = load_and_initialize_klass(vmSymbols::com_sun_management_GcInfo(), CHECK_NULL);
273
}
274
return _gcInfo_klass;
275
}
276
277
Klass* Management::sun_management_DiagnosticCommandImpl_klass(TRAPS) {
278
if (_diagnosticCommandImpl_klass == NULL) {
279
_diagnosticCommandImpl_klass = load_and_initialize_klass(vmSymbols::sun_management_DiagnosticCommandImpl(), CHECK_NULL);
280
}
281
return _diagnosticCommandImpl_klass;
282
}
283
284
Klass* Management::sun_management_ManagementFactoryHelper_klass(TRAPS) {
285
if (_managementFactoryHelper_klass == NULL) {
286
_managementFactoryHelper_klass = load_and_initialize_klass(vmSymbols::sun_management_ManagementFactoryHelper(), CHECK_NULL);
287
}
288
return _managementFactoryHelper_klass;
289
}
290
291
static void initialize_ThreadInfo_constructor_arguments(JavaCallArguments* args, ThreadSnapshot* snapshot, TRAPS) {
292
Handle snapshot_thread(THREAD, snapshot->threadObj());
293
294
jlong contended_time;
295
jlong waited_time;
296
if (ThreadService::is_thread_monitoring_contention()) {
297
contended_time = Management::ticks_to_ms(snapshot->contended_enter_ticks());
298
waited_time = Management::ticks_to_ms(snapshot->monitor_wait_ticks() + snapshot->sleep_ticks());
299
} else {
300
// set them to -1 if thread contention monitoring is disabled.
301
contended_time = max_julong;
302
waited_time = max_julong;
303
}
304
305
int thread_status = snapshot->thread_status();
306
assert((thread_status & JMM_THREAD_STATE_FLAG_MASK) == 0, "Flags already set in thread_status in Thread object");
307
if (snapshot->is_ext_suspended()) {
308
thread_status |= JMM_THREAD_STATE_FLAG_SUSPENDED;
309
}
310
if (snapshot->is_in_native()) {
311
thread_status |= JMM_THREAD_STATE_FLAG_NATIVE;
312
}
313
314
ThreadStackTrace* st = snapshot->get_stack_trace();
315
Handle stacktrace_h;
316
if (st != NULL) {
317
stacktrace_h = st->allocate_fill_stack_trace_element_array(CHECK);
318
} else {
319
stacktrace_h = Handle();
320
}
321
322
args->push_oop(snapshot_thread);
323
args->push_int(thread_status);
324
args->push_oop(Handle(THREAD, snapshot->blocker_object()));
325
args->push_oop(Handle(THREAD, snapshot->blocker_object_owner()));
326
args->push_long(snapshot->contended_enter_count());
327
args->push_long(contended_time);
328
args->push_long(snapshot->monitor_wait_count() + snapshot->sleep_count());
329
args->push_long(waited_time);
330
args->push_oop(stacktrace_h);
331
}
332
333
// Helper function to construct a ThreadInfo object
334
instanceOop Management::create_thread_info_instance(ThreadSnapshot* snapshot, TRAPS) {
335
Klass* k = Management::java_lang_management_ThreadInfo_klass(CHECK_NULL);
336
instanceKlassHandle ik (THREAD, k);
337
338
JavaValue result(T_VOID);
339
JavaCallArguments args(14);
340
341
// First allocate a ThreadObj object and
342
// push the receiver as the first argument
343
Handle element = ik->allocate_instance_handle(CHECK_NULL);
344
args.push_oop(element);
345
346
// initialize the arguments for the ThreadInfo constructor
347
initialize_ThreadInfo_constructor_arguments(&args, snapshot, CHECK_NULL);
348
349
// Call ThreadInfo constructor with no locked monitors and synchronizers
350
JavaCalls::call_special(&result,
351
ik,
352
vmSymbols::object_initializer_name(),
353
vmSymbols::java_lang_management_ThreadInfo_constructor_signature(),
354
&args,
355
CHECK_NULL);
356
357
return (instanceOop) element();
358
}
359
360
instanceOop Management::create_thread_info_instance(ThreadSnapshot* snapshot,
361
objArrayHandle monitors_array,
362
typeArrayHandle depths_array,
363
objArrayHandle synchronizers_array,
364
TRAPS) {
365
Klass* k = Management::java_lang_management_ThreadInfo_klass(CHECK_NULL);
366
instanceKlassHandle ik (THREAD, k);
367
368
JavaValue result(T_VOID);
369
JavaCallArguments args(17);
370
371
// First allocate a ThreadObj object and
372
// push the receiver as the first argument
373
Handle element = ik->allocate_instance_handle(CHECK_NULL);
374
args.push_oop(element);
375
376
// initialize the arguments for the ThreadInfo constructor
377
initialize_ThreadInfo_constructor_arguments(&args, snapshot, CHECK_NULL);
378
379
// push the locked monitors and synchronizers in the arguments
380
args.push_oop(monitors_array);
381
args.push_oop(depths_array);
382
args.push_oop(synchronizers_array);
383
384
// Call ThreadInfo constructor with locked monitors and synchronizers
385
JavaCalls::call_special(&result,
386
ik,
387
vmSymbols::object_initializer_name(),
388
vmSymbols::java_lang_management_ThreadInfo_with_locks_constructor_signature(),
389
&args,
390
CHECK_NULL);
391
392
return (instanceOop) element();
393
}
394
395
396
static GCMemoryManager* get_gc_memory_manager_from_jobject(jobject mgr, TRAPS) {
397
if (mgr == NULL) {
398
THROW_(vmSymbols::java_lang_NullPointerException(), NULL);
399
}
400
oop mgr_obj = JNIHandles::resolve(mgr);
401
instanceHandle h(THREAD, (instanceOop) mgr_obj);
402
403
Klass* k = Management::java_lang_management_GarbageCollectorMXBean_klass(CHECK_NULL);
404
if (!h->is_a(k)) {
405
THROW_MSG_(vmSymbols::java_lang_IllegalArgumentException(),
406
"the object is not an instance of java.lang.management.GarbageCollectorMXBean class",
407
NULL);
408
}
409
410
MemoryManager* gc = MemoryService::get_memory_manager(h);
411
if (gc == NULL || !gc->is_gc_memory_manager()) {
412
THROW_MSG_(vmSymbols::java_lang_IllegalArgumentException(),
413
"Invalid GC memory manager",
414
NULL);
415
}
416
return (GCMemoryManager*) gc;
417
}
418
419
static MemoryPool* get_memory_pool_from_jobject(jobject obj, TRAPS) {
420
if (obj == NULL) {
421
THROW_(vmSymbols::java_lang_NullPointerException(), NULL);
422
}
423
424
oop pool_obj = JNIHandles::resolve(obj);
425
assert(pool_obj->is_instance(), "Should be an instanceOop");
426
instanceHandle ph(THREAD, (instanceOop) pool_obj);
427
428
return MemoryService::get_memory_pool(ph);
429
}
430
431
#endif // INCLUDE_MANAGEMENT
432
433
static void validate_thread_id_array(typeArrayHandle ids_ah, TRAPS) {
434
int num_threads = ids_ah->length();
435
436
// Validate input thread IDs
437
int i = 0;
438
for (i = 0; i < num_threads; i++) {
439
jlong tid = ids_ah->long_at(i);
440
if (tid <= 0) {
441
// throw exception if invalid thread id.
442
THROW_MSG(vmSymbols::java_lang_IllegalArgumentException(),
443
"Invalid thread ID entry");
444
}
445
}
446
}
447
448
#if INCLUDE_MANAGEMENT
449
450
static void validate_thread_info_array(objArrayHandle infoArray_h, TRAPS) {
451
// check if the element of infoArray is of type ThreadInfo class
452
Klass* threadinfo_klass = Management::java_lang_management_ThreadInfo_klass(CHECK);
453
Klass* element_klass = ObjArrayKlass::cast(infoArray_h->klass())->element_klass();
454
if (element_klass != threadinfo_klass) {
455
THROW_MSG(vmSymbols::java_lang_IllegalArgumentException(),
456
"infoArray element type is not ThreadInfo class");
457
}
458
}
459
460
461
static MemoryManager* get_memory_manager_from_jobject(jobject obj, TRAPS) {
462
if (obj == NULL) {
463
THROW_(vmSymbols::java_lang_NullPointerException(), NULL);
464
}
465
466
oop mgr_obj = JNIHandles::resolve(obj);
467
assert(mgr_obj->is_instance(), "Should be an instanceOop");
468
instanceHandle mh(THREAD, (instanceOop) mgr_obj);
469
470
return MemoryService::get_memory_manager(mh);
471
}
472
473
// Returns a version string and sets major and minor version if
474
// the input parameters are non-null.
475
JVM_LEAF(jint, jmm_GetVersion(JNIEnv *env))
476
return JMM_VERSION;
477
JVM_END
478
479
// Gets the list of VM monitoring and management optional supports
480
// Returns 0 if succeeded; otherwise returns non-zero.
481
JVM_LEAF(jint, jmm_GetOptionalSupport(JNIEnv *env, jmmOptionalSupport* support))
482
if (support == NULL) {
483
return -1;
484
}
485
Management::get_optional_support(support);
486
return 0;
487
JVM_END
488
489
// Returns a java.lang.String object containing the input arguments to the VM.
490
JVM_ENTRY(jobject, jmm_GetInputArguments(JNIEnv *env))
491
ResourceMark rm(THREAD);
492
493
if (Arguments::num_jvm_args() == 0 && Arguments::num_jvm_flags() == 0) {
494
return NULL;
495
}
496
497
char** vm_flags = Arguments::jvm_flags_array();
498
char** vm_args = Arguments::jvm_args_array();
499
int num_flags = Arguments::num_jvm_flags();
500
int num_args = Arguments::num_jvm_args();
501
502
size_t length = 1; // null terminator
503
int i;
504
for (i = 0; i < num_flags; i++) {
505
length += strlen(vm_flags[i]);
506
}
507
for (i = 0; i < num_args; i++) {
508
length += strlen(vm_args[i]);
509
}
510
// add a space between each argument
511
length += num_flags + num_args - 1;
512
513
// Return the list of input arguments passed to the VM
514
// and preserve the order that the VM processes.
515
char* args = NEW_RESOURCE_ARRAY(char, length);
516
args[0] = '\0';
517
// concatenate all jvm_flags
518
if (num_flags > 0) {
519
strcat(args, vm_flags[0]);
520
for (i = 1; i < num_flags; i++) {
521
strcat(args, " ");
522
strcat(args, vm_flags[i]);
523
}
524
}
525
526
if (num_args > 0 && num_flags > 0) {
527
// append a space if args already contains one or more jvm_flags
528
strcat(args, " ");
529
}
530
531
// concatenate all jvm_args
532
if (num_args > 0) {
533
strcat(args, vm_args[0]);
534
for (i = 1; i < num_args; i++) {
535
strcat(args, " ");
536
strcat(args, vm_args[i]);
537
}
538
}
539
540
Handle hargs = java_lang_String::create_from_platform_dependent_str(args, CHECK_NULL);
541
return JNIHandles::make_local(env, hargs());
542
JVM_END
543
544
// Returns an array of java.lang.String object containing the input arguments to the VM.
545
JVM_ENTRY(jobjectArray, jmm_GetInputArgumentArray(JNIEnv *env))
546
ResourceMark rm(THREAD);
547
548
if (Arguments::num_jvm_args() == 0 && Arguments::num_jvm_flags() == 0) {
549
return NULL;
550
}
551
552
char** vm_flags = Arguments::jvm_flags_array();
553
char** vm_args = Arguments::jvm_args_array();
554
int num_flags = Arguments::num_jvm_flags();
555
int num_args = Arguments::num_jvm_args();
556
557
instanceKlassHandle ik (THREAD, SystemDictionary::String_klass());
558
objArrayOop r = oopFactory::new_objArray(ik(), num_args + num_flags, CHECK_NULL);
559
objArrayHandle result_h(THREAD, r);
560
561
int index = 0;
562
for (int j = 0; j < num_flags; j++, index++) {
563
Handle h = java_lang_String::create_from_platform_dependent_str(vm_flags[j], CHECK_NULL);
564
result_h->obj_at_put(index, h());
565
}
566
for (int i = 0; i < num_args; i++, index++) {
567
Handle h = java_lang_String::create_from_platform_dependent_str(vm_args[i], CHECK_NULL);
568
result_h->obj_at_put(index, h());
569
}
570
return (jobjectArray) JNIHandles::make_local(env, result_h());
571
JVM_END
572
573
// Returns an array of java/lang/management/MemoryPoolMXBean object
574
// one for each memory pool if obj == null; otherwise returns
575
// an array of memory pools for a given memory manager if
576
// it is a valid memory manager.
577
JVM_ENTRY(jobjectArray, jmm_GetMemoryPools(JNIEnv* env, jobject obj))
578
ResourceMark rm(THREAD);
579
580
int num_memory_pools;
581
MemoryManager* mgr = NULL;
582
if (obj == NULL) {
583
num_memory_pools = MemoryService::num_memory_pools();
584
} else {
585
mgr = get_memory_manager_from_jobject(obj, CHECK_NULL);
586
if (mgr == NULL) {
587
return NULL;
588
}
589
num_memory_pools = mgr->num_memory_pools();
590
}
591
592
// Allocate the resulting MemoryPoolMXBean[] object
593
Klass* k = Management::java_lang_management_MemoryPoolMXBean_klass(CHECK_NULL);
594
instanceKlassHandle ik (THREAD, k);
595
objArrayOop r = oopFactory::new_objArray(ik(), num_memory_pools, CHECK_NULL);
596
objArrayHandle poolArray(THREAD, r);
597
598
if (mgr == NULL) {
599
// Get all memory pools
600
for (int i = 0; i < num_memory_pools; i++) {
601
MemoryPool* pool = MemoryService::get_memory_pool(i);
602
instanceOop p = pool->get_memory_pool_instance(CHECK_NULL);
603
instanceHandle ph(THREAD, p);
604
poolArray->obj_at_put(i, ph());
605
}
606
} else {
607
// Get memory pools managed by a given memory manager
608
for (int i = 0; i < num_memory_pools; i++) {
609
MemoryPool* pool = mgr->get_memory_pool(i);
610
instanceOop p = pool->get_memory_pool_instance(CHECK_NULL);
611
instanceHandle ph(THREAD, p);
612
poolArray->obj_at_put(i, ph());
613
}
614
}
615
return (jobjectArray) JNIHandles::make_local(env, poolArray());
616
JVM_END
617
618
// Returns an array of java/lang/management/MemoryManagerMXBean object
619
// one for each memory manager if obj == null; otherwise returns
620
// an array of memory managers for a given memory pool if
621
// it is a valid memory pool.
622
JVM_ENTRY(jobjectArray, jmm_GetMemoryManagers(JNIEnv* env, jobject obj))
623
ResourceMark rm(THREAD);
624
625
int num_mgrs;
626
MemoryPool* pool = NULL;
627
if (obj == NULL) {
628
num_mgrs = MemoryService::num_memory_managers();
629
} else {
630
pool = get_memory_pool_from_jobject(obj, CHECK_NULL);
631
if (pool == NULL) {
632
return NULL;
633
}
634
num_mgrs = pool->num_memory_managers();
635
}
636
637
// Allocate the resulting MemoryManagerMXBean[] object
638
Klass* k = Management::java_lang_management_MemoryManagerMXBean_klass(CHECK_NULL);
639
instanceKlassHandle ik (THREAD, k);
640
objArrayOop r = oopFactory::new_objArray(ik(), num_mgrs, CHECK_NULL);
641
objArrayHandle mgrArray(THREAD, r);
642
643
if (pool == NULL) {
644
// Get all memory managers
645
for (int i = 0; i < num_mgrs; i++) {
646
MemoryManager* mgr = MemoryService::get_memory_manager(i);
647
instanceOop p = mgr->get_memory_manager_instance(CHECK_NULL);
648
instanceHandle ph(THREAD, p);
649
mgrArray->obj_at_put(i, ph());
650
}
651
} else {
652
// Get memory managers for a given memory pool
653
for (int i = 0; i < num_mgrs; i++) {
654
MemoryManager* mgr = pool->get_memory_manager(i);
655
instanceOop p = mgr->get_memory_manager_instance(CHECK_NULL);
656
instanceHandle ph(THREAD, p);
657
mgrArray->obj_at_put(i, ph());
658
}
659
}
660
return (jobjectArray) JNIHandles::make_local(env, mgrArray());
661
JVM_END
662
663
664
// Returns a java/lang/management/MemoryUsage object containing the memory usage
665
// of a given memory pool.
666
JVM_ENTRY(jobject, jmm_GetMemoryPoolUsage(JNIEnv* env, jobject obj))
667
ResourceMark rm(THREAD);
668
669
MemoryPool* pool = get_memory_pool_from_jobject(obj, CHECK_NULL);
670
if (pool != NULL) {
671
MemoryUsage usage = pool->get_memory_usage();
672
Handle h = MemoryService::create_MemoryUsage_obj(usage, CHECK_NULL);
673
return JNIHandles::make_local(env, h());
674
} else {
675
return NULL;
676
}
677
JVM_END
678
679
// Returns a java/lang/management/MemoryUsage object containing the memory usage
680
// of a given memory pool.
681
JVM_ENTRY(jobject, jmm_GetPeakMemoryPoolUsage(JNIEnv* env, jobject obj))
682
ResourceMark rm(THREAD);
683
684
MemoryPool* pool = get_memory_pool_from_jobject(obj, CHECK_NULL);
685
if (pool != NULL) {
686
MemoryUsage usage = pool->get_peak_memory_usage();
687
Handle h = MemoryService::create_MemoryUsage_obj(usage, CHECK_NULL);
688
return JNIHandles::make_local(env, h());
689
} else {
690
return NULL;
691
}
692
JVM_END
693
694
// Returns a java/lang/management/MemoryUsage object containing the memory usage
695
// of a given memory pool after most recent GC.
696
JVM_ENTRY(jobject, jmm_GetPoolCollectionUsage(JNIEnv* env, jobject obj))
697
ResourceMark rm(THREAD);
698
699
MemoryPool* pool = get_memory_pool_from_jobject(obj, CHECK_NULL);
700
if (pool != NULL && pool->is_collected_pool()) {
701
MemoryUsage usage = pool->get_last_collection_usage();
702
Handle h = MemoryService::create_MemoryUsage_obj(usage, CHECK_NULL);
703
return JNIHandles::make_local(env, h());
704
} else {
705
return NULL;
706
}
707
JVM_END
708
709
// Sets the memory pool sensor for a threshold type
710
JVM_ENTRY(void, jmm_SetPoolSensor(JNIEnv* env, jobject obj, jmmThresholdType type, jobject sensorObj))
711
if (obj == NULL || sensorObj == NULL) {
712
THROW(vmSymbols::java_lang_NullPointerException());
713
}
714
715
Klass* sensor_klass = Management::sun_management_Sensor_klass(CHECK);
716
oop s = JNIHandles::resolve(sensorObj);
717
assert(s->is_instance(), "Sensor should be an instanceOop");
718
instanceHandle sensor_h(THREAD, (instanceOop) s);
719
if (!sensor_h->is_a(sensor_klass)) {
720
THROW_MSG(vmSymbols::java_lang_IllegalArgumentException(),
721
"Sensor is not an instance of sun.management.Sensor class");
722
}
723
724
MemoryPool* mpool = get_memory_pool_from_jobject(obj, CHECK);
725
assert(mpool != NULL, "MemoryPool should exist");
726
727
switch (type) {
728
case JMM_USAGE_THRESHOLD_HIGH:
729
case JMM_USAGE_THRESHOLD_LOW:
730
// have only one sensor for threshold high and low
731
mpool->set_usage_sensor_obj(sensor_h);
732
break;
733
case JMM_COLLECTION_USAGE_THRESHOLD_HIGH:
734
case JMM_COLLECTION_USAGE_THRESHOLD_LOW:
735
// have only one sensor for threshold high and low
736
mpool->set_gc_usage_sensor_obj(sensor_h);
737
break;
738
default:
739
assert(false, "Unrecognized type");
740
}
741
742
JVM_END
743
744
745
// Sets the threshold of a given memory pool.
746
// Returns the previous threshold.
747
//
748
// Input parameters:
749
// pool - the MemoryPoolMXBean object
750
// type - threshold type
751
// threshold - the new threshold (must not be negative)
752
//
753
JVM_ENTRY(jlong, jmm_SetPoolThreshold(JNIEnv* env, jobject obj, jmmThresholdType type, jlong threshold))
754
if (threshold < 0) {
755
THROW_MSG_(vmSymbols::java_lang_IllegalArgumentException(),
756
"Invalid threshold value",
757
-1);
758
}
759
760
if ((size_t)threshold > max_uintx) {
761
stringStream st;
762
st.print("Invalid valid threshold value. Threshold value (" UINT64_FORMAT ") > max value of size_t (" SIZE_FORMAT ")", (size_t)threshold, max_uintx);
763
THROW_MSG_(vmSymbols::java_lang_IllegalArgumentException(), st.as_string(), -1);
764
}
765
766
MemoryPool* pool = get_memory_pool_from_jobject(obj, CHECK_(0L));
767
assert(pool != NULL, "MemoryPool should exist");
768
769
jlong prev = 0;
770
switch (type) {
771
case JMM_USAGE_THRESHOLD_HIGH:
772
if (!pool->usage_threshold()->is_high_threshold_supported()) {
773
return -1;
774
}
775
prev = pool->usage_threshold()->set_high_threshold((size_t) threshold);
776
break;
777
778
case JMM_USAGE_THRESHOLD_LOW:
779
if (!pool->usage_threshold()->is_low_threshold_supported()) {
780
return -1;
781
}
782
prev = pool->usage_threshold()->set_low_threshold((size_t) threshold);
783
break;
784
785
case JMM_COLLECTION_USAGE_THRESHOLD_HIGH:
786
if (!pool->gc_usage_threshold()->is_high_threshold_supported()) {
787
return -1;
788
}
789
// return and the new threshold is effective for the next GC
790
return pool->gc_usage_threshold()->set_high_threshold((size_t) threshold);
791
792
case JMM_COLLECTION_USAGE_THRESHOLD_LOW:
793
if (!pool->gc_usage_threshold()->is_low_threshold_supported()) {
794
return -1;
795
}
796
// return and the new threshold is effective for the next GC
797
return pool->gc_usage_threshold()->set_low_threshold((size_t) threshold);
798
799
default:
800
assert(false, "Unrecognized type");
801
return -1;
802
}
803
804
// When the threshold is changed, reevaluate if the low memory
805
// detection is enabled.
806
if (prev != threshold) {
807
LowMemoryDetector::recompute_enabled_for_collected_pools();
808
LowMemoryDetector::detect_low_memory(pool);
809
}
810
return prev;
811
JVM_END
812
813
// Returns a java/lang/management/MemoryUsage object representing
814
// the memory usage for the heap or non-heap memory.
815
JVM_ENTRY(jobject, jmm_GetMemoryUsage(JNIEnv* env, jboolean heap))
816
ResourceMark rm(THREAD);
817
818
// Calculate the memory usage
819
size_t total_init = 0;
820
size_t total_used = 0;
821
size_t total_committed = 0;
822
size_t total_max = 0;
823
bool has_undefined_init_size = false;
824
bool has_undefined_max_size = false;
825
826
for (int i = 0; i < MemoryService::num_memory_pools(); i++) {
827
MemoryPool* pool = MemoryService::get_memory_pool(i);
828
if ((heap && pool->is_heap()) || (!heap && pool->is_non_heap())) {
829
MemoryUsage u = pool->get_memory_usage();
830
total_used += u.used();
831
total_committed += u.committed();
832
833
if (u.init_size() == (size_t)-1) {
834
has_undefined_init_size = true;
835
}
836
if (!has_undefined_init_size) {
837
total_init += u.init_size();
838
}
839
840
if (u.max_size() == (size_t)-1) {
841
has_undefined_max_size = true;
842
}
843
if (!has_undefined_max_size) {
844
total_max += u.max_size();
845
}
846
}
847
}
848
849
// if any one of the memory pool has undefined init_size or max_size,
850
// set it to -1
851
if (has_undefined_init_size) {
852
total_init = (size_t)-1;
853
}
854
if (has_undefined_max_size) {
855
total_max = (size_t)-1;
856
}
857
858
MemoryUsage usage((heap ? InitialHeapSize : total_init),
859
total_used,
860
total_committed,
861
(heap ? Universe::heap()->max_capacity() : total_max));
862
863
Handle obj = MemoryService::create_MemoryUsage_obj(usage, CHECK_NULL);
864
return JNIHandles::make_local(env, obj());
865
JVM_END
866
867
// Returns the boolean value of a given attribute.
868
JVM_LEAF(jboolean, jmm_GetBoolAttribute(JNIEnv *env, jmmBoolAttribute att))
869
switch (att) {
870
case JMM_VERBOSE_GC:
871
return MemoryService::get_verbose();
872
case JMM_VERBOSE_CLASS:
873
return ClassLoadingService::get_verbose();
874
case JMM_THREAD_CONTENTION_MONITORING:
875
return ThreadService::is_thread_monitoring_contention();
876
case JMM_THREAD_CPU_TIME:
877
return ThreadService::is_thread_cpu_time_enabled();
878
case JMM_THREAD_ALLOCATED_MEMORY:
879
return ThreadService::is_thread_allocated_memory_enabled();
880
default:
881
assert(0, "Unrecognized attribute");
882
return false;
883
}
884
JVM_END
885
886
// Sets the given boolean attribute and returns the previous value.
887
JVM_ENTRY(jboolean, jmm_SetBoolAttribute(JNIEnv *env, jmmBoolAttribute att, jboolean flag))
888
switch (att) {
889
case JMM_VERBOSE_GC:
890
return MemoryService::set_verbose(flag != 0);
891
case JMM_VERBOSE_CLASS:
892
return ClassLoadingService::set_verbose(flag != 0);
893
case JMM_THREAD_CONTENTION_MONITORING:
894
return ThreadService::set_thread_monitoring_contention(flag != 0);
895
case JMM_THREAD_CPU_TIME:
896
return ThreadService::set_thread_cpu_time_enabled(flag != 0);
897
case JMM_THREAD_ALLOCATED_MEMORY:
898
return ThreadService::set_thread_allocated_memory_enabled(flag != 0);
899
default:
900
assert(0, "Unrecognized attribute");
901
return false;
902
}
903
JVM_END
904
905
906
static jlong get_gc_attribute(GCMemoryManager* mgr, jmmLongAttribute att) {
907
switch (att) {
908
case JMM_GC_TIME_MS:
909
return mgr->gc_time_ms();
910
911
case JMM_GC_COUNT:
912
return mgr->gc_count();
913
914
case JMM_GC_EXT_ATTRIBUTE_INFO_SIZE:
915
// current implementation only has 1 ext attribute
916
return 1;
917
918
default:
919
assert(0, "Unrecognized GC attribute");
920
return -1;
921
}
922
}
923
924
class VmThreadCountClosure: public ThreadClosure {
925
private:
926
int _count;
927
public:
928
VmThreadCountClosure() : _count(0) {};
929
void do_thread(Thread* thread);
930
int count() { return _count; }
931
};
932
933
void VmThreadCountClosure::do_thread(Thread* thread) {
934
// exclude externally visible JavaThreads
935
if (thread->is_Java_thread() && !thread->is_hidden_from_external_view()) {
936
return;
937
}
938
939
_count++;
940
}
941
942
static jint get_vm_thread_count() {
943
VmThreadCountClosure vmtcc;
944
{
945
MutexLockerEx ml(Threads_lock);
946
Threads::threads_do(&vmtcc);
947
}
948
949
return vmtcc.count();
950
}
951
952
static jint get_num_flags() {
953
// last flag entry is always NULL, so subtract 1
954
int nFlags = (int) Flag::numFlags - 1;
955
int count = 0;
956
for (int i = 0; i < nFlags; i++) {
957
Flag* flag = &Flag::flags[i];
958
// Exclude the locked (diagnostic, experimental) flags
959
if (flag->is_unlocked() || flag->is_unlocker()) {
960
count++;
961
}
962
}
963
return count;
964
}
965
966
static jlong get_long_attribute(jmmLongAttribute att) {
967
switch (att) {
968
case JMM_CLASS_LOADED_COUNT:
969
return ClassLoadingService::loaded_class_count();
970
971
case JMM_CLASS_UNLOADED_COUNT:
972
return ClassLoadingService::unloaded_class_count();
973
974
case JMM_THREAD_TOTAL_COUNT:
975
return ThreadService::get_total_thread_count();
976
977
case JMM_THREAD_LIVE_COUNT:
978
return ThreadService::get_live_thread_count();
979
980
case JMM_THREAD_PEAK_COUNT:
981
return ThreadService::get_peak_thread_count();
982
983
case JMM_THREAD_DAEMON_COUNT:
984
return ThreadService::get_daemon_thread_count();
985
986
case JMM_JVM_INIT_DONE_TIME_MS:
987
return Management::vm_init_done_time();
988
989
case JMM_JVM_UPTIME_MS:
990
return Management::ticks_to_ms(os::elapsed_counter());
991
992
case JMM_COMPILE_TOTAL_TIME_MS:
993
return Management::ticks_to_ms(CompileBroker::total_compilation_ticks());
994
995
case JMM_OS_PROCESS_ID:
996
return os::current_process_id();
997
998
// Hotspot-specific counters
999
case JMM_CLASS_LOADED_BYTES:
1000
return ClassLoadingService::loaded_class_bytes();
1001
1002
case JMM_CLASS_UNLOADED_BYTES:
1003
return ClassLoadingService::unloaded_class_bytes();
1004
1005
case JMM_SHARED_CLASS_LOADED_COUNT:
1006
return ClassLoadingService::loaded_shared_class_count();
1007
1008
case JMM_SHARED_CLASS_UNLOADED_COUNT:
1009
return ClassLoadingService::unloaded_shared_class_count();
1010
1011
1012
case JMM_SHARED_CLASS_LOADED_BYTES:
1013
return ClassLoadingService::loaded_shared_class_bytes();
1014
1015
case JMM_SHARED_CLASS_UNLOADED_BYTES:
1016
return ClassLoadingService::unloaded_shared_class_bytes();
1017
1018
case JMM_TOTAL_CLASSLOAD_TIME_MS:
1019
return ClassLoader::classloader_time_ms();
1020
1021
case JMM_VM_GLOBAL_COUNT:
1022
return get_num_flags();
1023
1024
case JMM_SAFEPOINT_COUNT:
1025
return RuntimeService::safepoint_count();
1026
1027
case JMM_TOTAL_SAFEPOINTSYNC_TIME_MS:
1028
return RuntimeService::safepoint_sync_time_ms();
1029
1030
case JMM_TOTAL_STOPPED_TIME_MS:
1031
return RuntimeService::safepoint_time_ms();
1032
1033
case JMM_TOTAL_APP_TIME_MS:
1034
return RuntimeService::application_time_ms();
1035
1036
case JMM_VM_THREAD_COUNT:
1037
return get_vm_thread_count();
1038
1039
case JMM_CLASS_INIT_TOTAL_COUNT:
1040
return ClassLoader::class_init_count();
1041
1042
case JMM_CLASS_INIT_TOTAL_TIME_MS:
1043
return ClassLoader::class_init_time_ms();
1044
1045
case JMM_CLASS_VERIFY_TOTAL_TIME_MS:
1046
return ClassLoader::class_verify_time_ms();
1047
1048
case JMM_METHOD_DATA_SIZE_BYTES:
1049
return ClassLoadingService::class_method_data_size();
1050
1051
case JMM_OS_MEM_TOTAL_PHYSICAL_BYTES:
1052
return os::physical_memory();
1053
1054
default:
1055
return -1;
1056
}
1057
}
1058
1059
1060
// Returns the long value of a given attribute.
1061
JVM_ENTRY(jlong, jmm_GetLongAttribute(JNIEnv *env, jobject obj, jmmLongAttribute att))
1062
if (obj == NULL) {
1063
return get_long_attribute(att);
1064
} else {
1065
GCMemoryManager* mgr = get_gc_memory_manager_from_jobject(obj, CHECK_(0L));
1066
if (mgr != NULL) {
1067
return get_gc_attribute(mgr, att);
1068
}
1069
}
1070
return -1;
1071
JVM_END
1072
1073
// Gets the value of all attributes specified in the given array
1074
// and sets the value in the result array.
1075
// Returns the number of attributes found.
1076
JVM_ENTRY(jint, jmm_GetLongAttributes(JNIEnv *env,
1077
jobject obj,
1078
jmmLongAttribute* atts,
1079
jint count,
1080
jlong* result))
1081
1082
int num_atts = 0;
1083
if (obj == NULL) {
1084
for (int i = 0; i < count; i++) {
1085
result[i] = get_long_attribute(atts[i]);
1086
if (result[i] != -1) {
1087
num_atts++;
1088
}
1089
}
1090
} else {
1091
GCMemoryManager* mgr = get_gc_memory_manager_from_jobject(obj, CHECK_0);
1092
for (int i = 0; i < count; i++) {
1093
result[i] = get_gc_attribute(mgr, atts[i]);
1094
if (result[i] != -1) {
1095
num_atts++;
1096
}
1097
}
1098
}
1099
return num_atts;
1100
JVM_END
1101
1102
// Helper function to do thread dump for a specific list of threads
1103
static void do_thread_dump(ThreadDumpResult* dump_result,
1104
typeArrayHandle ids_ah, // array of thread ID (long[])
1105
int num_threads,
1106
int max_depth,
1107
bool with_locked_monitors,
1108
bool with_locked_synchronizers,
1109
TRAPS) {
1110
// no need to actually perform thread dump if no TIDs are specified
1111
if (num_threads == 0) return;
1112
1113
// First get an array of threadObj handles.
1114
// A JavaThread may terminate before we get the stack trace.
1115
GrowableArray<instanceHandle>* thread_handle_array = new GrowableArray<instanceHandle>(num_threads);
1116
{
1117
MutexLockerEx ml(Threads_lock);
1118
for (int i = 0; i < num_threads; i++) {
1119
jlong tid = ids_ah->long_at(i);
1120
JavaThread* jt = Threads::find_java_thread_from_java_tid(tid);
1121
oop thread_obj = (jt != NULL ? jt->threadObj() : (oop)NULL);
1122
instanceHandle threadObj_h(THREAD, (instanceOop) thread_obj);
1123
thread_handle_array->append(threadObj_h);
1124
}
1125
}
1126
1127
// Obtain thread dumps and thread snapshot information
1128
VM_ThreadDump op(dump_result,
1129
thread_handle_array,
1130
num_threads,
1131
max_depth, /* stack depth */
1132
with_locked_monitors,
1133
with_locked_synchronizers);
1134
VMThread::execute(&op);
1135
}
1136
1137
// Gets an array of ThreadInfo objects. Each element is the ThreadInfo
1138
// for the thread ID specified in the corresponding entry in
1139
// the given array of thread IDs; or NULL if the thread does not exist
1140
// or has terminated.
1141
//
1142
// Input parameters:
1143
// ids - array of thread IDs
1144
// maxDepth - the maximum depth of stack traces to be dumped:
1145
// maxDepth == -1 requests to dump entire stack trace.
1146
// maxDepth == 0 requests no stack trace.
1147
// infoArray - array of ThreadInfo objects
1148
//
1149
// QQQ - Why does this method return a value instead of void?
1150
JVM_ENTRY(jint, jmm_GetThreadInfo(JNIEnv *env, jlongArray ids, jint maxDepth, jobjectArray infoArray))
1151
// Check if threads is null
1152
if (ids == NULL || infoArray == NULL) {
1153
THROW_(vmSymbols::java_lang_NullPointerException(), -1);
1154
}
1155
1156
if (maxDepth < -1) {
1157
THROW_MSG_(vmSymbols::java_lang_IllegalArgumentException(),
1158
"Invalid maxDepth", -1);
1159
}
1160
1161
ResourceMark rm(THREAD);
1162
typeArrayOop ta = typeArrayOop(JNIHandles::resolve_non_null(ids));
1163
typeArrayHandle ids_ah(THREAD, ta);
1164
1165
oop infoArray_obj = JNIHandles::resolve_non_null(infoArray);
1166
objArrayOop oa = objArrayOop(infoArray_obj);
1167
objArrayHandle infoArray_h(THREAD, oa);
1168
1169
// validate the thread id array
1170
validate_thread_id_array(ids_ah, CHECK_0);
1171
1172
// validate the ThreadInfo[] parameters
1173
validate_thread_info_array(infoArray_h, CHECK_0);
1174
1175
// infoArray must be of the same length as the given array of thread IDs
1176
int num_threads = ids_ah->length();
1177
if (num_threads != infoArray_h->length()) {
1178
THROW_MSG_(vmSymbols::java_lang_IllegalArgumentException(),
1179
"The length of the given ThreadInfo array does not match the length of the given array of thread IDs", -1);
1180
}
1181
1182
if (JDK_Version::is_gte_jdk16x_version()) {
1183
// make sure the AbstractOwnableSynchronizer klass is loaded before taking thread snapshots
1184
java_util_concurrent_locks_AbstractOwnableSynchronizer::initialize(CHECK_0);
1185
}
1186
1187
// Must use ThreadDumpResult to store the ThreadSnapshot.
1188
// GC may occur after the thread snapshots are taken but before
1189
// this function returns. The threadObj and other oops kept
1190
// in the ThreadSnapshot are marked and adjusted during GC.
1191
ThreadDumpResult dump_result(num_threads);
1192
1193
if (maxDepth == 0) {
1194
// no stack trace dumped - do not need to stop the world
1195
{
1196
MutexLockerEx ml(Threads_lock);
1197
for (int i = 0; i < num_threads; i++) {
1198
jlong tid = ids_ah->long_at(i);
1199
JavaThread* jt = Threads::find_java_thread_from_java_tid(tid);
1200
ThreadSnapshot* ts;
1201
if (jt == NULL) {
1202
// if the thread does not exist or now it is terminated,
1203
// create dummy snapshot
1204
ts = new ThreadSnapshot();
1205
} else {
1206
ts = new ThreadSnapshot(jt);
1207
}
1208
dump_result.add_thread_snapshot(ts);
1209
}
1210
}
1211
} else {
1212
// obtain thread dump with the specific list of threads with stack trace
1213
do_thread_dump(&dump_result,
1214
ids_ah,
1215
num_threads,
1216
maxDepth,
1217
false, /* no locked monitor */
1218
false, /* no locked synchronizers */
1219
CHECK_0);
1220
}
1221
1222
int num_snapshots = dump_result.num_snapshots();
1223
assert(num_snapshots == num_threads, "Must match the number of thread snapshots");
1224
int index = 0;
1225
for (ThreadSnapshot* ts = dump_result.snapshots(); ts != NULL; index++, ts = ts->next()) {
1226
// For each thread, create an java/lang/management/ThreadInfo object
1227
// and fill with the thread information
1228
1229
if (ts->threadObj() == NULL) {
1230
// if the thread does not exist or now it is terminated, set threadinfo to NULL
1231
infoArray_h->obj_at_put(index, NULL);
1232
continue;
1233
}
1234
1235
// Create java.lang.management.ThreadInfo object
1236
instanceOop info_obj = Management::create_thread_info_instance(ts, CHECK_0);
1237
infoArray_h->obj_at_put(index, info_obj);
1238
}
1239
return 0;
1240
JVM_END
1241
1242
// Dump thread info for the specified threads.
1243
// It returns an array of ThreadInfo objects. Each element is the ThreadInfo
1244
// for the thread ID specified in the corresponding entry in
1245
// the given array of thread IDs; or NULL if the thread does not exist
1246
// or has terminated.
1247
//
1248
// Input parameter:
1249
// ids - array of thread IDs; NULL indicates all live threads
1250
// locked_monitors - if true, dump locked object monitors
1251
// locked_synchronizers - if true, dump locked JSR-166 synchronizers
1252
// maxDepth - the maximum depth of stack traces to be dumped:
1253
// maxDepth == -1 requests to dump entire stack trace.
1254
// maxDepth == 0 requests no stack trace.
1255
//
1256
JVM_ENTRY(jobjectArray, jmm_DumpThreadsMaxDepth(JNIEnv *env, jlongArray thread_ids, jboolean locked_monitors,
1257
jboolean locked_synchronizers, jint maxDepth))
1258
ResourceMark rm(THREAD);
1259
1260
if (JDK_Version::is_gte_jdk16x_version()) {
1261
// make sure the AbstractOwnableSynchronizer klass is loaded before taking thread snapshots
1262
java_util_concurrent_locks_AbstractOwnableSynchronizer::initialize(CHECK_NULL);
1263
}
1264
1265
typeArrayOop ta = typeArrayOop(JNIHandles::resolve(thread_ids));
1266
int num_threads = (ta != NULL ? ta->length() : 0);
1267
typeArrayHandle ids_ah(THREAD, ta);
1268
1269
ThreadDumpResult dump_result(num_threads); // can safepoint
1270
1271
if (ids_ah() != NULL) {
1272
1273
// validate the thread id array
1274
validate_thread_id_array(ids_ah, CHECK_NULL);
1275
1276
// obtain thread dump of a specific list of threads
1277
do_thread_dump(&dump_result,
1278
ids_ah,
1279
num_threads,
1280
maxDepth, /* stack depth */
1281
(locked_monitors ? true : false), /* with locked monitors */
1282
(locked_synchronizers ? true : false), /* with locked synchronizers */
1283
CHECK_NULL);
1284
} else {
1285
// obtain thread dump of all threads
1286
VM_ThreadDump op(&dump_result,
1287
maxDepth, /* stack depth */
1288
(locked_monitors ? true : false), /* with locked monitors */
1289
(locked_synchronizers ? true : false) /* with locked synchronizers */);
1290
VMThread::execute(&op);
1291
}
1292
1293
int num_snapshots = dump_result.num_snapshots();
1294
1295
// create the result ThreadInfo[] object
1296
Klass* k = Management::java_lang_management_ThreadInfo_klass(CHECK_NULL);
1297
instanceKlassHandle ik (THREAD, k);
1298
objArrayOop r = oopFactory::new_objArray(ik(), num_snapshots, CHECK_NULL);
1299
objArrayHandle result_h(THREAD, r);
1300
1301
int index = 0;
1302
for (ThreadSnapshot* ts = dump_result.snapshots(); ts != NULL; ts = ts->next(), index++) {
1303
if (ts->threadObj() == NULL) {
1304
// if the thread does not exist or now it is terminated, set threadinfo to NULL
1305
result_h->obj_at_put(index, NULL);
1306
continue;
1307
}
1308
1309
ThreadStackTrace* stacktrace = ts->get_stack_trace();
1310
assert(stacktrace != NULL, "Must have a stack trace dumped");
1311
1312
// Create Object[] filled with locked monitors
1313
// Create int[] filled with the stack depth where a monitor was locked
1314
int num_frames = stacktrace->get_stack_depth();
1315
int num_locked_monitors = stacktrace->num_jni_locked_monitors();
1316
1317
// Count the total number of locked monitors
1318
for (int i = 0; i < num_frames; i++) {
1319
StackFrameInfo* frame = stacktrace->stack_frame_at(i);
1320
num_locked_monitors += frame->num_locked_monitors();
1321
}
1322
1323
objArrayHandle monitors_array;
1324
typeArrayHandle depths_array;
1325
objArrayHandle synchronizers_array;
1326
1327
if (locked_monitors) {
1328
// Constructs Object[] and int[] to contain the object monitor and the stack depth
1329
// where the thread locked it
1330
objArrayOop array = oopFactory::new_objArray(SystemDictionary::Object_klass(), num_locked_monitors, CHECK_NULL);
1331
objArrayHandle mh(THREAD, array);
1332
monitors_array = mh;
1333
1334
typeArrayOop tarray = oopFactory::new_typeArray(T_INT, num_locked_monitors, CHECK_NULL);
1335
typeArrayHandle dh(THREAD, tarray);
1336
depths_array = dh;
1337
1338
int count = 0;
1339
int j = 0;
1340
for (int depth = 0; depth < num_frames; depth++) {
1341
StackFrameInfo* frame = stacktrace->stack_frame_at(depth);
1342
int len = frame->num_locked_monitors();
1343
GrowableArray<oop>* locked_monitors = frame->locked_monitors();
1344
for (j = 0; j < len; j++) {
1345
oop monitor = locked_monitors->at(j);
1346
assert(monitor != NULL && monitor->is_instance(), "must be a Java object");
1347
monitors_array->obj_at_put(count, monitor);
1348
depths_array->int_at_put(count, depth);
1349
count++;
1350
}
1351
}
1352
1353
GrowableArray<oop>* jni_locked_monitors = stacktrace->jni_locked_monitors();
1354
for (j = 0; j < jni_locked_monitors->length(); j++) {
1355
oop object = jni_locked_monitors->at(j);
1356
assert(object != NULL && object->is_instance(), "must be a Java object");
1357
monitors_array->obj_at_put(count, object);
1358
// Monitor locked via JNI MonitorEnter call doesn't have stack depth info
1359
depths_array->int_at_put(count, -1);
1360
count++;
1361
}
1362
assert(count == num_locked_monitors, "number of locked monitors doesn't match");
1363
}
1364
1365
if (locked_synchronizers) {
1366
// Create Object[] filled with locked JSR-166 synchronizers
1367
assert(ts->threadObj() != NULL, "Must be a valid JavaThread");
1368
ThreadConcurrentLocks* tcl = ts->get_concurrent_locks();
1369
GrowableArray<instanceOop>* locks = (tcl != NULL ? tcl->owned_locks() : NULL);
1370
int num_locked_synchronizers = (locks != NULL ? locks->length() : 0);
1371
1372
objArrayOop array = oopFactory::new_objArray(SystemDictionary::Object_klass(), num_locked_synchronizers, CHECK_NULL);
1373
objArrayHandle sh(THREAD, array);
1374
synchronizers_array = sh;
1375
1376
for (int k = 0; k < num_locked_synchronizers; k++) {
1377
synchronizers_array->obj_at_put(k, locks->at(k));
1378
}
1379
}
1380
1381
// Create java.lang.management.ThreadInfo object
1382
instanceOop info_obj = Management::create_thread_info_instance(ts,
1383
monitors_array,
1384
depths_array,
1385
synchronizers_array,
1386
CHECK_NULL);
1387
result_h->obj_at_put(index, info_obj);
1388
}
1389
1390
return (jobjectArray) JNIHandles::make_local(env, result_h());
1391
JVM_END
1392
1393
// Dump thread info for the specified threads.
1394
// It returns an array of ThreadInfo objects. Each element is the ThreadInfo
1395
// for the thread ID specified in the corresponding entry in
1396
// the given array of thread IDs; or NULL if the thread does not exist
1397
// or has terminated.
1398
//
1399
// Input parameter:
1400
// ids - array of thread IDs; NULL indicates all live threads
1401
// locked_monitors - if true, dump locked object monitors
1402
// locked_synchronizers - if true, dump locked JSR-166 synchronizers
1403
//
1404
// This method exists only for compatbility with compiled binaries that call it.
1405
// The JDK library uses jmm_DumpThreadsMaxDepth.
1406
//
1407
JVM_ENTRY(jobjectArray, jmm_DumpThreads(JNIEnv *env, jlongArray thread_ids, jboolean locked_monitors,
1408
jboolean locked_synchronizers))
1409
return jmm_DumpThreadsMaxDepth(env, thread_ids, locked_monitors, locked_synchronizers, INT_MAX);
1410
JVM_END
1411
1412
// Returns an array of Class objects.
1413
JVM_ENTRY(jobjectArray, jmm_GetLoadedClasses(JNIEnv *env))
1414
ResourceMark rm(THREAD);
1415
1416
LoadedClassesEnumerator lce(THREAD); // Pass current Thread as parameter
1417
1418
int num_classes = lce.num_loaded_classes();
1419
objArrayOop r = oopFactory::new_objArray(SystemDictionary::Class_klass(), num_classes, CHECK_0);
1420
objArrayHandle classes_ah(THREAD, r);
1421
1422
for (int i = 0; i < num_classes; i++) {
1423
KlassHandle kh = lce.get_klass(i);
1424
oop mirror = kh()->java_mirror();
1425
classes_ah->obj_at_put(i, mirror);
1426
}
1427
1428
return (jobjectArray) JNIHandles::make_local(env, classes_ah());
1429
JVM_END
1430
1431
// Reset statistic. Return true if the requested statistic is reset.
1432
// Otherwise, return false.
1433
//
1434
// Input parameters:
1435
// obj - specify which instance the statistic associated with to be reset
1436
// For PEAK_POOL_USAGE stat, obj is required to be a memory pool object.
1437
// For THREAD_CONTENTION_COUNT and TIME stat, obj is required to be a thread ID.
1438
// type - the type of statistic to be reset
1439
//
1440
JVM_ENTRY(jboolean, jmm_ResetStatistic(JNIEnv *env, jvalue obj, jmmStatisticType type))
1441
ResourceMark rm(THREAD);
1442
1443
switch (type) {
1444
case JMM_STAT_PEAK_THREAD_COUNT:
1445
ThreadService::reset_peak_thread_count();
1446
return true;
1447
1448
case JMM_STAT_THREAD_CONTENTION_COUNT:
1449
case JMM_STAT_THREAD_CONTENTION_TIME: {
1450
jlong tid = obj.j;
1451
if (tid < 0) {
1452
THROW_(vmSymbols::java_lang_IllegalArgumentException(), JNI_FALSE);
1453
}
1454
1455
// Look for the JavaThread of this given tid
1456
MutexLockerEx ml(Threads_lock);
1457
if (tid == 0) {
1458
// reset contention statistics for all threads if tid == 0
1459
for (JavaThread* java_thread = Threads::first(); java_thread != NULL; java_thread = java_thread->next()) {
1460
if (type == JMM_STAT_THREAD_CONTENTION_COUNT) {
1461
ThreadService::reset_contention_count_stat(java_thread);
1462
} else {
1463
ThreadService::reset_contention_time_stat(java_thread);
1464
}
1465
}
1466
} else {
1467
// reset contention statistics for a given thread
1468
JavaThread* java_thread = Threads::find_java_thread_from_java_tid(tid);
1469
if (java_thread == NULL) {
1470
return false;
1471
}
1472
1473
if (type == JMM_STAT_THREAD_CONTENTION_COUNT) {
1474
ThreadService::reset_contention_count_stat(java_thread);
1475
} else {
1476
ThreadService::reset_contention_time_stat(java_thread);
1477
}
1478
}
1479
return true;
1480
break;
1481
}
1482
case JMM_STAT_PEAK_POOL_USAGE: {
1483
jobject o = obj.l;
1484
if (o == NULL) {
1485
THROW_(vmSymbols::java_lang_NullPointerException(), JNI_FALSE);
1486
}
1487
1488
oop pool_obj = JNIHandles::resolve(o);
1489
assert(pool_obj->is_instance(), "Should be an instanceOop");
1490
instanceHandle ph(THREAD, (instanceOop) pool_obj);
1491
1492
MemoryPool* pool = MemoryService::get_memory_pool(ph);
1493
if (pool != NULL) {
1494
pool->reset_peak_memory_usage();
1495
return true;
1496
}
1497
break;
1498
}
1499
case JMM_STAT_GC_STAT: {
1500
jobject o = obj.l;
1501
if (o == NULL) {
1502
THROW_(vmSymbols::java_lang_NullPointerException(), JNI_FALSE);
1503
}
1504
1505
GCMemoryManager* mgr = get_gc_memory_manager_from_jobject(o, CHECK_0);
1506
if (mgr != NULL) {
1507
mgr->reset_gc_stat();
1508
return true;
1509
}
1510
break;
1511
}
1512
default:
1513
assert(0, "Unknown Statistic Type");
1514
}
1515
return false;
1516
JVM_END
1517
1518
// Returns the fast estimate of CPU time consumed by
1519
// a given thread (in nanoseconds).
1520
// If thread_id == 0, return CPU time for the current thread.
1521
JVM_ENTRY(jlong, jmm_GetThreadCpuTime(JNIEnv *env, jlong thread_id))
1522
if (!os::is_thread_cpu_time_supported()) {
1523
return -1;
1524
}
1525
1526
if (thread_id < 0) {
1527
THROW_MSG_(vmSymbols::java_lang_IllegalArgumentException(),
1528
"Invalid thread ID", -1);
1529
}
1530
1531
JavaThread* java_thread = NULL;
1532
if (thread_id == 0) {
1533
// current thread
1534
return os::current_thread_cpu_time();
1535
} else {
1536
MutexLockerEx ml(Threads_lock);
1537
java_thread = Threads::find_java_thread_from_java_tid(thread_id);
1538
if (java_thread != NULL) {
1539
return os::thread_cpu_time((Thread*) java_thread);
1540
}
1541
}
1542
return -1;
1543
JVM_END
1544
1545
// Returns a String array of all VM global flag names
1546
JVM_ENTRY(jobjectArray, jmm_GetVMGlobalNames(JNIEnv *env))
1547
// last flag entry is always NULL, so subtract 1
1548
int nFlags = (int) Flag::numFlags - 1;
1549
// allocate a temp array
1550
objArrayOop r = oopFactory::new_objArray(SystemDictionary::String_klass(),
1551
nFlags, CHECK_0);
1552
objArrayHandle flags_ah(THREAD, r);
1553
int num_entries = 0;
1554
for (int i = 0; i < nFlags; i++) {
1555
Flag* flag = &Flag::flags[i];
1556
// Exclude notproduct and develop flags in product builds.
1557
if (flag->is_constant_in_binary()) {
1558
continue;
1559
}
1560
// Exclude the locked (experimental, diagnostic) flags
1561
if (flag->is_unlocked() || flag->is_unlocker()) {
1562
Handle s = java_lang_String::create_from_str(flag->_name, CHECK_0);
1563
flags_ah->obj_at_put(num_entries, s());
1564
num_entries++;
1565
}
1566
}
1567
1568
if (num_entries < nFlags) {
1569
// Return array of right length
1570
objArrayOop res = oopFactory::new_objArray(SystemDictionary::String_klass(), num_entries, CHECK_0);
1571
for(int i = 0; i < num_entries; i++) {
1572
res->obj_at_put(i, flags_ah->obj_at(i));
1573
}
1574
return (jobjectArray)JNIHandles::make_local(env, res);
1575
}
1576
1577
return (jobjectArray)JNIHandles::make_local(env, flags_ah());
1578
JVM_END
1579
1580
// Utility function used by jmm_GetVMGlobals. Returns false if flag type
1581
// can't be determined, true otherwise. If false is returned, then *global
1582
// will be incomplete and invalid.
1583
bool add_global_entry(JNIEnv* env, Handle name, jmmVMGlobal *global, Flag *flag, TRAPS) {
1584
Handle flag_name;
1585
if (name() == NULL) {
1586
flag_name = java_lang_String::create_from_str(flag->_name, CHECK_false);
1587
} else {
1588
flag_name = name;
1589
}
1590
global->name = (jstring)JNIHandles::make_local(env, flag_name());
1591
1592
if (flag->is_bool()) {
1593
global->value.z = flag->get_bool() ? JNI_TRUE : JNI_FALSE;
1594
global->type = JMM_VMGLOBAL_TYPE_JBOOLEAN;
1595
} else if (flag->is_intx()) {
1596
global->value.j = (jlong)flag->get_intx();
1597
global->type = JMM_VMGLOBAL_TYPE_JLONG;
1598
} else if (flag->is_uintx()) {
1599
global->value.j = (jlong)flag->get_uintx();
1600
global->type = JMM_VMGLOBAL_TYPE_JLONG;
1601
} else if (flag->is_uint64_t()) {
1602
global->value.j = (jlong)flag->get_uint64_t();
1603
global->type = JMM_VMGLOBAL_TYPE_JLONG;
1604
} else if (flag->is_double()) {
1605
global->value.d = (jdouble)flag->get_double();
1606
global->type = JMM_VMGLOBAL_TYPE_JDOUBLE;
1607
} else if (flag->is_ccstr()) {
1608
Handle str = java_lang_String::create_from_str(flag->get_ccstr(), CHECK_false);
1609
global->value.l = (jobject)JNIHandles::make_local(env, str());
1610
global->type = JMM_VMGLOBAL_TYPE_JSTRING;
1611
} else {
1612
global->type = JMM_VMGLOBAL_TYPE_UNKNOWN;
1613
return false;
1614
}
1615
1616
global->writeable = flag->is_writeable();
1617
global->external = flag->is_external();
1618
switch (flag->get_origin()) {
1619
case Flag::DEFAULT:
1620
global->origin = JMM_VMGLOBAL_ORIGIN_DEFAULT;
1621
break;
1622
case Flag::COMMAND_LINE:
1623
global->origin = JMM_VMGLOBAL_ORIGIN_COMMAND_LINE;
1624
break;
1625
case Flag::ENVIRON_VAR:
1626
global->origin = JMM_VMGLOBAL_ORIGIN_ENVIRON_VAR;
1627
break;
1628
case Flag::CONFIG_FILE:
1629
global->origin = JMM_VMGLOBAL_ORIGIN_CONFIG_FILE;
1630
break;
1631
case Flag::MANAGEMENT:
1632
global->origin = JMM_VMGLOBAL_ORIGIN_MANAGEMENT;
1633
break;
1634
case Flag::ERGONOMIC:
1635
global->origin = JMM_VMGLOBAL_ORIGIN_ERGONOMIC;
1636
break;
1637
default:
1638
global->origin = JMM_VMGLOBAL_ORIGIN_OTHER;
1639
}
1640
1641
return true;
1642
}
1643
1644
// Fill globals array of count length with jmmVMGlobal entries
1645
// specified by names. If names == NULL, fill globals array
1646
// with all Flags. Return value is number of entries
1647
// created in globals.
1648
// If a Flag with a given name in an array element does not
1649
// exist, globals[i].name will be set to NULL.
1650
JVM_ENTRY(jint, jmm_GetVMGlobals(JNIEnv *env,
1651
jobjectArray names,
1652
jmmVMGlobal *globals,
1653
jint count))
1654
1655
1656
if (globals == NULL) {
1657
THROW_(vmSymbols::java_lang_NullPointerException(), 0);
1658
}
1659
1660
ResourceMark rm(THREAD);
1661
1662
if (names != NULL) {
1663
// return the requested globals
1664
objArrayOop ta = objArrayOop(JNIHandles::resolve_non_null(names));
1665
objArrayHandle names_ah(THREAD, ta);
1666
// Make sure we have a String array
1667
Klass* element_klass = ObjArrayKlass::cast(names_ah->klass())->element_klass();
1668
if (element_klass != SystemDictionary::String_klass()) {
1669
THROW_MSG_(vmSymbols::java_lang_IllegalArgumentException(),
1670
"Array element type is not String class", 0);
1671
}
1672
1673
int names_length = names_ah->length();
1674
int num_entries = 0;
1675
for (int i = 0; i < names_length && i < count; i++) {
1676
oop s = names_ah->obj_at(i);
1677
if (s == NULL) {
1678
THROW_(vmSymbols::java_lang_NullPointerException(), 0);
1679
}
1680
1681
Handle sh(THREAD, s);
1682
char* str = java_lang_String::as_utf8_string(s);
1683
Flag* flag = Flag::find_flag(str, strlen(str));
1684
if (flag != NULL &&
1685
add_global_entry(env, sh, &globals[i], flag, THREAD)) {
1686
num_entries++;
1687
} else {
1688
globals[i].name = NULL;
1689
}
1690
}
1691
return num_entries;
1692
} else {
1693
// return all globals if names == NULL
1694
1695
// last flag entry is always NULL, so subtract 1
1696
int nFlags = (int) Flag::numFlags - 1;
1697
Handle null_h;
1698
int num_entries = 0;
1699
for (int i = 0; i < nFlags && num_entries < count; i++) {
1700
Flag* flag = &Flag::flags[i];
1701
// Exclude notproduct and develop flags in product builds.
1702
if (flag->is_constant_in_binary()) {
1703
continue;
1704
}
1705
// Exclude the locked (diagnostic, experimental) flags
1706
if ((flag->is_unlocked() || flag->is_unlocker()) &&
1707
add_global_entry(env, null_h, &globals[num_entries], flag, THREAD)) {
1708
num_entries++;
1709
}
1710
}
1711
return num_entries;
1712
}
1713
JVM_END
1714
1715
JVM_ENTRY(void, jmm_SetVMGlobal(JNIEnv *env, jstring flag_name, jvalue new_value))
1716
ResourceMark rm(THREAD);
1717
1718
oop fn = JNIHandles::resolve_external_guard(flag_name);
1719
if (fn == NULL) {
1720
THROW_MSG(vmSymbols::java_lang_NullPointerException(),
1721
"The flag name cannot be null.");
1722
}
1723
char* name = java_lang_String::as_utf8_string(fn);
1724
Flag* flag = Flag::find_flag(name, strlen(name));
1725
if (flag == NULL) {
1726
THROW_MSG(vmSymbols::java_lang_IllegalArgumentException(),
1727
"Flag does not exist.");
1728
}
1729
if (!flag->is_writeable()) {
1730
THROW_MSG(vmSymbols::java_lang_IllegalArgumentException(),
1731
"This flag is not writeable.");
1732
}
1733
1734
bool succeed = false;
1735
if (flag->is_bool()) {
1736
bool bvalue = (new_value.z == JNI_TRUE ? true : false);
1737
succeed = CommandLineFlags::boolAtPut(name, &bvalue, Flag::MANAGEMENT);
1738
} else if (flag->is_intx()) {
1739
intx ivalue = (intx)new_value.j;
1740
succeed = CommandLineFlags::intxAtPut(name, &ivalue, Flag::MANAGEMENT);
1741
} else if (flag->is_uintx()) {
1742
uintx uvalue = (uintx)new_value.j;
1743
1744
if (strncmp(name, "MaxHeapFreeRatio", 17) == 0) {
1745
FormatBuffer<80> err_msg("%s", "");
1746
if (!Arguments::verify_MaxHeapFreeRatio(err_msg, uvalue)) {
1747
THROW_MSG(vmSymbols::java_lang_IllegalArgumentException(), err_msg.buffer());
1748
}
1749
} else if (strncmp(name, "MinHeapFreeRatio", 17) == 0) {
1750
FormatBuffer<80> err_msg("%s", "");
1751
if (!Arguments::verify_MinHeapFreeRatio(err_msg, uvalue)) {
1752
THROW_MSG(vmSymbols::java_lang_IllegalArgumentException(), err_msg.buffer());
1753
}
1754
}
1755
succeed = CommandLineFlags::uintxAtPut(name, &uvalue, Flag::MANAGEMENT);
1756
} else if (flag->is_uint64_t()) {
1757
uint64_t uvalue = (uint64_t)new_value.j;
1758
succeed = CommandLineFlags::uint64_tAtPut(name, &uvalue, Flag::MANAGEMENT);
1759
} else if (flag->is_ccstr()) {
1760
oop str = JNIHandles::resolve_external_guard(new_value.l);
1761
if (str == NULL) {
1762
THROW(vmSymbols::java_lang_NullPointerException());
1763
}
1764
ccstr svalue = java_lang_String::as_utf8_string(str);
1765
succeed = CommandLineFlags::ccstrAtPut(name, &svalue, Flag::MANAGEMENT);
1766
if (succeed) {
1767
FREE_C_HEAP_ARRAY(char, svalue, mtInternal);
1768
}
1769
}
1770
assert(succeed, "Setting flag should succeed");
1771
JVM_END
1772
1773
class ThreadTimesClosure: public ThreadClosure {
1774
private:
1775
objArrayHandle _names_strings;
1776
char **_names_chars;
1777
typeArrayHandle _times;
1778
int _names_len;
1779
int _times_len;
1780
int _count;
1781
1782
public:
1783
ThreadTimesClosure(objArrayHandle names, typeArrayHandle times);
1784
~ThreadTimesClosure();
1785
virtual void do_thread(Thread* thread);
1786
void do_unlocked();
1787
int count() { return _count; }
1788
};
1789
1790
ThreadTimesClosure::ThreadTimesClosure(objArrayHandle names,
1791
typeArrayHandle times) {
1792
assert(names() != NULL, "names was NULL");
1793
assert(times() != NULL, "times was NULL");
1794
_names_strings = names;
1795
_names_len = names->length();
1796
_names_chars = NEW_C_HEAP_ARRAY(char*, _names_len, mtInternal);
1797
_times = times;
1798
_times_len = times->length();
1799
_count = 0;
1800
}
1801
1802
//
1803
// Called with Threads_lock held
1804
//
1805
void ThreadTimesClosure::do_thread(Thread* thread) {
1806
assert(thread != NULL, "thread was NULL");
1807
1808
// exclude externally visible JavaThreads
1809
if (thread->is_Java_thread() && !thread->is_hidden_from_external_view()) {
1810
return;
1811
}
1812
1813
if (_count >= _names_len || _count >= _times_len) {
1814
// skip if the result array is not big enough
1815
return;
1816
}
1817
1818
EXCEPTION_MARK;
1819
ResourceMark rm(THREAD); // thread->name() uses ResourceArea
1820
1821
assert(thread->name() != NULL, "All threads should have a name");
1822
_names_chars[_count] = strdup(thread->name());
1823
_times->long_at_put(_count, os::is_thread_cpu_time_supported() ?
1824
os::thread_cpu_time(thread) : -1);
1825
_count++;
1826
}
1827
1828
// Called without Threads_lock, we can allocate String objects.
1829
void ThreadTimesClosure::do_unlocked() {
1830
1831
EXCEPTION_MARK;
1832
for (int i = 0; i < _count; i++) {
1833
Handle s = java_lang_String::create_from_str(_names_chars[i], CHECK);
1834
_names_strings->obj_at_put(i, s());
1835
}
1836
}
1837
1838
ThreadTimesClosure::~ThreadTimesClosure() {
1839
for (int i = 0; i < _count; i++) {
1840
free(_names_chars[i]);
1841
}
1842
FREE_C_HEAP_ARRAY(char *, _names_chars, mtInternal);
1843
}
1844
1845
// Fills names with VM internal thread names and times with the corresponding
1846
// CPU times. If names or times is NULL, a NullPointerException is thrown.
1847
// If the element type of names is not String, an IllegalArgumentException is
1848
// thrown.
1849
// If an array is not large enough to hold all the entries, only the entries
1850
// that fit will be returned. Return value is the number of VM internal
1851
// threads entries.
1852
JVM_ENTRY(jint, jmm_GetInternalThreadTimes(JNIEnv *env,
1853
jobjectArray names,
1854
jlongArray times))
1855
if (names == NULL || times == NULL) {
1856
THROW_(vmSymbols::java_lang_NullPointerException(), 0);
1857
}
1858
objArrayOop na = objArrayOop(JNIHandles::resolve_non_null(names));
1859
objArrayHandle names_ah(THREAD, na);
1860
1861
// Make sure we have a String array
1862
Klass* element_klass = ObjArrayKlass::cast(names_ah->klass())->element_klass();
1863
if (element_klass != SystemDictionary::String_klass()) {
1864
THROW_MSG_(vmSymbols::java_lang_IllegalArgumentException(),
1865
"Array element type is not String class", 0);
1866
}
1867
1868
typeArrayOop ta = typeArrayOop(JNIHandles::resolve_non_null(times));
1869
typeArrayHandle times_ah(THREAD, ta);
1870
1871
ThreadTimesClosure ttc(names_ah, times_ah);
1872
{
1873
MutexLockerEx ml(Threads_lock);
1874
Threads::threads_do(&ttc);
1875
}
1876
ttc.do_unlocked();
1877
return ttc.count();
1878
JVM_END
1879
1880
static Handle find_deadlocks(bool object_monitors_only, TRAPS) {
1881
ResourceMark rm(THREAD);
1882
1883
VM_FindDeadlocks op(!object_monitors_only /* also check concurrent locks? */);
1884
VMThread::execute(&op);
1885
1886
DeadlockCycle* deadlocks = op.result();
1887
if (deadlocks == NULL) {
1888
// no deadlock found and return
1889
return Handle();
1890
}
1891
1892
int num_threads = 0;
1893
DeadlockCycle* cycle;
1894
for (cycle = deadlocks; cycle != NULL; cycle = cycle->next()) {
1895
num_threads += cycle->num_threads();
1896
}
1897
1898
objArrayOop r = oopFactory::new_objArray(SystemDictionary::Thread_klass(), num_threads, CHECK_NH);
1899
objArrayHandle threads_ah(THREAD, r);
1900
1901
int index = 0;
1902
for (cycle = deadlocks; cycle != NULL; cycle = cycle->next()) {
1903
GrowableArray<JavaThread*>* deadlock_threads = cycle->threads();
1904
int len = deadlock_threads->length();
1905
for (int i = 0; i < len; i++) {
1906
threads_ah->obj_at_put(index, deadlock_threads->at(i)->threadObj());
1907
index++;
1908
}
1909
}
1910
return threads_ah;
1911
}
1912
1913
// Finds cycles of threads that are deadlocked involved in object monitors
1914
// and JSR-166 synchronizers.
1915
// Returns an array of Thread objects which are in deadlock, if any.
1916
// Otherwise, returns NULL.
1917
//
1918
// Input parameter:
1919
// object_monitors_only - if true, only check object monitors
1920
//
1921
JVM_ENTRY(jobjectArray, jmm_FindDeadlockedThreads(JNIEnv *env, jboolean object_monitors_only))
1922
Handle result = find_deadlocks(object_monitors_only != 0, CHECK_0);
1923
return (jobjectArray) JNIHandles::make_local(env, result());
1924
JVM_END
1925
1926
// Finds cycles of threads that are deadlocked on monitor locks
1927
// Returns an array of Thread objects which are in deadlock, if any.
1928
// Otherwise, returns NULL.
1929
JVM_ENTRY(jobjectArray, jmm_FindMonitorDeadlockedThreads(JNIEnv *env))
1930
Handle result = find_deadlocks(true, CHECK_0);
1931
return (jobjectArray) JNIHandles::make_local(env, result());
1932
JVM_END
1933
1934
// Gets the information about GC extension attributes including
1935
// the name of the attribute, its type, and a short description.
1936
//
1937
// Input parameters:
1938
// mgr - GC memory manager
1939
// info - caller allocated array of jmmExtAttributeInfo
1940
// count - number of elements of the info array
1941
//
1942
// Returns the number of GC extension attributes filled in the info array; or
1943
// -1 if info is not big enough
1944
//
1945
JVM_ENTRY(jint, jmm_GetGCExtAttributeInfo(JNIEnv *env, jobject mgr, jmmExtAttributeInfo* info, jint count))
1946
// All GC memory managers have 1 attribute (number of GC threads)
1947
if (count == 0) {
1948
return 0;
1949
}
1950
1951
if (info == NULL) {
1952
THROW_(vmSymbols::java_lang_NullPointerException(), 0);
1953
}
1954
1955
info[0].name = "GcThreadCount";
1956
info[0].type = 'I';
1957
info[0].description = "Number of GC threads";
1958
return 1;
1959
JVM_END
1960
1961
// verify the given array is an array of java/lang/management/MemoryUsage objects
1962
// of a given length and return the objArrayOop
1963
static objArrayOop get_memory_usage_objArray(jobjectArray array, int length, TRAPS) {
1964
if (array == NULL) {
1965
THROW_(vmSymbols::java_lang_NullPointerException(), 0);
1966
}
1967
1968
objArrayOop oa = objArrayOop(JNIHandles::resolve_non_null(array));
1969
objArrayHandle array_h(THREAD, oa);
1970
1971
// array must be of the given length
1972
if (length != array_h->length()) {
1973
THROW_MSG_(vmSymbols::java_lang_IllegalArgumentException(),
1974
"The length of the given MemoryUsage array does not match the number of memory pools.", 0);
1975
}
1976
1977
// check if the element of array is of type MemoryUsage class
1978
Klass* usage_klass = Management::java_lang_management_MemoryUsage_klass(CHECK_0);
1979
Klass* element_klass = ObjArrayKlass::cast(array_h->klass())->element_klass();
1980
if (element_klass != usage_klass) {
1981
THROW_MSG_(vmSymbols::java_lang_IllegalArgumentException(),
1982
"The element type is not MemoryUsage class", 0);
1983
}
1984
1985
return array_h();
1986
}
1987
1988
// Gets the statistics of the last GC of a given GC memory manager.
1989
// Input parameters:
1990
// obj - GarbageCollectorMXBean object
1991
// gc_stat - caller allocated jmmGCStat where:
1992
// a. before_gc_usage - array of MemoryUsage objects
1993
// b. after_gc_usage - array of MemoryUsage objects
1994
// c. gc_ext_attributes_values_size is set to the
1995
// gc_ext_attribute_values array allocated
1996
// d. gc_ext_attribute_values is a caller allocated array of jvalue.
1997
//
1998
// On return,
1999
// gc_index == 0 indicates no GC statistics available
2000
//
2001
// before_gc_usage and after_gc_usage - filled with per memory pool
2002
// before and after GC usage in the same order as the memory pools
2003
// returned by GetMemoryPools for a given GC memory manager.
2004
// num_gc_ext_attributes indicates the number of elements in
2005
// the gc_ext_attribute_values array is filled; or
2006
// -1 if the gc_ext_attributes_values array is not big enough
2007
//
2008
JVM_ENTRY(void, jmm_GetLastGCStat(JNIEnv *env, jobject obj, jmmGCStat *gc_stat))
2009
ResourceMark rm(THREAD);
2010
2011
if (gc_stat->gc_ext_attribute_values_size > 0 && gc_stat->gc_ext_attribute_values == NULL) {
2012
THROW(vmSymbols::java_lang_NullPointerException());
2013
}
2014
2015
// Get the GCMemoryManager
2016
GCMemoryManager* mgr = get_gc_memory_manager_from_jobject(obj, CHECK);
2017
2018
// Make a copy of the last GC statistics
2019
// GC may occur while constructing the last GC information
2020
int num_pools = MemoryService::num_memory_pools();
2021
GCStatInfo stat(num_pools);
2022
if (mgr->get_last_gc_stat(&stat) == 0) {
2023
gc_stat->gc_index = 0;
2024
return;
2025
}
2026
2027
gc_stat->gc_index = stat.gc_index();
2028
gc_stat->start_time = Management::ticks_to_ms(stat.start_time());
2029
gc_stat->end_time = Management::ticks_to_ms(stat.end_time());
2030
2031
// Current implementation does not have GC extension attributes
2032
gc_stat->num_gc_ext_attributes = 0;
2033
2034
// Fill the arrays of MemoryUsage objects with before and after GC
2035
// per pool memory usage
2036
objArrayOop bu = get_memory_usage_objArray(gc_stat->usage_before_gc,
2037
num_pools,
2038
CHECK);
2039
objArrayHandle usage_before_gc_ah(THREAD, bu);
2040
2041
objArrayOop au = get_memory_usage_objArray(gc_stat->usage_after_gc,
2042
num_pools,
2043
CHECK);
2044
objArrayHandle usage_after_gc_ah(THREAD, au);
2045
2046
for (int i = 0; i < num_pools; i++) {
2047
Handle before_usage = MemoryService::create_MemoryUsage_obj(stat.before_gc_usage_for_pool(i), CHECK);
2048
Handle after_usage;
2049
2050
MemoryUsage u = stat.after_gc_usage_for_pool(i);
2051
if (u.max_size() == 0 && u.used() > 0) {
2052
// If max size == 0, this pool is a survivor space.
2053
// Set max size = -1 since the pools will be swapped after GC.
2054
MemoryUsage usage(u.init_size(), u.used(), u.committed(), (size_t)-1);
2055
after_usage = MemoryService::create_MemoryUsage_obj(usage, CHECK);
2056
} else {
2057
after_usage = MemoryService::create_MemoryUsage_obj(stat.after_gc_usage_for_pool(i), CHECK);
2058
}
2059
usage_before_gc_ah->obj_at_put(i, before_usage());
2060
usage_after_gc_ah->obj_at_put(i, after_usage());
2061
}
2062
2063
if (gc_stat->gc_ext_attribute_values_size > 0) {
2064
// Current implementation only has 1 attribute (number of GC threads)
2065
// The type is 'I'
2066
gc_stat->gc_ext_attribute_values[0].i = mgr->num_gc_threads();
2067
}
2068
JVM_END
2069
2070
JVM_ENTRY(void, jmm_SetGCNotificationEnabled(JNIEnv *env, jobject obj, jboolean enabled))
2071
ResourceMark rm(THREAD);
2072
// Get the GCMemoryManager
2073
GCMemoryManager* mgr = get_gc_memory_manager_from_jobject(obj, CHECK);
2074
mgr->set_notification_enabled(enabled?true:false);
2075
JVM_END
2076
2077
// Dump heap - Returns 0 if succeeds.
2078
JVM_ENTRY(jint, jmm_DumpHeap0(JNIEnv *env, jstring outputfile, jboolean live))
2079
#if INCLUDE_SERVICES
2080
ResourceMark rm(THREAD);
2081
oop on = JNIHandles::resolve_external_guard(outputfile);
2082
if (on == NULL) {
2083
THROW_MSG_(vmSymbols::java_lang_NullPointerException(),
2084
"Output file name cannot be null.", -1);
2085
}
2086
char* name = java_lang_String::as_platform_dependent_str(on, CHECK_(-1));
2087
if (name == NULL) {
2088
THROW_MSG_(vmSymbols::java_lang_NullPointerException(),
2089
"Output file name cannot be null.", -1);
2090
}
2091
HeapDumper dumper(live ? true : false);
2092
if (dumper.dump(name) != 0) {
2093
const char* errmsg = dumper.error_as_C_string();
2094
THROW_MSG_(vmSymbols::java_io_IOException(), errmsg, -1);
2095
}
2096
return 0;
2097
#else // INCLUDE_SERVICES
2098
return -1;
2099
#endif // INCLUDE_SERVICES
2100
JVM_END
2101
2102
JVM_ENTRY(jobjectArray, jmm_GetDiagnosticCommands(JNIEnv *env))
2103
ResourceMark rm(THREAD);
2104
GrowableArray<const char *>* dcmd_list = DCmdFactory::DCmd_list(DCmd_Source_MBean);
2105
objArrayOop cmd_array_oop = oopFactory::new_objArray(SystemDictionary::String_klass(),
2106
dcmd_list->length(), CHECK_NULL);
2107
objArrayHandle cmd_array(THREAD, cmd_array_oop);
2108
for (int i = 0; i < dcmd_list->length(); i++) {
2109
oop cmd_name = java_lang_String::create_oop_from_str(dcmd_list->at(i), CHECK_NULL);
2110
cmd_array->obj_at_put(i, cmd_name);
2111
}
2112
return (jobjectArray) JNIHandles::make_local(env, cmd_array());
2113
JVM_END
2114
2115
JVM_ENTRY(void, jmm_GetDiagnosticCommandInfo(JNIEnv *env, jobjectArray cmds,
2116
dcmdInfo* infoArray))
2117
if (cmds == NULL || infoArray == NULL) {
2118
THROW(vmSymbols::java_lang_NullPointerException());
2119
}
2120
2121
ResourceMark rm(THREAD);
2122
2123
objArrayOop ca = objArrayOop(JNIHandles::resolve_non_null(cmds));
2124
objArrayHandle cmds_ah(THREAD, ca);
2125
2126
// Make sure we have a String array
2127
Klass* element_klass = ObjArrayKlass::cast(cmds_ah->klass())->element_klass();
2128
if (element_klass != SystemDictionary::String_klass()) {
2129
THROW_MSG(vmSymbols::java_lang_IllegalArgumentException(),
2130
"Array element type is not String class");
2131
}
2132
2133
GrowableArray<DCmdInfo *>* info_list = DCmdFactory::DCmdInfo_list(DCmd_Source_MBean);
2134
2135
int num_cmds = cmds_ah->length();
2136
for (int i = 0; i < num_cmds; i++) {
2137
oop cmd = cmds_ah->obj_at(i);
2138
if (cmd == NULL) {
2139
THROW_MSG(vmSymbols::java_lang_NullPointerException(),
2140
"Command name cannot be null.");
2141
}
2142
char* cmd_name = java_lang_String::as_utf8_string(cmd);
2143
if (cmd_name == NULL) {
2144
THROW_MSG(vmSymbols::java_lang_NullPointerException(),
2145
"Command name cannot be null.");
2146
}
2147
int pos = info_list->find((void*)cmd_name,DCmdInfo::by_name);
2148
if (pos == -1) {
2149
THROW_MSG(vmSymbols::java_lang_IllegalArgumentException(),
2150
"Unknown diagnostic command");
2151
}
2152
DCmdInfo* info = info_list->at(pos);
2153
infoArray[i].name = info->name();
2154
infoArray[i].description = info->description();
2155
infoArray[i].impact = info->impact();
2156
JavaPermission p = info->permission();
2157
infoArray[i].permission_class = p._class;
2158
infoArray[i].permission_name = p._name;
2159
infoArray[i].permission_action = p._action;
2160
infoArray[i].num_arguments = info->num_arguments();
2161
infoArray[i].enabled = info->is_enabled();
2162
}
2163
JVM_END
2164
2165
JVM_ENTRY(void, jmm_GetDiagnosticCommandArgumentsInfo(JNIEnv *env,
2166
jstring command, dcmdArgInfo* infoArray))
2167
ResourceMark rm(THREAD);
2168
oop cmd = JNIHandles::resolve_external_guard(command);
2169
if (cmd == NULL) {
2170
THROW_MSG(vmSymbols::java_lang_NullPointerException(),
2171
"Command line cannot be null.");
2172
}
2173
char* cmd_name = java_lang_String::as_utf8_string(cmd);
2174
if (cmd_name == NULL) {
2175
THROW_MSG(vmSymbols::java_lang_NullPointerException(),
2176
"Command line content cannot be null.");
2177
}
2178
DCmd* dcmd = NULL;
2179
DCmdFactory*factory = DCmdFactory::factory(DCmd_Source_MBean, cmd_name,
2180
strlen(cmd_name));
2181
if (factory != NULL) {
2182
dcmd = factory->create_resource_instance(NULL);
2183
}
2184
if (dcmd == NULL) {
2185
THROW_MSG(vmSymbols::java_lang_IllegalArgumentException(),
2186
"Unknown diagnostic command");
2187
}
2188
DCmdMark mark(dcmd);
2189
GrowableArray<DCmdArgumentInfo*>* array = dcmd->argument_info_array();
2190
if (array->length() == 0) {
2191
return;
2192
}
2193
for (int i = 0; i < array->length(); i++) {
2194
infoArray[i].name = array->at(i)->name();
2195
infoArray[i].description = array->at(i)->description();
2196
infoArray[i].type = array->at(i)->type();
2197
infoArray[i].default_string = array->at(i)->default_string();
2198
infoArray[i].mandatory = array->at(i)->is_mandatory();
2199
infoArray[i].option = array->at(i)->is_option();
2200
infoArray[i].multiple = array->at(i)->is_multiple();
2201
infoArray[i].position = array->at(i)->position();
2202
}
2203
return;
2204
JVM_END
2205
2206
JVM_ENTRY(jstring, jmm_ExecuteDiagnosticCommand(JNIEnv *env, jstring commandline))
2207
ResourceMark rm(THREAD);
2208
oop cmd = JNIHandles::resolve_external_guard(commandline);
2209
if (cmd == NULL) {
2210
THROW_MSG_NULL(vmSymbols::java_lang_NullPointerException(),
2211
"Command line cannot be null.");
2212
}
2213
char* cmdline = java_lang_String::as_utf8_string(cmd);
2214
if (cmdline == NULL) {
2215
THROW_MSG_NULL(vmSymbols::java_lang_NullPointerException(),
2216
"Command line content cannot be null.");
2217
}
2218
bufferedStream output;
2219
DCmd::parse_and_execute(DCmd_Source_MBean, &output, cmdline, ' ', CHECK_NULL);
2220
oop result = java_lang_String::create_oop_from_str(output.as_string(), CHECK_NULL);
2221
return (jstring) JNIHandles::make_local(env, result);
2222
JVM_END
2223
2224
JVM_ENTRY(void, jmm_SetDiagnosticFrameworkNotificationEnabled(JNIEnv *env, jboolean enabled))
2225
DCmdFactory::set_jmx_notification_enabled(enabled?true:false);
2226
JVM_END
2227
2228
jlong Management::ticks_to_ms(jlong ticks) {
2229
assert(os::elapsed_frequency() > 0, "Must be non-zero");
2230
return (jlong)(((double)ticks / (double)os::elapsed_frequency())
2231
* (double)1000.0);
2232
}
2233
#endif // INCLUDE_MANAGEMENT
2234
2235
// Gets the amount of memory allocated on the Java heap for a single thread.
2236
// Returns -1 if the thread does not exist or has terminated.
2237
JVM_ENTRY(jlong, jmm_GetOneThreadAllocatedMemory(JNIEnv *env, jlong thread_id))
2238
if (thread_id < 0) {
2239
THROW_MSG_(vmSymbols::java_lang_IllegalArgumentException(),
2240
"Invalid thread ID", -1);
2241
}
2242
2243
if (thread_id == 0) {
2244
// current thread
2245
if (THREAD->is_Java_thread()) {
2246
return ((JavaThread*)THREAD)->cooked_allocated_bytes();
2247
}
2248
return -1;
2249
}
2250
2251
MutexLockerEx ml(Threads_lock);
2252
JavaThread* java_thread = Threads::find_java_thread_from_java_tid(thread_id);
2253
2254
if (java_thread != NULL) {
2255
return java_thread->cooked_allocated_bytes();
2256
}
2257
return -1;
2258
JVM_END
2259
2260
// Gets an array containing the amount of memory allocated on the Java
2261
// heap for a set of threads (in bytes). Each element of the array is
2262
// the amount of memory allocated for the thread ID specified in the
2263
// corresponding entry in the given array of thread IDs; or -1 if the
2264
// thread does not exist or has terminated.
2265
JVM_ENTRY(void, jmm_GetThreadAllocatedMemory(JNIEnv *env, jlongArray ids,
2266
jlongArray sizeArray))
2267
// Check if threads is null
2268
if (ids == NULL || sizeArray == NULL) {
2269
THROW(vmSymbols::java_lang_NullPointerException());
2270
}
2271
2272
ResourceMark rm(THREAD);
2273
typeArrayOop ta = typeArrayOop(JNIHandles::resolve_non_null(ids));
2274
typeArrayHandle ids_ah(THREAD, ta);
2275
2276
typeArrayOop sa = typeArrayOop(JNIHandles::resolve_non_null(sizeArray));
2277
typeArrayHandle sizeArray_h(THREAD, sa);
2278
2279
// validate the thread id array
2280
validate_thread_id_array(ids_ah, CHECK);
2281
2282
// sizeArray must be of the same length as the given array of thread IDs
2283
int num_threads = ids_ah->length();
2284
if (num_threads != sizeArray_h->length()) {
2285
THROW_MSG(vmSymbols::java_lang_IllegalArgumentException(),
2286
"The length of the given long array does not match the length of "
2287
"the given array of thread IDs");
2288
}
2289
2290
MutexLockerEx ml(Threads_lock);
2291
for (int i = 0; i < num_threads; i++) {
2292
JavaThread* java_thread = Threads::find_java_thread_from_java_tid(ids_ah->long_at(i));
2293
if (java_thread != NULL) {
2294
sizeArray_h->long_at_put(i, java_thread->cooked_allocated_bytes());
2295
}
2296
}
2297
JVM_END
2298
2299
// Returns the CPU time consumed by a given thread (in nanoseconds).
2300
// If thread_id == 0, CPU time for the current thread is returned.
2301
// If user_sys_cpu_time = true, user level and system CPU time of
2302
// a given thread is returned; otherwise, only user level CPU time
2303
// is returned.
2304
JVM_ENTRY(jlong, jmm_GetThreadCpuTimeWithKind(JNIEnv *env, jlong thread_id, jboolean user_sys_cpu_time))
2305
if (!os::is_thread_cpu_time_supported()) {
2306
return -1;
2307
}
2308
2309
if (thread_id < 0) {
2310
THROW_MSG_(vmSymbols::java_lang_IllegalArgumentException(),
2311
"Invalid thread ID", -1);
2312
}
2313
2314
JavaThread* java_thread = NULL;
2315
if (thread_id == 0) {
2316
// current thread
2317
return os::current_thread_cpu_time(user_sys_cpu_time != 0);
2318
} else {
2319
MutexLockerEx ml(Threads_lock);
2320
java_thread = Threads::find_java_thread_from_java_tid(thread_id);
2321
if (java_thread != NULL) {
2322
return os::thread_cpu_time((Thread*) java_thread, user_sys_cpu_time != 0);
2323
}
2324
}
2325
return -1;
2326
JVM_END
2327
2328
// Gets an array containing the CPU times consumed by a set of threads
2329
// (in nanoseconds). Each element of the array is the CPU time for the
2330
// thread ID specified in the corresponding entry in the given array
2331
// of thread IDs; or -1 if the thread does not exist or has terminated.
2332
// If user_sys_cpu_time = true, the sum of user level and system CPU time
2333
// for the given thread is returned; otherwise, only user level CPU time
2334
// is returned.
2335
JVM_ENTRY(void, jmm_GetThreadCpuTimesWithKind(JNIEnv *env, jlongArray ids,
2336
jlongArray timeArray,
2337
jboolean user_sys_cpu_time))
2338
// Check if threads is null
2339
if (ids == NULL || timeArray == NULL) {
2340
THROW(vmSymbols::java_lang_NullPointerException());
2341
}
2342
2343
ResourceMark rm(THREAD);
2344
typeArrayOop ta = typeArrayOop(JNIHandles::resolve_non_null(ids));
2345
typeArrayHandle ids_ah(THREAD, ta);
2346
2347
typeArrayOop tia = typeArrayOop(JNIHandles::resolve_non_null(timeArray));
2348
typeArrayHandle timeArray_h(THREAD, tia);
2349
2350
// validate the thread id array
2351
validate_thread_id_array(ids_ah, CHECK);
2352
2353
// timeArray must be of the same length as the given array of thread IDs
2354
int num_threads = ids_ah->length();
2355
if (num_threads != timeArray_h->length()) {
2356
THROW_MSG(vmSymbols::java_lang_IllegalArgumentException(),
2357
"The length of the given long array does not match the length of "
2358
"the given array of thread IDs");
2359
}
2360
2361
MutexLockerEx ml(Threads_lock);
2362
for (int i = 0; i < num_threads; i++) {
2363
JavaThread* java_thread = Threads::find_java_thread_from_java_tid(ids_ah->long_at(i));
2364
if (java_thread != NULL) {
2365
timeArray_h->long_at_put(i, os::thread_cpu_time((Thread*)java_thread,
2366
user_sys_cpu_time != 0));
2367
}
2368
}
2369
JVM_END
2370
2371
2372
2373
#if INCLUDE_MANAGEMENT
2374
const struct jmmInterface_1_ jmm_interface = {
2375
NULL,
2376
jmm_GetOneThreadAllocatedMemory,
2377
jmm_GetVersion,
2378
jmm_GetOptionalSupport,
2379
jmm_GetInputArguments,
2380
jmm_GetThreadInfo,
2381
jmm_GetInputArgumentArray,
2382
jmm_GetMemoryPools,
2383
jmm_GetMemoryManagers,
2384
jmm_GetMemoryPoolUsage,
2385
jmm_GetPeakMemoryPoolUsage,
2386
jmm_GetThreadAllocatedMemory,
2387
jmm_GetMemoryUsage,
2388
jmm_GetLongAttribute,
2389
jmm_GetBoolAttribute,
2390
jmm_SetBoolAttribute,
2391
jmm_GetLongAttributes,
2392
jmm_FindMonitorDeadlockedThreads,
2393
jmm_GetThreadCpuTime,
2394
jmm_GetVMGlobalNames,
2395
jmm_GetVMGlobals,
2396
jmm_GetInternalThreadTimes,
2397
jmm_ResetStatistic,
2398
jmm_SetPoolSensor,
2399
jmm_SetPoolThreshold,
2400
jmm_GetPoolCollectionUsage,
2401
jmm_GetGCExtAttributeInfo,
2402
jmm_GetLastGCStat,
2403
jmm_GetThreadCpuTimeWithKind,
2404
jmm_GetThreadCpuTimesWithKind,
2405
jmm_DumpHeap0,
2406
jmm_FindDeadlockedThreads,
2407
jmm_SetVMGlobal,
2408
jmm_DumpThreadsMaxDepth,
2409
jmm_DumpThreads,
2410
jmm_SetGCNotificationEnabled,
2411
jmm_GetDiagnosticCommands,
2412
jmm_GetDiagnosticCommandInfo,
2413
jmm_GetDiagnosticCommandArgumentsInfo,
2414
jmm_ExecuteDiagnosticCommand,
2415
jmm_SetDiagnosticFrameworkNotificationEnabled
2416
};
2417
#endif // INCLUDE_MANAGEMENT
2418
2419
void* Management::get_jmm_interface(int version) {
2420
#if INCLUDE_MANAGEMENT
2421
if (version == JMM_VERSION_1_0) {
2422
return (void*) &jmm_interface;
2423
}
2424
#endif // INCLUDE_MANAGEMENT
2425
return NULL;
2426
}
2427
2428