hotspot/src/share/vm/services/memoryPool.cpp
author coleenp
Wed, 15 Mar 2017 10:25:37 -0400
changeset 46329 53ccc37bda19
parent 32623 390a27af5657
permissions -rw-r--r--
8155672: Remove instanceKlassHandles and KlassHandles Summary: Summary: Use unhandled pointers for Klass and InstanceKlass, remove handles with no implementation. Reviewed-by: dholmes, lfoltan, vlivanov, sspitsyn
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
46329
53ccc37bda19 8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents: 32623
diff changeset
     2
 * Copyright (c) 2003, 2017, 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
#include "precompiled.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    26
#include "classfile/systemDictionary.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    27
#include "classfile/vmSymbols.hpp"
30764
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 30247
diff changeset
    28
#include "gc/serial/defNewGeneration.hpp"
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 30247
diff changeset
    29
#include "gc/shared/space.hpp"
18444
8adb4bc92f18 8013590: NPG: Add a memory pool MXBean for Metaspace
ehelin
parents: 16453
diff changeset
    30
#include "memory/metaspace.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    31
#include "oops/oop.inline.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    32
#include "runtime/handles.inline.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    33
#include "runtime/javaCalls.hpp"
24351
61b33cc6d3cf 8042195: Introduce umbrella header orderAccess.inline.hpp.
goetz
parents: 23854
diff changeset
    34
#include "runtime/orderAccess.inline.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    35
#include "services/lowMemoryDetector.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    36
#include "services/management.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    37
#include "services/memoryManager.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    38
#include "services/memoryPool.hpp"
29690
02ce43f0f95a 8075416: Cleanup GC include dependencies in memoryPool.hpp
stefank
parents: 24831
diff changeset
    39
#include "utilities/globalDefinitions.hpp"
15482
470d0b0c09f1 8005915: Unify SERIALGC and INCLUDE_ALTERNATE_GCS
jprovino
parents: 13728
diff changeset
    40
#include "utilities/macros.hpp"
29690
02ce43f0f95a 8075416: Cleanup GC include dependencies in memoryPool.hpp
stefank
parents: 24831
diff changeset
    41
#if INCLUDE_ALL_GCS
30764
fec48bf5a827 8079792: GC directory structure cleanup
pliden
parents: 30247
diff changeset
    42
#include "gc/cms/compactibleFreeListSpace.hpp"
29690
02ce43f0f95a 8075416: Cleanup GC include dependencies in memoryPool.hpp
stefank
parents: 24831
diff changeset
    43
#endif
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
MemoryPool::MemoryPool(const char* name,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
                       PoolType type,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
                       size_t init_size,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
                       size_t max_size,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
                       bool support_usage_threshold,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
                       bool support_gc_threshold) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
  _name = name;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
  _initial_size = init_size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
  _max_size = max_size;
