hotspot/src/share/vm/services/memoryService.hpp
author dcubed
Wed, 12 Mar 2008 18:07:46 -0700
changeset 221 ec745a0fe922
parent 1 489c9b5090e2
child 4459 eb506d590394
permissions -rw-r--r--
6599425: 4/3 OopMapCache::lookup() can cause later crash or assert() failure Summary: Add should_not_be_cached() to markOop and methodOop and query that status inOopMapCache::lookup() Reviewed-by: coleenp, sspitsyn, jmasa
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
489c9b5090e2 Initial load
duke
parents:
diff changeset
     2
 * Copyright 2003-2006 Sun Microsystems, Inc.  All Rights Reserved.
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
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    19
 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    20
 * CA 95054 USA or visit www.sun.com if you need additional information or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    21
 * have any questions.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    22
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    23
 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    24
489c9b5090e2 Initial load
duke
parents:
diff changeset
    25
// Forward declaration
489c9b5090e2 Initial load
duke
parents:
diff changeset
    26
class MemoryPool;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    27
class MemoryManager;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    28
class GCMemoryManager;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    29
class CollectedHeap;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    30
class Generation;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    31
class DefNewGeneration;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
class PSYoungGen;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
class PSOldGen;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
class PSPermGen;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
class CodeHeap;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
class ContiguousSpace;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
class CompactibleFreeListSpace;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
class PermanentGenerationSpec;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
class GenCollectedHeap;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
class ParallelScavengeHeap;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
class CompactingPermGenGen;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
class CMSPermGenGen;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
// VM Monitoring and Management Support
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
class MemoryService : public AllStatic {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
  enum {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
    init_pools_list_size = 10,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
    init_managers_list_size = 5
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
  };
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
  // index for minor and major generations
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
  enum {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
    minor = 0,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
    major = 1,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
    n_gens = 2
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
  };
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
  static GrowableArray<MemoryPool*>*    _pools_list;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
  static GrowableArray<MemoryManager*>* _managers_list;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
  // memory managers for minor and major GC statistics
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
  static GCMemoryManager*               _major_gc_manager;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
  static GCMemoryManager*               _minor_gc_manager;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
  // Code heap memory pool
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
  static MemoryPool*                    _code_heap_pool;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
  static void add_generation_memory_pool(Generation* gen,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
                                         MemoryManager* major_mgr,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
                                         MemoryManager* minor_mgr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
  static void add_generation_memory_pool(Generation* gen,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
                                         MemoryManager* major_mgr) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
    add_generation_memory_pool(gen, major_mgr, NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
  static void add_compact_perm_gen_memory_pool(CompactingPermGenGen* perm_gen,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
                                               MemoryManager* mgr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
  static void add_cms_perm_gen_memory_pool(CMSPermGenGen* perm_gen,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
                                           MemoryManager* mgr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
  static void add_psYoung_memory_pool(PSYoungGen* gen,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
                                      MemoryManager* major_mgr,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
                                      MemoryManager* minor_mgr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
  static void add_psOld_memory_pool(PSOldGen* gen,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
                                    MemoryManager* mgr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
  static void add_psPerm_memory_pool(PSPermGen* perm,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
                                     MemoryManager* mgr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
  static MemoryPool* add_space(ContiguousSpace* space,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
                               const char* name,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
                               bool is_heap,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
                               size_t max_size,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
                               bool support_usage_threshold);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
  static MemoryPool* add_survivor_spaces(DefNewGeneration* gen,
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_gen(Generation* 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
                             bool support_usage_threshold);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
  static MemoryPool* add_cms_space(CompactibleFreeListSpace* space,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
                                   const char* name,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
                                   bool is_heap,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
                                   size_t max_size,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
                                   bool support_usage_threshold);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
  static void add_gen_collected_heap_info(GenCollectedHeap* heap);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
  static void add_parallel_scavenge_heap_info(ParallelScavengeHeap* heap);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
  static void set_universe_heap(CollectedHeap* heap);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
  static void add_code_heap_memory_pool(CodeHeap* heap);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
  static MemoryPool*    get_memory_pool(instanceHandle pool);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
  static MemoryManager* get_memory_manager(instanceHandle mgr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
  static const int num_memory_pools() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
    return _pools_list->length();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
  static const int num_memory_managers() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
    return _managers_list->length();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
  static MemoryPool* get_memory_pool(int index) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
    return _pools_list->at(index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
  static MemoryManager* get_memory_manager(int index) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
    return _managers_list->at(index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
  static void track_memory_usage();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
  static void track_code_cache_memory_usage() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
    track_memory_pool_usage(_code_heap_pool);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
  static void track_memory_pool_usage(MemoryPool* pool);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
  static void gc_begin(bool fullGC);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
  static void gc_end(bool fullGC);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
  static void oops_do(OopClosure* f);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
  static bool get_verbose() { return PrintGC; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
  static bool set_verbose(bool verbose);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
  // Create an instance of java/lang/management/MemoryUsage
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
  static Handle create_MemoryUsage_obj(MemoryUsage usage, TRAPS);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
class TraceMemoryManagerStats : public StackObj {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
  bool         _fullGC;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
  TraceMemoryManagerStats(bool fullGC);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
  TraceMemoryManagerStats(Generation::Name kind);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
  ~TraceMemoryManagerStats();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
};