hotspot/src/share/vm/services/management.hpp
author jprovino
Wed, 10 Oct 2012 14:35:58 -0400
changeset 13975 2f7431485cfa
parent 13728 882756847a04
child 17296 68557efd8583
permissions -rw-r--r--
7189254: Change makefiles for more flexibility to override defaults Summary: Change makefiles so that targets and parameters can be overridden by alternate makefiles. Reviewed-by: dholmes, coleenp
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11421
diff changeset
     2
 * Copyright (c) 2003, 2012, Oracle and/or its affiliates. All rights reserved.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     4
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
489c9b5090e2 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
489c9b5090e2 Initial load
duke
parents:
diff changeset
     7
 * published by the Free Software Foundation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     8
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
489c9b5090e2 Initial load
duke
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
489c9b5090e2 Initial load
duke
parents:
diff changeset
    13
 * accompanied this code).
489c9b5090e2 Initial load
duke
parents:
diff changeset
    14
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
489c9b5090e2 Initial load
duke
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    18
 *
5547
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1
diff changeset
    21
 * questions.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    22
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    23
 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    24
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    25
#ifndef SHARE_VM_SERVICES_MANAGEMENT_HPP
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    26
#define SHARE_VM_SERVICES_MANAGEMENT_HPP
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    27
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    28
#include "memory/allocation.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    29
#include "runtime/handles.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    30
#include "runtime/timer.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    31
#include "services/jmm.h"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    32
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
class OopClosure;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
class ThreadSnapshot;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
class Management : public AllStatic {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
  static PerfVariable*      _begin_vm_creation_time;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
  static PerfVariable*      _end_vm_creation_time;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
  static PerfVariable*      _vm_init_done_time;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
  static jmmOptionalSupport _optional_support;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
  static TimeStamp          _stamp; // Timestamp since vm init done time
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
  // Management klasses
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11421
diff changeset
    45
  static Klass*             _sensor_klass;
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11421
diff changeset
    46
  static Klass*             _threadInfo_klass;
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11421
diff changeset
    47
  static Klass*             _memoryUsage_klass;
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11421
diff changeset
    48
  static Klass*             _memoryPoolMXBean_klass;
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11421
diff changeset
    49
  static Klass*             _memoryManagerMXBean_klass;
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11421
diff changeset
    50
  static Klass*             _garbageCollectorMXBean_klass;
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11421
diff changeset
    51
  static Klass*             _managementFactory_klass;
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11421
diff changeset
    52
  static Klass*             _garbageCollectorImpl_klass;
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11421
diff changeset
    53
  static Klass*             _gcInfo_klass;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11421
diff changeset
    55
  static Klass* load_and_initialize_klass(Symbol* sh, TRAPS);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
  static void init();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
  static void initialize(TRAPS);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
13975
2f7431485cfa 7189254: Change makefiles for more flexibility to override defaults
jprovino
parents: 13728
diff changeset
    61
  static jlong ticks_to_ms(jlong ticks) NOT_MANAGEMENT_RETURN_(0L);
2f7431485cfa 7189254: Change makefiles for more flexibility to override defaults
jprovino
parents: 13728
diff changeset
    62
  static jlong timestamp() NOT_MANAGEMENT_RETURN_(0L);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
13975
2f7431485cfa 7189254: Change makefiles for more flexibility to override defaults
jprovino
parents: 13728
diff changeset
    64
  static void  oops_do(OopClosure* f) NOT_MANAGEMENT_RETURN;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
  static void* get_jmm_interface(int version);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
  static void  get_optional_support(jmmOptionalSupport* support);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
  static void get_loaded_classes(JavaThread* cur_thread, GrowableArray<KlassHandle>* klass_handle_array);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
13975
2f7431485cfa 7189254: Change makefiles for more flexibility to override defaults
jprovino
parents: 13728
diff changeset
    70
  static void  record_vm_startup_time(jlong begin, jlong duration)
2f7431485cfa 7189254: Change makefiles for more flexibility to override defaults
jprovino
parents: 13728
diff changeset
    71
      NOT_MANAGEMENT_RETURN;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
  static void  record_vm_init_completed() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
    // Initialize the timestamp to get the current time
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
    _vm_init_done_time->set_value(os::javaTimeMillis());
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
    // Update the timestamp to the vm init done time
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
    _stamp.update();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
11421
83e0636dc42c 7126480: Make JVM start time in milliseconds since the Java epoch available
phh
parents: 9623
diff changeset
    80
  static jlong begin_vm_creation_time() {
83e0636dc42c 7126480: Make JVM start time in milliseconds since the Java epoch available
phh
parents: 9623
diff changeset
    81
    return _begin_vm_creation_time->get_value();
83e0636dc42c 7126480: Make JVM start time in milliseconds since the Java epoch available
phh
parents: 9623
diff changeset
    82
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
  static jlong vm_init_done_time() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
    return _vm_init_done_time->get_value();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11421
diff changeset
    87
  // methods to return a Klass*.
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11421
diff changeset
    88
  static Klass* java_lang_management_ThreadInfo_klass(TRAPS);
13975
2f7431485cfa 7189254: Change makefiles for more flexibility to override defaults
jprovino
parents: 13728
diff changeset
    89
  static Klass* java_lang_management_MemoryUsage_klass(TRAPS)
2f7431485cfa 7189254: Change makefiles for more flexibility to override defaults
jprovino
parents: 13728
diff changeset
    90
      NOT_MANAGEMENT_RETURN_(NULL);
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11421
diff changeset
    91
  static Klass* java_lang_management_MemoryPoolMXBean_klass(TRAPS);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11421
diff changeset
    92
  static Klass* java_lang_management_MemoryManagerMXBean_klass(TRAPS);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 11421
diff changeset
    93
  static Klass* java_lang_management_GarbageCollectorMXBean_klass(TRAPS);
13975
2f7431485cfa 7189254: Change makefiles for more flexibility to override defaults
jprovino
parents: 13728
diff changeset
    94
  static Klass* sun_management_Sensor_klass(TRAPS)
2f7431485cfa 7189254: Change makefiles for more flexibility to override defaults
jprovino
parents: 13728
diff changeset
    95
      NOT_MANAGEMENT_RETURN_(NULL);
2f7431485cfa 7189254: Change makefiles for more flexibility to override defaults
jprovino
parents: 13728
diff changeset
    96
  static Klass* sun_management_ManagementFactory_klass(TRAPS)
2f7431485cfa 7189254: Change makefiles for more flexibility to override defaults
jprovino
parents: 13728
diff changeset
    97
      NOT_MANAGEMENT_RETURN_(NULL);
2f7431485cfa 7189254: Change makefiles for more flexibility to override defaults
jprovino
parents: 13728
diff changeset
    98
  static Klass* sun_management_GarbageCollectorImpl_klass(TRAPS)
2f7431485cfa 7189254: Change makefiles for more flexibility to override defaults
jprovino
parents: 13728
diff changeset
    99
      NOT_MANAGEMENT_RETURN_(NULL);
2f7431485cfa 7189254: Change makefiles for more flexibility to override defaults
jprovino
parents: 13728
diff changeset
   100
  static Klass* com_sun_management_GcInfo_klass(TRAPS)
2f7431485cfa 7189254: Change makefiles for more flexibility to override defaults
jprovino
parents: 13728
diff changeset
   101
      NOT_MANAGEMENT_RETURN_(NULL);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
  static instanceOop create_thread_info_instance(ThreadSnapshot* snapshot, TRAPS);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
  static instanceOop create_thread_info_instance(ThreadSnapshot* snapshot, objArrayHandle monitors_array, typeArrayHandle depths_array, objArrayHandle synchronizers_array, TRAPS);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
class TraceVmCreationTime : public StackObj {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
  TimeStamp _timer;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
  jlong     _begin_time;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
  TraceVmCreationTime() {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
  ~TraceVmCreationTime() {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
  void start()
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
  { _timer.update_to(0); _begin_time = os::javaTimeMillis(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
  /**
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
   * Only call this if initialization completes successfully; it will
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
   * crash if PerfMemory_exit() has already been called (usually by
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
   * os::shutdown() when there was an initialization failure).
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
   */
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
  void end()
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
  { Management::record_vm_startup_time(_begin_time, _timer.milliseconds()); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
};
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
   128
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
   129
#endif // SHARE_VM_SERVICES_MANAGEMENT_HPP