src/hotspot/share/include/jmm.h
author dcubed
Wed, 18 Sep 2019 20:49:13 -0400
changeset 58223 778fc2dcbdaa
parent 58208 0f3c23c374a4
child 58348 c29e49148be7
permissions -rw-r--r--
8231210: [BACKOUT] JDK-8207266 ThreadMXBean::getThreadAllocatedBytes() can be quicker for self thread Reviewed-by: phh, dholmes
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
58223
778fc2dcbdaa 8231210: [BACKOUT] JDK-8207266 ThreadMXBean::getThreadAllocatedBytes() can be quicker for self thread
dcubed
parents: 58208
diff changeset
     2
 * Copyright (c) 2003, 2017, Oracle and/or its affiliates. All rights reserved.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     4
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
90ce3da70b43 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
     7
 * published by the Free Software Foundation.  Oracle designates this
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
     9
 * by Oracle in the LICENSE file that accompanied this code.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    10
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    11
 * This code is distributed in the hope that it will be useful, but WITHOUT
90ce3da70b43 Initial load
duke
parents:
diff changeset
    12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    13
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
90ce3da70b43 Initial load
duke
parents:
diff changeset
    14
 * version 2 for more details (a copy is included in the LICENSE file that
90ce3da70b43 Initial load
duke
parents:
diff changeset
    15
 * accompanied this code).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    16
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    17
 * You should have received a copy of the GNU General Public License version
90ce3da70b43 Initial load
duke
parents:
diff changeset
    18
 * 2 along with this work; if not, write to the Free Software Foundation,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    19
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    20
 *
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    23
 * questions.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    24
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
90ce3da70b43 Initial load
duke
parents:
diff changeset
    26
#ifndef _JAVA_JMM_H_
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
#define _JAVA_JMM_H_
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
/*
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
 * This is a private interface used by JDK for JVM monitoring
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
 * and management.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
 * Bump the version number when either of the following happens:
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
 * 1. There is a change in functions in JmmInterface.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
 * 2. There is a change in the contract between VM and Java classes.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
#include "jni.h"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
#ifdef __cplusplus
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
extern "C" {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
#endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
enum {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
  JMM_VERSION_1   = 0x20010000,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
  JMM_VERSION_1_0 = 0x20010000,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
  JMM_VERSION_1_1 = 0x20010100, // JDK 6
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
  JMM_VERSION_1_2 = 0x20010200, // JDK 7
11365
05d995976571 7104647: Adding a diagnostic command framework
fparain
parents: 9698
diff changeset
    51
  JMM_VERSION_1_2_1 = 0x20010201, // JDK 7 GA
17954
885a02686acb 7150256: Add back Diagnostic Command JMX API
fparain
parents: 14342
diff changeset
    52
  JMM_VERSION_1_2_2 = 0x20010202,
47592
68d46cb9be45 8185003: JMX: Add a version of ThreadMXBean.dumpAllThreads with a maxDepth argument
uvangapally
parents: 47216
diff changeset
    53
  JMM_VERSION_2  = 0x20020000,  // JDK 10
68d46cb9be45 8185003: JMX: Add a version of ThreadMXBean.dumpAllThreads with a maxDepth argument
uvangapally
parents: 47216
diff changeset
    54
  JMM_VERSION     = 0x20020000
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
};
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
typedef struct {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
  unsigned int isLowMemoryDetectionSupported : 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
  unsigned int isCompilationTimeMonitoringSupported : 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
  unsigned int isThreadContentionMonitoringSupported : 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
  unsigned int isCurrentThreadCpuTimeSupported : 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
  unsigned int isOtherThreadCpuTimeSupported : 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
  unsigned int isObjectMonitorUsageSupported : 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
  unsigned int isSynchronizerUsageSupported : 1;
8001
192adf3627b7 6173675: M&M: approximate memory allocation rate/amount per thread
phh
parents: 5506
diff changeset
    65
  unsigned int isThreadAllocatedMemorySupported : 1;
17954
885a02686acb 7150256: Add back Diagnostic Command JMX API
fparain
parents: 14342
diff changeset
    66
  unsigned int isRemoteDiagnosticCommandsSupported : 1;
885a02686acb 7150256: Add back Diagnostic Command JMX API
fparain
parents: 14342
diff changeset
    67
  unsigned int : 22;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
} jmmOptionalSupport;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
typedef enum {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
  JMM_CLASS_LOADED_COUNT             = 1,    /* Total number of loaded classes */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
  JMM_CLASS_UNLOADED_COUNT           = 2,    /* Total number of unloaded classes */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
  JMM_THREAD_TOTAL_COUNT             = 3,    /* Total number of threads that have been started */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
  JMM_THREAD_LIVE_COUNT              = 4,    /* Current number of live threads */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
  JMM_THREAD_PEAK_COUNT              = 5,    /* Peak number of live threads */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
  JMM_THREAD_DAEMON_COUNT            = 6,    /* Current number of daemon threads */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
  JMM_JVM_INIT_DONE_TIME_MS          = 7,    /* Time when the JVM finished initialization */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
  JMM_COMPILE_TOTAL_TIME_MS          = 8,    /* Total accumulated time spent in compilation */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
  JMM_GC_TIME_MS                     = 9,    /* Total accumulated time spent in collection */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
  JMM_GC_COUNT                       = 10,   /* Total number of collections */
