hotspot/src/share/vm/services/memoryService.hpp
author zgu
Mon, 17 Dec 2012 13:14:02 -0500
changeset 14819 15be618136c6
parent 13728 882756847a04
child 16451 2f68393e1bef
permissions -rw-r--r--
8004802: jcmd VM.native_memory baseline=false crashes VM Summary: NMT has to check option's value also to determine which command to execute Reviewed-by: acorn, coleenp, hseigel
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: 9623
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: 4459
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 4459
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: 4459
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: 6245
diff changeset
    25
#ifndef SHARE_VM_SERVICES_MEMORYSERVICE_HPP
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6245
diff changeset
    26
#define SHARE_VM_SERVICES_MEMORYSERVICE_HPP
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6245
diff changeset
    27
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6245
diff changeset
    28
#include "memory/allocation.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6245
diff changeset
    29
#include "memory/generation.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6245
diff changeset
    30
#include "runtime/handles.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6245
diff changeset
    31
#include "services/memoryUsage.hpp"
9623
151c0b638488 7036199: Adding a notification to the implementation of GarbageCollectorMXBeans
fparain
parents: 7397
diff changeset
    32
#include "gc_interface/gcCause.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6245
diff changeset
    33
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
// Forward declaration
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
class MemoryPool;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
class MemoryManager;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
class GCMemoryManager;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
class CollectedHeap;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
class Generation;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
class DefNewGeneration;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
class PSYoungGen;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
class PSOldGen;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
class CodeHeap;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
class ContiguousSpace;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
class CompactibleFreeListSpace;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
class GenCollectedHeap;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
class ParallelScavengeHeap;
4459
eb506d590394 6815790: G1: Missing MemoryPoolMXBeans with -XX:+UseG1GC
tonyp
parents: 1
diff changeset
    48
