src/share/vm/services/memoryManager.cpp

Fri, 27 Aug 2010 13:34:14 -0400

author
tonyp
date
Fri, 27 Aug 2010 13:34:14 -0400
changeset 2112
1c63587d925b
parent 2058
f6f3eef8a521
child 2314
f95d63e2154a
permissions
-rw-r--r--

6980206: G1: assert(has_undefined_max_size, "Undefined max size");
Summary: An assert in the management.cpp is too strong and assumes the max size is always defined on memory pools, even when we don't need to use it.
Reviewed-by: mchung, johnc

duke@435 1 /*
trims@1907 2 * Copyright (c) 2003, 2005, Oracle and/or its affiliates. All rights reserved.
duke@435 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
duke@435 4 *
duke@435 5 * This code is free software; you can redistribute it and/or modify it
duke@435 6 * under the terms of the GNU General Public License version 2 only, as
duke@435 7 * published by the Free Software Foundation.
duke@435 8 *
duke@435 9 * This code is distributed in the hope that it will be useful, but WITHOUT
duke@435 10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
duke@435 11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
duke@435 12 * version 2 for more details (a copy is included in the LICENSE file that
duke@435 13 * accompanied this code).
duke@435 14 *
duke@435 15 * You should have received a copy of the GNU General Public License version
duke@435 16 * 2 along with this work; if not, write to the Free Software Foundation,
duke@435 17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
duke@435 18 *
trims@1907 19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
trims@1907 20 * or visit www.oracle.com if you need additional information or have any
trims@1907 21 * questions.
duke@435 22 *
duke@435 23 */
duke@435 24
duke@435 25 # include "incls/_precompiled.incl"
duke@435 26 # include "incls/_memoryManager.cpp.incl"
duke@435 27
duke@435 28 HS_DTRACE_PROBE_DECL8(hotspot, mem__pool__gc__begin, char*, int, char*, int,
duke@435 29 size_t, size_t, size_t, size_t);
duke@435 30 HS_DTRACE_PROBE_DECL8(hotspot, mem__pool__gc__end, char*, int, char*, int,
duke@435 31 size_t, size_t, size_t, size_t);
duke@435 32
duke@435 33 MemoryManager::MemoryManager() {
duke@435 34 _num_pools = 0;
duke@435 35 _memory_mgr_obj = NULL;
duke@435 36 }
duke@435 37
duke@435 38 void MemoryManager::add_pool(MemoryPool* pool) {
duke@435 39 assert(_num_pools < MemoryManager::max_num_pools, "_num_pools exceeds the max");
duke@435 40 if (_num_pools < MemoryManager::max_num_pools) {
duke@435 41 _pools[_num_pools] = pool;
duke@435 42 _num_pools++;
duke@435 43 }
duke@435 44 pool->add_manager(this);
duke@435 45 }
duke@435 46
duke@435 47 MemoryManager* MemoryManager::get_code_cache_memory_manager() {
duke@435 48 return (MemoryManager*) new CodeCacheMemoryManager();
duke@435 49 }
duke@435 50
duke@435 51 GCMemoryManager* MemoryManager::get_copy_memory_manager() {
duke@435 52 return (GCMemoryManager*) new CopyMemoryManager();
duke@435 53 }
duke@435 54
duke@435 55 GCMemoryManager* MemoryManager::get_msc_memory_manager() {
duke@435 56 return (GCMemoryManager*) new MSCMemoryManager();
duke@435 57 }
duke@435 58
duke@435 59 GCMemoryManager* MemoryManager::get_parnew_memory_manager() {
duke@435 60 return (GCMemoryManager*) new ParNewMemoryManager();
duke@435 61 }
duke@435 62
duke@435 63 GCMemoryManager* MemoryManager::get_cms_memory_manager() {
duke@435 64 return (GCMemoryManager*) new CMSMemoryManager();
duke@435 65 }
duke@435 66
duke@435 67 GCMemoryManager* MemoryManager::get_psScavenge_memory_manager() {
duke@435 68 return (GCMemoryManager*) new PSScavengeMemoryManager();
duke@435 69 }
duke@435 70
duke@435 71 GCMemoryManager* MemoryManager::get_psMarkSweep_memory_manager() {
duke@435 72 return (GCMemoryManager*) new PSMarkSweepMemoryManager();
duke@435 73 }
duke@435 74
tonyp@1524 75 GCMemoryManager* MemoryManager::get_g1YoungGen_memory_manager() {
tonyp@1524 76 return (GCMemoryManager*) new G1YoungGenMemoryManager();
tonyp@1524 77 }
tonyp@1524 78
tonyp@1524 79 GCMemoryManager* MemoryManager::get_g1OldGen_memory_manager() {
tonyp@1524 80 return (GCMemoryManager*) new G1OldGenMemoryManager();
tonyp@1524 81 }
tonyp@1524 82
duke@435 83 instanceOop MemoryManager::get_memory_manager_instance(TRAPS) {
duke@435 84 // Must do an acquire so as to force ordering of subsequent
duke@435 85 // loads from anything _memory_mgr_obj points to or implies.
duke@435 86 instanceOop mgr_obj = (instanceOop)OrderAccess::load_ptr_acquire(&_memory_mgr_obj);
duke@435 87 if (mgr_obj == NULL) {
duke@435 88 // It's ok for more than one thread to execute the code up to the locked region.
duke@435 89 // Extra manager instances will just be gc'ed.
duke@435 90 klassOop k = Management::sun_management_ManagementFactory_klass(CHECK_0);
duke@435 91 instanceKlassHandle ik(THREAD, k);
duke@435 92
duke@435 93 Handle mgr_name = java_lang_String::create_from_str(name(), CHECK_0);
duke@435 94
duke@435 95 JavaValue result(T_OBJECT);
duke@435 96 JavaCallArguments args;
duke@435 97 args.push_oop(mgr_name); // Argument 1
duke@435 98
duke@435 99 symbolHandle method_name;
duke@435 100 symbolHandle signature;
duke@435 101 if (is_gc_memory_manager()) {
duke@435 102 method_name = vmSymbolHandles::createGarbageCollector_name();
duke@435 103 signature = vmSymbolHandles::createGarbageCollector_signature();
duke@435 104 args.push_oop(Handle()); // Argument 2 (for future extension)
duke@435 105 } else {
duke@435 106 method_name = vmSymbolHandles::createMemoryManager_name();
duke@435 107 signature = vmSymbolHandles::createMemoryManager_signature();
duke@435 108 }
duke@435 109
duke@435 110 JavaCalls::call_static(&result,
duke@435 111 ik,
duke@435 112 method_name,
duke@435 113 signature,
duke@435 114 &args,
duke@435 115 CHECK_0);
duke@435 116
duke@435 117 instanceOop m = (instanceOop) result.get_jobject();
duke@435 118 instanceHandle mgr(THREAD, m);
duke@435 119
duke@435 120 {
duke@435 121 // Get lock before setting _memory_mgr_obj
duke@435 122 // since another thread may have created the instance
duke@435 123 MutexLocker ml(Management_lock);
duke@435 124
duke@435 125 // Check if another thread has created the management object. We reload
duke@435 126 // _memory_mgr_obj here because some other thread may have initialized
duke@435 127 // it while we were executing the code before the lock.
duke@435 128 //
duke@435 129 // The lock has done an acquire, so the load can't float above it, but
duke@435 130 // we need to do a load_acquire as above.
duke@435 131 mgr_obj = (instanceOop)OrderAccess::load_ptr_acquire(&_memory_mgr_obj);
duke@435 132 if (mgr_obj != NULL) {
duke@435 133 return mgr_obj;
duke@435 134 }
duke@435 135
duke@435 136 // Get the address of the object we created via call_special.
duke@435 137 mgr_obj = mgr();
duke@435 138
duke@435 139 // Use store barrier to make sure the memory accesses associated
duke@435 140 // with creating the management object are visible before publishing
duke@435 141 // its address. The unlock will publish the store to _memory_mgr_obj
duke@435 142 // because it does a release first.
duke@435 143 OrderAccess::release_store_ptr(&_memory_mgr_obj, mgr_obj);
duke@435 144 }
duke@435 145 }
duke@435 146
duke@435 147 return mgr_obj;
duke@435 148 }
duke@435 149
duke@435 150 void MemoryManager::oops_do(OopClosure* f) {
duke@435 151 f->do_oop((oop*) &_memory_mgr_obj);
duke@435 152 }
duke@435 153
duke@435 154 GCStatInfo::GCStatInfo(int num_pools) {
duke@435 155 // initialize the arrays for memory usage
duke@435 156 _before_gc_usage_array = (MemoryUsage*) NEW_C_HEAP_ARRAY(MemoryUsage, num_pools);
duke@435 157 _after_gc_usage_array = (MemoryUsage*) NEW_C_HEAP_ARRAY(MemoryUsage, num_pools);
duke@435 158 size_t len = num_pools * sizeof(MemoryUsage);
duke@435 159 memset(_before_gc_usage_array, 0, len);
duke@435 160 memset(_after_gc_usage_array, 0, len);
duke@435 161 _usage_array_size = num_pools;
duke@435 162 }
duke@435 163
duke@435 164 GCStatInfo::~GCStatInfo() {
duke@435 165 FREE_C_HEAP_ARRAY(MemoryUsage*, _before_gc_usage_array);
duke@435 166 FREE_C_HEAP_ARRAY(MemoryUsage*, _after_gc_usage_array);
duke@435 167 }
duke@435 168
duke@435 169 void GCStatInfo::set_gc_usage(int pool_index, MemoryUsage usage, bool before_gc) {
duke@435 170 MemoryUsage* gc_usage_array;
duke@435 171 if (before_gc) {
duke@435 172 gc_usage_array = _before_gc_usage_array;
duke@435 173 } else {
duke@435 174 gc_usage_array = _after_gc_usage_array;
duke@435 175 }
duke@435 176 gc_usage_array[pool_index] = usage;
duke@435 177 }
duke@435 178
kevinw@2058 179 void GCStatInfo::clear() {
kevinw@2058 180 _index = 0;
kevinw@2058 181 _start_time = 0L;
kevinw@2058 182 _end_time = 0L;
kevinw@2058 183 size_t len = _usage_array_size * sizeof(MemoryUsage);
kevinw@2058 184 memset(_before_gc_usage_array, 0, len);
kevinw@2058 185 memset(_after_gc_usage_array, 0, len);
kevinw@2058 186 }
kevinw@2058 187
kevinw@2058 188
duke@435 189 GCMemoryManager::GCMemoryManager() : MemoryManager() {
duke@435 190 _num_collections = 0;
duke@435 191 _last_gc_stat = NULL;
kevinw@2058 192 _last_gc_lock = new Mutex(Mutex::leaf, "_last_gc_lock", true);
kevinw@2058 193 _current_gc_stat = NULL;
duke@435 194 _num_gc_threads = 1;
duke@435 195 }
duke@435 196
duke@435 197 GCMemoryManager::~GCMemoryManager() {
duke@435 198 delete _last_gc_stat;
kevinw@2058 199 delete _last_gc_lock;
kevinw@2058 200 delete _current_gc_stat;
duke@435 201 }
duke@435 202
duke@435 203 void GCMemoryManager::initialize_gc_stat_info() {
duke@435 204 assert(MemoryService::num_memory_pools() > 0, "should have one or more memory pools");
duke@435 205 _last_gc_stat = new GCStatInfo(MemoryService::num_memory_pools());
kevinw@2058 206 _current_gc_stat = new GCStatInfo(MemoryService::num_memory_pools());
kevinw@2058 207 // tracking concurrent collections we need two objects: one to update, and one to
kevinw@2058 208 // hold the publicly available "last (completed) gc" information.
duke@435 209 }
duke@435 210
kevinw@2058 211 void GCMemoryManager::gc_begin(bool recordGCBeginTime, bool recordPreGCUsage,
kevinw@2058 212 bool recordAccumulatedGCTime) {
kevinw@2058 213 assert(_last_gc_stat != NULL && _current_gc_stat != NULL, "Just checking");
kevinw@2058 214 if (recordAccumulatedGCTime) {
kevinw@2058 215 _accumulated_timer.start();
kevinw@2058 216 }
kevinw@2058 217 // _num_collections now increases in gc_end, to count completed collections
kevinw@2058 218 if (recordGCBeginTime) {
kevinw@2058 219 _current_gc_stat->set_index(_num_collections+1);
kevinw@2058 220 _current_gc_stat->set_start_time(Management::timestamp());
kevinw@2058 221 }
duke@435 222
kevinw@2058 223 if (recordPreGCUsage) {
kevinw@2058 224 // Keep memory usage of all memory pools
kevinw@2058 225 for (int i = 0; i < MemoryService::num_memory_pools(); i++) {
kevinw@2058 226 MemoryPool* pool = MemoryService::get_memory_pool(i);
kevinw@2058 227 MemoryUsage usage = pool->get_memory_usage();
kevinw@2058 228 _current_gc_stat->set_before_gc_usage(i, usage);
kevinw@2058 229 HS_DTRACE_PROBE8(hotspot, mem__pool__gc__begin,
kevinw@2058 230 name(), strlen(name()),
kevinw@2058 231 pool->name(), strlen(pool->name()),
kevinw@2058 232 usage.init_size(), usage.used(),
kevinw@2058 233 usage.committed(), usage.max_size());
kevinw@2058 234 }
duke@435 235 }
duke@435 236 }
duke@435 237
kevinw@2058 238 // A collector MUST, even if it does not complete for some reason,
kevinw@2058 239 // make a TraceMemoryManagerStats object where countCollection is true,
kevinw@2058 240 // to ensure the current gc stat is placed in _last_gc_stat.
kevinw@2058 241 void GCMemoryManager::gc_end(bool recordPostGCUsage,
kevinw@2058 242 bool recordAccumulatedGCTime,
kevinw@2058 243 bool recordGCEndTime, bool countCollection) {
kevinw@2058 244 if (recordAccumulatedGCTime) {
kevinw@2058 245 _accumulated_timer.stop();
kevinw@2058 246 }
kevinw@2058 247 if (recordGCEndTime) {
kevinw@2058 248 _current_gc_stat->set_end_time(Management::timestamp());
duke@435 249 }
duke@435 250
kevinw@2058 251 if (recordPostGCUsage) {
kevinw@2058 252 int i;
kevinw@2058 253 // keep the last gc statistics for all memory pools
kevinw@2058 254 for (i = 0; i < MemoryService::num_memory_pools(); i++) {
kevinw@2058 255 MemoryPool* pool = MemoryService::get_memory_pool(i);
kevinw@2058 256 MemoryUsage usage = pool->get_memory_usage();
duke@435 257
kevinw@2058 258 HS_DTRACE_PROBE8(hotspot, mem__pool__gc__end,
kevinw@2058 259 name(), strlen(name()),
kevinw@2058 260 pool->name(), strlen(pool->name()),
kevinw@2058 261 usage.init_size(), usage.used(),
kevinw@2058 262 usage.committed(), usage.max_size());
kevinw@2058 263
kevinw@2058 264 _current_gc_stat->set_after_gc_usage(i, usage);
kevinw@2058 265 }
kevinw@2058 266
kevinw@2058 267 // Set last collection usage of the memory pools managed by this collector
kevinw@2058 268 for (i = 0; i < num_memory_pools(); i++) {
kevinw@2058 269 MemoryPool* pool = get_memory_pool(i);
kevinw@2058 270 MemoryUsage usage = pool->get_memory_usage();
kevinw@2058 271
kevinw@2058 272 // Compare with GC usage threshold
kevinw@2058 273 pool->set_last_collection_usage(usage);
kevinw@2058 274 LowMemoryDetector::detect_after_gc_memory(pool);
kevinw@2058 275 }
kevinw@2058 276 }
kevinw@2058 277 if (countCollection) {
kevinw@2058 278 _num_collections++;
kevinw@2058 279 // alternately update two objects making one public when complete
kevinw@2058 280 {
kevinw@2058 281 MutexLockerEx ml(_last_gc_lock, Mutex::_no_safepoint_check_flag);
kevinw@2058 282 GCStatInfo *tmp = _last_gc_stat;
kevinw@2058 283 _last_gc_stat = _current_gc_stat;
kevinw@2058 284 _current_gc_stat = tmp;
kevinw@2058 285 // reset the current stat for diagnosability purposes
kevinw@2058 286 _current_gc_stat->clear();
kevinw@2058 287 }
duke@435 288 }
duke@435 289 }
kevinw@2058 290
kevinw@2058 291 size_t GCMemoryManager::get_last_gc_stat(GCStatInfo* dest) {
kevinw@2058 292 MutexLockerEx ml(_last_gc_lock, Mutex::_no_safepoint_check_flag);
kevinw@2058 293 if (_last_gc_stat->gc_index() != 0) {
kevinw@2058 294 dest->set_index(_last_gc_stat->gc_index());
kevinw@2058 295 dest->set_start_time(_last_gc_stat->start_time());
kevinw@2058 296 dest->set_end_time(_last_gc_stat->end_time());
kevinw@2058 297 assert(dest->usage_array_size() == _last_gc_stat->usage_array_size(),
kevinw@2058 298 "Must have same array size");
kevinw@2058 299 size_t len = dest->usage_array_size() * sizeof(MemoryUsage);
kevinw@2058 300 memcpy(dest->before_gc_usage_array(), _last_gc_stat->before_gc_usage_array(), len);
kevinw@2058 301 memcpy(dest->after_gc_usage_array(), _last_gc_stat->after_gc_usage_array(), len);
kevinw@2058 302 }
kevinw@2058 303 return _last_gc_stat->gc_index();
kevinw@2058 304 }

mercurial