21640
6bbdcc430310 6523160: RuntimeMXBean.getUptime() returns negative values
jbachorik
parents: 17954
diff changeset
    81
  JMM_JVM_UPTIME_MS                  = 11,   /* The JVM uptime in milliseconds */
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
  JMM_INTERNAL_ATTRIBUTE_INDEX       = 100,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
  JMM_CLASS_LOADED_BYTES             = 101,  /* Number of bytes loaded instance classes */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
  JMM_CLASS_UNLOADED_BYTES           = 102,  /* Number of bytes unloaded instance classes */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
  JMM_TOTAL_CLASSLOAD_TIME_MS        = 103,  /* Accumulated VM class loader time (TraceClassLoadingTime) */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
  JMM_VM_GLOBAL_COUNT                = 104,  /* Number of VM internal flags */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
  JMM_SAFEPOINT_COUNT                = 105,  /* Total number of safepoints */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
  JMM_TOTAL_SAFEPOINTSYNC_TIME_MS    = 106,  /* Accumulated time spent getting to safepoints */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
  JMM_TOTAL_STOPPED_TIME_MS          = 107,  /* Accumulated time spent at safepoints */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
  JMM_TOTAL_APP_TIME_MS              = 108,  /* Accumulated time spent in Java application */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
  JMM_VM_THREAD_COUNT                = 109,  /* Current number of VM internal threads */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
  JMM_CLASS_INIT_TOTAL_COUNT         = 110,  /* Number of classes for which initializers were run */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
  JMM_CLASS_INIT_TOTAL_TIME_MS       = 111,  /* Accumulated time spent in class initializers */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
  JMM_METHOD_DATA_SIZE_BYTES         = 112,  /* Size of method data in memory */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
  JMM_CLASS_VERIFY_TOTAL_TIME_MS     = 113,  /* Accumulated time spent in class verifier */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
  JMM_SHARED_CLASS_LOADED_COUNT      = 114,  /* Number of shared classes loaded */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
  JMM_SHARED_CLASS_UNLOADED_COUNT    = 115,  /* Number of shared classes unloaded */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
  JMM_SHARED_CLASS_LOADED_BYTES      = 116,  /* Number of bytes loaded shared classes */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
  JMM_SHARED_CLASS_UNLOADED_BYTES    = 117,  /* Number of bytes unloaded shared classes */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
  JMM_OS_ATTRIBUTE_INDEX             = 200,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
  JMM_OS_PROCESS_ID                  = 201,  /* Process id of the JVM */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
  JMM_OS_MEM_TOTAL_PHYSICAL_BYTES    = 202,  /* Physical memory size */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
  JMM_GC_EXT_ATTRIBUTE_INFO_SIZE     = 401   /* the size of the GC specific attributes for a given GC memory manager */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
} jmmLongAttribute;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
typedef enum {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
  JMM_VERBOSE_GC                     = 21,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
  JMM_VERBOSE_CLASS                  = 22,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
  JMM_THREAD_CONTENTION_MONITORING   = 23,
8001
192adf3627b7 6173675: M&M: approximate memory allocation rate/amount per thread
phh
parents: 5506
diff changeset
   113
  JMM_THREAD_CPU_TIME                = 24,
192adf3627b7 6173675: M&M: approximate memory allocation rate/amount per thread
phh
parents: 5506
diff changeset
   114
  JMM_THREAD_ALLOCATED_MEMORY        = 25
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
} jmmBoolAttribute;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
enum {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
  JMM_THREAD_STATE_FLAG_SUSPENDED = 0x00100000,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
  JMM_THREAD_STATE_FLAG_NATIVE    = 0x00400000
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
};
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
#define JMM_THREAD_STATE_FLAG_MASK  0xFFF00000
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
typedef enum {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
  JMM_STAT_PEAK_THREAD_COUNT         = 801,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
  JMM_STAT_THREAD_CONTENTION_COUNT   = 802,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
  JMM_STAT_THREAD_CONTENTION_TIME    = 803,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
  JMM_STAT_THREAD_CONTENTION_STAT    = 804,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
  JMM_STAT_PEAK_POOL_USAGE           = 805,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
  JMM_STAT_GC_STAT                   = 806
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
} jmmStatisticType;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
typedef enum {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
  JMM_USAGE_THRESHOLD_HIGH            = 901,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
  JMM_USAGE_THRESHOLD_LOW             = 902,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
  JMM_COLLECTION_USAGE_THRESHOLD_HIGH = 903,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
  JMM_COLLECTION_USAGE_THRESHOLD_LOW  = 904
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
} jmmThresholdType;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
/* Should match what is allowed in globals.hpp */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
typedef enum {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
  JMM_VMGLOBAL_TYPE_UNKNOWN  = 0,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
  JMM_VMGLOBAL_TYPE_JBOOLEAN = 1,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
  JMM_VMGLOBAL_TYPE_JSTRING  = 2,
27493
8a2a7d7c52a0 8061616: HotspotDiagnosticMXBean.getVMOption() throws IllegalArgumentException for flags of type double
jbachorik
parents: 25859
diff changeset
   146
  JMM_VMGLOBAL_TYPE_JLONG    = 3,
8a2a7d7c52a0 8061616: HotspotDiagnosticMXBean.getVMOption() throws IllegalArgumentException for flags of type double
jbachorik
parents: 25859
diff changeset
   147
  JMM_VMGLOBAL_TYPE_JDOUBLE  = 4
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   148
} jmmVMGlobalType;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   149
90ce3da70b43 Initial load
duke
parents:
diff changeset
   150
