hotspot/src/share/vm/services/management.hpp
author stefank
Tue, 23 Nov 2010 13:22:55 -0800
changeset 7397 5b173b4ca846
parent 5547 f4b087cbb361
child 8076 96d498ec7ae1
permissions -rw-r--r--
6989984: Use standard include model for Hospot Summary: Replaced MakeDeps and the includeDB files with more standardized solutions. Reviewed-by: coleenp, kvn, kamg
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
     2
 * Copyright (c) 2003, 2010, 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
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
  static klassOop           _sensor_klass;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
  static klassOop           _threadInfo_klass;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
  static klassOop           _memoryUsage_klass;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
  static klassOop           _memoryPoolMXBean_klass;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
  static klassOop           _memoryManagerMXBean_klass;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
  static klassOop           _garbageCollectorMXBean_klass;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
  static klassOop           _managementFactory_klass;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
  static klassOop load_and_initialize_klass(symbolHandle sh, TRAPS);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
  static void init();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
  static void initialize(TRAPS);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
  static jlong ticks_to_ms(jlong ticks);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
  static jlong timestamp();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
  static void  oops_do(OopClosure* f);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
  static void* get_jmm_interface(int version);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
  static void  get_optional_support(jmmOptionalSupport* support);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
  static void get_loaded_classes(JavaThread* cur_thread, GrowableArray<KlassHandle>* klass_handle_array);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
  static void  record_vm_startup_time(jlong begin, jlong duration);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
  static void  record_vm_init_completed() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
    // Initialize the timestamp to get the current time
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
    _vm_init_done_time->set_value(os::javaTimeMillis());
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
    // Update the timestamp to the vm init done time
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
    _stamp.update();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
  static jlong vm_init_done_time() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
    return _vm_init_done_time->get_value();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
  // methods to return a klassOop.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
  static klassOop java_lang_management_ThreadInfo_klass(TRAPS);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
  static klassOop java_lang_management_MemoryUsage_klass(TRAPS);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
  static klassOop java_lang_management_MemoryPoolMXBean_klass(TRAPS);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
  static klassOop java_lang_management_MemoryManagerMXBean_klass(TRAPS);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
  static klassOop java_lang_management_GarbageCollectorMXBean_klass(TRAPS);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
  static klassOop sun_management_Sensor_klass(TRAPS);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
  static klassOop sun_management_ManagementFactory_klass(TRAPS);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
  static instanceOop create_thread_info_instance(ThreadSnapshot* snapshot, TRAPS);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
  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
    92
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
class TraceVmCreationTime : public StackObj {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
  TimeStamp _timer;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
  jlong     _begin_time;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
  TraceVmCreationTime() {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
  ~TraceVmCreationTime() {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
  void start()
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
  { _timer.update_to(0); _begin_time = os::javaTimeMillis(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
  /**
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
   * Only call this if initialization completes successfully; it will
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
   * crash if PerfMemory_exit() has already been called (usually by
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
   * os::shutdown() when there was an initialization failure).
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
   */
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
  void end()
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
  { Management::record_vm_startup_time(_begin_time, _timer.milliseconds()); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
};
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
   115
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
   116
#endif // SHARE_VM_SERVICES_MANAGEMENT_HPP