24831
e4df2f64bb2e 8041623: Solaris Studio 12.4 C++ 5.13, CHECK_UNHANDLED_OOPS use of class oop's copy constructor definitions causing error level diagnostic.
lfoltan
parents: 24351
diff changeset
    54
  (void)const_cast<instanceOop&>(_memory_pool_obj = instanceOop(NULL));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
  _available_for_allocation = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
  _num_managers = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
  _type = type;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
  // initialize the max and init size of collection usage
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
  _after_gc_usage = MemoryUsage(_initial_size, 0, 0, _max_size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
  _usage_sensor = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
  _gc_usage_sensor = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
  // usage threshold supports both high and low threshold
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
  _usage_threshold = new ThresholdSupport(support_usage_threshold, support_usage_threshold);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
  // gc usage threshold supports only high threshold
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
  _gc_usage_threshold = new ThresholdSupport(support_gc_threshold, support_gc_threshold);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
void MemoryPool::add_manager(MemoryManager* mgr) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
  assert(_num_managers < MemoryPool::max_num_managers, "_num_managers exceeds the max");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
  if (_num_managers < MemoryPool::max_num_managers) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
    _managers[_num_managers] = mgr;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
    _num_managers++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
// Returns an instanceHandle of a MemoryPool object.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
// It creates a MemoryPool instance when the first time
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
// this function is called.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
instanceOop MemoryPool::get_memory_pool_instance(TRAPS) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
  // Must do an acquire so as to force ordering of subsequent
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
  // loads from anything _memory_pool_obj points to or implies.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
  instanceOop pool_obj = (instanceOop)OrderAccess::load_ptr_acquire(&_memory_pool_obj);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
  if (pool_obj == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
    // It's ok for more than one thread to execute the code up to the locked region.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
    // Extra pool instances will just be gc'ed.
46329
53ccc37bda19 8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents: 32623
diff changeset
    89
    InstanceKlass* ik = Management::sun_management_ManagementFactoryHelper_klass(CHECK_NULL);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
    Handle pool_name = java_lang_String::create_from_str(_name, CHECK_NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
    jlong usage_threshold_value = (_usage_threshold->is_high_threshold_supported() ? 0 : -1L);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
    jlong gc_usage_threshold_value = (_gc_usage_threshold->is_high_threshold_supported() ? 0 : -1L);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
    JavaValue result(T_OBJECT);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
    JavaCallArguments args;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
    args.push_oop(pool_name);           // Argument 1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
    args.push_int((int) is_heap());     // Argument 2
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   100
    Symbol* method_name = vmSymbols::createMemoryPool_name();
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   101
    Symbol* signature = vmSymbols::createMemoryPool_signature();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
    args.push_long(usage_threshold_value);    // Argument 3
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
    args.push_long(gc_usage_threshold_value); // Argument 4
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
    JavaCalls::call_static(&result,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
                           ik,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
                           method_name,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
                           signature,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
                           &args,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
                           CHECK_NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
    instanceOop p = (instanceOop) result.get_jobject();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
    instanceHandle pool(THREAD, p);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
    {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
      // Get lock since another thread may have create the instance
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
      MutexLocker ml(Management_lock);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
      // Check if another thread has created the pool.  We reload
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
      // _memory_pool_obj here because some other thread may have
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
      // initialized it while we were executing the code before the lock.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
      //
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
      // The lock has done an acquire, so the load can't float above it,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
      // but we need to do a load_acquire as above.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
      pool_obj = (instanceOop)OrderAccess::load_ptr_acquire(&_memory_pool_obj);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
      if (pool_obj != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
         return pool_obj;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
      // Get the address of the object we created via call_special.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
      pool_obj = pool();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
      // Use store barrier to make sure the memory accesses associated
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
      // with creating the pool are visible before publishing its address.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
      // The unlock will publish the store to _memory_pool_obj because
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
      // it does a release first.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
      OrderAccess::release_store_ptr(&_memory_pool_obj, pool_obj);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
  return pool_obj;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
inline static size_t get_max_value(size_t val1, size_t val2) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
    return (val1 > val2 ? val1 : val2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
void MemoryPool::record_peak_memory_usage() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
  // Caller in JDK is responsible for synchronization -
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
  // acquire the lock for this memory pool before calling VM
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
  MemoryUsage usage = get_memory_usage();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
  size_t peak_used = get_max_value(usage.used(), _peak_usage.used());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
  size_t peak_committed = get_max_value(usage.committed(), _peak_usage.committed());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
  size_t peak_max_size = get_max_value(usage.max_size(), _peak_usage.max_size());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
  _peak_usage = MemoryUsage(initial_size(), peak_used, peak_committed, peak_max_size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
static void set_sensor_obj_at(SensorInfo** sensor_ptr, instanceHandle sh) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
  assert(*sensor_ptr == NULL, "Should be called only once");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
  SensorInfo* sensor = new SensorInfo();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
  sensor->set_sensor(sh());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
  *sensor_ptr = sensor;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
void MemoryPool::set_usage_sensor_obj(instanceHandle sh) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
  set_sensor_obj_at(&_usage_sensor, sh);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
void MemoryPool::set_gc_usage_sensor_obj(instanceHandle sh) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
  set_sensor_obj_at(&_gc_usage_sensor, sh);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
void MemoryPool::oops_do(OopClosure* f) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
  f->do_oop((oop*) &_memory_pool_obj);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
  if (_usage_sensor != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
    _usage_sensor->oops_do(f);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
  if (_gc_usage_sensor != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
    _gc_usage_sensor->oops_do(f);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
ContiguousSpacePool::ContiguousSpacePool(ContiguousSpace* space,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
                                         const char* name,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
                                         PoolType type,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
                                         size_t max_size,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
                                         bool support_usage_threshold) :
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
  CollectedMemoryPool(name, type, space->capacity(), max_size,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
                      support_usage_threshold), _space(space) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
29690
02ce43f0f95a 8075416: Cleanup GC include dependencies in memoryPool.hpp
stefank
parents: 24831
diff changeset
   194
size_t ContiguousSpacePool::used_in_bytes() {
02ce43f0f95a 8075416: Cleanup GC include dependencies in memoryPool.hpp
stefank
parents: 24831
diff changeset
   195
  return space()->used();
02ce43f0f95a 8075416: Cleanup GC include dependencies in memoryPool.hpp
stefank
parents: 24831
diff changeset
   196
}
02ce43f0f95a 8075416: Cleanup GC include dependencies in memoryPool.hpp
stefank
parents: 24831
diff changeset
   197
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
MemoryUsage ContiguousSpacePool::get_memory_usage() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
  size_t maxSize   = (available_for_allocation() ? max_size() : 0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
  size_t used      = used_in_bytes();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
  size_t committed = _space->capacity();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
  return MemoryUsage(initial_size(), used, committed, maxSize);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
32623
390a27af5657 8134626: Misc cleanups after generation array removal
jwilhelm
parents: 30764
diff changeset
   206
SurvivorContiguousSpacePool::SurvivorContiguousSpacePool(DefNewGeneration* young_gen,
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
                                                         const char* name,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
                                                         PoolType type,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
                                                         size_t max_size,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
                                                         bool support_usage_threshold) :
32623
390a27af5657 8134626: Misc cleanups after generation array removal
jwilhelm
parents: 30764
diff changeset
   211
  CollectedMemoryPool(name, type, young_gen->from()->capacity(), max_size,
390a27af5657 8134626: Misc cleanups after generation array removal
jwilhelm
parents: 30764
diff changeset
   212
                      support_usage_threshold), _young_gen(young_gen) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
29690
02ce43f0f95a 8075416: Cleanup GC include dependencies in memoryPool.hpp
stefank
parents: 24831
diff changeset
   215
size_t SurvivorContiguousSpacePool::used_in_bytes() {
32623
390a27af5657 8134626: Misc cleanups after generation array removal
jwilhelm
parents: 30764
diff changeset
   216
  return _young_gen->from()->used();
29690
02ce43f0f95a 8075416: Cleanup GC include dependencies in memoryPool.hpp
stefank
parents: 24831
diff changeset
   217
}
02ce43f0f95a 8075416: Cleanup GC include dependencies in memoryPool.hpp
stefank
parents: 24831
diff changeset
   218
02ce43f0f95a 8075416: Cleanup GC include dependencies in memoryPool.hpp
stefank
parents: 24831
diff changeset
   219
size_t SurvivorContiguousSpacePool::committed_in_bytes() {
32623
390a27af5657 8134626: Misc cleanups after generation array removal
jwilhelm
parents: 30764
diff changeset
   220
  return _young_gen->from()->capacity();
29690
02ce43f0f95a 8075416: Cleanup GC include dependencies in memoryPool.hpp
stefank
parents: 24831
diff changeset
   221
}
02ce43f0f95a 8075416: Cleanup GC include dependencies in memoryPool.hpp
stefank
parents: 24831
diff changeset
   222
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
MemoryUsage SurvivorContiguousSpacePool::get_memory_usage() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
  size_t maxSize = (available_for_allocation() ? max_size() : 0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
  size_t used    = used_in_bytes();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   226
  size_t committed = committed_in_bytes();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   227
489c9b5090e2 Initial load
duke
parents:
diff changeset
   228
  return MemoryUsage(initial_size(), used, committed, maxSize);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   229
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   230
15482
470d0b0c09f1 8005915: Unify SERIALGC and INCLUDE_ALTERNATE_GCS
jprovino
parents: 13728
diff changeset
   231
#if INCLUDE_ALL_GCS
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   232
CompactibleFreeListSpacePool::CompactibleFreeListSpacePool(CompactibleFreeListSpace* space,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   233
                                                           const char* name,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   234
                                                           PoolType type,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   235
                                                           size_t max_size,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   236
                                                           bool support_usage_threshold) :
489c9b5090e2 Initial load
duke
parents:
diff changeset
   237
  CollectedMemoryPool(name, type, space->capacity(), max_size,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   238
                      support_usage_threshold), _space(space) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   239
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   240
29690
02ce43f0f95a 8075416: Cleanup GC include dependencies in memoryPool.hpp
stefank
parents: 24831
diff changeset
   241
size_t CompactibleFreeListSpacePool::used_in_bytes() {
02ce43f0f95a 8075416: Cleanup GC include dependencies in memoryPool.hpp
stefank
parents: 24831
diff changeset
   242
  return _space->used();
02ce43f0f95a 8075416: Cleanup GC include dependencies in memoryPool.hpp
stefank
parents: 24831
diff changeset
   243
}
02ce43f0f95a 8075416: Cleanup GC include dependencies in memoryPool.hpp
stefank
parents: 24831
diff changeset
   244
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   245
MemoryUsage CompactibleFreeListSpacePool::get_memory_usage() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   246
  size_t maxSize   = (available_for_allocation() ? max_size() : 0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   247
  size_t used      = used_in_bytes();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   248
  size_t committed = _space->capacity();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   249
489c9b5090e2 Initial load
duke
parents:
diff changeset
   250
  return MemoryUsage(initial_size(), used, committed, maxSize);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   251
}
15482
470d0b0c09f1 8005915: Unify SERIALGC and INCLUDE_ALTERNATE_GCS
jprovino
parents: 13728
diff changeset
   252
#endif // INCLUDE_ALL_GCS
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   253
489c9b5090e2 Initial load
duke
parents:
diff changeset
   254
GenerationPool::GenerationPool(Generation* gen,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   255
                               const char* name,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   256
                               PoolType type,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   257
                               bool support_usage_threshold) :
489c9b5090e2 Initial load
duke
parents:
diff changeset
   258
  CollectedMemoryPool(name, type, gen->capacity(), gen->max_capacity(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   259
                      support_usage_threshold), _gen(gen) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   260
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   261
29690
02ce43f0f95a 8075416: Cleanup GC include dependencies in memoryPool.hpp
stefank
parents: 24831
diff changeset
   262
size_t GenerationPool::used_in_bytes() {
02ce43f0f95a 8075416: Cleanup GC include dependencies in memoryPool.hpp
stefank
parents: 24831
diff changeset
   263
  return _gen->used();
02ce43f0f95a 8075416: Cleanup GC include dependencies in memoryPool.hpp
stefank
parents: 24831
diff changeset
   264
}
02ce43f0f95a 8075416: Cleanup GC include dependencies in memoryPool.hpp
stefank
parents: 24831
diff changeset
   265
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   266
MemoryUsage GenerationPool::get_memory_usage() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   267
  size_t used      = used_in_bytes();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   268
  size_t committed = _gen->capacity();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   269
  size_t maxSize   = (available_for_allocation() ? max_size() : 0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   270
489c9b5090e2 Initial load
duke
parents:
diff changeset
   271
  return MemoryUsage(initial_size(), used, committed, maxSize);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   272
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   273
489c9b5090e2 Initial load
duke
parents:
diff changeset
   274
CodeHeapPool::CodeHeapPool(CodeHeap* codeHeap, const char* name, bool support_usage_threshold) :
489c9b5090e2 Initial load
duke
parents:
diff changeset
   275
  MemoryPool(name, NonHeap, codeHeap->capacity(), codeHeap->max_capacity(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   276
             support_usage_threshold, false), _codeHeap(codeHeap) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   277
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   278
489c9b5090e2 Initial load
duke
parents:
diff changeset
   279
MemoryUsage CodeHeapPool::get_memory_usage() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   280
  size_t used      = used_in_bytes();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   281
  size_t committed = _codeHeap->capacity();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   282
  size_t maxSize   = (available_for_allocation() ? max_size() : 0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   283
489c9b5090e2 Initial load
duke
parents:
diff changeset
   284
  return MemoryUsage(initial_size(), used, committed, maxSize);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   285
}
18444
8adb4bc92f18 8013590: NPG: Add a memory pool MXBean for Metaspace
ehelin
parents: 16453
diff changeset
   286
8adb4bc92f18 8013590: NPG: Add a memory pool MXBean for Metaspace
ehelin
parents: 16453
diff changeset
   287
MetaspacePool::MetaspacePool() :
20001
7446501f55bc 8024718: Metaspace performance counters and memory pools should report the same data
ehelin
parents: 19979
diff changeset
   288
  MemoryPool("Metaspace", NonHeap, 0, calculate_max_size(), true, false) { }
18444
8adb4bc92f18 8013590: NPG: Add a memory pool MXBean for Metaspace
ehelin
parents: 16453
diff changeset
   289
8adb4bc92f18 8013590: NPG: Add a memory pool MXBean for Metaspace
ehelin
parents: 16453
diff changeset
   290
MemoryUsage MetaspacePool::get_memory_usage() {
20001
7446501f55bc 8024718: Metaspace performance counters and memory pools should report the same data
ehelin
parents: 19979
diff changeset
   291
  size_t committed = MetaspaceAux::committed_bytes();
18444
8adb4bc92f18 8013590: NPG: Add a memory pool MXBean for Metaspace
ehelin
parents: 16453
diff changeset
   292
  return MemoryUsage(initial_size(), used_in_bytes(), committed, max_size());
8adb4bc92f18 8013590: NPG: Add a memory pool MXBean for Metaspace
ehelin
parents: 16453
diff changeset
   293
}
8adb4bc92f18 8013590: NPG: Add a memory pool MXBean for Metaspace
ehelin
parents: 16453
diff changeset
   294
8adb4bc92f18 8013590: NPG: Add a memory pool MXBean for Metaspace
ehelin
parents: 16453
diff changeset
   295
size_t MetaspacePool::used_in_bytes() {
23854
50f7f89b34e0 8038934: Remove prefix allocated_ from methods and variables in Metaspace
ehelin
parents: 20282
diff changeset
   296
  return MetaspaceAux::used_bytes();
18444
8adb4bc92f18 8013590: NPG: Add a memory pool MXBean for Metaspace
ehelin
parents: 16453
diff changeset
   297
}
8adb4bc92f18 8013590: NPG: Add a memory pool MXBean for Metaspace
ehelin
parents: 16453
diff changeset
   298
8adb4bc92f18 8013590: NPG: Add a memory pool MXBean for Metaspace
ehelin
parents: 16453
diff changeset
   299
size_t MetaspacePool::calculate_max_size() const {
20001
7446501f55bc 8024718: Metaspace performance counters and memory pools should report the same data
ehelin
parents: 19979
diff changeset
   300
  return FLAG_IS_CMDLINE(MaxMetaspaceSize) ? MaxMetaspaceSize :
7446501f55bc 8024718: Metaspace performance counters and memory pools should report the same data
ehelin
parents: 19979
diff changeset
   301
                                             MemoryUsage::undefined_size();
18444
8adb4bc92f18 8013590: NPG: Add a memory pool MXBean for Metaspace
ehelin
parents: 16453
diff changeset
   302
}
8adb4bc92f18 8013590: NPG: Add a memory pool MXBean for Metaspace
ehelin
parents: 16453
diff changeset
   303
8adb4bc92f18 8013590: NPG: Add a memory pool MXBean for Metaspace
ehelin
parents: 16453
diff changeset
   304
CompressedKlassSpacePool::CompressedKlassSpacePool() :
20001
7446501f55bc 8024718: Metaspace performance counters and memory pools should report the same data
ehelin
parents: 19979
diff changeset
   305
  MemoryPool("Compressed Class Space", NonHeap, 0, CompressedClassSpaceSize, true, false) { }
18444
8adb4bc92f18 8013590: NPG: Add a memory pool MXBean for Metaspace
ehelin
parents: 16453
diff changeset
   306
8adb4bc92f18 8013590: NPG: Add a memory pool MXBean for Metaspace
ehelin
parents: 16453
diff changeset
   307
size_t CompressedKlassSpacePool::used_in_bytes() {
23854
50f7f89b34e0 8038934: Remove prefix allocated_ from methods and variables in Metaspace
ehelin
parents: 20282
diff changeset
   308
  return MetaspaceAux::used_bytes(Metaspace::ClassType);
18444
8adb4bc92f18 8013590: NPG: Add a memory pool MXBean for Metaspace
ehelin
parents: 16453
diff changeset
   309
}
8adb4bc92f18 8013590: NPG: Add a memory pool MXBean for Metaspace
ehelin
parents: 16453
diff changeset
   310
8adb4bc92f18 8013590: NPG: Add a memory pool MXBean for Metaspace
ehelin
parents: 16453
diff changeset
   311
MemoryUsage CompressedKlassSpacePool::get_memory_usage() {
20001
7446501f55bc 8024718: Metaspace performance counters and memory pools should report the same data
ehelin
parents: 19979
diff changeset
   312
  size_t committed = MetaspaceAux::committed_bytes(Metaspace::ClassType);
18444
8adb4bc92f18 8013590: NPG: Add a memory pool MXBean for Metaspace
ehelin
parents: 16453
diff changeset
   313
  return MemoryUsage(initial_size(), used_in_bytes(), committed, max_size());
8adb4bc92f18 8013590: NPG: Add a memory pool MXBean for Metaspace
ehelin
parents: 16453
diff changeset
   314
}