typedef enum {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   151
  JMM_VMGLOBAL_ORIGIN_DEFAULT      = 1,   /* Default value */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   152
  JMM_VMGLOBAL_ORIGIN_COMMAND_LINE = 2,   /* Set at command line (or JNI invocation) */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   153
  JMM_VMGLOBAL_ORIGIN_MANAGEMENT   = 3,   /* Set via management interface */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   154
  JMM_VMGLOBAL_ORIGIN_ENVIRON_VAR  = 4,   /* Set via environment variables */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   155
  JMM_VMGLOBAL_ORIGIN_CONFIG_FILE  = 5,   /* Set via config file (such as .hotspotrc) */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   156
  JMM_VMGLOBAL_ORIGIN_ERGONOMIC    = 6,   /* Set via ergonomic */
22299
ee71d2eaa085 8028994: com.sun.management.VMOption is missing the ATTACH_ON_DEMAND origin
sla
parents: 21640
diff changeset
   157
  JMM_VMGLOBAL_ORIGIN_ATTACH_ON_DEMAND = 7,   /* Set via attach */
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
  JMM_VMGLOBAL_ORIGIN_OTHER        = 99   /* Set via some other mechanism */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   159
} jmmVMGlobalOrigin;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   160
90ce3da70b43 Initial load
duke
parents:
diff changeset
   161