class G1CollectedHeap;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
// VM Monitoring and Management Support
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
class MemoryService : public AllStatic {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
  enum {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
    init_pools_list_size = 10,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
    init_managers_list_size = 5
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
  };
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
  // index for minor and major generations
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
  enum {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
    minor = 0,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
    major = 1,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
    n_gens = 2
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
  };
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
  static GrowableArray<MemoryPool*>*    _pools_list;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
  static GrowableArray<MemoryManager*>* _managers_list;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
  // memory managers for minor and major GC statistics
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
  static GCMemoryManager*               _major_gc_manager;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
  static GCMemoryManager*               _minor_gc_manager;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
  // Code heap memory pool
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
  static MemoryPool*                    _code_heap_pool;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
  static void add_generation_memory_pool(Generation* gen,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
                                         MemoryManager* major_mgr,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
                                         MemoryManager* minor_mgr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
  static void add_generation_memory_pool(Generation* gen,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
                                         MemoryManager* major_mgr) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
    add_generation_memory_pool(gen, major_mgr, NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
  static void add_psYoung_memory_pool(PSYoungGen* gen,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
                                      MemoryManager* major_mgr,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
                                      MemoryManager* minor_mgr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
  static void add_psOld_memory_pool(PSOldGen* gen,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
                                    MemoryManager* mgr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
4459
eb506d590394 6815790: G1: Missing MemoryPoolMXBeans with -XX:+UseG1GC
tonyp
parents: 1
diff changeset
    91
  static void add_g1YoungGen_memory_pool(G1CollectedHeap* g1h,
eb506d590394 6815790: G1: Missing MemoryPoolMXBeans with -XX:+UseG1GC
tonyp
parents: 1
diff changeset
    92
                                         MemoryManager* major_mgr,
eb506d590394 6815790: G1: Missing MemoryPoolMXBeans with -XX:+UseG1GC
tonyp
parents: 1
diff changeset
    93
                                         MemoryManager* minor_mgr);
eb506d590394 6815790: G1: Missing MemoryPoolMXBeans with -XX:+UseG1GC
tonyp
parents: 1
diff changeset
    94
  static void add_g1OldGen_memory_pool(G1CollectedHeap* g1h,
eb506d590394 6815790: G1: Missing MemoryPoolMXBeans with -XX:+UseG1GC
tonyp
parents: 1
diff changeset
    95
                                       MemoryManager* mgr);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
  static MemoryPool* add_space(ContiguousSpace* space,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
                               const char* name,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
                               bool is_heap,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
                               size_t max_size,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
                               bool support_usage_threshold);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
  static MemoryPool* add_survivor_spaces(DefNewGeneration* gen,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
                                         const char* name,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
                                         bool is_heap,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
                                         size_t max_size,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
                                         bool support_usage_threshold);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
  static MemoryPool* add_gen(Generation* gen,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
                             const char* name,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
                             bool is_heap,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
                             bool support_usage_threshold);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
  static MemoryPool* add_cms_space(CompactibleFreeListSpace* space,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
                                   const char* name,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
                                   bool is_heap,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
                                   size_t max_size,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
                                   bool support_usage_threshold);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
  static void add_gen_collected_heap_info(GenCollectedHeap* heap);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
  static void add_parallel_scavenge_heap_info(ParallelScavengeHeap* heap);
4459
eb506d590394 6815790: G1: Missing MemoryPoolMXBeans with -XX:+UseG1GC
tonyp
parents: 1
diff changeset
   119
  static void add_g1_heap_info(G1CollectedHeap* g1h);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
  static void set_universe_heap(CollectedHeap* heap);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
  static void add_code_heap_memory_pool(CodeHeap* heap);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
  static MemoryPool*    get_memory_pool(instanceHandle pool);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
  static MemoryManager* get_memory_manager(instanceHandle mgr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
  static const int num_memory_pools() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
    return _pools_list->length();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
  static const int num_memory_managers() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
    return _managers_list->length();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
  static MemoryPool* get_memory_pool(int index) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
    return _pools_list->at(index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
  static MemoryManager* get_memory_manager(int index) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
    return _managers_list->at(index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
  static void track_memory_usage();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
  static void track_code_cache_memory_usage() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
    track_memory_pool_usage(_code_heap_pool);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
  static void track_memory_pool_usage(MemoryPool* pool);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
6245
c37d2cf6de1a 6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents: 5547
diff changeset
   149
  static void gc_begin(bool fullGC, bool recordGCBeginTime,
c37d2cf6de1a 6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents: 5547
diff changeset
   150
                       bool recordAccumulatedGCTime,
c37d2cf6de1a 6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents: 5547
diff changeset
   151
                       bool recordPreGCUsage, bool recordPeakUsage);
c37d2cf6de1a 6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents: 5547
diff changeset
   152
  static void gc_end(bool fullGC, bool recordPostGCUsage,
c37d2cf6de1a 6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents: 5547
diff changeset
   153
                     bool recordAccumulatedGCTime,
9623
151c0b638488 7036199: Adding a notification to the implementation of GarbageCollectorMXBeans
fparain
parents: 7397
diff changeset
   154
                     bool recordGCEndTime, bool countCollection,
151c0b638488 7036199: Adding a notification to the implementation of GarbageCollectorMXBeans
fparain
parents: 7397
diff changeset
   155
                     GCCause::Cause cause);
6245
c37d2cf6de1a 6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents: 5547
diff changeset
   156
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
  static void oops_do(OopClosure* f);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
  static bool get_verbose() { return PrintGC; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
  static bool set_verbose(bool verbose);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
  // Create an instance of java/lang/management/MemoryUsage
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
  static Handle create_MemoryUsage_obj(MemoryUsage usage, TRAPS);
9623
151c0b638488 7036199: Adding a notification to the implementation of GarbageCollectorMXBeans
fparain
parents: 7397
diff changeset
   165
151c0b638488 7036199: Adding a notification to the implementation of GarbageCollectorMXBeans
fparain
parents: 7397
diff changeset
   166
  static const GCMemoryManager* get_minor_gc_manager() {
151c0b638488 7036199: Adding a notification to the implementation of GarbageCollectorMXBeans
fparain
parents: 7397
diff changeset
   167
      return _minor_gc_manager;
151c0b638488 7036199: Adding a notification to the implementation of GarbageCollectorMXBeans
fparain
parents: 7397
diff changeset
   168
  }
151c0b638488 7036199: Adding a notification to the implementation of GarbageCollectorMXBeans
fparain
parents: 7397
diff changeset
   169
151c0b638488 7036199: Adding a notification to the implementation of GarbageCollectorMXBeans
fparain
parents: 7397
diff changeset
   170
  static const GCMemoryManager* get_major_gc_manager() {
151c0b638488 7036199: Adding a notification to the implementation of GarbageCollectorMXBeans
fparain
parents: 7397
diff changeset
   171
      return _major_gc_manager;
151c0b638488 7036199: Adding a notification to the implementation of GarbageCollectorMXBeans
fparain
parents: 7397
diff changeset
   172
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
class TraceMemoryManagerStats : public StackObj {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
  bool         _fullGC;
6245
c37d2cf6de1a 6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents: 5547
diff changeset
   178
  bool         _recordGCBeginTime;
c37d2cf6de1a 6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents: 5547
diff changeset
   179
  bool         _recordPreGCUsage;
c37d2cf6de1a 6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents: 5547
diff changeset
   180
  bool         _recordPeakUsage;
c37d2cf6de1a 6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents: 5547
diff changeset
   181
  bool         _recordPostGCUsage;
c37d2cf6de1a 6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents: 5547
diff changeset
   182
  bool         _recordAccumulatedGCTime;
c37d2cf6de1a 6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents: 5547
diff changeset
   183
  bool         _recordGCEndTime;
c37d2cf6de1a 6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents: 5547
diff changeset
   184
  bool         _countCollection;
9623
151c0b638488 7036199: Adding a notification to the implementation of GarbageCollectorMXBeans
fparain
parents: 7397
diff changeset
   185
  GCCause::Cause _cause;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
public:
6245
c37d2cf6de1a 6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents: 5547
diff changeset
   187
  TraceMemoryManagerStats() {}
c37d2cf6de1a 6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents: 5547
diff changeset
   188
  TraceMemoryManagerStats(bool fullGC,
9623
151c0b638488 7036199: Adding a notification to the implementation of GarbageCollectorMXBeans
fparain
parents: 7397
diff changeset
   189
                          GCCause::Cause cause,
6245
c37d2cf6de1a 6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents: 5547
diff changeset
   190
                          bool recordGCBeginTime = true,
c37d2cf6de1a 6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents: 5547
diff changeset
   191
                          bool recordPreGCUsage = true,
c37d2cf6de1a 6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents: 5547
diff changeset
   192
                          bool recordPeakUsage = true,
c37d2cf6de1a 6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents: 5547
diff changeset
   193
                          bool recordPostGCUsage = true,
c37d2cf6de1a 6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents: 5547
diff changeset
   194
                          bool recordAccumulatedGCTime = true,
c37d2cf6de1a 6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents: 5547
diff changeset
   195
                          bool recordGCEndTime = true,
c37d2cf6de1a 6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents: 5547
diff changeset
   196
                          bool countCollection = true);
c37d2cf6de1a 6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents: 5547
diff changeset
   197
c37d2cf6de1a 6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents: 5547
diff changeset
   198
  void initialize(bool fullGC,
9623
151c0b638488 7036199: Adding a notification to the implementation of GarbageCollectorMXBeans
fparain
parents: 7397
diff changeset
   199
                  GCCause::Cause cause,
6245
c37d2cf6de1a 6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents: 5547
diff changeset
   200
                  bool recordGCBeginTime,
c37d2cf6de1a 6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents: 5547
diff changeset
   201
                  bool recordPreGCUsage,
c37d2cf6de1a 6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents: 5547
diff changeset
   202
                  bool recordPeakUsage,
c37d2cf6de1a 6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents: 5547
diff changeset
   203
                  bool recordPostGCUsage,
c37d2cf6de1a 6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents: 5547
diff changeset
   204
                  bool recordAccumulatedGCTime,
c37d2cf6de1a 6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents: 5547
diff changeset
   205
                  bool recordGCEndTime,
c37d2cf6de1a 6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents: 5547
diff changeset
   206
                  bool countCollection);
c37d2cf6de1a 6581734: CMS Old Gen's collection usage is zero after GC which is incorrect
kevinw
parents: 5547
diff changeset
   207
9623
151c0b638488 7036199: Adding a notification to the implementation of GarbageCollectorMXBeans
fparain
parents: 7397
diff changeset
   208
  TraceMemoryManagerStats(Generation::Name kind, GCCause::Cause cause);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
  ~TraceMemoryManagerStats();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
};
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6245
diff changeset
   211
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6245
diff changeset
   212
#endif // SHARE_VM_SERVICES_MEMORYSERVICE_HPP