typedef struct {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   162
  jstring           name;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   163
  jvalue            value;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   164
  jmmVMGlobalType   type;           /* Data type */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   165
  jmmVMGlobalOrigin origin;         /* Default or non-default value */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   166
  unsigned int      writeable : 1;  /* dynamically writeable */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   167
  unsigned int      external  : 1;  /* external supported interface */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   168
  unsigned int      reserved  : 30;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   169
  void *reserved1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   170
  void *reserved2;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   171
} jmmVMGlobal;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   172
90ce3da70b43 Initial load
duke
parents:
diff changeset
   173
typedef struct {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   174
  const char*  name;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   175
  char         type;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   176
  const char*  description;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   177
} jmmExtAttributeInfo;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   178
90ce3da70b43 Initial load
duke
parents:
diff changeset
   179
/* Caller has to set the following fields before calling GetLastGCStat
90ce3da70b43 Initial load
duke
parents:
diff changeset
   180
 *   o usage_before_gc               - array of MemoryUsage objects
90ce3da70b43 Initial load
duke
parents:
diff changeset
   181
 *   o usage_after_gc                - array of MemoryUsage objects
90ce3da70b43 Initial load
duke
parents:
diff changeset
   182
 *   o gc_ext_attribute_values_size - size of gc_ext_atttribute_values array
90ce3da70b43 Initial load
duke
parents:
diff changeset
   183
 *   o gc_ext_attribtue_values      - array of jvalues
90ce3da70b43 Initial load
duke
parents:
diff changeset
   184
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   185
typedef struct {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   186
  jlong        gc_index;                       /* Index of the collections */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   187
  jlong        start_time;                     /* Start time of the GC */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   188
  jlong        end_time;                       /* End time of the GC */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   189
  jobjectArray usage_before_gc;                /* Memory usage array before GC */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   190
  jobjectArray usage_after_gc;                 /* Memory usage array after GC */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   191
  jint         gc_ext_attribute_values_size;   /* set by the caller of GetGCStat */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   192
  jvalue*      gc_ext_attribute_values;        /* Array of jvalue for GC extension attributes */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   193
  jint         num_gc_ext_attributes;          /* number of GC extension attribute values s are filled */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   194
                                               /* -1 indicates gc_ext_attribute_values is not big enough */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   195
} jmmGCStat;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   196
11365
05d995976571 7104647: Adding a diagnostic command framework
fparain
parents: 9698
diff changeset
   197
typedef struct {
17954
885a02686acb 7150256: Add back Diagnostic Command JMX API
fparain
parents: 14342
diff changeset
   198
  const char* name;                /* Name of the diagnostic command */
885a02686acb 7150256: Add back Diagnostic Command JMX API
fparain
parents: 14342
diff changeset
   199
  const char* description;         /* Short description */
885a02686acb 7150256: Add back Diagnostic Command JMX API
fparain
parents: 14342
diff changeset
   200
  const char* impact;              /* Impact on the JVM */
885a02686acb 7150256: Add back Diagnostic Command JMX API
fparain
parents: 14342
diff changeset
   201
  const char* permission_class;    /* Class name of the required permission if any */
885a02686acb 7150256: Add back Diagnostic Command JMX API
fparain
parents: 14342
diff changeset
   202
  const char* permission_name;     /* Permission name of the required permission if any */
885a02686acb 7150256: Add back Diagnostic Command JMX API
fparain
parents: 14342
diff changeset
   203
  const char* permission_action;   /* Action name of the required permission if any*/
885a02686acb 7150256: Add back Diagnostic Command JMX API
fparain
parents: 14342
diff changeset
   204
  int         num_arguments;       /* Number of supported options or arguments */
885a02686acb 7150256: Add back Diagnostic Command JMX API
fparain
parents: 14342
diff changeset
   205
  jboolean    enabled;             /* True if the diagnostic command can be invoked, false otherwise*/
11365
05d995976571 7104647: Adding a diagnostic command framework
fparain
parents: 9698
diff changeset
   206
} dcmdInfo;
05d995976571 7104647: Adding a diagnostic command framework
fparain
parents: 9698
diff changeset
   207
05d995976571 7104647: Adding a diagnostic command framework
fparain
parents: 9698
diff changeset
   208
typedef struct {
17954
885a02686acb 7150256: Add back Diagnostic Command JMX API
fparain
parents: 14342
diff changeset
   209
  const char* name;                /* Option/Argument name*/
885a02686acb 7150256: Add back Diagnostic Command JMX API
fparain
parents: 14342
diff changeset
   210
  const char* description;         /* Short description */
885a02686acb 7150256: Add back Diagnostic Command JMX API
fparain
parents: 14342
diff changeset
   211
  const char* type;                /* Type: STRING, BOOLEAN, etc. */
885a02686acb 7150256: Add back Diagnostic Command JMX API
fparain
parents: 14342
diff changeset
   212
  const char* default_string;      /* Default value in a parsable string */
885a02686acb 7150256: Add back Diagnostic Command JMX API
fparain
parents: 14342
diff changeset
   213
  jboolean    mandatory;           /* True if the option/argument is mandatory */
885a02686acb 7150256: Add back Diagnostic Command JMX API
fparain
parents: 14342
diff changeset
   214
  jboolean    option;              /* True if it is an option, false if it is an argument */
885a02686acb 7150256: Add back Diagnostic Command JMX API
fparain
parents: 14342
diff changeset
   215
                                   /* (see diagnosticFramework.hpp for option/argument definitions) */
885a02686acb 7150256: Add back Diagnostic Command JMX API
fparain
parents: 14342
diff changeset
   216
  jboolean    multiple;            /* True is the option can be specified several time */
885a02686acb 7150256: Add back Diagnostic Command JMX API
fparain
parents: 14342
diff changeset
   217
  int         position;            /* Expected position for this argument (this field is */
885a02686acb 7150256: Add back Diagnostic Command JMX API
fparain
parents: 14342
diff changeset
   218
                                   /* meaningless for options) */
11365
05d995976571 7104647: Adding a diagnostic command framework
fparain
parents: 9698
diff changeset
   219
} dcmdArgInfo;
05d995976571 7104647: Adding a diagnostic command framework
fparain
parents: 9698
diff changeset
   220
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   221
typedef struct jmmInterface_1_ {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   222
  void*        reserved1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   223
  void*        reserved2;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   224
90ce3da70b43 Initial load
duke
parents:
diff changeset
   225
  jint         (JNICALL *GetVersion)             (JNIEnv *env);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   226
90ce3da70b43 Initial load
duke
parents:
diff changeset
   227
  jint         (JNICALL *GetOptionalSupport)     (JNIEnv *env,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   228
                                                  jmmOptionalSupport* support_ptr);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   229
90ce3da70b43 Initial load
duke
parents:
diff changeset
   230
  jint         (JNICALL *GetThreadInfo)          (JNIEnv *env,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   231
                                                  jlongArray ids,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   232
                                                  jint maxDepth,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   233
                                                  jobjectArray infoArray);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   234
90ce3da70b43 Initial load
duke
parents:
diff changeset
   235
  jobjectArray (JNICALL *GetMemoryPools)         (JNIEnv* env, jobject mgr);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   236
90ce3da70b43 Initial load
duke
parents:
diff changeset
   237
  jobjectArray (JNICALL *GetMemoryManagers)      (JNIEnv* env, jobject pool);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   238
90ce3da70b43 Initial load
duke
parents:
diff changeset
   239
  jobject      (JNICALL *GetMemoryPoolUsage)     (JNIEnv* env, jobject pool);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   240
  jobject      (JNICALL *GetPeakMemoryPoolUsage) (JNIEnv* env, jobject pool);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   241
8001
192adf3627b7 6173675: M&M: approximate memory allocation rate/amount per thread
phh
parents: 5506
diff changeset
   242
  void         (JNICALL *GetThreadAllocatedMemory)
192adf3627b7 6173675: M&M: approximate memory allocation rate/amount per thread
phh
parents: 5506
diff changeset
   243
                                                 (JNIEnv *env,
192adf3627b7 6173675: M&M: approximate memory allocation rate/amount per thread
phh
parents: 5506
diff changeset
   244
                                                  jlongArray ids,
192adf3627b7 6173675: M&M: approximate memory allocation rate/amount per thread
phh
parents: 5506
diff changeset
   245
                                                  jlongArray sizeArray);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   246
90ce3da70b43 Initial load
duke
parents:
diff changeset
   247
  jobject      (JNICALL *GetMemoryUsage)         (JNIEnv* env, jboolean heap);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   248
90ce3da70b43 Initial load
duke
parents:
diff changeset
   249
  jlong        (JNICALL *GetLongAttribute)       (JNIEnv *env, jobject obj, jmmLongAttribute att);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   250
  jboolean     (JNICALL *GetBoolAttribute)       (JNIEnv *env, jmmBoolAttribute att);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   251
  jboolean     (JNICALL *SetBoolAttribute)       (JNIEnv *env, jmmBoolAttribute att, jboolean flag);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   252
90ce3da70b43 Initial load
duke
parents:
diff changeset
   253
  jint         (JNICALL *GetLongAttributes)      (JNIEnv *env,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   254
                                                  jobject obj,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   255
                                                  jmmLongAttribute* atts,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   256
                                                  jint count,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   257
                                                  jlong* result);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   258
90ce3da70b43 Initial load
duke
parents:
diff changeset
   259
  jobjectArray (JNICALL *FindCircularBlockedThreads) (JNIEnv *env);
8001
192adf3627b7 6173675: M&M: approximate memory allocation rate/amount per thread
phh
parents: 5506
diff changeset
   260
192adf3627b7 6173675: M&M: approximate memory allocation rate/amount per thread
phh
parents: 5506
diff changeset
   261
  // Not used in JDK 6 or JDK 7
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   262
  jlong        (JNICALL *GetThreadCpuTime)       (JNIEnv *env, jlong thread_id);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   263
90ce3da70b43 Initial load
duke
parents:
diff changeset
   264
  jobjectArray (JNICALL *GetVMGlobalNames)       (JNIEnv *env);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   265
  jint         (JNICALL *GetVMGlobals)           (JNIEnv *env,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   266
                                                  jobjectArray names,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   267
                                                  jmmVMGlobal *globals,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   268
                                                  jint count);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   269
90ce3da70b43 Initial load
duke
parents:
diff changeset
   270
  jint         (JNICALL *GetInternalThreadTimes) (JNIEnv *env,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   271
                                                  jobjectArray names,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   272
                                                  jlongArray times);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   273
90ce3da70b43 Initial load
duke
parents:
diff changeset
   274
  jboolean     (JNICALL *ResetStatistic)         (JNIEnv *env,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   275
                                                  jvalue obj,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   276
                                                  jmmStatisticType type);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   277
90ce3da70b43 Initial load
duke
parents:
diff changeset
   278
  void         (JNICALL *SetPoolSensor)          (JNIEnv *env,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   279
                                                  jobject pool,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   280
                                                  jmmThresholdType type,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   281
                                                  jobject sensor);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   282
90ce3da70b43 Initial load
duke
parents:
diff changeset
   283
  jlong        (JNICALL *SetPoolThreshold)       (JNIEnv *env,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   284
                                                  jobject pool,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   285
                                                  jmmThresholdType type,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   286
                                                  jlong threshold);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   287
  jobject      (JNICALL *GetPoolCollectionUsage) (JNIEnv* env, jobject pool);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   288
90ce3da70b43 Initial load
duke
parents:
diff changeset
   289
  jint         (JNICALL *GetGCExtAttributeInfo)  (JNIEnv *env,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   290
                                                  jobject mgr,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   291
                                                  jmmExtAttributeInfo *ext_info,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   292
                                                  jint count);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   293
  void         (JNICALL *GetLastGCStat)          (JNIEnv *env,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   294
                                                  jobject mgr,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   295
                                                  jmmGCStat *gc_stat);
8001
192adf3627b7 6173675: M&M: approximate memory allocation rate/amount per thread
phh
parents: 5506
diff changeset
   296
192adf3627b7 6173675: M&M: approximate memory allocation rate/amount per thread
phh
parents: 5506
diff changeset
   297
  jlong        (JNICALL *GetThreadCpuTimeWithKind)
192adf3627b7 6173675: M&M: approximate memory allocation rate/amount per thread
phh
parents: 5506
diff changeset
   298
                                                 (JNIEnv *env,
192adf3627b7 6173675: M&M: approximate memory allocation rate/amount per thread
phh
parents: 5506
diff changeset
   299
                                                  jlong thread_id,
192adf3627b7 6173675: M&M: approximate memory allocation rate/amount per thread
phh
parents: 5506
diff changeset
   300
                                                  jboolean user_sys_cpu_time);
192adf3627b7 6173675: M&M: approximate memory allocation rate/amount per thread
phh
parents: 5506
diff changeset
   301
  void         (JNICALL *GetThreadCpuTimesWithKind)
192adf3627b7 6173675: M&M: approximate memory allocation rate/amount per thread
phh
parents: 5506
diff changeset
   302
                                                 (JNIEnv *env,
192adf3627b7 6173675: M&M: approximate memory allocation rate/amount per thread
phh
parents: 5506
diff changeset
   303
                                                  jlongArray ids,
192adf3627b7 6173675: M&M: approximate memory allocation rate/amount per thread
phh
parents: 5506
diff changeset
   304
                                                  jlongArray timeArray,
192adf3627b7 6173675: M&M: approximate memory allocation rate/amount per thread
phh
parents: 5506
diff changeset
   305
                                                  jboolean user_sys_cpu_time);
192adf3627b7 6173675: M&M: approximate memory allocation rate/amount per thread
phh
parents: 5506
diff changeset
   306
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   307
  jint         (JNICALL *DumpHeap0)              (JNIEnv *env,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   308
                                                  jstring outputfile,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   309
                                                  jboolean live);
8001
192adf3627b7 6173675: M&M: approximate memory allocation rate/amount per thread
phh
parents: 5506
diff changeset
   310
  jobjectArray (JNICALL *FindDeadlocks)          (JNIEnv *env,
192adf3627b7 6173675: M&M: approximate memory allocation rate/amount per thread
phh
parents: 5506
diff changeset
   311
                                                  jboolean object_monitors_only);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   312
  void         (JNICALL *SetVMGlobal)            (JNIEnv *env,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   313
                                                  jstring flag_name,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   314
                                                  jvalue  new_value);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   315
  void*        reserved6;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   316
  jobjectArray (JNICALL *DumpThreads)            (JNIEnv *env,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   317
                                                  jlongArray ids,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   318
                                                  jboolean lockedMonitors,
47592
68d46cb9be45 8185003: JMX: Add a version of ThreadMXBean.dumpAllThreads with a maxDepth argument
uvangapally
parents: 47216
diff changeset
   319
                                                  jboolean lockedSynchronizers,
68d46cb9be45 8185003: JMX: Add a version of ThreadMXBean.dumpAllThreads with a maxDepth argument
uvangapally
parents: 47216
diff changeset
   320
                                                  jint maxDepth);
11365
05d995976571 7104647: Adding a diagnostic command framework
fparain
parents: 9698
diff changeset
   321
  void         (JNICALL *SetGCNotificationEnabled) (JNIEnv *env,
05d995976571 7104647: Adding a diagnostic command framework
fparain
parents: 9698
diff changeset
   322
                                                    jobject mgr,
05d995976571 7104647: Adding a diagnostic command framework
fparain
parents: 9698
diff changeset
   323
                                                    jboolean enabled);
05d995976571 7104647: Adding a diagnostic command framework
fparain
parents: 9698
diff changeset
   324
  jobjectArray (JNICALL *GetDiagnosticCommands)  (JNIEnv *env);
05d995976571 7104647: Adding a diagnostic command framework
fparain
parents: 9698
diff changeset
   325
  void         (JNICALL *GetDiagnosticCommandInfo)
05d995976571 7104647: Adding a diagnostic command framework
fparain
parents: 9698
diff changeset
   326
                                                 (JNIEnv *env,
05d995976571 7104647: Adding a diagnostic command framework
fparain
parents: 9698
diff changeset
   327
                                                  jobjectArray cmds,
05d995976571 7104647: Adding a diagnostic command framework
fparain
parents: 9698
diff changeset
   328
                                                  dcmdInfo *infoArray);
05d995976571 7104647: Adding a diagnostic command framework
fparain
parents: 9698
diff changeset
   329
  void         (JNICALL *GetDiagnosticCommandArgumentsInfo)
05d995976571 7104647: Adding a diagnostic command framework
fparain
parents: 9698
diff changeset
   330
                                                 (JNIEnv *env,
05d995976571 7104647: Adding a diagnostic command framework
fparain
parents: 9698
diff changeset
   331
                                                  jstring commandName,
05d995976571 7104647: Adding a diagnostic command framework
fparain
parents: 9698
diff changeset
   332
                                                  dcmdArgInfo *infoArray);
05d995976571 7104647: Adding a diagnostic command framework
fparain
parents: 9698
diff changeset
   333
  jstring      (JNICALL *ExecuteDiagnosticCommand)
05d995976571 7104647: Adding a diagnostic command framework
fparain
parents: 9698
diff changeset
   334
                                                 (JNIEnv *env,
05d995976571 7104647: Adding a diagnostic command framework
fparain
parents: 9698
diff changeset
   335
                                                  jstring command);
17954
885a02686acb 7150256: Add back Diagnostic Command JMX API
fparain
parents: 14342
diff changeset
   336
  void         (JNICALL *SetDiagnosticFrameworkNotificationEnabled)
885a02686acb 7150256: Add back Diagnostic Command JMX API
fparain
parents: 14342
diff changeset
   337
                                                 (JNIEnv *env,
885a02686acb 7150256: Add back Diagnostic Command JMX API
fparain
parents: 14342
diff changeset
   338
                                                  jboolean enabled);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   339
} JmmInterface;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   340
90ce3da70b43 Initial load
duke
parents:
diff changeset
   341
#ifdef __cplusplus
90ce3da70b43 Initial load
duke
parents:
diff changeset
   342
} /* extern "C" */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   343
#endif /* __cplusplus */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   344
90ce3da70b43 Initial load
duke
parents:
diff changeset
   345
#endif /* !_JAVA_JMM_H_ */